moo/moo/kernel/Apex.moo

402 lines
9.3 KiB
Smalltalk
Raw Normal View History

class Apex(nil)
{
}
class(#limited) Error(Apex)
{
}
pooldic Error.Code
{
ENOERR := error(0).
EGENERIC := error(1).
ENOIMPL := error(2).
ESYSERR := error(3).
EINTERN := error(4).
ESYSMEM := error(5).
EOOMEM := error(6).
EINVAL := error(7).
ENOENT := error(8).
EPERM := error(12).
ERANGE := error(20).
(* add more items... *)
}
(*pooldic Error.Code2
{
>> CAN I SUPPORT this kind of redefnition? as of now, it's not accepted because
>> Error.Code2.EGENERIC is not a literal. Should i treate pooldic members as a constant
>> and treat it as if it's a literal like? then even if the defined value changes,
>> the definition here won't see the change... what is the best way to tackle this issue?
EGENERIC := Error.Code2.EGENERIC.
}*)
extend Apex
{
## -------------------------------------------------------
## -------------------------------------------------------
method(#dual) dump
{
2015-10-15 14:40:08 +00:00
<primitive: #_dump>
}
## -------------------------------------------------------
## -------------------------------------------------------
method(#dual) yourself { ^self }
## -------------------------------------------------------
2017-04-26 15:31:07 +00:00
## INSTANTIATION & INITIALIZATION
## -------------------------------------------------------
method(#class,#primitive,#lenient) _basicNew.
method(#class,#primitive,#lenient) _basicNew: size.
method(#class,#primitive) basicNew.
method(#class,#primitive) basicNew: size.
(* the following definition is almost equivalent to the simpler definition
* method(#class,#primitive) basicNew: size.
* found above.
* in the following defintion, the primitiveFailed method is executed
* from the basicNew: context. but in the simpler definition, it is executed
* in the context of the caller of the basicNew:. the context of the basicNew:
* method is not even created
method(#class) basicNew: size
{
<primitive: #Apex__basicNew:>
self primitiveFailed(thisContext method)
}*)
method(#class) new
2015-10-15 14:40:08 +00:00
{
| x |
x := self basicNew.
x initialize. ## TODO: assess if it's good to call 'initialize' from new
2015-10-15 14:40:08 +00:00
^x.
}
method(#class) new: anInteger
2015-10-15 14:40:08 +00:00
{
| x |
x := self basicNew: anInteger.
x initialize. ## TODO: assess if it's good to call 'initialize' from new.
2015-10-15 14:40:08 +00:00
^x.
}
method initialize
2015-10-15 14:40:08 +00:00
{
(* a subclass may override this method *)
2015-10-15 14:40:08 +00:00
^self.
}
## -------------------------------------------------------
## -------------------------------------------------------
##method(#dual,#primitive,#lenient) _shallowCopy.
##method(#dual,#primitive) shallowCopy.
method(#dual) shallowCopy
{
<primitive: #_shallow_copy>
self primitiveFailed(thisContext method).
}
## -------------------------------------------------------
## -------------------------------------------------------
method(#dual,#primitive,#lenient) _basicSize.
method(#dual,#primitive) basicSize.
method(#dual) basicAt: index
{
| perr |
2015-10-15 14:40:08 +00:00
<primitive: #_basic_at>
## TODO: create a common method that translate a primitive error to some standard exceptions of primitive failure.
perr := thisProcess primError.
if (perr == Error.Code.ERANGE) { self index: index outOfRange: (self basicSize) }
elsif (perr == Error.Code.EPERM) { self messageProhibited: #basicAt }
else { self primitiveFailed }
}
method(#dual) basicAt: index put: anObject
{
| perr |
2015-10-15 14:40:08 +00:00
<primitive: #_basic_at_put>
perr := thisProcess primError.
if (perr == Error.Code.ERANGE) { self index: index outOfRange: (self basicSize) }
elsif (perr == Error.Code.EPERM) { self messageProhibited: #basicAt:put: }
else { self primitiveFailed }
}
(* ------------------------------------------------------------------
* FINALIZATION SUPPORT
* ------------------------------------------------------------------ *)
method(#dual,#primitive) addToBeFinalized.
##method(#dual,#primitive) removeToBeFinalized.
(* ------------------------------------------------------------------
* HASHING
* ------------------------------------------------------------------ *)
2017-04-26 15:31:07 +00:00
method(#dual) hash
{
<primitive: #_hash>
self subclassResponsibility: #hash
}
(* ------------------------------------------------------------------
* IDENTITY TEST
* ------------------------------------------------------------------ *)
2017-04-26 15:31:07 +00:00
method(#dual) == 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>
self primitiveFailed.
}
2017-04-26 15:31:07 +00:00
method(#dual) ~~ anObject
{
2015-10-15 14:40:08 +00:00
<primitive: #_not_identical>
^(self == anObject) not.
}
(* ------------------------------------------------------------------
* EQUALITY TEST
* ------------------------------------------------------------------ *)
2017-04-26 15:31:07 +00:00
method(#dual) = anObject
{
<primitive: #_equal>
self subclassResponsibility: #=
}
2017-04-26 15:31:07 +00:00
method(#dual) ~= anObject
{
<primitive: #_not_equal>
^(self = anObject) not.
}
2017-04-26 15:31:07 +00:00
(* ------------------------------------------------------------------
* COMMON QUERIES
* ------------------------------------------------------------------ *)
method(#dual,#primitive) class.
2017-04-26 15:31:07 +00:00
method(#dual) isNil
{
## ^self == nil.
^false
}
2017-04-26 15:31:07 +00:00
method(#dual) notNil
{
## ^(self == nil) not
## ^self ~= nil.
^true.
}
2017-04-26 15:31:07 +00:00
method(#dual) isError
{
^false
}
2017-04-26 15:31:07 +00:00
method(#dual) notError
{
^true
}
2016-05-07 01:37:44 +00:00
## -------------------------------------------------------
## -------------------------------------------------------
method(#class) inheritsFrom: aClass
2016-05-07 01:37:44 +00:00
{
| c |
c := self superclass.
(* [c notNil] whileTrue: [
2016-05-07 01:37:44 +00:00
[ c == aClass ] ifTrue: [^true].
c := c superclass.
]. *)
while (c notNil)
{
if (c == aClass) { ^true }.
c := c superclass.
}.
2016-05-07 01:37:44 +00:00
^false
}
method(#class) isMemberOf: aClass
2016-05-07 01:37:44 +00:00
{
(* 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. *)
2016-05-07 01:37:44 +00:00
^aClass == Class
}
method isMemberOf: aClass
2016-05-07 01:37:44 +00:00
{
^self class == aClass
}
2017-09-30 04:53:00 +00:00
method(#dual) isKindOf: aClass
2016-05-07 01:37:44 +00:00
{
<primitive: #_is_kind_of>
2016-05-07 01:37:44 +00:00
^(self isMemberOf: aClass) or: [self class inheritsFrom: aClass].
}
## -------------------------------------------------------
## -------------------------------------------------------
2017-04-26 15:31:07 +00:00
method(#dual) respondsTo: selector
{
<primitive: #_responds_to>
self primitiveFailed
}
## -------------------------------------------------------
## -------------------------------------------------------
2017-04-26 15:31:07 +00:00
method(#dual,#variadic) perform(selector)
{
<primitive: #_perform>
self primitiveFailed
}
2017-04-26 15:31:07 +00:00
method(#dual) perform: selector
{
<primitive: #_perform>
self primitiveFailed
}
2017-04-26 15:31:07 +00:00
method(#dual) perform: selector with: arg1
{
<primitive: #_perform>
self primitiveFailed
}
2017-04-26 15:31:07 +00:00
method(#dual) perform: selector with: arg1 with: arg2
{
<primitive: #_perform>
self primitiveFailed
}
2017-04-26 15:31:07 +00:00
method(#dual) perform: selector with: arg1 with: arg2 with: arg3
{
<primitive: #_perform>
self primitiveFailed
}
(* ------------------------------------------------------------------
* COMMON ERROR/EXCEPTION HANDLERS
* ------------------------------------------------------------------ *)
2017-04-26 15:31:07 +00:00
method(#dual) error: msgText
{
2017-01-09 09:54:49 +00:00
(* TODO: implement this
Error signal: msgText. *)
msgText dump.
}
}
2016-05-13 15:10:34 +00:00
class Object(Apex)
2016-05-13 15:10:34 +00:00
{
}
class UndefinedObject(Apex)
2016-05-13 15:10:34 +00:00
{
method isNil
2016-05-13 15:10:34 +00:00
{
^true
}
method notNil
2016-05-13 15:10:34 +00:00
{
^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
}
2017-03-08 14:48:12 +00:00
extend Error
{
(* ----------------------------
2017-03-08 14:48:12 +00:00
TODO: support nested pooldic/constant declaration...
2017-03-08 14:48:12 +00:00
pooldic/const
{
NONE := error(0).
GENERIC := error(1).
}
-------------------------------- *)
method isError
{
^true
}
method notError
{
^false
}
method(#primitive) asInteger.
method(#primitive) asCharacter.
method(#primitive) asString.
method signal
{
| exctx exblk retval actpos ctx |
exctx := (thisContext sender) findExceptionContext.
while (exctx notNil)
{
exblk := exctx findExceptionHandlerFor: (self class).
if (exblk notNil and: [actpos := exctx basicSize - 1. exctx basicAt: actpos])
{
exctx basicAt: actpos put: false.
[ retval := exblk value: self ] ensure: [ exctx basicAt: actpos put: true ].
thisContext unwindTo: (exctx sender) return: nil.
System return: retval to: (exctx sender).
}.
exctx := (exctx sender) findExceptionContext.
}.
## -----------------------------------------------------------------
## FATAL ERROR - no exception handler.
## -----------------------------------------------------------------
##thisContext unwindTo: nil return: nil.
##thisContext unwindTo: (Processor activeProcess initialContext) return: nil.
## TOOD: IMPROVE THIS EXPERIMENTAL BACKTRACE...
System logNl: '== BACKTRACE =='.
ctx := thisContext.
while (ctx notNil)
{
if (ctx class == MethodContext) { System logNl: (' ' & ctx method owner name & '>>' & ctx method name) }.
## TODO: include blockcontext???
ctx := ctx sender.
}.
System logNl: '== END OF BACKTRACE =='.
thisContext unwindTo: (thisProcess initialContext) return: nil.
('### ERROR NOT HANDLED #### ' & self class name & ' - ' & self asString) dump.
## TODO: debug the current process???? "
##Processor activeProcess terminate.
thisProcess terminate.
}
}