2015-10-15 14:40:08 +00:00
|
|
|
#class(#pointer) Context(Apex)
|
|
|
|
{
|
2016-03-28 13:25:36 +00:00
|
|
|
#dcl sender ip sp ntmprs.
|
|
|
|
|
|
|
|
#method sender
|
|
|
|
{
|
|
|
|
^self.sender
|
|
|
|
}
|
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
|
|
|
|
{
|
|
|
|
^ip
|
|
|
|
}
|
|
|
|
|
|
|
|
#method pc: anInteger
|
|
|
|
{
|
|
|
|
ip := anInteger.
|
|
|
|
"sp := sp - 1." "whould this always work??? "
|
|
|
|
}
|
|
|
|
|
|
|
|
#method sp
|
|
|
|
{
|
|
|
|
^sp.
|
|
|
|
|
|
|
|
}
|
|
|
|
#method sp: anInteger
|
|
|
|
{
|
|
|
|
sp := anInteger.
|
|
|
|
}
|
|
|
|
|
|
|
|
#method pc: aPC sp: aSP
|
|
|
|
{
|
|
|
|
ip := aPC.
|
|
|
|
sp := aSP.
|
|
|
|
##sp := sp - 1.
|
|
|
|
}
|
2016-03-28 13:25:36 +00:00
|
|
|
|
|
|
|
#method isHandlerContext
|
|
|
|
{
|
|
|
|
^self.method primitive == 512
|
|
|
|
}
|
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
|
|
|
|
|
|
|
#method fork
|
|
|
|
{
|
|
|
|
"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
|
|
|
}
|
|
|
|
|
|
|
|
#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
|
|
|
|
{
|
|
|
|
## http://stackoverflow.com/questions/2500483/is-there-a-way-in-a-message-only-language-to-define-a-whiletrue-message-without
|
|
|
|
|
|
|
|
## ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
## ^(self value) ifTrue: [aBlock value. self whileTrue: aBlock].
|
|
|
|
|
|
|
|
## ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
## less block context before whileTrue: is recursively sent.
|
|
|
|
## whileTrue: is sent in a method context.
|
2016-03-16 02:27:18 +00:00
|
|
|
(self value) ifFalse: [^nil].
|
|
|
|
aBlock value.
|
|
|
|
self whileTrue: aBlock.
|
2015-10-15 14:40:08 +00:00
|
|
|
|
|
|
|
## ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
## ----------------------------------------------------------------------------
|
2016-03-16 02:27:18 +00:00
|
|
|
" | pc sp xsp |
|
2015-10-15 14:40:08 +00:00
|
|
|
|
|
|
|
sp := thisContext sp.
|
2016-03-16 02:27:18 +00:00
|
|
|
sp := sp - 1. ## decrement sp by 1 becuase thisContext pushed above affects the sp method
|
2015-10-15 14:40:08 +00:00
|
|
|
pc := thisContext pc.
|
|
|
|
self value ifFalse: [ ^nil "^self" ].
|
|
|
|
aBlock value.
|
|
|
|
##thisContext pc: pc - 3 sp: sp.
|
|
|
|
##thisContext pc: pc + 2 sp: sp.
|
|
|
|
thisContext pc: pc + 1 sp: sp.
|
|
|
|
## this +2 or - 3 above is dependent on the byte code instruction size used for 'store'
|
|
|
|
## +2 to skip STORE_INTO_TEMP(pc) and POP_STACKTOP.
|
|
|
|
## TODO: make it independent of the byte code size
|
2016-03-16 02:27:18 +00:00
|
|
|
"
|
2015-10-15 14:40:08 +00:00
|
|
|
## ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
## #<label>:
|
|
|
|
## thisContext pc: #<label> sp: sp.
|
|
|
|
##
|
|
|
|
## | pc |
|
|
|
|
## pc := thisContext pc.
|
|
|
|
## ^self value ifTrue: [aBlock value. thisContext pc: pc]
|
|
|
|
|
|
|
|
## ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
## self value ifTrue: [ aBlock value. thisContext restart. ].
|
|
|
|
}
|
|
|
|
|
2016-03-28 13:25:36 +00:00
|
|
|
#method whileTrue
|
|
|
|
{
|
|
|
|
(self value) ifFalse: [^nil].
|
|
|
|
self whileTrue.
|
|
|
|
}
|
|
|
|
|
2016-03-16 10:13:03 +00:00
|
|
|
#method whileFalse: aBlock
|
|
|
|
{
|
|
|
|
(self value) ifTrue: [^nil].
|
|
|
|
aBlock value.
|
|
|
|
self whileFalse: aBlock.
|
|
|
|
}
|
|
|
|
|
2016-03-28 13:25:36 +00:00
|
|
|
#method whileFalse
|
|
|
|
{
|
|
|
|
(self value) ifTrue: [^nil].
|
|
|
|
self whileFalse.
|
|
|
|
}
|
|
|
|
|
2015-10-15 14:40:08 +00:00
|
|
|
#method pc
|
|
|
|
{
|
|
|
|
^ip
|
|
|
|
}
|
|
|
|
|
|
|
|
#method pc: anInteger
|
|
|
|
{
|
|
|
|
ip := anInteger.
|
|
|
|
}
|
|
|
|
|
|
|
|
#method sp
|
|
|
|
{
|
|
|
|
^sp
|
|
|
|
}
|
|
|
|
|
|
|
|
#method sp: anInteger
|
|
|
|
{
|
|
|
|
sp := anInteger.
|
|
|
|
}
|
|
|
|
|
|
|
|
#method restart
|
|
|
|
{
|
|
|
|
ip := source pc.
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
"------ TODO: -------------------------------------"
|
2016-03-26 06:39:56 +00:00
|
|
|
#method on: anException do: anExceptionBlock
|
2015-10-15 14:40:08 +00:00
|
|
|
{
|
2016-03-28 13:25:36 +00:00
|
|
|
| handlerActive |
|
|
|
|
<exception>
|
|
|
|
handlerActive := true.
|
|
|
|
|
|
|
|
(thisContext basicAt: 9) dump.
|
|
|
|
|
|
|
|
^self value.
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#method ensure: aBlock
|
|
|
|
{
|
2016-03-28 13:25:36 +00:00
|
|
|
"##
|
|
|
|
| complete returnValue |
|
|
|
|
<ensure>
|
|
|
|
|
|
|
|
returnValue := self valueNoContextSwitch.
|
|
|
|
complete ifNil: [
|
|
|
|
complete := true.
|
|
|
|
aBlock value.
|
|
|
|
].
|
|
|
|
^returnValue. ##"
|
2015-10-15 14:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#method ifCurtailed: aBlock
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
"------ TODO: -------------------------------------"
|
|
|
|
}
|
|
|
|
|
2016-03-28 13:25:36 +00:00
|
|
|
#class Exception(Object)
|
|
|
|
{
|
|
|
|
#dcl signalContext handlerContext messageText.
|
|
|
|
|
|
|
|
#method(#class) signal
|
|
|
|
{
|
|
|
|
self new signal
|
|
|
|
}
|
|
|
|
|
|
|
|
#method(#class) signal: text
|
|
|
|
{
|
|
|
|
self new signal: text
|
|
|
|
}
|
|
|
|
|
|
|
|
#method signal
|
|
|
|
{
|
|
|
|
self.signalContext := thisContext.
|
|
|
|
self isHandled
|
|
|
|
ifTrue: [ self handle ]
|
|
|
|
ifFalse: [ self notHandled ].
|
|
|
|
}
|
|
|
|
|
|
|
|
#method signal: text
|
|
|
|
{
|
|
|
|
self.messageText := text.
|
|
|
|
self signal.
|
|
|
|
}
|
|
|
|
|
|
|
|
#method isHandled
|
|
|
|
{
|
|
|
|
^self handlerContext notNil
|
|
|
|
}
|
|
|
|
|
|
|
|
#method handle
|
|
|
|
{
|
|
|
|
self return: (self.handlerContext handlerBlock value: self)
|
|
|
|
}
|
|
|
|
|
|
|
|
#method notHandle
|
|
|
|
{
|
|
|
|
'EXCEPTION NOT HANDLED' dump.
|
|
|
|
## TODO: debug the current process???? "
|
|
|
|
Processor activeProcess terminate.
|
|
|
|
}
|
|
|
|
|
|
|
|
#method handlerContext
|
|
|
|
{
|
|
|
|
(self.handlerContext notNil) ifTrue: [ ^self.handlerContext ].
|
|
|
|
^self handlerContextStartingFrom: self.signalContext sender.
|
|
|
|
}
|
|
|
|
|
|
|
|
#method handlerContextStartingFrom: aContext
|
|
|
|
{
|
|
|
|
## Find exception handling context starting from a given context
|
|
|
|
|
|
|
|
| ctx |
|
|
|
|
|
|
|
|
ctx := aContext.
|
|
|
|
[ ctx notNil ]
|
|
|
|
whileTrue: [
|
|
|
|
(ctx handles: self) ifTrue: [ ^self.handlerContext := ctx ].
|
|
|
|
ctx := ctx sender
|
|
|
|
].
|
|
|
|
^nil
|
|
|
|
}
|
|
|
|
|
|
|
|
#method return: anObject
|
|
|
|
{
|
|
|
|
Processor return: anObject to: (self.handlerContext parent)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#class NoSuchMessageException(Exception)
|
|
|
|
{
|
|
|
|
}
|