2016-05-17 15:12:27 +00:00
|
|
|
#class Exception(Apex)
|
|
|
|
{
|
2016-06-22 13:43:49 +00:00
|
|
|
#dcl signalContext handlerContext messageText.
|
2016-05-17 15:12:27 +00:00
|
|
|
|
|
|
|
## To be extended below.
|
|
|
|
}
|
|
|
|
|
2015-10-15 14:40:08 +00:00
|
|
|
#class(#pointer) Context(Apex)
|
|
|
|
{
|
2016-06-22 03:23:14 +00:00
|
|
|
#dcl sender ip sp ntmprs.
|
2016-03-28 13:25:36 +00:00
|
|
|
|
|
|
|
#method sender
|
|
|
|
{
|
|
|
|
^self.sender
|
|
|
|
}
|
2016-04-29 16:40:25 +00:00
|
|
|
|
2016-05-03 10:10:28 +00:00
|
|
|
#method isExceptionHandlerContext
|
2016-04-29 16:40:25 +00:00
|
|
|
{
|
2016-05-03 10:10:28 +00:00
|
|
|
^false
|
2016-04-29 16:40:25 +00:00
|
|
|
}
|
2016-06-20 15:42:51 +00:00
|
|
|
|
2016-06-22 03:23:14 +00:00
|
|
|
#method hasEnsureBlock
|
|
|
|
{
|
|
|
|
^false
|
|
|
|
}
|
|
|
|
|
2016-06-20 15:42:51 +00:00
|
|
|
#method ensureBlock
|
|
|
|
{
|
2016-06-22 03:23:14 +00:00
|
|
|
^nil
|
2016-06-20 15:42:51 +00:00
|
|
|
}
|
2016-06-22 13:43:49 +00:00
|
|
|
|
|
|
|
#method findExceptionHandlerContext
|
|
|
|
{
|
|
|
|
| ctx |
|
|
|
|
ctx := self.
|
|
|
|
[ ctx isExceptionHandlerContext ifTrue: [^ctx].
|
|
|
|
ctx := ctx sender.
|
|
|
|
ctx isNil ] whileFalse.
|
|
|
|
^nil
|
|
|
|
}
|
|
|
|
|
|
|
|
#method findExceptionHandlerBlock
|
|
|
|
{
|
|
|
|
^nil
|
|
|
|
}
|
|
|
|
|
|
|
|
#method handleException: exception
|
|
|
|
{
|
|
|
|
| excblk retval posact |
|
|
|
|
|
|
|
|
## position of the temporary variable 'active' in MethodContext>>on:do.
|
|
|
|
## for this code to work, it must be the last temporary variable in the method.
|
|
|
|
posact := (self basicSize) - 1.
|
|
|
|
|
|
|
|
excblk := self findExceptionHandlerBlock: (exception class).
|
|
|
|
(excblk isNil or: [(self basicAt: posact) not]) ifTrue: [
|
|
|
|
^self.sender findExceptionHandlerContext handleException: exception
|
|
|
|
].
|
|
|
|
|
|
|
|
exception handlerContext: self.
|
|
|
|
|
|
|
|
self basicAt: posact put: false.
|
|
|
|
[ retval := excblk value: exception ] ensure: [
|
|
|
|
self basicAt: posact put: true
|
|
|
|
].
|
|
|
|
|
|
|
|
##self return: retval.
|
|
|
|
}
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#class(#pointer) MethodContext(Context)
|
|
|
|
{
|
2016-03-28 13:25:36 +00:00
|
|
|
#dcl method receiver home origin.
|
2015-10-15 14:40:08 +00:00
|
|
|
|
|
|
|
#method pc
|
|
|
|
{
|
2016-05-03 10:10:28 +00:00
|
|
|
^self.ip
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
|
2016-05-12 05:53:35 +00:00
|
|
|
#method pcplus1
|
|
|
|
{
|
|
|
|
^self.ip + 1
|
|
|
|
}
|
|
|
|
|
2016-05-18 11:10:54 +00:00
|
|
|
#method goto: anInteger
|
|
|
|
{
|
|
|
|
<primitive: #_context_goto>
|
|
|
|
self primitiveFailed. ## TODO: need to make this a hard failure?
|
|
|
|
}
|
|
|
|
|
2015-10-15 14:40:08 +00:00
|
|
|
#method pc: anInteger
|
|
|
|
{
|
2016-05-03 10:10:28 +00:00
|
|
|
self.ip := anInteger.
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#method sp
|
|
|
|
{
|
2016-05-03 10:10:28 +00:00
|
|
|
^self.sp.
|
2015-10-15 14:40:08 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
#method sp: anInteger
|
|
|
|
{
|
2016-05-03 10:10:28 +00:00
|
|
|
self.sp := anInteger.
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#method pc: aPC sp: aSP
|
|
|
|
{
|
2016-05-03 10:10:28 +00:00
|
|
|
self.ip := aPC.
|
|
|
|
self.sp := aSP.
|
2015-10-15 14:40:08 +00:00
|
|
|
##sp := sp - 1.
|
|
|
|
}
|
2016-03-28 13:25:36 +00:00
|
|
|
|
2016-05-03 10:10:28 +00:00
|
|
|
#method method
|
|
|
|
{
|
|
|
|
^self.method
|
|
|
|
}
|
2016-04-29 16:40:25 +00:00
|
|
|
|
2016-05-03 10:10:28 +00:00
|
|
|
#method isExceptionHandlerContext
|
2016-03-28 13:25:36 +00:00
|
|
|
{
|
2016-04-29 16:40:25 +00:00
|
|
|
## 10 - STIX_METHOD_PREAMBLE_EXCEPTION in VM.
|
2016-06-22 03:23:14 +00:00
|
|
|
^self.method preambleCode == 10.
|
|
|
|
}
|
|
|
|
|
|
|
|
#method hasEnsureBlock
|
|
|
|
{
|
|
|
|
## 10 - STIX_METHOD_PREAMBLE_ENSURE in VM.
|
|
|
|
^self.method preambleCode == 11
|
|
|
|
}
|
|
|
|
|
|
|
|
#method ensureBlock
|
|
|
|
{
|
|
|
|
## TODO: 9 is the number of named instance variables of a context.
|
|
|
|
## TODO: change 9 to a constant when stix is enhanced to support constant definition
|
|
|
|
|
|
|
|
(self.method preambleCode == 11) ifFalse: [^nil].
|
|
|
|
^self basicAt: 8.
|
2016-04-29 16:40:25 +00:00
|
|
|
}
|
|
|
|
|
2016-05-07 01:37:44 +00:00
|
|
|
#method findExceptionHandlerBlock: anExceptionClass
|
2016-04-29 16:40:25 +00:00
|
|
|
{
|
2016-06-18 00:12:27 +00:00
|
|
|
## find an exception handler block for a given exception class.
|
|
|
|
##
|
2016-05-03 10:10:28 +00:00
|
|
|
## for this to work, self must be an exception handler context.
|
|
|
|
## For a single on:do: call,
|
|
|
|
## self class specNumInstVars must return 8.
|
|
|
|
## basicAt: 8 must be the on: argument.
|
|
|
|
## basicAt: 9 must be the do: argument
|
2016-04-29 16:40:25 +00:00
|
|
|
|
2016-05-03 10:10:28 +00:00
|
|
|
(self isExceptionHandlerContext) ifTrue: [
|
|
|
|
| bound exc |
|
|
|
|
## NOTE: if on:do: has a temporary varible, bound must be adjusted to reflect it.
|
|
|
|
bound := self basicSize - 1.
|
2016-06-22 03:23:14 +00:00
|
|
|
## TODO: change 8 to a constant when stix is enhanced to support constant definition
|
2016-06-18 00:12:27 +00:00
|
|
|
## or calcuate the minimum size using the class information.
|
2016-06-22 03:23:14 +00:00
|
|
|
8 to: bound by: 2 do: [ :i |
|
2016-05-03 10:10:28 +00:00
|
|
|
exc := self basicAt: i.
|
2016-05-07 01:37:44 +00:00
|
|
|
((anExceptionClass == exc) or: [anExceptionClass inheritsFrom: exc]) ifTrue: [^self basicAt: (i + 1)].
|
2016-05-03 10:10:28 +00:00
|
|
|
]
|
|
|
|
].
|
|
|
|
^nil.
|
2016-03-28 13:25:36 +00:00
|
|
|
}
|
2016-06-22 03:23:14 +00:00
|
|
|
|
|
|
|
#method unwindTo: aContext return: anObject
|
|
|
|
{
|
|
|
|
## private: called by VM upon unwinding
|
|
|
|
| ctx eb |
|
|
|
|
ctx := self.
|
|
|
|
[ctx ~~ aContext] whileTrue: [
|
|
|
|
eb := ctx ensureBlock.
|
|
|
|
(eb notNil) ifTrue: [eb value].
|
|
|
|
ctx := ctx sender.
|
|
|
|
].
|
|
|
|
eb := ctx ensureBlock.
|
|
|
|
(eb notNil) ifTrue: [eb value].
|
|
|
|
|
|
|
|
^anObject
|
|
|
|
}
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#class(#pointer) BlockContext(Context)
|
|
|
|
{
|
2016-03-28 13:25:36 +00:00
|
|
|
#dcl nargs source home origin.
|
2015-10-15 14:40:08 +00:00
|
|
|
|
2016-06-22 03:23:14 +00:00
|
|
|
#method fork
|
2015-10-15 14:40:08 +00:00
|
|
|
{
|
|
|
|
"crate a new process in the runnable state"
|
2015-10-18 15:06:17 +00:00
|
|
|
^self newProcess resume.
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#method newProcess
|
|
|
|
{
|
|
|
|
"create a new process in the suspended state"
|
2015-10-18 15:06:17 +00:00
|
|
|
<primitive: #_block_new_process>
|
|
|
|
self primitiveFailed.
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#method newProcessWith: anArray
|
|
|
|
{
|
|
|
|
"create a new process in the suspended state passing the elements
|
|
|
|
of anArray as block arguments"
|
2015-10-22 02:47:25 +00:00
|
|
|
<primitive: #_block_new_process>
|
|
|
|
self primitiveFailed.
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#method value
|
|
|
|
{
|
|
|
|
<primitive: #_block_value>
|
2016-01-29 04:04:39 +00:00
|
|
|
self primitiveFailed.
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
#method value: a
|
|
|
|
{
|
|
|
|
<primitive: #_block_value>
|
2016-01-29 04:04:39 +00:00
|
|
|
self primitiveFailed.
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
#method value: a value: b
|
|
|
|
{
|
|
|
|
<primitive: #_block_value>
|
2016-01-29 04:04:39 +00:00
|
|
|
self primitiveFailed.
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
#method value: a value: b value: c
|
|
|
|
{
|
|
|
|
<primitive: #_block_value>
|
2016-01-29 04:04:39 +00:00
|
|
|
self primitiveFailed.
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
2016-05-12 05:53:35 +00:00
|
|
|
#method value: a value: b value: c value: d
|
|
|
|
{
|
|
|
|
<primitive: #_block_value>
|
|
|
|
self primitiveFailed.
|
|
|
|
}
|
|
|
|
#method value: a value: b value: c value: d value: e
|
|
|
|
{
|
|
|
|
<primitive: #_block_value>
|
|
|
|
self primitiveFailed.
|
|
|
|
}
|
2015-10-15 14:40:08 +00:00
|
|
|
|
|
|
|
#method ifTrue: aBlock
|
|
|
|
{
|
|
|
|
^(self value) ifTrue: aBlock.
|
|
|
|
}
|
|
|
|
|
|
|
|
#method ifFalse: aBlock
|
|
|
|
{
|
|
|
|
^(self value) ifFalse: aBlock.
|
|
|
|
}
|
|
|
|
|
|
|
|
#method ifTrue: trueBlock ifFalse: falseBlock
|
|
|
|
{
|
|
|
|
^(self value) ifTrue: trueBlock ifFalse: falseBlock
|
|
|
|
}
|
|
|
|
|
|
|
|
#method whileTrue: aBlock
|
|
|
|
{
|
2016-05-12 05:53:35 +00:00
|
|
|
## --------------------------------------------------
|
|
|
|
## Naive implementation
|
|
|
|
## --------------------------------------------------
|
|
|
|
## (self value) ifFalse: [^nil].
|
|
|
|
## aBlock value.
|
|
|
|
## self whileTrue: aBlock.
|
|
|
|
## --------------------------------------------------
|
|
|
|
|
|
|
|
## --------------------------------------------------
|
|
|
|
## If VM is built without STIX_USE_PROCSTK
|
|
|
|
## --------------------------------------------------
|
|
|
|
## | pc sp |
|
|
|
|
## sp := thisContext sp.
|
|
|
|
## pc := thisContext pcplus1.
|
|
|
|
## self value ifFalse: [ ^nil "^self" ].
|
|
|
|
## aBlock value.
|
|
|
|
## thisContext pc: pc sp: sp.
|
|
|
|
## --------------------------------------------------
|
|
|
|
|
|
|
|
## --------------------------------------------------
|
|
|
|
## If VM is built with STIX_USE_PROCSTK
|
|
|
|
## --------------------------------------------------
|
2016-05-18 11:10:54 +00:00
|
|
|
| pc sp |
|
|
|
|
|
2016-05-12 05:53:35 +00:00
|
|
|
pc := thisContext pcplus1.
|
2016-05-18 11:10:54 +00:00
|
|
|
(self value) ifFalse: [ ^nil ].
|
2015-10-15 14:40:08 +00:00
|
|
|
aBlock value.
|
2016-05-18 11:10:54 +00:00
|
|
|
|
|
|
|
## the pc: method leaves thisContext and pc in the stack after
|
|
|
|
## having changes the instruction poointer.
|
|
|
|
## as a result, the stack keeps growing. the goto method
|
|
|
|
## clears thisContext and pc off the stack unlike normal methods.
|
|
|
|
##thisContext pc: pc.
|
|
|
|
thisContext goto: pc.
|
2016-05-12 05:53:35 +00:00
|
|
|
## --------------------------------------------------
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
|
2016-03-28 13:25:36 +00:00
|
|
|
#method whileTrue
|
|
|
|
{
|
2016-05-12 05:53:35 +00:00
|
|
|
## (self value) ifFalse: [^nil].
|
|
|
|
## self whileTrue.
|
|
|
|
|
|
|
|
## --------------------------------------------------
|
|
|
|
## If VM is built with STIX_USE_PROCSTK
|
|
|
|
## --------------------------------------------------
|
|
|
|
| pc |
|
|
|
|
pc := thisContext pcplus1.
|
2016-05-18 11:10:54 +00:00
|
|
|
(self value) ifFalse: [ ^nil ].
|
|
|
|
thisContext goto: pc.
|
2016-05-12 05:53:35 +00:00
|
|
|
## --------------------------------------------------
|
2016-03-28 13:25:36 +00:00
|
|
|
}
|
|
|
|
|
2016-03-16 10:13:03 +00:00
|
|
|
#method whileFalse: aBlock
|
|
|
|
{
|
2016-05-12 05:53:35 +00:00
|
|
|
## --------------------------------------------------
|
|
|
|
## Naive implementation
|
|
|
|
## --------------------------------------------------
|
|
|
|
## (self value) ifTrue: [^nil].
|
|
|
|
## aBlock value.
|
|
|
|
## self whileFalse: aBlock.
|
|
|
|
## --------------------------------------------------
|
|
|
|
|
|
|
|
## --------------------------------------------------
|
|
|
|
## If VM is built without STIX_USE_PROCSTK
|
|
|
|
## --------------------------------------------------
|
|
|
|
## | pc sp |
|
|
|
|
## sp := thisContext sp.
|
|
|
|
## pc := thisContext pcplus1.
|
|
|
|
## self value ifTrue: [ ^nil "^self" ].
|
|
|
|
## aBlock value.
|
|
|
|
## thisContext pc: pc sp: sp.
|
|
|
|
## --------------------------------------------------
|
|
|
|
|
|
|
|
## --------------------------------------------------
|
|
|
|
## If VM is built with STIX_USE_PROCSTK
|
|
|
|
## --------------------------------------------------
|
|
|
|
## The assignment to 'pc' uses the POP_INTO_TEMPVAR_1.
|
|
|
|
## It pops a value off the stack top, stores it to the second
|
|
|
|
## temporary variable(aBlock is the first temporary variable).
|
|
|
|
## It is a single byte instruction. 'pc' returned by
|
|
|
|
## 'thisContext pcplus1'' should point to the instruction after
|
|
|
|
## the POP_INTO_TEMPVAR_0 instruction.
|
|
|
|
##
|
|
|
|
## It would need the increment of 2 if the pair of
|
|
|
|
## STORE_INTO_TEMPVAR_1 and POP_STACKTOP were used.
|
|
|
|
## This implementation is subject to the instructions chosen
|
|
|
|
## by the compiler.
|
|
|
|
##
|
|
|
|
| pc |
|
|
|
|
pc := thisContext pcplus1.
|
|
|
|
(self value) ifTrue: [ ^nil "^self" ].
|
|
|
|
aBlock value.
|
2016-05-18 11:10:54 +00:00
|
|
|
thisContext goto: pc.
|
2016-05-12 05:53:35 +00:00
|
|
|
## --------------------------------------------------
|
2016-03-16 10:13:03 +00:00
|
|
|
}
|
|
|
|
|
2016-03-28 13:25:36 +00:00
|
|
|
#method whileFalse
|
|
|
|
{
|
2016-05-12 05:53:35 +00:00
|
|
|
## (self value) ifTrue: [^nil].
|
|
|
|
## self whileFalse.
|
|
|
|
|
|
|
|
## --------------------------------------------------
|
|
|
|
## If VM is built with STIX_USE_PROCSTK
|
|
|
|
## --------------------------------------------------
|
|
|
|
| pc |
|
|
|
|
pc := thisContext pcplus1.
|
|
|
|
(self value) ifTrue: [ ^nil "^self" ].
|
2016-05-18 11:10:54 +00:00
|
|
|
thisContext goto: pc.
|
2016-05-12 05:53:35 +00:00
|
|
|
## --------------------------------------------------
|
2016-03-28 13:25:36 +00:00
|
|
|
}
|
|
|
|
|
2015-10-15 14:40:08 +00:00
|
|
|
#method pc
|
|
|
|
{
|
2016-05-12 05:53:35 +00:00
|
|
|
^self.ip
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#method pc: anInteger
|
|
|
|
{
|
2016-05-12 05:53:35 +00:00
|
|
|
self.ip := anInteger.
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#method sp
|
|
|
|
{
|
2016-05-12 05:53:35 +00:00
|
|
|
^self.sp
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#method sp: anInteger
|
|
|
|
{
|
2016-05-12 05:53:35 +00:00
|
|
|
self.sp := anInteger.
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#method restart
|
|
|
|
{
|
|
|
|
ip := source pc.
|
|
|
|
}
|
|
|
|
|
2016-06-20 15:42:51 +00:00
|
|
|
|
2016-03-26 06:39:56 +00:00
|
|
|
#method on: anException do: anExceptionBlock
|
2015-10-15 14:40:08 +00:00
|
|
|
{
|
2016-06-22 13:43:49 +00:00
|
|
|
| exception_active |
|
2016-03-28 13:25:36 +00:00
|
|
|
<exception>
|
|
|
|
|
2016-06-22 13:43:49 +00:00
|
|
|
"thisContext isExceptionHandlerContext dump.
|
2016-04-29 16:40:25 +00:00
|
|
|
(thisContext basicSize) dump.
|
|
|
|
(thisContext basicAt: 8) dump. ## this should be anException
|
|
|
|
(thisContext basicAt: 9) dump. ## this should be anExceptionBlock
|
|
|
|
(thisContext basicAt: 10) dump. ## this should be handlerActive
|
2016-05-02 13:50:42 +00:00
|
|
|
'on:do: ABOUT TO EVALUE THE RECEIVER BLOCK' dump."
|
2016-03-28 13:25:36 +00:00
|
|
|
|
2016-06-22 13:43:49 +00:00
|
|
|
exception_active := true.
|
2016-03-28 13:25:36 +00:00
|
|
|
^self value.
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
|
2016-05-03 10:10:28 +00:00
|
|
|
#method on: exc1 do: blk1 on: exc2 do: blk2
|
|
|
|
{
|
2016-06-22 13:43:49 +00:00
|
|
|
| active |
|
2016-05-03 10:10:28 +00:00
|
|
|
<exception>
|
2016-06-22 13:43:49 +00:00
|
|
|
active := true.
|
2016-05-03 10:10:28 +00:00
|
|
|
^self value.
|
|
|
|
}
|
|
|
|
|
2015-10-15 14:40:08 +00:00
|
|
|
#method ensure: aBlock
|
|
|
|
{
|
2016-06-13 15:52:09 +00:00
|
|
|
| v |
|
2016-06-22 03:23:14 +00:00
|
|
|
<ensure>
|
|
|
|
v := self value.
|
2016-05-17 15:12:27 +00:00
|
|
|
aBlock value.
|
2016-06-13 15:52:09 +00:00
|
|
|
^v
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#method ifCurtailed: aBlock
|
|
|
|
{
|
2016-06-22 03:23:14 +00:00
|
|
|
| v ok |
|
2016-06-20 15:42:51 +00:00
|
|
|
|
2016-06-22 03:23:14 +00:00
|
|
|
ok := false.
|
|
|
|
[ v := self value. ok := true. ] ensure: [ ok ifFalse: [aBlock value] ].
|
|
|
|
^v.
|
2016-06-20 15:42:51 +00:00
|
|
|
}
|
|
|
|
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
|
2016-06-22 03:23:14 +00:00
|
|
|
##
|
2016-05-03 10:10:28 +00:00
|
|
|
## TODO: is it better to inherit from Object???
|
|
|
|
## or treat Exception specially like UndefinedObject or Class???
|
2016-06-22 03:23:14 +00:00
|
|
|
##
|
2016-05-17 15:12:27 +00:00
|
|
|
#extend Exception
|
2016-03-28 13:25:36 +00:00
|
|
|
{
|
|
|
|
#method(#class) signal
|
|
|
|
{
|
|
|
|
self new signal
|
|
|
|
}
|
|
|
|
|
|
|
|
#method(#class) signal: text
|
|
|
|
{
|
|
|
|
self new signal: text
|
|
|
|
}
|
|
|
|
|
2016-06-22 13:43:49 +00:00
|
|
|
#method handlerContext: context
|
|
|
|
{
|
|
|
|
self.handlerContext := context.
|
|
|
|
}
|
|
|
|
|
2016-05-02 13:50:42 +00:00
|
|
|
#method messageText
|
|
|
|
{
|
|
|
|
^self.messageText
|
|
|
|
}
|
|
|
|
|
2016-03-28 13:25:36 +00:00
|
|
|
#method signal
|
|
|
|
{
|
|
|
|
self.signalContext := thisContext.
|
2016-06-22 13:43:49 +00:00
|
|
|
((thisContext sender) findExceptionHandlerContext) handleException: self.
|
2016-03-28 13:25:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#method signal: text
|
|
|
|
{
|
|
|
|
self.messageText := text.
|
|
|
|
self signal.
|
|
|
|
}
|
|
|
|
|
2016-04-30 05:56:35 +00:00
|
|
|
#method pass
|
|
|
|
{
|
|
|
|
## pass the exception to the outer context
|
2016-06-22 13:43:49 +00:00
|
|
|
((self.handlerContext sender) findExceptionHandlerContext) handleException: self.
|
2016-05-01 13:49:36 +00:00
|
|
|
}
|
|
|
|
|
2016-06-22 13:43:49 +00:00
|
|
|
"
|
|
|
|
TODO: implement these methods....
|
2016-05-01 13:49:36 +00:00
|
|
|
#method return: value
|
|
|
|
{
|
2016-05-03 10:10:28 +00:00
|
|
|
self.handlerContext notNil ifTrue: [
|
2016-05-01 13:49:36 +00:00
|
|
|
Processor return: value to: (self.handlerContext sender)
|
|
|
|
]
|
2016-04-30 05:56:35 +00:00
|
|
|
}
|
|
|
|
|
2016-05-01 13:49:36 +00:00
|
|
|
#method retry
|
|
|
|
{
|
2016-05-02 13:50:42 +00:00
|
|
|
## TODO: verify if return:to: causes unnecessary stack growth.
|
2016-05-03 10:10:28 +00:00
|
|
|
self.handlerContext notNil
|
|
|
|
ifTrue: [
|
|
|
|
## TODO: should i reset self.handlerContext and self.signalContext to nil?
|
|
|
|
self.handlerContext pc: 0.
|
|
|
|
Processor return: self to: self.handlerContext.
|
|
|
|
##Processor forceContext: self.handlerContext.
|
|
|
|
]
|
2016-05-01 13:49:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#method resume
|
|
|
|
{
|
2016-05-02 13:50:42 +00:00
|
|
|
## TODO: verify if return:to: causes unnecessary stack growth.
|
2016-05-01 13:49:36 +00:00
|
|
|
## is this correct???
|
2016-05-03 10:10:28 +00:00
|
|
|
self.signalContext notNil
|
|
|
|
ifTrue: [
|
|
|
|
## TODO: should i reset self.handlerContext and self.signalContext to nil?
|
|
|
|
Processor return: self to: (self.signalContext sender).
|
|
|
|
]
|
2016-05-01 13:49:36 +00:00
|
|
|
}
|
2016-06-22 13:43:49 +00:00
|
|
|
"
|
2016-05-01 13:49:36 +00:00
|
|
|
|
2016-03-28 13:25:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#class NoSuchMessageException(Exception)
|
|
|
|
{
|
|
|
|
}
|
2016-05-02 13:59:28 +00:00
|
|
|
|
2016-05-03 10:10:28 +00:00
|
|
|
#class PrimitiveFailureException(Exception)
|
|
|
|
{
|
|
|
|
}
|
2016-05-02 13:59:28 +00:00
|
|
|
|
|
|
|
#extend Apex
|
|
|
|
{
|
|
|
|
#method(#class) primitiveFailed
|
|
|
|
{
|
|
|
|
## TODO: implement this
|
2016-05-03 10:10:28 +00:00
|
|
|
## experimental backtrace...
|
|
|
|
| ctx |
|
|
|
|
ctx := thisContext.
|
|
|
|
[ctx notNil] whileTrue: [
|
|
|
|
(ctx class == MethodContext)
|
2016-05-07 01:37:44 +00:00
|
|
|
ifTrue: [ (ctx method owner name, '>>', ctx method name) dump ].
|
2016-05-03 10:10:28 +00:00
|
|
|
## TODO: include blockcontext???
|
|
|
|
ctx := ctx sender.
|
|
|
|
].
|
2016-05-17 15:12:27 +00:00
|
|
|
'------ END OF BACKTRACE -----------' dump.
|
2016-05-03 10:10:28 +00:00
|
|
|
PrimitiveFailureException signal: 'PRIMITIVE FAILED'.
|
|
|
|
}
|
2016-05-07 01:37:44 +00:00
|
|
|
|
2016-05-03 10:10:28 +00:00
|
|
|
#method(#class) cannotInstantiate
|
|
|
|
{
|
|
|
|
Exception signal: 'Cannot instantiate'.
|
2016-05-02 13:59:28 +00:00
|
|
|
}
|
2016-05-17 15:12:27 +00:00
|
|
|
|
|
|
|
#method(#class) doesNotUnderstand: messageSymbol
|
|
|
|
{
|
|
|
|
## TODO: implement this properly
|
|
|
|
NoSuchMessageException signal: (messageSymbol, ' not understood by ', (self name)).
|
|
|
|
}
|
2016-05-02 13:59:28 +00:00
|
|
|
}
|