kernel-language.js 13 KB

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