123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922 |
- Smalltalk current createPackage: 'Kernel-Infrastructure'!
- Object subclass: #InspectorHandler
- instanceVariableNames: ''
- package: 'Kernel-Infrastructure'!
- I am responsible for inspecting object.
- My class-side `inspector` inst var holds the current inspector I'm delegating object inspection to.
- The default inspector object is the transcript.!
- InspectorHandler class instanceVariableNames: 'inspector'!
- inspector
- ^ inspector ifNil: [ inspector := Transcript ]
- inspect: anObject
- ^ self inspector inspect: anObject
- register: anInspector
- inspector := anInspector
- Object subclass: #InterfacingObject
- instanceVariableNames: ''
- package: 'Kernel-Infrastructure'!
- I am superclass of all object that interface with user or environment. `Widget` and a few other classes are subclasses of me. I delegate all of the above APIs to `PlatformInterface`.
- self alert: 'Hey, there is a problem'.
- self confirm: 'Affirmative?'.
- self prompt: 'Your name:'.
- self ajax: #{
- 'url' -> '/patch.js'. 'type' -> 'GET'. dataType->'script'
- }.!
- ajax: anObject
- ^PlatformInterface ajax: anObject
- alert: aString
- ^PlatformInterface alert: aString
- confirm: aString
- ^PlatformInterface confirm: aString
- prompt: aString
- ^PlatformInterface prompt: aString
- InterfacingObject subclass: #Environment
- instanceVariableNames: ''
- package: 'Kernel-Infrastructure'!
- I provide an unified entry point to manipulate Amber packages, classes and methods.
- Typical use cases include IDEs, remote access and restricting browsing.!
- allSelectors
- ^ (Smalltalk current at: 'allSelectors') value
- availableClassNames
- ^ Smalltalk current classes
- collect: [ :each | each name ]
- availablePackageNames
- ^ Smalltalk current packages
- collect: [ :each | each name ]
- availableProtocolsFor: aClass
- | protocols |
-
- protocols := aClass protocols.
- aClass superclass ifNotNil: [ protocols addAll: (self availableProtocolsFor: aClass superclass) ].
- ^ protocols asSet asArray
- classBuilder
- ^ ClassBuilder new
- classNamed: aString
- ^ (Smalltalk current at: aString asSymbol)
- ifNil: [ self error: 'Invalid class name' ]
- classes
- ^ Smalltalk current classes
- packages
- ^ Smalltalk current packages
- systemAnnouncer
- ^ (Smalltalk current at: #SystemAnnouncer) current
- commitPackage: aPackage
- aPackage commit
- copyClass: aClass to: aClassName
- (Smalltalk current at: aClassName)
- ifNotNil: [ self error: 'A class named ', aClassName, ' already exists' ].
-
- ClassBuilder new copyClass: aClass named: aClassName
- eval: aString on: aReceiver
- | compiler |
- compiler := Compiler new.
- [ compiler parseExpression: aString ] on: Error do: [ :ex |
- ^ self alert: ex messageText ].
- ^ compiler evaluateExpression: aString on: aReceiver
- inspect: anObject
- InspectorHandler inspector inspect: anObject
- moveClass: aClass toPackage: aPackageName
- | package |
-
- package := Package named: aPackageName.
- package ifNil: [ self error: 'Invalid package name' ].
- package == aClass package ifTrue: [ ^ self ].
-
- aClass package: package
- moveMethod: aMethod toClass: aClassName
- | destinationClass |
-
- destinationClass := Smalltalk current at: aClassName asSymbol.
- destinationClass ifNil: [ self error: 'Invalid class name' ].
- destinationClass == aMethod methodClass ifTrue: [ ^ self ].
-
- destinationClass
- compile: aMethod source
- category: aMethod protocol.
- aMethod methodClass
- removeCompiledMethod: aMethod
- moveMethod: aMethod toProtocol: aProtocol
- aMethod category: aProtocol
- registerErrorHandler: anErrorHandler
- ErrorHandler setCurrent: anErrorHandler
- registerInspector: anInspector
- InspectorHandler register: anInspector
- registerProgressHandler: aProgressHandler
- ProgressHandler setCurrent: aProgressHandler
- removeClass: aClass
- Smalltalk current removeClass: aClass
- removeMethod: aMethod
- aMethod methodClass removeCompiledMethod: aMethod
- removeProtocol: aString from: aClass
- (aClass methods
- select: [ :each | each protocol = aString ])
- do: [ :each | aClass removeCompiledMethod: each ]
- renameClass: aClass to: aClassName
- (Smalltalk current at: aClassName)
- ifNotNil: [ self error: 'A class named ', aClassName, ' already exists' ].
-
- ClassBuilder new renameClass: aClass to: aClassName
- renameProtocol: aString to: anotherString in: aClass
- (aClass methods
- select: [ :each | each protocol = aString ])
- do: [ :each | each protocol: anotherString ]
- setClassCommentOf: aClass to: aString
- aClass comment: aString
- addInstVarNamed: aString to: aClass
- self classBuilder
- addSubclassOf: aClass superclass
- named: aClass name
- instanceVariableNames: (aClass instanceVariableNames copy add: aString; yourself)
- package: aClass package name
- compileClassComment: aString for: aClass
- aClass comment: aString
- compileClassDefinition: aString
- self eval: aString on: DoIt new
- compileMethod: sourceCode for: class protocol: protocol
- ^ class
- compile: sourceCode
- category: protocol
- evaluate: aBlock on: anErrorClass do: exceptionBlock
- "Evaluate a block and catch exceptions happening on the environment stack"
-
- self try: aBlock catch: [ :exception |
- (exception isKindOf: (self classNamed: anErrorClass name))
- ifTrue: [ exceptionBlock value: exception ]
- ifFalse: [ exception signal ] ]
- Object subclass: #JSObjectProxy
- instanceVariableNames: 'jsObject'
- package: 'Kernel-Infrastructure'!
- I handle sending messages to JavaScript objects, making JavaScript object accessing from Amber fully transparent.
- My instances make intensive use of `#doesNotUnderstand:`.
- My instances are automatically created by Amber whenever a message is sent to a JavaScript object.
- JSObjectProxy objects are instanciated by Amber when a Smalltalk message is sent to a JavaScript object.
- window alert: 'hello world'.
- window inspect.
- (window jQuery: 'body') append: 'hello world'
- Amber messages sends are converted to JavaScript function calls or object property access _(in this order)_. If n one of them match, a `MessageNotUnderstood` error will be thrown.
- - `someUser name` becomes `someUser.name`
- - `someUser name: 'John'` becomes `someUser name = "John"`
- - `console log: 'hello world'` becomes `console.log('hello world')`
- - `(window jQuery: 'foo') css: 'background' color: 'red'` becomes `window.jQuery('foo').css('background', 'red')`
- __Note:__ For keyword-based messages, only the first keyword is kept: `window foo: 1 bar: 2` is equivalent to `window foo: 1 baz: 2`.!
- at: aString
- <return self['@jsObject'][aString]>
- at: aString ifAbsent: aBlock
- "return the aString property or evaluate aBlock if the property is not defined on the object"
- <
- var obj = self['@jsObject'];
- return aString in obj ? obj[aString] : aBlock._value();
- >
- at: aString ifPresent: aBlock
- "return the evaluation of aBlock with the value if the property is defined or return nil"
- <
- var obj = self['@jsObject'];
- return aString in obj ? aBlock._value_(obj[aString]) : nil;
- >
- at: aString ifPresent: aBlock ifAbsent: anotherBlock
- "return the evaluation of aBlock with the value if the property is defined
- or return value of anotherBlock"
- <
- var obj = self['@jsObject'];
- return aString in obj ? aBlock._value_(obj[aString]) : anotherBlock._value();
- >
- at: aString put: anObject
- <self['@jsObject'][aString] = anObject>
- jsObject
- ^jsObject
- jsObject: aJSObject
- jsObject := aJSObject
- lookupProperty: aString
- "Looks up a property in JS object.
- Answer the property if it is present, or nil if it is not present."
-
- <return aString in self._jsObject() ? aString : nil>
- value
- "if attribute 'value' exists on the JS object return it,
- otherwise return the result of Object>>value."
-
- ^ self
- at: 'value'
- ifAbsent: [ super value ]
- keysAndValuesDo: aBlock
- <
- var o = self['@jsObject'];
- for(var i in o) {
- aBlock._value_value_(i, o[i]);
- }
- >
- printOn: aStream
- aStream nextPutAll: self jsObject toString
- addObjectVariablesTo: aDictionary
- <
- for(var i in self['@jsObject']) {
- aDictionary._at_put_(i, self['@jsObject'][i]);
- }
- >
- doesNotUnderstand: aMessage
- ^ (self lookupProperty: aMessage selector asJavaScriptSelector)
- ifNil: [ super doesNotUnderstand: aMessage ]
- ifNotNil: [ :jsSelector |
- self
- forwardMessage: jsSelector
- withArguments: aMessage arguments ]
- forwardMessage: aString withArguments: anArray
- <
- return smalltalk.send(self._jsObject(), aString, anArray);
- >
- inspectOn: anInspector
- | variables |
- variables := Dictionary new.
- variables at: '#self' put: self jsObject.
- anInspector setLabel: self printString.
- self addObjectVariablesTo: variables.
- anInspector setVariables: variables
- on: aJSObject
- ^self new
- jsObject: aJSObject;
- yourself
- Object subclass: #Organizer
- instanceVariableNames: ''
- package: 'Kernel-Infrastructure'!
- I represent categorization information.
- Use `#addElement:` and `#removeElement:` to manipulate instances.!
- addElement: anObject
- <self.elements.addElement(anObject)>
- elements
- ^ (self basicAt: 'elements') copy
- removeElement: anObject
- <self.elements.removeElement(anObject)>
- Organizer subclass: #ClassOrganizer
- instanceVariableNames: ''
- package: 'Kernel-Infrastructure'!
- I am an organizer specific to classes. I hold method categorization information for classes.!
- addElement: aString
- super addElement: aString.
- SystemAnnouncer current announce: (ProtocolAdded new
- protocol: aString;
- theClass: self theClass;
- yourself)
- removeElement: aString
- super removeElement: aString.
- SystemAnnouncer current announce: (ProtocolRemoved new
- protocol: aString;
- theClass: self theClass;
- yourself)
- theClass
- < return self.theClass >
- Organizer subclass: #PackageOrganizer
- instanceVariableNames: ''
- package: 'Kernel-Infrastructure'!
- I am an organizer specific to packages. I hold classes categorization information.!
- Object subclass: #Package
- instanceVariableNames: 'extension'
- package: 'Kernel-Infrastructure'!
- I am similar to a "class category" typically found in other Smalltalks like Pharo or Squeak. Amber does not have class categories anymore, it had in the beginning but now each class in the system knows which package it belongs to.
- Each package has a name and can be queried for its classes, but it will then resort to a reverse scan of all classes to find them.
- Packages are manipulated through "Smalltalk current", like for example finding one based on a name or with `Package class >> #name` directly:
- Smalltalk current packageAt: 'Kernel'
- Package named: 'Kernel'
- A package differs slightly from a Monticello package which can span multiple class categories using a naming convention based on hyphenation. But just as in Monticello a package supports "class extensions" so a package can define behaviors in foreign classes using a naming convention for method categories where the category starts with an asterisk and then the name of the owning package follows.
- You can fetch a package from the server:
- Package load: 'Additional-Examples'!
- name
- <return self.pkgName>
- name: aString
- <self.pkgName = aString>
- organization
- ^ self basicAt: 'organization'
- classes
- ^ self organization elements
- setupClasses
- self classes
- do: [ :each | ClassBuilder new setupClass: each ];
- do: [ :each | each initialize ]
- sortedClasses
- "Answer all classes in the receiver, sorted by superclass/subclasses and by class name for common subclasses (Issue #143)."
- ^self class sortedClasses: self classes
- loadDependencies
- "Returns list of packages that need to be loaded
- before loading this package."
-
- | classes packages |
- classes := self loadDependencyClasses.
- ^(classes collect: [ :each | each package ]) asSet
- remove: self ifAbsent: [];
- yourself
- loadDependencyClasses
- "Returns classes needed at the time of loading a package.
- These are all that are used to subclass
- and to define an extension method"
-
- | starCategoryName |
- starCategoryName := '*', self name.
- ^(self classes collect: [ :each | each superclass ]) asSet
- remove: nil ifAbsent: [];
- addAll: (Smalltalk current classes select: [ :each | each protocols includes: starCategoryName ]);
- yourself
- printOn: aStream
- super printOn: aStream.
- aStream
- nextPutAll: ' (';
- nextPutAll: self name;
- nextPutAll: ')'
- isPackage
- ^ true
- Package class instanceVariableNames: 'defaultCommitPathJs defaultCommitPathSt'!
- named: aPackageName
- ^Smalltalk current packageAt: aPackageName
- named: aPackageName ifAbsent: aBlock
- ^Smalltalk current packageAt: aPackageName ifAbsent: aBlock
- load: aPackageName
- self deprecatedAPI.
- self load: aPackageName prefix: self defaultCommitPathJs, '/'
- load: aPackageName prefix: aPrefix
- self deprecatedAPI.
- PlatformInterface ajax: #{
- 'url' -> (aPrefix , aPackageName , '.js').
- 'dataType' -> 'script'.
- 'success' -> [
- (Package named: aPackageName) setupClasses ]
- }
- sortedClasses: classes
- "Answer classes, sorted by superclass/subclasses and by class name for common subclasses (Issue #143)"
- | children others nodes expandedClasses |
- children := #().
- others := #().
- classes do: [:each |
- (classes includes: each superclass)
- ifFalse: [children add: each]
- ifTrue: [others add: each]].
- nodes := children collect: [:each |
- ClassSorterNode on: each classes: others level: 0].
- nodes := nodes sorted: [:a :b | a theClass name <= b theClass name ].
- expandedClasses := Array new.
- nodes do: [:aNode |
- aNode traverseClassesWith: expandedClasses].
- ^expandedClasses
- Object subclass: #PlatformInterface
- instanceVariableNames: ''
- package: 'Kernel-Infrastructure'!
- I am single entry point to UI and environment interface.
- My `initialize` tries several options (for now, browser environment only) to set myself up.
- PlatformInterface alert: 'Hey, there is a problem'.
- PlatformInterface confirm: 'Affirmative?'.
- PlatformInterface prompt: 'Your name:'.
- PlatformInterface ajax: #{
- 'url' -> '/patch.js'. 'type' -> 'GET'. dataType->'script'
- }.!
- PlatformInterface class instanceVariableNames: 'worker'!
- setWorker: anObject
- worker := anObject
- ajax: anObject
- ^worker
- ifNotNil: [ worker ajax: anObject ]
- ifNil: [ self error: 'ajax: not available' ]
- alert: aString
- ^worker
- ifNotNil: [ worker alert: aString ]
- ifNil: [ self error: 'alert: not available' ]
- confirm: aString
- ^worker
- ifNotNil: [ worker confirm: aString ]
- ifNil: [ self error: 'confirm: not available' ]
- existsGlobal: aString
- <
- var f = new Function('aString',
- 'if (/^[0-9]/.test(aString) || !!/^[\\w_]+$/.test(aString))\n'+
- ' return false;\n'+
- 'try { eval(aString); return true; } catch (ex) {}\n'+
- 'return false;');
- return f(aString);
- >
- prompt: aString
- ^worker
- ifNotNil: [ worker prompt: aString ]
- ifNil: [ self error: 'prompt: not available' ]
- initialize
- | candidate |
-
- super initialize.
-
- BrowserInterface ifNotNil: [
- candidate := BrowserInterface new.
- candidate isAvailable ifTrue: [ self setWorker: candidate. ^self ]
- ]
- Object subclass: #ProgressHandler
- instanceVariableNames: ''
- package: 'Kernel-Infrastructure'!
- I am used to manage progress in collection iterations, see `SequenceableCollection >> #do:displayingProgress:`.
- Subclasses of can register themselves as the current handler with
- `ProgressHandler class >> register`.
- The default behavior is to simply iterate over the collection.!
- do: aBlock on: aCollection displaying: aString
- aCollection do: aBlock
- ProgressHandler class instanceVariableNames: 'current'!
- current
- ^current ifNil: [ current := self new ]
- setCurrent: anHandler
- current := anHandler
- initialize
- self register
- register
- ProgressHandler setCurrent: self new
- Object subclass: #Smalltalk
- instanceVariableNames: ''
- package: 'Kernel-Infrastructure'!
- I represent the global JavaScript variable `smalltalk` declared in `js/boot.js`.
- I have only one instance, accessed with class-side method `#current`.
- The `smalltalk` object holds all class and packages defined in the system.
- Classes can be accessed using the following methods:
- - `#classes` answers the full list of Smalltalk classes in the system
- - `#at:` answers a specific class or `nil`
- Packages can be accessed using the following methods:
- - `#packages` answers the full list of packages
- - `#packageAt:` answers a specific package or `nil`
- The `#parse:` method is used to parse Amber source code.
- It requires the `Compiler` package and the `js/parser.js` parser file in order to work.!
- at: aString
- <return self[aString]>
- parse: aString
- | result |
-
- self
- try: [result := self basicParse: aString]
- catch: [:ex | (self parseError: ex parsing: aString) signal].
-
- ^ result
- source: aString;
- yourself
- readJSObject: anObject
- <return self.readJSObject(anObject)>
- reservedWords
- "JavaScript reserved words"
- <return self.reservedWords>
- version
- "Answer the version string of Amber"
-
- ^ '0.11.0'
- classes
- <return self.classes()>
- deleteClass: aClass
- "Deletes a class by deleting its binding only. Use #removeClass instead"
-
- <self.removeClass(aClass)>
- removeClass: aClass
- aClass isMetaclass ifTrue: [self error: aClass asString, ' is a Metaclass and cannot be removed!!'].
-
- self deleteClass: aClass.
-
- SystemAnnouncer current
- announce: (ClassRemoved new
- theClass: aClass;
- yourself)
- asSmalltalkException: anObject
- "A JavaScript exception may be thrown.
- We then need to convert it back to a Smalltalk object"
-
- ^ ((self isSmalltalkObject: anObject) and: [ anObject isKindOf: Error ])
- ifTrue: [ anObject ]
- ifFalse: [ JavaScriptException on: anObject ]
- parseError: anException parsing: aString
- ^ ParseError new messageText: 'Parse error on line ', (anException basicAt: 'line') ,' column ' , (anException basicAt: 'column') ,' : Unexpected character ', (anException basicAt: 'found')
- addGlobalJsVariable: aString
- self globalJsVariables add: aString
- deleteGlobalJsVariable: aString
- self globalJsVariables remove: aString ifAbsent:[]
- globalJsVariables
- "Array of global JavaScript variables"
- <return self.globalJsVariables>
- createPackage: packageName
- "Create and bind a new package with given name and return it."
- <return smalltalk.addPackage(packageName)>
- deletePackage: packageName
- "Deletes a package by deleting its binding, but does not check if it contains classes etc.
- To remove a package, use #removePackage instead."
- <delete smalltalk.packages[packageName]>
- packageAt: packageName
- <return self.packages[packageName]>
- packageAt: packageName ifAbsent: aBlock
- ^(self packageAt: packageName) ifNil: aBlock
- packages
- "Return all Package instances in the system."
- <return self.packages.all()>
- pseudoVariableNames
- ^ #('self' 'super' 'nil' 'true' 'false' 'thisContext')
- removePackage: packageName
- "Removes a package and all its classes."
- | pkg |
- pkg := self packageAt: packageName ifAbsent: [self error: 'Missing package: ', packageName].
- pkg classes do: [:each |
- self removeClass: each].
- self deletePackage: packageName
- renamePackage: packageName to: newName
- "Rename a package."
- | pkg |
- pkg := self packageAt: packageName ifAbsent: [self error: 'Missing package: ', packageName].
- (self packageAt: newName) ifNotNil: [self error: 'Already exists a package called: ', newName].
- (self basicAt: 'packages') at: newName put: pkg.
- pkg name: newName.
- self deletePackage: packageName.
- basicParse: aString
- <return smalltalk.parser.parse(aString)>
- createPackage: packageName properties: aDict
- "Needed to import .st files: they begin with this call."
- self deprecatedAPI.
-
- aDict isEmpty ifFalse: [ self error: 'createPackage:properties: called with nonempty properties' ].
- ^ self createPackage: packageName
- isSmalltalkObject: anObject
- "Consider anObject a Smalltalk object if it has a 'klass' property.
- Note that this may be unaccurate"
-
- <return typeof anObject.klass !!== 'undefined'>
- Smalltalk class instanceVariableNames: 'current'!
- current
- <return smalltalk>
- asJavaScriptSelector
- "Return first keyword of the selector, without trailing colon."
- ^self replace: '^([a-zA-Z0-9]*).*$' with: '$1'
|