kernel-fundamentals.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. /* ====================================================================
  2. |
  3. | Amber Smalltalk
  4. | http://amber-lang.net
  5. |
  6. ======================================================================
  7. ======================================================================
  8. |
  9. | Copyright (c) 2010-2014
  10. | Nicolas Petton <petton.nicolas@gmail.com>
  11. |
  12. | Copyright (c) 2012-2017
  13. | The Amber team https://lolg.it/org/amber/members
  14. | Amber contributors (see /CONTRIBUTORS)
  15. |
  16. | Amber is released under the MIT license
  17. |
  18. | Permission is hereby granted, free of charge, to any person obtaining
  19. | a copy of this software and associated documentation files (the
  20. | 'Software'), to deal in the Software without restriction, including
  21. | without limitation the rights to use, copy, modify, merge, publish,
  22. | distribute, sublicense, and/or sell copies of the Software, and to
  23. | permit persons to whom the Software is furnished to do so, subject to
  24. | the following conditions:
  25. |
  26. | The above copyright notice and this permission notice shall be
  27. | included in all copies or substantial portions of the Software.
  28. |
  29. | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
  30. | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  31. | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  32. | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
  33. | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  34. | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  35. | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  36. |
  37. ==================================================================== */
  38. //jshint eqnull:true
  39. define(function () {
  40. "use strict";
  41. function inherits (child, parent) {
  42. child.prototype = Object.create(parent.prototype, {
  43. constructor: {
  44. value: child,
  45. enumerable: false, configurable: true, writable: true
  46. }
  47. });
  48. return child;
  49. }
  50. function SmalltalkGlobalsBrik (brikz, st) {
  51. var globals = Object.create(global);
  52. globals.SmalltalkSettings = {};
  53. this.globals = globals;
  54. }
  55. function EventBrik (brikz, st) {
  56. var emit = {};
  57. this.emit = emit;
  58. this.declareEvent = function (event) {
  59. if (!emit[event]) emit[event] = function () {
  60. };
  61. }
  62. }
  63. function RootBrik (brikz, st) {
  64. /* Smalltalk foundational objects */
  65. var coreFns = this.coreFns = {};
  66. /* SmalltalkRoot is the hidden root of the normal Amber hierarchy.
  67. All objects including `ProtoObject` inherit from SmalltalkRoot.
  68. Detached roots (eg. wrapped JS classes like Number or Date)
  69. do not directly inherit from SmalltalkRoot, but employ a workaround.*/
  70. function SmalltalkRoot () {
  71. }
  72. function SmalltalkProtoObject () {
  73. }
  74. function SmalltalkObject () {
  75. }
  76. coreFns.ProtoObject = inherits(SmalltalkProtoObject, SmalltalkRoot);
  77. coreFns.Object = inherits(SmalltalkObject, SmalltalkProtoObject);
  78. this.Root = SmalltalkRoot;
  79. this.Object = SmalltalkObject;
  80. }
  81. function SelectorsBrik (brikz, st) {
  82. var selectorSet = Object.create(null);
  83. var selectors = this.selectors = [];
  84. this.registerSelector = function (stSelector) {
  85. if (selectorSet[stSelector]) return false;
  86. selectors.push(stSelector);
  87. return selectorSet[stSelector] = true;
  88. };
  89. st.allSelectors = function () {
  90. return selectors;
  91. };
  92. }
  93. function PackagesBrik (brikz, st) {
  94. st.packages = st.packageDescriptors = {};
  95. /* Add a package load descriptor to the system */
  96. st.addPackage = function (name, properties) {
  97. if (!name) return null;
  98. return st.packageDescriptors[name] = {properties: properties};
  99. };
  100. }
  101. BehaviorsBrik.deps = ["root", "smalltalkGlobals", "arraySet"];
  102. function BehaviorsBrik (brikz, st) {
  103. var globals = brikz.smalltalkGlobals.globals;
  104. var addElement = brikz.arraySet.addElement;
  105. var removeElement = brikz.arraySet.removeElement;
  106. /* Smalltalk classes and traits */
  107. var traitsOrClasses = [];
  108. this.buildTraitOrClass = function (category, builder) {
  109. var traitOrClass = globals.hasOwnProperty(builder.name) && globals[builder.name];
  110. if (traitOrClass) {
  111. builder.updateExisting(traitOrClass);
  112. } else {
  113. traitOrClass = builder.make();
  114. traitOrClass.category = category;
  115. addTraitOrClass(traitOrClass);
  116. }
  117. return traitOrClass;
  118. };
  119. function addTraitOrClass (traitOrClass) {
  120. globals[traitOrClass.name] = traitOrClass;
  121. addElement(traitsOrClasses, traitOrClass);
  122. traitOrClass.added();
  123. }
  124. function removeTraitOrClass (traitOrClass) {
  125. traitOrClass.removed();
  126. removeElement(traitsOrClasses, traitOrClass);
  127. delete globals[traitOrClass.name];
  128. }
  129. this.removeTraitOrClass = removeTraitOrClass;
  130. /* Create an alias for an existing class */
  131. st.alias = function (traitOrClass, alias) {
  132. globals[alias] = traitOrClass;
  133. };
  134. st.traitsOrClasses = this.traitsOrClasses = traitsOrClasses;
  135. }
  136. MethodsBrik.deps = ["event", "selectors", "root"];
  137. function MethodsBrik (brikz, st) {
  138. var registerSelector = brikz.selectors.registerSelector;
  139. var SmalltalkObject = brikz.root.Object;
  140. var coreFns = brikz.root.coreFns;
  141. var emit = brikz.event.emit;
  142. var declareEvent = brikz.event.declareEvent;
  143. function SmalltalkMethod () {
  144. }
  145. coreFns.CompiledMethod = inherits(SmalltalkMethod, SmalltalkObject);
  146. /* Smalltalk method object. To add a method to a class,
  147. use api.addMethod() */
  148. st.method = function (spec) {
  149. var that = new SmalltalkMethod();
  150. var selector = spec.selector;
  151. that.selector = selector;
  152. that.args = spec.args || {};
  153. that.protocol = spec.protocol;
  154. that.source = spec.source;
  155. that.messageSends = spec.messageSends || [];
  156. // TODO remove .referencedClasses, have .referencedGlobals
  157. that.referencedClasses = spec.referencedClasses || [];
  158. that.fn = spec.fn;
  159. return that;
  160. };
  161. /* Add/remove a method to/from a class */
  162. st.addMethod = function (method, traitOrBehavior) {
  163. if (method.owner != null) {
  164. throw new Error("addMethod: Method " + method.selector + " already bound to " + method.owner);
  165. }
  166. method.owner = traitOrBehavior;
  167. // TODO deprecation helper; remove
  168. Object.defineProperty(method, "methodClass", {
  169. get: function () {
  170. console.warn("Use of .methodClass deprecated, use .owner");
  171. return method.owner;
  172. },
  173. set: function (v) {
  174. console.warn("Use of .methodClass= deprecated, use .owner=");
  175. method.owner = v;
  176. }
  177. });
  178. registerNewSelectors(method);
  179. traitOrBehavior.localMethods[method.selector] = method;
  180. updateMethod(method.selector, traitOrBehavior);
  181. };
  182. declareEvent("selectorsAdded");
  183. function registerNewSelectors (method) {
  184. var newSelectors = [];
  185. function selectorInUse (stSelector) {
  186. if (registerSelector(stSelector)) {
  187. newSelectors.push(stSelector);
  188. }
  189. }
  190. selectorInUse(method.selector);
  191. method.messageSends.forEach(selectorInUse);
  192. emit.selectorsAdded(newSelectors);
  193. }
  194. st.removeMethod = function (method, traitOrBehavior) {
  195. if (traitOrBehavior.localMethods[method.selector] !== method) return;
  196. delete traitOrBehavior.localMethods[method.selector];
  197. updateMethod(method.selector, traitOrBehavior);
  198. };
  199. this.setupMethods = function (traitOrBehavior) {
  200. traitOrBehavior.localMethods = Object.create(null);
  201. traitOrBehavior.methods = Object.create(null);
  202. };
  203. declareEvent("methodReplaced");
  204. function updateMethod (selector, traitOrBehavior) {
  205. var oldMethod = traitOrBehavior.methods[selector],
  206. newMethod = traitOrBehavior.localMethods[selector];
  207. if (oldMethod == null && newMethod == null) {
  208. console.warn("Removal of nonexistent method " + traitOrBehavior + " >> " + selector);
  209. return;
  210. }
  211. if (newMethod === oldMethod) return;
  212. if (newMethod != null) {
  213. traitOrBehavior.methods[selector] = newMethod;
  214. traitOrBehavior.methodAdded(newMethod);
  215. } else {
  216. delete traitOrBehavior.methods[selector];
  217. traitOrBehavior.methodRemoved(oldMethod);
  218. }
  219. emit.methodReplaced(newMethod, oldMethod, traitOrBehavior);
  220. }
  221. this.updateMethod = updateMethod;
  222. }
  223. function ArraySetBrik (brikz, st) {
  224. st.addElement = this.addElement = function (array, el) {
  225. if (typeof el === 'undefined') {
  226. return;
  227. }
  228. if (array.indexOf(el) === -1) {
  229. array.push(el);
  230. }
  231. };
  232. st.removeElement = this.removeElement = function (array, el) {
  233. var i = array.indexOf(el);
  234. if (i !== -1) {
  235. array.splice(i, 1);
  236. }
  237. };
  238. }
  239. NilBrik.deps = ["root"];
  240. function NilBrik (brikz, st) {
  241. var SmalltalkObject = brikz.root.Object;
  242. var coreFns = brikz.root.coreFns;
  243. function SmalltalkNil () {
  244. }
  245. coreFns.UndefinedObject = inherits(SmalltalkNil, SmalltalkObject);
  246. this.nilAsReceiver = new SmalltalkNil();
  247. this.nilAsValue = this.nilAsReceiver; // TODO null
  248. // Adds an `a$nil` (and legacy `isNil`) property to the `nil` object. When sending
  249. // nil objects from one environment to another, doing
  250. // `anObject == nil` (in JavaScript) does not always answer
  251. // true as the referenced nil object might come from the other
  252. // environment.
  253. Object.defineProperty(this.nilAsReceiver, 'a$nil', {
  254. value: true,
  255. enumerable: false, configurable: false, writable: false
  256. });
  257. Object.defineProperty(this.nilAsReceiver, 'isNil', {
  258. value: true,
  259. enumerable: false, configurable: false, writable: false
  260. });
  261. }
  262. /* Making smalltalk that has basic building blocks */
  263. function configureWithFundamentals (brikz) {
  264. brikz.smalltalkGlobals = SmalltalkGlobalsBrik;
  265. brikz.root = RootBrik;
  266. brikz.nil = NilBrik;
  267. brikz.event = EventBrik;
  268. brikz.arraySet = ArraySetBrik;
  269. brikz.selectors = SelectorsBrik;
  270. brikz.packages = PackagesBrik;
  271. brikz.behaviors = BehaviorsBrik;
  272. brikz.methods = MethodsBrik;
  273. brikz.rebuild();
  274. }
  275. return configureWithFundamentals;
  276. });