kernel-fundamentals.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  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 SmalltalkGlobalsBrik (brikz, st) {
  51. // jshint evil:true
  52. var jsGlobals = new Function("return this")();
  53. var globals = Object.create(jsGlobals);
  54. globals.SmalltalkSettings = {};
  55. this.globals = globals;
  56. }
  57. // TODO kernel announcer instead of st._eventFooHappened(...args)
  58. function RootBrik (brikz, st) {
  59. /* Smalltalk foundational objects */
  60. var coreFns = this.coreFns = {};
  61. /* SmalltalkRoot is the hidden root of the normal Amber hierarchy.
  62. All objects including `ProtoObject` inherit from SmalltalkRoot.
  63. Detached roots (eg. wrapped JS classes like Number or Date)
  64. do not directly inherit from SmalltalkRoot, but employ a workaround.*/
  65. function SmalltalkRoot () {
  66. }
  67. function SmalltalkProtoObject () {
  68. }
  69. function SmalltalkObject () {
  70. }
  71. coreFns.ProtoObject = inherits(SmalltalkProtoObject, SmalltalkRoot);
  72. coreFns.Object = inherits(SmalltalkObject, SmalltalkProtoObject);
  73. this.Root = SmalltalkRoot;
  74. this.Object = SmalltalkObject;
  75. }
  76. SelectorsBrik.deps = ["selectorConversion"];
  77. function SelectorsBrik (brikz, st) {
  78. var selectorSet = Object.create(null);
  79. var selectors = this.selectors = [];
  80. var selectorPairs = this.selectorPairs = [];
  81. this.registerSelector = function (stSelector) {
  82. if (selectorSet[stSelector]) return null;
  83. var jsSelector = st.st2js(stSelector);
  84. selectorSet[stSelector] = true;
  85. selectors.push(stSelector);
  86. var pair = {st: stSelector, js: jsSelector};
  87. selectorPairs.push(pair);
  88. return pair;
  89. };
  90. st.allSelectors = function () {
  91. return selectors;
  92. };
  93. }
  94. function PackagesBrik (brikz, st) {
  95. // TODO remove .packages, have .packageDescriptors
  96. st.packages = {};
  97. /* Add a package load descriptor to the system */
  98. st.addPackage = function (pkgName, properties) {
  99. if (!pkgName) return null;
  100. return st.packages[pkgName] = {
  101. // TODO remove .pkgName, have .name
  102. pkgName: pkgName,
  103. properties: properties
  104. };
  105. };
  106. }
  107. BehaviorsBrik.deps = ["root", "smalltalkGlobals", "arraySet"];
  108. function BehaviorsBrik (brikz, st) {
  109. var globals = brikz.smalltalkGlobals.globals;
  110. var addElement = brikz.arraySet.addElement;
  111. var removeElement = brikz.arraySet.removeElement;
  112. /* Smalltalk classes */
  113. var classes = [];
  114. this.buildTraitOrClass = function (pkgName, builder) {
  115. // TODO remove .className, have .name
  116. var traitOrClass = globals.hasOwnProperty(builder.className) && globals[builder.className];
  117. if (traitOrClass) {
  118. // TODO remove .pkg, have .pkgName
  119. if (!traitOrClass.pkg) throw new Error("Updated trait or class must have package: " + traitOrClass.className);
  120. // if (traitOrClass.pkg.pkgName !== pkgName) throw new Error("Incompatible cross-package update of trait or class: " + traitOrClass.className);
  121. builder.updateExisting(traitOrClass);
  122. } else {
  123. traitOrClass = builder.make();
  124. traitOrClass.pkg = pkgName;
  125. addTraitOrClass(traitOrClass);
  126. }
  127. return traitOrClass;
  128. };
  129. function addTraitOrClass (traitOrClass) {
  130. globals[traitOrClass.className] = traitOrClass;
  131. addElement(classes, traitOrClass);
  132. traitOrClass.added();
  133. }
  134. function removeTraitOrClass (traitOrClass) {
  135. traitOrClass.removed();
  136. removeElement(classes, traitOrClass);
  137. delete globals[traitOrClass.className];
  138. }
  139. this.removeTraitOrClass = removeTraitOrClass;
  140. /* Create an alias for an existing class */
  141. st.alias = function (traitOrClass, alias) {
  142. globals[alias] = traitOrClass;
  143. };
  144. /* Answer all registered Smalltalk classes */
  145. //TODO: remove the function and make smalltalk.classes an array
  146. // TODO: remove .classes, have .traitsOrClasses
  147. st.classes = this.classes = function () {
  148. return classes;
  149. };
  150. }
  151. MethodsBrik.deps = ["behaviorProviders", "selectors", "root", "selectorConversion"];
  152. function MethodsBrik (brikz, st) {
  153. var registerSelector = brikz.selectors.registerSelector;
  154. var updateMethod = brikz.behaviorProviders.updateMethod;
  155. var SmalltalkObject = brikz.root.Object;
  156. var coreFns = brikz.root.coreFns;
  157. function SmalltalkMethod () {
  158. }
  159. coreFns.CompiledMethod = inherits(SmalltalkMethod, SmalltalkObject);
  160. /* Smalltalk method object. To add a method to a class,
  161. use api.addMethod() */
  162. st.method = function (spec) {
  163. var that = new SmalltalkMethod();
  164. var selector = spec.selector;
  165. that.selector = selector;
  166. that.jsSelector = st.st2js(selector);
  167. that.args = spec.args || {};
  168. that.protocol = spec.protocol;
  169. that.source = spec.source;
  170. that.messageSends = spec.messageSends || [];
  171. // TODO remove .referencedClasses, have .referencedGlobals
  172. that.referencedClasses = spec.referencedClasses || [];
  173. that.fn = spec.fn;
  174. return that;
  175. };
  176. /* Add/remove a method to/from a class */
  177. st.addMethod = function (method, traitOrBehavior) {
  178. // TODO remove .methodClass, have .owner
  179. if (method.methodClass != null) {
  180. throw new Error("addMethod: Method " + method.selector + " already bound to " + method.methodClass);
  181. }
  182. method.methodClass = traitOrBehavior;
  183. registerNewSelectors(method);
  184. traitOrBehavior.localMethods[method.selector] = method;
  185. updateMethod(method.selector, traitOrBehavior);
  186. };
  187. function registerNewSelectors (method) {
  188. var newSelectors = [];
  189. function selectorInUse (stSelector) {
  190. var pair = registerSelector(stSelector);
  191. if (pair) {
  192. newSelectors.push(pair);
  193. }
  194. }
  195. selectorInUse(method.selector);
  196. method.messageSends.forEach(selectorInUse);
  197. if (st._selectorsAdded) st._selectorsAdded(newSelectors);
  198. }
  199. st.removeMethod = function (method, traitOrBehavior) {
  200. if (traitOrBehavior.localMethods[method.selector] !== method) return;
  201. delete traitOrBehavior.localMethods[method.selector];
  202. updateMethod(method.selector, traitOrBehavior);
  203. };
  204. }
  205. function BehaviorProvidersBrik (brikz, st) {
  206. this.setupMethods = function (traitOrBehavior) {
  207. traitOrBehavior.localMethods = Object.create(null);
  208. traitOrBehavior.methods = Object.create(null);
  209. };
  210. this.updateMethod = function (selector, traitOrBehavior) {
  211. var oldMethod = traitOrBehavior.methods[selector],
  212. newMethod = traitOrBehavior.localMethods[selector];
  213. if (oldMethod == null && newMethod == null) {
  214. console.warn("Removal of nonexistent method " + traitOrBehavior + " >> " + selector);
  215. return;
  216. }
  217. if (newMethod === oldMethod) return;
  218. if (newMethod != null) {
  219. traitOrBehavior.methods[selector] = newMethod;
  220. traitOrBehavior.methodAdded(newMethod);
  221. } else {
  222. delete traitOrBehavior.methods[selector];
  223. traitOrBehavior.methodRemoved(oldMethod);
  224. }
  225. if (st._methodReplaced) st._methodReplaced(newMethod, oldMethod, traitOrBehavior);
  226. };
  227. }
  228. function ArraySetBrik (brikz, st) {
  229. st.addElement = this.addElement = function (array, el) {
  230. if (typeof el === 'undefined') {
  231. return;
  232. }
  233. if (array.indexOf(el) === -1) {
  234. array.push(el);
  235. }
  236. };
  237. st.removeElement = this.removeElement = function (array, el) {
  238. var i = array.indexOf(el);
  239. if (i !== -1) {
  240. array.splice(i, 1);
  241. }
  242. };
  243. }
  244. function SelectorConversionBrik (brikz, st) {
  245. /* Convert a Smalltalk selector into a JS selector */
  246. st.st2js = function (string) {
  247. return '_' + string
  248. .replace(/:/g, '_')
  249. .replace(/[\&]/g, '_and')
  250. .replace(/[\|]/g, '_or')
  251. .replace(/[+]/g, '_plus')
  252. .replace(/-/g, '_minus')
  253. .replace(/[*]/g, '_star')
  254. .replace(/[\/]/g, '_slash')
  255. .replace(/[\\]/g, '_backslash')
  256. .replace(/[\~]/g, '_tild')
  257. .replace(/%/g, '_percent')
  258. .replace(/>/g, '_gt')
  259. .replace(/</g, '_lt')
  260. .replace(/=/g, '_eq')
  261. .replace(/,/g, '_comma')
  262. .replace(/[@]/g, '_at');
  263. };
  264. /* Convert a string to a valid smalltalk selector.
  265. if you modify the following functions, also change st2js
  266. accordingly */
  267. st.js2st = function (selector) {
  268. if (selector.match(/^__/)) {
  269. return binaryJsToSt(selector);
  270. } else {
  271. return keywordJsToSt(selector);
  272. }
  273. };
  274. function keywordJsToSt (selector) {
  275. return selector.replace(/^_/, '').replace(/_/g, ':');
  276. }
  277. function binaryJsToSt (selector) {
  278. return selector
  279. .replace(/^_/, '')
  280. .replace(/_and/g, '&')
  281. .replace(/_or/g, '|')
  282. .replace(/_plus/g, '+')
  283. .replace(/_minus/g, '-')
  284. .replace(/_star/g, '*')
  285. .replace(/_slash/g, '/')
  286. .replace(/_backslash/g, '\\')
  287. .replace(/_tild/g, '~')
  288. .replace(/_percent/g, '%')
  289. .replace(/_gt/g, '>')
  290. .replace(/_lt/g, '<')
  291. .replace(/_eq/g, '=')
  292. .replace(/_comma/g, ',')
  293. .replace(/_at/g, '@');
  294. }
  295. st.st2prop = function (stSelector) {
  296. var colonPosition = stSelector.indexOf(':');
  297. return colonPosition === -1 ? stSelector : stSelector.slice(0, colonPosition);
  298. };
  299. }
  300. NilBrik.deps = ["root"];
  301. function NilBrik (brikz, st) {
  302. var SmalltalkObject = brikz.root.Object;
  303. var coreFns = brikz.root.coreFns;
  304. function SmalltalkNil () {
  305. }
  306. coreFns.UndefinedObject = inherits(SmalltalkNil, SmalltalkObject);
  307. this.nilAsReceiver = new SmalltalkNil();
  308. this.nilAsValue = this.nilAsReceiver; // TODO null
  309. // Adds an `a$nil` (and legacy `isNil`) property to the `nil` object. When sending
  310. // nil objects from one environment to another, doing
  311. // `anObject == nil` (in JavaScript) does not always answer
  312. // true as the referenced nil object might come from the other
  313. // environment.
  314. Object.defineProperty(this.nilAsReceiver, 'a$nil', {
  315. value: true,
  316. enumerable: false, configurable: false, writable: false
  317. });
  318. Object.defineProperty(this.nilAsReceiver, 'isNil', {
  319. value: true,
  320. enumerable: false, configurable: false, writable: false
  321. });
  322. }
  323. /* Making smalltalk that has basic building blocks */
  324. function configureWithFundamentals (brikz) {
  325. brikz.smalltalkGlobals = SmalltalkGlobalsBrik;
  326. brikz.root = RootBrik;
  327. brikz.nil = NilBrik;
  328. brikz.arraySet = ArraySetBrik;
  329. brikz.selectorConversion = SelectorConversionBrik;
  330. brikz.selectors = SelectorsBrik;
  331. brikz.packages = PackagesBrik;
  332. brikz.behaviorProviders = BehaviorProvidersBrik;
  333. brikz.behaviors = BehaviorsBrik;
  334. brikz.methods = MethodsBrik;
  335. brikz.rebuild();
  336. }
  337. return configureWithFundamentals;
  338. });