moo/stix/kernel/Apex.st

371 lines
6.3 KiB
Smalltalk
Raw Normal View History

#class Apex(nil)
{
#dcl(#class) sysdic.
## -------------------------------------------------------
## -------------------------------------------------------
#method(#class) dump
{
2015-10-15 14:40:08 +00:00
<primitive: #_dump>
}
#method dump
{
2015-10-15 14:40:08 +00:00
<primitive: #_dump>
}
## -------------------------------------------------------
## -------------------------------------------------------
#method(#class) yourself
{
^self.
}
#method yourself
{
^self.
}
## -------------------------------------------------------
## -------------------------------------------------------
2015-10-15 14:40:08 +00:00
#method(#class) basicNew
{
2015-10-15 14:40:08 +00:00
<primitive: #_basic_new>
self primitiveFailed.
}
2015-10-15 14:40:08 +00:00
#method(#class) basicNew: anInteger
{
2015-10-15 14:40:08 +00:00
<primitive: #_basic_new_with_size>
self primitiveFailed.
}
#method(#class) ngcNew
{
<primitive: #_ngc_new>
self primitiveFailed.
}
#method(#class) ngcNew: anInteger
{
<primitive: #_ngc_new_with_size>
self primitiveFailed.
}
2015-10-15 14:40:08 +00:00
#method(#class) new
{
| x |
x := self basicNew.
x initialize. "TODO: assess if it's good to call 'initialize' from new."
^x.
}
#method(#class) new: anInteger
{
| x |
## TODO: check if the class is a fixed class.
## if so, raise an exception.
2015-10-15 14:40:08 +00:00
x := self basicNew: anInteger.
x initialize. "TODO: assess if it's good to call 'initialize' from new."
^x.
}
#method initialize
{
"a subclass may override this method."
^self.
}
#method ngcDispose
{
<primitive: #_ngc_dispose>
self primitiveFailed.
}
## -------------------------------------------------------
## -------------------------------------------------------
#method shallowCopy
{
<primitive: #_shallow_copy>
self primitiveFailed.
}
## -------------------------------------------------------
## -------------------------------------------------------
#method class
{
2015-10-15 14:40:08 +00:00
<primitive: #_class>
}
#method(#class) class
{
2015-10-15 14:40:08 +00:00
<primitive: #_class>
^Class
}
## -------------------------------------------------------
## -------------------------------------------------------
#method basicSize
{
2015-10-15 14:40:08 +00:00
<primitive: #_basic_size>
self primitiveFailed.
}
#method(#class) basicSize
{
<primitive: #_basic_size>
self primitiveFailed.
}
#method basicAt: anInteger
{
2015-10-15 14:40:08 +00:00
<primitive: #_basic_at>
## TODO: chagne it to 'self outOfRangeError' or something.
self error: 'out of range'.
}
#method basicAt: anInteger put: anObject
{
2015-10-15 14:40:08 +00:00
<primitive: #_basic_at_put>
self error: 'out of range'.
}
#method(#class) basicAt: anInteger
{
2015-10-15 14:40:08 +00:00
<primitive: #_basic_at>
self error: 'out of range'.
}
#method(#class) basicAt: anInteger put: anObject
{
2015-10-15 14:40:08 +00:00
<primitive: #_basic_at_put>
self error: 'out of range'.
}
## -------------------------------------------------------
## -------------------------------------------------------
#method == anObject
{
"check if the receiver is identical to anObject.
this doesn't compare the contents"
2015-10-15 14:40:08 +00:00
<primitive: #_identical>
}
#method ~~ anObject
{
2015-10-15 14:40:08 +00:00
<primitive: #_not_identical>
^(self == anObject) not.
}
#method(#class) == anObject
{
"check if the receiver is identical to anObject.
this doesn't compare the contents"
2015-10-15 14:40:08 +00:00
<primitive: #_identical>
}
#method(#class) ~~ anObject
{
2015-10-15 14:40:08 +00:00
<primitive: #_not_identical>
^(self == anObject) not.
}
## TODO: add = and ~= for equality check.
## -------------------------------------------------------
## COMMON QUERIES
## -------------------------------------------------------
#method isNil
{
"^self == nil."
^false
}
#method notNil
{
"^(self == nil) not"
"^self ~= nil."
^true.
}
#method(#class) isNil
{
"^self == nil."
^false
}
#method(#class) notNil
{
"^(self == nil) not"
"^self ~= nil."
^true.
}
#method isError
{
^false
}
#method(#class) isError
{
^false
}
2016-05-07 01:37:44 +00:00
## -------------------------------------------------------
## -------------------------------------------------------
#method(#class) inheritsFrom: aClass
{
| c |
c := self superclass.
[c notNil] whileTrue: [
[ c == aClass ] ifTrue: [^true].
c := c superclass.
].
^false
}
#method(#class) isMemberOf: aClass
{
## a class object is an instance of Class
## but Class inherits from Apex. On the other hand,
## most of ordinary classes are under Object again under Apex.
## special consideration is required here.
^aClass == Class
}
#method(#class) isKindOf: aClass
{
^(self isMemberOf: aClass) or: [self inheritsFrom: aClass].
}
#method isMemberOf: aClass
{
^self class == aClass
}
#method isKindOf: aClass
{
^(self isMemberOf: aClass) or: [self class inheritsFrom: aClass].
}
## -------------------------------------------------------
## -------------------------------------------------------
"
#method(#class) respondsTo: selectorSymbol
{
TODO: find selectorSymbol in the class method dictionary...
}
#method respondsTo: selectorSymbol
{
TODO: find selectorSymbol in the method dictionary...
}
"
## -------------------------------------------------------
## -------------------------------------------------------
## method(#class) primitiveFailed
2016-05-02 13:59:28 +00:00
## {
## this method will be added after Exception class has been defined.
## }
#method primitiveFailed
{
self class primitiveFailed.
}
#method doesNotUnderstand: messageSymbol
{
self class doesNotUnderstand: messageSymbol
}
#method(#class) error: msgText
{
## TODO: implement this
## Error signal: msgText.
msgText dump.
}
#method error: aString
{
self class error: aString.
}
#method cannotInstantiate
{
self class cannotInstantiate
}
}
2016-05-13 15:10:34 +00:00
#class Object(Apex)
{
}
#class UndefinedObject(Apex)
{
#method isNil
{
^true
}
#method notNil
{
^false.
}
#method handleException: exception
{
('### EXCEPTION NOT HANDLED #### ' & exception class name & ' - ' & exception messageText) dump.
## TODO: debug the current process???? "
## TODO: ensure to execute ensure blocks as well....
####Processor activeProcess terminate.
}
2016-05-13 15:10:34 +00:00
}
(* --------------------
#pooldic Error
{
#NONE := error(0).
#GENERIC := error(1).
#
}
------------------- *)
#class Error(Apex)
{
(* ----------------------------
TODO: support constant declaration...
#const
{
#NONE := error(0).
#GENERIC := error(1).
}
-------------------------------- *)
#method isError
{
^true
}
#method asInteger
{
<primitive: #_error_as_integer>
}
#method asString
{
<primitive: #_error_as_string>
}
}