2
0

kernel-language.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  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(['./compatibility' /* TODO remove */], 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 defineMethod (klass, name, method) {
  51. Object.defineProperty(klass.prototype, name, {
  52. value: method,
  53. enumerable: false, configurable: true, writable: true
  54. });
  55. }
  56. TraitsBrik.deps = ["behaviors", "composition", "arraySet", "root"];
  57. function TraitsBrik (brikz, st) {
  58. var coreFns = brikz.root.coreFns;
  59. var SmalltalkObject = brikz.root.Object;
  60. var setupMethods = brikz.composition.setupMethods;
  61. var traitMethodChanged = brikz.composition.traitMethodChanged;
  62. var buildTraitOrClass = brikz.behaviors.buildTraitOrClass;
  63. var addElement = brikz.arraySet.addElement;
  64. var removeElement = brikz.arraySet.removeElement;
  65. function SmalltalkTrait () {
  66. }
  67. coreFns.Trait = inherits(SmalltalkTrait, SmalltalkObject);
  68. SmalltalkTrait.prototype.trait = true;
  69. defineMethod(SmalltalkTrait, "toString", function () {
  70. return 'Smalltalk Trait ' + this.className;
  71. });
  72. defineMethod(SmalltalkTrait, "added", function () {
  73. if (st._traitAdded) st._traitAdded(this);
  74. });
  75. defineMethod(SmalltalkTrait, "removed", function () {
  76. if (st._traitRemoved) st._traitRemoved(this);
  77. });
  78. defineMethod(SmalltalkTrait, "methodAdded", function (method) {
  79. var self = this;
  80. this.traitUsers.forEach(function (each) {
  81. traitMethodChanged(method.selector, method, self, each);
  82. });
  83. if (st._traitMethodAdded) st._traitMethodAdded(method, this);
  84. });
  85. defineMethod(SmalltalkTrait, "methodRemoved", function (method) {
  86. var self = this;
  87. this.traitUsers.forEach(function (each) {
  88. traitMethodChanged(method.selector, null, self, each);
  89. });
  90. if (st._traitMethodRemoved) st._traitMethodRemoved(method, this);
  91. });
  92. defineMethod(SmalltalkTrait, "addUser", function (traitOrBehavior) {
  93. addElement(this.traitUsers, traitOrBehavior);
  94. });
  95. defineMethod(SmalltalkTrait, "removeUser", function (traitOrBehavior) {
  96. removeElement(this.traitUsers, traitOrBehavior);
  97. });
  98. function traitBuilder (className) {
  99. return {
  100. className: className,
  101. make: function (pkg) {
  102. var that = new SmalltalkTrait();
  103. that.className = className;
  104. that.pkg = pkg;
  105. that.traitUsers = [];
  106. setupMethods(that);
  107. return that;
  108. },
  109. updateExisting: function (trait) {
  110. }
  111. };
  112. }
  113. st.addTrait = function (className, pkgName) {
  114. return buildTraitOrClass(pkgName, traitBuilder(className));
  115. };
  116. }
  117. ClassesBrik.deps = ["root", "behaviors", "composition", "arraySet", "smalltalkGlobals"];
  118. function ClassesBrik (brikz, st) {
  119. var SmalltalkRoot = brikz.root.Root;
  120. var coreFns = brikz.root.coreFns;
  121. var globals = brikz.smalltalkGlobals.globals;
  122. var SmalltalkObject = brikz.root.Object;
  123. var buildTraitOrClass = brikz.behaviors.buildTraitOrClass;
  124. var setupMethods = brikz.composition.setupMethods;
  125. var removeTraitOrClass = brikz.behaviors.removeTraitOrClass;
  126. var addElement = brikz.arraySet.addElement;
  127. var removeElement = brikz.arraySet.removeElement;
  128. function SmalltalkBehavior () {
  129. }
  130. function SmalltalkClass () {
  131. }
  132. function SmalltalkMetaclass () {
  133. }
  134. coreFns.Behavior = inherits(SmalltalkBehavior, SmalltalkObject);
  135. coreFns.Class = inherits(SmalltalkClass, SmalltalkBehavior);
  136. coreFns.Metaclass = inherits(SmalltalkMetaclass, SmalltalkBehavior);
  137. // Fake root class of the system.
  138. // Effective superclass of all classes created with `nil subclass: ...`.
  139. var nilAsClass = this.nilAsClass = {
  140. fn: SmalltalkRoot,
  141. a$cls: {fn: SmalltalkClass},
  142. klass: {fn: SmalltalkClass}
  143. };
  144. SmalltalkMetaclass.prototype.meta = true;
  145. defineMethod(SmalltalkClass, "toString", function () {
  146. return 'Smalltalk ' + this.className;
  147. });
  148. defineMethod(SmalltalkMetaclass, "toString", function () {
  149. return 'Smalltalk Metaclass ' + this.instanceClass.className;
  150. });
  151. defineMethod(SmalltalkClass, "added", function () {
  152. addSubclass(this);
  153. if (st._classAdded) st._classAdded(this);
  154. });
  155. defineMethod(SmalltalkClass, "removed", function () {
  156. if (st._classRemoved) st._classRemoved(this);
  157. removeSubclass(this);
  158. });
  159. defineMethod(SmalltalkBehavior, "methodAdded", function (method) {
  160. if (st._behaviorMethodAdded) st._behaviorMethodAdded(method, this);
  161. });
  162. defineMethod(SmalltalkBehavior, "methodRemoved", function (method) {
  163. if (st._behaviorMethodRemoved) st._behaviorMethodRemoved(method, this);
  164. });
  165. this.bootstrapHierarchy = function () {
  166. var nilSubclasses = [globals.ProtoObject];
  167. nilAsClass.a$cls = nilAsClass.klass = globals.Class;
  168. nilSubclasses.forEach(function (each) {
  169. each.a$cls.superclass = globals.Class;
  170. addSubclass(each.a$cls);
  171. });
  172. };
  173. /* Smalltalk class creation. A class is an instance of an automatically
  174. created metaclass object. Newly created classes (not their metaclass)
  175. should be added to the system, see smalltalk.addClass().
  176. Superclass linking is *not* handled here, see api.initialize() */
  177. function classBuilder (className, superclass, iVarNames, fn) {
  178. var logicalSuperclass = superclass;
  179. if (superclass == null || superclass.a$nil) {
  180. superclass = nilAsClass;
  181. logicalSuperclass = null;
  182. }
  183. function klass (pkg) {
  184. var that = metaclass().instanceClass;
  185. that.superclass = logicalSuperclass;
  186. that.fn = fn || inherits(function () {
  187. }, superclass.fn);
  188. that.iVarNames = iVarNames || [];
  189. that.className = className;
  190. that.pkg = pkg;
  191. that.subclasses = [];
  192. setupMethods(that);
  193. return that;
  194. }
  195. function metaclass () {
  196. var that = new SmalltalkMetaclass();
  197. that.superclass = superclass.a$cls;
  198. that.fn = inherits(function () {
  199. }, that.superclass.fn);
  200. that.iVarNames = [];
  201. that.instanceClass = new that.fn();
  202. wireKlass(that);
  203. setupMethods(that);
  204. return that;
  205. }
  206. return {
  207. className: className,
  208. make: klass,
  209. updateExisting: function (klass) {
  210. if (klass.superclass == logicalSuperclass && (!fn || fn === klass.fn)) {
  211. if (iVarNames) klass.iVarNames = iVarNames;
  212. } else throw new Error("Incompatible change of class: " + klass.className);
  213. }
  214. };
  215. }
  216. function wireKlass (klass) {
  217. Object.defineProperty(klass.fn.prototype, "a$cls", {
  218. value: klass,
  219. enumerable: false, configurable: true, writable: true
  220. });
  221. Object.defineProperty(klass.fn.prototype, "klass", {
  222. value: klass,
  223. enumerable: false, configurable: true, writable: true
  224. });
  225. }
  226. this.wireKlass = wireKlass;
  227. /* Add a class to the system, creating a new one if needed.
  228. A Package is lazily created if one with given name does not exist. */
  229. st.addClass = function (className, superclass, iVarNames, pkgName) {
  230. // While subclassing nil is allowed, it might be an error, so
  231. // warn about it.
  232. if (typeof superclass === 'undefined' || superclass && superclass.a$nil) {
  233. console.warn('Compiling ' + className + ' as a subclass of `nil`. A dependency might be missing.');
  234. }
  235. return buildTraitOrClass(pkgName, classBuilder(className, superclass, iVarNames, coreFns[className]));
  236. };
  237. st.removeClass = removeTraitOrClass;
  238. function addSubclass (klass) {
  239. if (klass.superclass) {
  240. addElement(klass.superclass.subclasses, klass);
  241. }
  242. }
  243. function removeSubclass (klass) {
  244. if (klass.superclass) {
  245. removeElement(klass.superclass.subclasses, klass);
  246. }
  247. }
  248. function metaSubclasses (metaclass) {
  249. return metaclass.instanceClass.subclasses
  250. .filter(function (each) {
  251. return !each.meta;
  252. })
  253. .map(function (each) {
  254. return each.a$cls;
  255. });
  256. }
  257. st.metaSubclasses = metaSubclasses;
  258. st.traverseClassTree = function (klass, fn) {
  259. var queue = [klass], sentinel = {};
  260. for (var i = 0; i < queue.length; ++i) {
  261. var item = queue[i];
  262. if (fn(item, sentinel) === sentinel) continue;
  263. var subclasses = item.meta ? metaSubclasses(item) : item.subclasses;
  264. queue.push.apply(queue, subclasses);
  265. }
  266. };
  267. }
  268. NilBrik.deps = ["root"];
  269. function NilBrik (brikz, st) {
  270. var SmalltalkObject = brikz.root.Object;
  271. var coreFns = brikz.root.coreFns;
  272. function SmalltalkNil () {
  273. }
  274. coreFns.UndefinedObject = inherits(SmalltalkNil, SmalltalkObject);
  275. this.nilAsReceiver = new SmalltalkNil();
  276. this.nilAsValue = this.nilAsReceiver; // TODO null
  277. // Adds an `a$nil` (and legacy `isNil`) property to the `nil` object. When sending
  278. // nil objects from one environment to another, doing
  279. // `anObject == nil` (in JavaScript) does not always answer
  280. // true as the referenced nil object might come from the other
  281. // environment.
  282. Object.defineProperty(this.nilAsReceiver, 'a$nil', {
  283. value: true,
  284. enumerable: false, configurable: false, writable: false
  285. });
  286. Object.defineProperty(this.nilAsReceiver, 'isNil', {
  287. value: true,
  288. enumerable: false, configurable: false, writable: false
  289. });
  290. }
  291. /* Defines asReceiver to be present at load time */
  292. /* (logically it belongs more to PrimitiveBrik) */
  293. AsReceiverBrik.deps = ["nil"];
  294. function AsReceiverBrik (brikz, st) {
  295. var nilAsReceiver = brikz.nil.nilAsReceiver;
  296. /**
  297. * This function is used all over the compiled amber code.
  298. * It takes any value (JavaScript or Smalltalk)
  299. * and returns a proper Amber Smalltalk receiver.
  300. *
  301. * null or undefined -> nilAsReceiver,
  302. * object having Smalltalk signature -> unchanged,
  303. * otherwise wrapped foreign (JS) object
  304. */
  305. this.asReceiver = function (o) {
  306. if (o == null) return nilAsReceiver;
  307. else if (o.a$cls != null) return o;
  308. else return st.wrapJavaScript(o);
  309. };
  310. }
  311. /* Making smalltalk that can load */
  312. function configureWithHierarchy (brikz) {
  313. brikz.traits = TraitsBrik;
  314. brikz.classes = ClassesBrik;
  315. brikz.nil = NilBrik;
  316. brikz.asReceiver = AsReceiverBrik;
  317. brikz.rebuild();
  318. }
  319. return configureWithHierarchy;
  320. });