// // TODO: is it better to inherit from Object??? // or treat Exception specially like UndefinedObject or Class??? // class Exception(Apex) { var signalContext, handlerContext. var(#get) messageText. /* TODO: can i convert 'thisProcess primError' to a relevant exception? var(#class) primExceptTable. method(#class) forPrimitiveError: no { ^self.primExceptTable at: no } */ method(#class) signal { ^self new signal } method(#class) signal: text { ^self new signal: text } method handlerContext: context { self.handlerContext := context. } method asString { ^(self class name) & " - " & self.messageText. } method signal { | exctx exblk retval actpos ctx | self.signalContext := thisContext. exctx := (thisContext sender) findExceptionContext. //[exctx notNil] whileTrue: [ while (exctx notNil) { exblk := exctx findExceptionHandler: (self class). //if (exblk notNil and: [actpos := exctx basicSize - 1. exctx basicAt: actpos]) if ((exblk notNil) and (exctx basicAt: (actpos := exctx basicSize - 1))) { self.handlerContext := exctx. 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. ("### EXCEPTION NOT HANDLED(Exception) #### " & self class name & " - " & self messageText) dump. // TODO: debug the current process???? " //Processor activeProcess terminate. thisProcess terminate. } method signal: text { self.messageText := text. ^self signal. } method pass { // pass the exception to the outer context ((self.handlerContext sender) findExceptionContext) handleException: self. } method return: value { if (self.handlerContext notNil) { System return: value to: self.handlerContext } } method retry { // TODO: verify if return:to: causes unnecessary stack growth. if (self.handlerContext notNil) { self.handlerContext pc: 0. System return: self to: self.handlerContext. } } method resume: value { // TODO: verify if return:to: causes unnecessary stack growth. // is this correct??? | ctx | if ((self.signalContext notNil) and (self.handlerContext notNil)) { ctx := self.signalContext sender. self.signalContext := nil. self.handlerContext := nil. System return: value to: ctx. }. } method resume { ^self resume: nil. } } //============================================================================ extend Context { method isExceptionContext { ^false } method isEnsureContext { ^false } method ensureBlock { ^nil } method findExceptionContext { | ctx | ctx := self. while (ctx notNil) { if (ctx isExceptionContext) { ^ctx }. ctx := ctx sender. }. ^nil } method unwindTo: context return: retval { // ------------------------------------------------------------------- // <> // private: called by VM upon unwinding as well as by // Exception< if (self isExceptionContext) { /* NOTE: the following loop scans all parameters to the on:do: method. * if the on:do: method contains local temporary variables, * those must be skipped from scanning. */ size := self basicSize. // start scanning from the position of the first parameter i := MethodContext.Index.FIRST_ON. while (i < size) { exc := self basicAt: i. if ((exception_class == exc) or (exception_class inheritsFrom: exc)) { ^self basicAt: (i + 1). }. i := i + 2. }. }. ^nil. } method handleException: exception { /* ----------------------------------------------------------------- * <> * called by Exception>>signal. * this method only exists in the MethodContext and UndefinedObject. * the caller must make sure that the receiver object is * a method context or nil. Exception>>signal invokes this method * only for an exception context which is a method context. it * invokes it for nil when no exception context is found. * ---------------------------------------------------------------- */ | excblk retval actpos | /* position of the temporary variable 'exception_active' in MethodContext>>on:do. * for this code to work, it must be the last temporary variable in the method. */ actpos := (self basicSize) - 1. excblk := self findExceptionHandler: (exception class). if ((excblk isNil) or ((self basicAt: actpos) not)) { // self is an exception context but doesn't have a matching // exception handler or the exception context is already // in the middle of evaluation. ^(self.sender findExceptionContext) handleException: exception. }. exception handlerContext: self. /* ----------------------------------------------------------------- * if an exception occurs within an exception handler block, * the search will reach this context again as the exception block * is evaluated before actual unwinding. set the temporary variable * in the exception context to mask out this context from the search * list. * ---------------------------------------------------------------- */ self basicAt: actpos put: false. [ retval := excblk value: exception ] ensure: [ self basicAt: actpos put: true ]. //(self.sender isNil) ifTrue: [ "TODO: CANNOT RETURN" ]. /* ----------------------------------------------------------------- * return to self.sender which is a caller of the exception context (on:do:) * pass the first ensure context between thisContext and self.sender. * [ [Exception signal: 'xxx'] ensure: [20] ] on: Exception do: [:ex | ...] * ---------------------------------------------------------------- */ thisContext unwindTo: self.sender return: nil. System return: retval to: self.sender. } } //============================================================================ extend BlockContext { method on: anException do: anExceptionBlock { | exception_active | /* ------------------------------- thisContext isExceptionContext dump. (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 'on:do: ABOUT TO EVALUE THE RECEIVER BLOCK' dump. ---------------------------------- */ exception_active := true. ^self value. } method on: exc1 do: blk1 on: exc2 do: blk2 { | exception_active | exception_active := true. ^self value. } method on: exc1 do: blk1 on: exc2 do: blk2 on: exc3 do: blk3 { | exception_active | exception_active := true. ^self value. } method ensure: aBlock { | retval pending | pending := true. retval := self value. /* the temporary variable 'pending' may get changed * during evaluation for exception handling. * it gets chagned in Context>>unwindTo:return: */ if (pending) { pending := false. aBlock value }. ^retval } method ifCurtailed: aBlock { | v pending | pending := true. [ v := self value. pending := false. ] ensure: [ if (pending) { aBlock value } ]. ^v. } method catch { ^self on: Exception do: [:ex | ex ] on: Error do: [:err | err ]. } } //============================================================================ class PrimitiveFailureException(Exception) { var errcode. method(#class) withErrorCode: code { ^(self new) errorCode: code; yourself. } method signal { self.errcode := thisProcess primError. ^super signal } method errorCode { ^self.errcode } method errorCode: code { self.errcode := code } } class NoSuchMessageException(Exception) { } class IndexOutOfRangeException(Exception) { } class SubclassResponsibilityException(Exception) { } class NotImplementedException(Exception) { } class InvalidArgumentException(Exception) { } class ProhibitedMessageException(Exception) { } class NotFoundException(Exception) { } class KeyNotFoundException(NotFoundException) { } class ValueNotFoundException(NotFoundException) { } class IndexNotFoundException(NotFoundException) { } extend Apex { method(#dual,#liberal) primitiveFailed(method) { | a b msg ec ex | /* since method is an argument, the caller can call this method * from a context chain where the method context actually doesn't exist. * when a primitive method is defined using the #primitive method, * the VM invokes this primtiveFailed method without creating * the context for the primitive method. * method(#primitive) xxx. * method(#primitive) xxx { ^self primitiveFailed(thisContext method). } * in the former definition, primitiveFailed is called without * an activate context for the method xxx if the primitive fails. * on the other handle, in the latter definition, the context * for the method is activated first before primitiveFailed is * invoked. in the context chain, the method for xxx is found. */ /*System logNl: 'Arguments: '. a := 0. b := thisContext vargCount. while (a < b) { System logNl: (thisContext vargAt: a) asString. a := a + 1. }.*/ ec := thisProcess primError. msg := thisProcess primErrorMessage. if (msg isNil) { msg := ec asString }. if (method notNil) { msg := msg & " - " & (method owner name) & ">>" & (method name) }. //# TODO: convert an exception to a more specific one depending on the error code. //#if (ec == Error.Code.ERANGE) { self index: index outOfRange: (self basicSize) } //# elsif (ec == Error.Code.EPERM) { self messageProhibited: method name } //# elsif (ec == Error.Code.ENOIMPL) { self subclassResponsibility: method name }. (PrimitiveFailureException /* in: method */ withErrorCode: ec) signal: msg. } method(#dual) doesNotUnderstand: message_name { // TODO: implement this properly | class_name ctx | class_name := if (self class == Class) { self name } else { self class name }. // 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 ==". NoSuchMessageException signal: (message_name & " not understood by " & class_name). } method(#dual) index: index outOfRange: ubound { IndexOutOfRangeException signal: "Out of range". } method(#dual) subclassResponsibility: method_name { SubclassResponsibilityException signal: ("Subclass must implement " & method_name). } method(#dual) shouldNotImplement: method_name { SubclassResponsibilityException signal: ("Message should not be implemented - " & method_name). } method(#dual) notImplemented: method_name { | class_name | class_name := if (self class == Class) { self name } else { self class name }. NotImplementedException signal: (method_name & " not implemented by " & class_name). } method(#dual) messageProhibited: method_name { | class_name | class_name := if (self class == Class) { self name } else { self class name }. ProhibitedMessageException signal: (method_name & " not allowed for " & class_name). } }