Signal.st
author Claus Gittinger <cg@exept.de>
Wed, 08 Oct 1997 13:28:28 +0200
changeset 3008 5b8993e3f852
parent 3004 220af5090ec2
child 3010 fecaeb40f3dd
permissions -rw-r--r--
oops
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     1
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
     2
 COPYRIGHT (c) 1993 by Claus Gittinger
159
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
     3
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
a27a279701f8 Initial revision
claus
parents:
diff changeset
    13
Object subclass:#Signal
1249
2d5d0edd3359 commentary
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
    14
	instanceVariableNames:'mayProceed notifierString nameClass message handlerBlock parent'
3004
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
    15
	classVariableNames:'NoHandlerSignal GenericSignal'
1249
2d5d0edd3359 commentary
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
    16
	poolDictionaries:''
2d5d0edd3359 commentary
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
    17
	category:'Kernel-Exceptions'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    18
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    19
2207
ee6d4213b9df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
    20
!Signal class methodsFor:'documentation'!
44
b262907c93ea *** empty log message ***
claus
parents: 27
diff changeset
    21
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    22
copyright
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    23
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    24
 COPYRIGHT (c) 1993 by Claus Gittinger
159
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
    25
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    26
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    27
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    28
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    29
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    30
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    31
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    32
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    33
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    34
!
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    35
44
b262907c93ea *** empty log message ***
claus
parents: 27
diff changeset
    36
documentation
b262907c93ea *** empty log message ***
claus
parents: 27
diff changeset
    37
"
70
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    38
    Signal and Exception provide a framework for exception handling.
44
b262907c93ea *** empty log message ***
claus
parents: 27
diff changeset
    39
70
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    40
    A Signal object is usually defined somewhere up in the calling chain
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    41
    and associated with some abnormal event. Many signals are also
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    42
    created at startup time and reused.
44
b262907c93ea *** empty log message ***
claus
parents: 27
diff changeset
    43
70
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    44
    When the event is raised (by Signal>>raise) the control will be either 
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    45
    given to a debugger or - if a handler was defined - to the handler. 
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    46
    The handler will get a description of what (and where) happened in an 
120
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
    47
    Exception object and can decide how to react on the situation (i.e. 
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
    48
    proceed, return or restart).
70
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    49
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    50
    There is also a companion class called SignalSet, which allows handling
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    51
    multiple signals with one handler (for example all arithmetic signals).
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    52
    And, finally there is a very special SignalSet which allows catching
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    53
    any signal (SignalSet>>anySignal).
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    54
171
129f0e2e23df handling now in Exception
claus
parents: 159
diff changeset
    55
    Since there is no official documentation on signal handling (i.e. none
129f0e2e23df handling now in Exception
claus
parents: 159
diff changeset
    56
    of the books describes it), this Signal implementation has been modeled
129f0e2e23df handling now in Exception
claus
parents: 159
diff changeset
    57
    after what some PD programs seem to expect and what alpha/beta testers told
129f0e2e23df handling now in Exception
claus
parents: 159
diff changeset
    58
    me it should look like.
129f0e2e23df handling now in Exception
claus
parents: 159
diff changeset
    59
    It may not be perfect and undergo minor changes.
44
b262907c93ea *** empty log message ***
claus
parents: 27
diff changeset
    60
120
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
    61
    special:
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
    62
70
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    63
    In addition to the nested catch & throw mechanism, signals can also be
120
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
    64
    used when no such handler scope exists. To support this, signals can be 
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
    65
    assigned a handlerBlock, which gets evaluated with the exception as argument 
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
    66
    in case no handler was found (on the stack).
70
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    67
171
129f0e2e23df handling now in Exception
claus
parents: 159
diff changeset
    68
    If no handler was found (i.e. neither a handler context on the stack, nor
129f0e2e23df handling now in Exception
claus
parents: 159
diff changeset
    69
    a static handler block), the NoHandlerSignal will be raised instead,
120
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
    70
    passing it the original exception in its exception-parameter.
171
129f0e2e23df handling now in Exception
claus
parents: 159
diff changeset
    71
    This NoHandlerSignal can be handled just like any other signal.
129f0e2e23df handling now in Exception
claus
parents: 159
diff changeset
    72
    (therefore, it is possible to catch any error by catching NoHandlerSignal.
70
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    73
120
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
    74
    When the NoHandler signal is raised, and neither a handler-context, nor 
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
    75
    a handler block is defined for it, an emergencyHandler(-block) is evaluated.
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
    76
    This block is either provided by the current process 
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
    77
    (see Process>>emergencySignalHandler) or as a global default by the Exception
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
    78
    class (see Exception>>emergencyHandler).
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
    79
    The default emergencyHandlerBlock (from Exception) will bring up a debugger.
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
    80
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
    81
    HandlerBlocks allow a global (if its the EmergencyHandler in Exception)
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
    82
    or per-process signal handling to be added. Even to code which was never
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
    83
    planned to handle signals.
70
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    84
171
129f0e2e23df handling now in Exception
claus
parents: 159
diff changeset
    85
    See samples in 'doc/coding' and actual raise code in Exception.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    86
1275
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
    87
    [Instance variables:]
70
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    88
1275
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
    89
        mayProceed      <Boolean>       hint for the debugger - program may 
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
    90
                                        proceed (currently not honored by the
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
    91
                                        debugger)
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
    92
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
    93
        notifierString  <String>        error message to be output 
70
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
    94
1275
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
    95
        nameClass       <Class>         for the printOn-implementation; nameClass
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
    96
                                        is the class, to which message (below) 
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
    97
                                        should be sent to create the receiver.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    98
1275
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
    99
        message         <Symbol>        for the printOn-implementation; message
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   100
                                        is the selector, which should be sent to 
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   101
                                        nameClass (above) to create the receiver.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   102
1275
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   103
        handlerBlock    <Block>         if nonNil, a 1-arg block to be 
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   104
                                        evaluated when no handler context is 
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   105
                                        found. The block gets the exception
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   106
                                        object as argument. This will play the role
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   107
                                        of an on-stack handler.
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   108
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   109
    [Class variables:]
70
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
   110
1275
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   111
        NoHandlerSignal <Signal>        signal raised when no handler for a signal
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   112
                                        was found in raise.
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   113
                                        If this one is not handled either,
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   114
                                        Exceptions emergencyHandler will be evaluated
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   115
                                        instead (or a per-proces handler, if there
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   116
                                        is one).
1292
89497fff7f87 documentation
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   117
89497fff7f87 documentation
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   118
    [author:]
89497fff7f87 documentation
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   119
        Claus Gittinger
89497fff7f87 documentation
Claus Gittinger <cg@exept.de>
parents: 1275
diff changeset
   120
1275
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   121
    [see also:]
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   122
        Exception 
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   123
        SignalSet QuerySignal
2079f4776628 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1249
diff changeset
   124
        Object
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   125
        (``Exception handling and signals'': programming/exceptions.html)
44
b262907c93ea *** empty log message ***
claus
parents: 27
diff changeset
   126
"
b262907c93ea *** empty log message ***
claus
parents: 27
diff changeset
   127
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   128
2207
ee6d4213b9df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   129
!Signal class methodsFor:'initialization'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   130
3004
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   131
initGenericSignal 
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   132
    "setup the parent of all signals."
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   133
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   134
    GenericSignal isNil ifTrue:[
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   135
        GenericSignal := self basicNew notifierString: 'unknown Signal with: '.
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   136
        GenericSignal nameClass:self message:#genericSignal.
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   137
    ].
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   138
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   139
    "Modified: 8.10.1997 / 11:58:01 / cg"
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   140
!
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   141
159
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   142
initialize 
44
b262907c93ea *** empty log message ***
claus
parents: 27
diff changeset
   143
    "setup the signal used to handle unhandled signals"
b262907c93ea *** empty log message ***
claus
parents: 27
diff changeset
   144
3004
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   145
    GenericSignal isNil ifTrue:[
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   146
        self initGenericSignal.
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   147
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   148
        NoHandlerSignal := ErrorSignal newSignalMayProceed:true.
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   149
        NoHandlerSignal nameClass:self message:#noHandlerSignal.
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   150
        NoHandlerSignal notifierString:'unhandled exception'.
61
claus
parents: 44
diff changeset
   151
    ]
3004
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   152
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   153
    "Modified: 8.10.1997 / 11:48:40 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   154
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   155
2207
ee6d4213b9df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   156
!Signal class methodsFor:'instance creation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   157
a27a279701f8 Initial revision
claus
parents:
diff changeset
   158
new
a27a279701f8 Initial revision
claus
parents:
diff changeset
   159
    "return a new signal"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   160
3008
Claus Gittinger <cg@exept.de>
parents: 3004
diff changeset
   161
    ^ (self basicNew) notifierString:'signal'
3004
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   162
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   163
    "
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   164
     Signal new
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   165
    "
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   166
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   167
    "Modified: 8.10.1997 / 11:51:39 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   168
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   169
2207
ee6d4213b9df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   170
!Signal class methodsFor:'Signal constants'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   171
3004
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   172
genericSignal
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   173
    "return the generic signal - thats the parent of all signals
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   174
     in the system."
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   175
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   176
    ^ GenericSignal
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   177
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   178
    "Created: 8.10.1997 / 11:46:28 / cg"
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   179
    "Modified: 8.10.1997 / 11:47:08 / cg"
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   180
!
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   181
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   182
noHandlerSignal
44
b262907c93ea *** empty log message ***
claus
parents: 27
diff changeset
   183
    "return the signal used to handle unhandled signals"
b262907c93ea *** empty log message ***
claus
parents: 27
diff changeset
   184
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   185
    ^ NoHandlerSignal
a27a279701f8 Initial revision
claus
parents:
diff changeset
   186
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   187
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   188
!Signal methodsFor:'accessing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   189
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   190
errorString
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   191
    "return the notifier string"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   192
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   193
    ^ notifierString
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   194
!
159
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   195
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   196
handlerBlock
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   197
    "return the handlerblock - if non-nil, this will be evaluated with the exception 
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   198
     object as argument, if no #handle:do: context was found on the stack."
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   199
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   200
    ^ handlerBlock
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   201
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   202
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   203
handlerBlock:aOneArgBlock
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   204
    "set the handlerblock - this will be evaluated with the exception 
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   205
     object as argument, if no #handle:do: context was found on the stack."
159
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   206
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   207
    handlerBlock := aOneArgBlock
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   208
!
159
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   209
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   210
mayProceed
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   211
    "return the signals ability to proceed.
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   212
     This flag is (currently) not checked by the system;
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   213
     be prepared for changes here, to eventually have nonProceedable
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   214
     signals refuse to let you continue execution."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   215
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   216
    ^ mayProceed
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   217
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   218
a27a279701f8 Initial revision
claus
parents:
diff changeset
   219
mayProceed:aBoolean
44
b262907c93ea *** empty log message ***
claus
parents: 27
diff changeset
   220
    "set/clear the signals ability to proceed.
419
62f39bdfe99d *** empty log message ***
claus
parents: 406
diff changeset
   221
     This flag is (currently) not checked by the system;
62f39bdfe99d *** empty log message ***
claus
parents: 406
diff changeset
   222
     be prepared for changes here, to eventually have nonProceedable
62f39bdfe99d *** empty log message ***
claus
parents: 406
diff changeset
   223
     signals refuse to let you continue execution."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   224
a27a279701f8 Initial revision
claus
parents:
diff changeset
   225
    mayProceed := aBoolean
a27a279701f8 Initial revision
claus
parents:
diff changeset
   226
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   227
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   228
nameClass:aClass message:aSelector
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   229
    "this sets the class & selector of a method which returns
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   230
     that signal - this is simply for documentation purposes -
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   231
     see Signal>>printOn: implementation.
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   232
     (took me a while to find that one out ;-)"
419
62f39bdfe99d *** empty log message ***
claus
parents: 406
diff changeset
   233
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   234
    nameClass := aClass.
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   235
    message := aSelector
419
62f39bdfe99d *** empty log message ***
claus
parents: 406
diff changeset
   236
!
62f39bdfe99d *** empty log message ***
claus
parents: 406
diff changeset
   237
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   238
notifierString
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   239
    "return the notifier string"
159
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   240
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   241
    ^ notifierString
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   242
!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   243
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   244
notifierString:aString
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   245
    "set the notifier string"
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   246
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   247
    notifierString := aString
159
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   248
!
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   249
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   250
parent
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   251
    "return the parent-signal of the receiver"
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   252
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   253
    ^ parent
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   254
!
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   255
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   256
parent:aSignal 
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   257
    "set the parent-signal of the receiver."
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   258
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   259
    parent := aSignal
3004
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   260
!
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   261
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   262
parent:aSignal mayProceed:aBoolean
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   263
    "set the parent-signal and the mayProceed flag of the receiver."
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   264
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   265
    parent isNil ifTrue:[
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   266
        parent := aSignal.
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   267
        mayProceed := aBoolean.
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   268
        ^ self
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   269
    ].
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   270
    self error:'parent change not allowed'.
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   271
    ^ self
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   272
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   273
    "Modified: 8.10.1997 / 11:56:11 / cg"
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   274
! !
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   275
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   276
!Signal methodsFor:'copying'!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   277
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   278
deepCopy
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   279
    "raise an error - deepCopy is not allowed for signals"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   280
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   281
    ^ self deepCopyError
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   282
! !
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   283
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   284
!Signal methodsFor:'instance creation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   285
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   286
newSignal
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   287
    "create a new signal, using the receiver as a prototype and
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   288
     setting the parent of the new signal to the receiver."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   289
3004
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   290
    ^ (self class basicNew) parent:self
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   291
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   292
    "Modified: 8.10.1997 / 11:53:06 / cg"
70
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
   293
!
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
   294
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   295
newSignalMayProceed:aBoolean
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   296
    "create a new signal, using the receiver as a prototype and
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   297
     setting the parent of the new signal to the receiver."
362
claus
parents: 345
diff changeset
   298
3004
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   299
    ^ (self class basicNew) 
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   300
        parent:self mayProceed:aBoolean
70
73055652dd21 *** empty log message ***
claus
parents: 61
diff changeset
   301
3004
220af5090ec2 added the genericSignal for PP compatiblity
Claus Gittinger <cg@exept.de>
parents: 2893
diff changeset
   302
    "Modified: 8.10.1997 / 11:57:13 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   303
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   304
159
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   305
!Signal methodsFor:'printing'!
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   306
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   307
printOn:aStream
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   308
    "append a printed representation of the receiver on aStream"
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   309
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   310
    nameClass notNil ifTrue:[
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   311
	aStream nextPutAll:nameClass name.
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   312
	aStream space.
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   313
	aStream nextPutAll:message.
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   314
	^ self
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   315
    ].
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   316
    ^ super printOn:aStream
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   317
! !
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   318
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   319
!Signal methodsFor:'private'!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   320
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   321
errorStringFor:errorString with:aParameter
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   322
    "used when raising with a given error string and/or parameter; 
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   323
     if the errorString starts with a space, it is appended to the receivers
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   324
     notifier string; if it ends with a space, it is prepended.
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   325
     Otherwise, the errorString is returned.
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   326
     If no errorString is given, use the signals default notifierString."
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   327
2291
af7652b82404 avoid touching contexts (making them nonLifo) when searching for unwind-contexts,
Claus Gittinger <cg@exept.de>
parents: 2207
diff changeset
   328
    |t|
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   329
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   330
    errorString isNil ifTrue:[
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   331
        t := notifierString
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   332
    ] ifFalse:[
2497
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   333
        t := errorString.
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   334
        (errorString endsWith:Character space) ifTrue:[
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   335
            t := errorString , notifierString
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   336
        ] ifFalse:[
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   337
            (errorString startsWith:Character space) ifTrue:[
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   338
                t := notifierString , errorString
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   339
            ]
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   340
        ].
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   341
    ].
2497
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   342
    ^ t.
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   343
2497
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   344
"/    aParameter isNil ifTrue:[
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   345
"/        ^ t
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   346
"/    ].
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   347
"/
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   348
"/    (t startsWith:' ') ifTrue:[
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   349
"/        ^ aParameter printString , t
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   350
"/    ].
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   351
"/    (t endsWith:' ') ifTrue:[
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   352
"/        ^ t , aParameter printString
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   353
"/    ].
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   354
"/    ^ t
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   355
2497
5aaa953d3e40 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2291
diff changeset
   356
    "Modified: 25.3.1997 / 12:12:37 / cg"
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   357
! !
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   358
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   359
!Signal methodsFor:'queries'!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   360
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   361
accepts:aSignal
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   362
    "return true, if the receiver accepts the argument, aSignal.
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   363
     (i.e. the receiver is aSignal or a parent of it). False otherwise."
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   364
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   365
    |s|
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   366
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   367
    aSignal isQuerySignal ifTrue:[^ false].
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   368
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   369
    s := aSignal.
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   370
    [s notNil] whileTrue:[
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   371
	self == s ifTrue:[^ true].
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   372
	s := s parent
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   373
    ].
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   374
    ^ false
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   375
!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   376
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   377
inheritsFrom:anotherSignal
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   378
    "return true, if the receiver is a child of anotherSignal
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   379
     (i.e. if handling anotherSignal also handles the receiver)
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   380
     This is almost the same as accepts, but returns false, if
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   381
     the receiver is identical to anotherSignal."
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   382
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   383
    self == anotherSignal ifTrue:[^ false].
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   384
    ^ anotherSignal accepts:self
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   385
!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   386
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   387
isHandled
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   388
    "return true, if there is a handler for the receiver signal.
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   389
     Raising an unhandled signal will usually lead into the debugger,
2689
ada9b102abcf typo fix
Claus Gittinger <cg@exept.de>
parents: 2497
diff changeset
   390
     but can be caught globally by setting Exceptions EmergencyHandler."
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   391
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   392
    ^ self isHandledIn:(thisContext sender).
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   393
!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   394
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   395
isHandledIn:aContext
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   396
    "return true, if there is a handler for the receiver signal in the 
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   397
     contextChain starting with aContext."
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   398
2291
af7652b82404 avoid touching contexts (making them nonLifo) when searching for unwind-contexts,
Claus Gittinger <cg@exept.de>
parents: 2207
diff changeset
   399
    |con|
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   400
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   401
    con := aContext.
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   402
    [con notNil] whileTrue:[
2893
8ba406da6b22 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2689
diff changeset
   403
        con := con findNextContextWithSelector:#'handle:do:' or:#'handle:from:do:' or:nil.
2207
ee6d4213b9df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   404
        con notNil ifTrue:[
ee6d4213b9df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   405
            "
ee6d4213b9df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   406
             is this is a #handle:do: or a #handle:from:do: context
ee6d4213b9df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   407
             with self in it ?
ee6d4213b9df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   408
            "
ee6d4213b9df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   409
            (con receiver accepts:self) ifTrue:[
ee6d4213b9df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   410
                "found a handler context"
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   411
2207
ee6d4213b9df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   412
                ^ true
2291
af7652b82404 avoid touching contexts (making them nonLifo) when searching for unwind-contexts,
Claus Gittinger <cg@exept.de>
parents: 2207
diff changeset
   413
            ]
2207
ee6d4213b9df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   414
        ]
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   415
    ].
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   416
    ^ false
2207
ee6d4213b9df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   417
ee6d4213b9df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   418
    "Modified: 20.1.1997 / 12:45:01 / cg"
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   419
!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   420
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   421
isQuerySignal
1249
2d5d0edd3359 commentary
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
   422
    "return true, if this is a querySignal - always return false here"
2d5d0edd3359 commentary
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
   423
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   424
    ^ false
1249
2d5d0edd3359 commentary
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
   425
2d5d0edd3359 commentary
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
   426
    "Modified: 22.4.1996 / 13:45:06 / cg"
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   427
!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   428
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   429
isSignal
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   430
    "return true, if the receiver is some kind of signal;
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   431
     true returned here - the method is redefined from Object."
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   432
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   433
    ^ true
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   434
! !
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   435
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   436
!Signal methodsFor:'raising'!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   437
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   438
raise
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   439
    "raise a signal nonproceedable
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   440
     - notice, ST/X does not (for now) distinguish between proceedable and
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   441
       non proceedable exceptions.
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   442
     The signals notifierString is used as errorString."
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   443
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   444
    ^ (Exception  
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   445
              signal:self
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   446
              parameter:nil 
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   447
              errorString:notifierString
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   448
              suspendedContext:thisContext sender) raise.
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   449
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   450
    "Modified: 2.5.1996 / 16:36:23 / cg"
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   451
!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   452
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   453
raiseErrorString:aString
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   454
    "raise a signal nonproceedable.
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   455
     - notice, ST/X does not (for now) distinguish between proceedable and
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   456
       non proceedable exceptions.
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   457
     The argument is used as errorString."
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   458
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   459
    ^ (Exception  
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   460
              signal:self
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   461
              parameter:nil 
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   462
              errorString:(self errorStringFor:aString with:nil)
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   463
              suspendedContext:thisContext sender) raise.
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   464
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   465
    "Modified: 9.5.1996 / 15:17:59 / cg"
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   466
!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   467
1610
2c076ee64e11 added #raiseErrorString:in:
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   468
raiseErrorString:aString in:aContext
2c076ee64e11 added #raiseErrorString:in:
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   469
    "raise a signal nonproceedable.
2c076ee64e11 added #raiseErrorString:in:
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   470
     - notice, ST/X does not (for now) distinguish between proceedable and
2c076ee64e11 added #raiseErrorString:in:
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   471
       non proceedable exceptions.
2c076ee64e11 added #raiseErrorString:in:
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   472
     The argument is used as errorString.
2c076ee64e11 added #raiseErrorString:in:
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   473
     The additional context is passed as the context responsible for the raise,
2c076ee64e11 added #raiseErrorString:in:
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   474
     allowing a raise to mimicri the exception happened somewhere else."
2c076ee64e11 added #raiseErrorString:in:
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   475
2c076ee64e11 added #raiseErrorString:in:
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   476
    ^ (Exception  
2c076ee64e11 added #raiseErrorString:in:
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   477
              signal:self
2c076ee64e11 added #raiseErrorString:in:
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   478
              parameter:nil 
2c076ee64e11 added #raiseErrorString:in:
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   479
              errorString:(self errorStringFor:aString with:nil)
2c076ee64e11 added #raiseErrorString:in:
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   480
              suspendedContext:aContext) raise.
2c076ee64e11 added #raiseErrorString:in:
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   481
2c076ee64e11 added #raiseErrorString:in:
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   482
    "Created: 26.7.1996 / 16:42:32 / cg"
2c076ee64e11 added #raiseErrorString:in:
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   483
    "Modified: 26.7.1996 / 16:42:47 / cg"
2c076ee64e11 added #raiseErrorString:in:
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   484
!
2c076ee64e11 added #raiseErrorString:in:
Claus Gittinger <cg@exept.de>
parents: 1608
diff changeset
   485
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   486
raiseFrom:something
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   487
    "raise a signal nonproceedable.
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   488
     - notice, ST/X does not (for now) distinguish between proceedable and
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   489
       non proceedable exceptions.
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   490
     The argument, something is passed both as parameter and originator.
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   491
     XXX: I am not certain, if this is the correct behavior (seen in remoteInvocation-goodie)"
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   492
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   493
    ^ (Exception 
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   494
              signal:self
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   495
              parameter:something 
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   496
              errorString:notifierString
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   497
              suspendedContext:thisContext sender
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   498
              originator:something) raise.
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   499
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   500
    "Modified: 2.5.1996 / 16:36:38 / cg"
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   501
!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   502
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   503
raiseIn:aContext
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   504
    "raise a signal nonproceedable.
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   505
     - notice, ST/X does not (for now) distinguish between proceedable and
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   506
       non proceedable exceptions.
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   507
     The signals notifierString is used as errorString.
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   508
     The additional context is passed as the context responsible for the raise,
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   509
     allowing a raise to mimicri the exception happened somewhere else."
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   510
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   511
    ^ (Exception 
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   512
              signal:self
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   513
              parameter:nil 
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   514
              errorString:notifierString
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   515
              suspendedContext:aContext) raise.
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   516
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   517
    "Modified: 2.5.1996 / 16:36:44 / cg"
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   518
!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   519
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   520
raiseRequest
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   521
    "raise a signal proceedable.
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   522
     The signals notifierString is used as errorString."
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   523
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   524
    ^ (Exception  
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   525
              signal:self
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   526
              parameter:nil 
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   527
              errorString:notifierString
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   528
              suspendedContext:thisContext sender) raiseRequest.
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   529
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   530
    "Modified: 2.5.1996 / 16:36:52 / cg"
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   531
!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   532
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   533
raiseRequestWith:aParameter
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   534
    "raise a signal proceedable.
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   535
     The signals notifierString is used as errorString."
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   536
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   537
    ^ (Exception 
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   538
              signal:self
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   539
              parameter:aParameter 
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   540
              errorString:(self errorStringFor:nil with:aParameter)
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   541
              suspendedContext:thisContext sender) raiseRequest.
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   542
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   543
    "Modified: 9.5.1996 / 15:13:20 / cg"
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   544
!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   545
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   546
raiseRequestWith:aParameter errorString:aString
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   547
    "raise a signal proceedable.
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   548
     The argument, aString is used as errorString."
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   549
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   550
    ^ (Exception 
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   551
              signal:self
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   552
              parameter:aParameter 
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   553
              errorString:(self errorStringFor:aString with:aParameter)
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   554
              suspendedContext:thisContext sender) raiseRequest
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   555
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   556
    "Modified: 9.5.1996 / 15:13:35 / cg"
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   557
!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   558
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   559
raiseRequestWith:aParameter errorString:aString in:aContext
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   560
    "raise a signal proceedable.
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   561
     The argument, aString is used as errorString.
1608
440faca45e37 comment
Claus Gittinger <cg@exept.de>
parents: 1362
diff changeset
   562
     The additional context is passed as the context responsible for the raise,
440faca45e37 comment
Claus Gittinger <cg@exept.de>
parents: 1362
diff changeset
   563
     allowing a raise to mimicri the exception happened somewhere else."
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   564
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   565
    ^ (Exception 
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   566
              signal:self
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   567
              parameter:aParameter 
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   568
              errorString:(self errorStringFor:aString with:aParameter)
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   569
              suspendedContext:aContext) raiseRequest
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   570
1608
440faca45e37 comment
Claus Gittinger <cg@exept.de>
parents: 1362
diff changeset
   571
    "Modified: 26.7.1996 / 16:29:27 / cg"
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   572
!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   573
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   574
raiseRequestWith:aParameter in:aContext
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   575
    "raise a signal proceedable.
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   576
     The signals notifierString is used as errorString.
1608
440faca45e37 comment
Claus Gittinger <cg@exept.de>
parents: 1362
diff changeset
   577
     The additional context is passed as the context responsible for the raise,
440faca45e37 comment
Claus Gittinger <cg@exept.de>
parents: 1362
diff changeset
   578
     allowing a raise to mimicri the exception happened somewhere else."
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   579
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   580
    ^ (Exception 
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   581
              signal:self
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   582
              parameter:aParameter 
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   583
              errorString:(self errorStringFor:nil with:aParameter)
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   584
              suspendedContext:aContext) raiseRequest.
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   585
1608
440faca45e37 comment
Claus Gittinger <cg@exept.de>
parents: 1362
diff changeset
   586
    "Modified: 26.7.1996 / 16:29:33 / cg"
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   587
!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   588
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   589
raiseWith:aParameter
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   590
    "raise a signal nonproceedable.
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   591
     - notice, ST/X does not (for now) distinguish between proceedable and
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   592
       non proceedable exceptions.
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   593
     The argument, aParameter is passed as parameter.
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   594
     XXX: I am not certain, if this is the correct behavior (seen in remoteInvocation-goodie)"
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   595
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   596
    ^ (Exception 
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   597
              signal:self
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   598
              parameter:aParameter 
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   599
              errorString:(self errorStringFor:nil with:aParameter)
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   600
              suspendedContext:thisContext sender) raise.
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   601
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   602
    "Modified: 9.5.1996 / 15:14:24 / cg"
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   603
!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   604
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   605
raiseWith:aParameter errorString:aString
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   606
    "raise a signal nonproceedable 
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   607
     - notice, ST/X does not (for now) distinguish between proceedable and
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   608
       non proceedable exceptions.
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   609
     The argument, aString is used as errorString, aParameter is passed
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   610
     as exception parameter."
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   611
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   612
    ^ (Exception 
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   613
              signal:self
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   614
              parameter:aParameter 
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   615
              errorString:(self errorStringFor:aString with:aParameter)
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   616
              suspendedContext:thisContext sender) raise.
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   617
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   618
    "Modified: 9.5.1996 / 15:14:32 / cg"
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   619
!
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   620
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   621
raiseWith:aParameter errorString:aString in:aContext
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   622
    "raise a signal nonproceedable 
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   623
     - notice, ST/X does not (for now) distinguish between proceedable and
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   624
       non proceedable exceptions.
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   625
     The argument, aString is used as errorString, aParameter is passed
1608
440faca45e37 comment
Claus Gittinger <cg@exept.de>
parents: 1362
diff changeset
   626
     as exception parameter.
440faca45e37 comment
Claus Gittinger <cg@exept.de>
parents: 1362
diff changeset
   627
     The additional context is passed as the context responsible for the raise,
440faca45e37 comment
Claus Gittinger <cg@exept.de>
parents: 1362
diff changeset
   628
     allowing a raise to mimicri the exception happened somewhere else."
440faca45e37 comment
Claus Gittinger <cg@exept.de>
parents: 1362
diff changeset
   629
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   630
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   631
    ^ (Exception 
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   632
              signal:self
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   633
              parameter:aParameter 
1362
36e887173783 dok & errorString passing fixed (include parameter)
Claus Gittinger <cg@exept.de>
parents: 1326
diff changeset
   634
              errorString:(self errorStringFor:aString with:aParameter)
1326
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   635
              suspendedContext:aContext) raise.
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   636
60ea3687ee49 commentary
Claus Gittinger <cg@exept.de>
parents: 1292
diff changeset
   637
    "Created: 2.5.1996 / 16:37:25 / cg"
1608
440faca45e37 comment
Claus Gittinger <cg@exept.de>
parents: 1362
diff changeset
   638
    "Modified: 26.7.1996 / 16:29:42 / cg"
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   639
! !
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   640
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   641
!Signal methodsFor:'save evaluation'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   642
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   643
catch:aBlock
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   644
     "evaluate the argument, aBlock.
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   645
      If the receiver-signal is raised during evaluation, abort
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   646
      the evaluation and return true; otherwise return false. 
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   647
      This is the catch & throw mechanism found in other languages,
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   648
      where the returned value indicates if an exception occured."
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   649
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   650
      |raiseOccurred|
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   651
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   652
      raiseOccurred := false.
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   653
      self handle:[:ex | raiseOccurred := true. ex return] do:aBlock.
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   654
      ^ raiseOccurred
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   655
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   656
      "
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   657
       Object messageNotUnderstoodSignal catch:[
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   658
	  123 size open   
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   659
       ]
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   660
      "
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   661
!
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   662
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   663
handle:handleBlock do:aBlock
a27a279701f8 Initial revision
claus
parents:
diff changeset
   664
    "evaluate the argument, aBlock.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   665
     If the receiver-signal is raised during evaluation,
a27a279701f8 Initial revision
claus
parents:
diff changeset
   666
     evaluate the handleBlock passing it an Exception argument.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   667
     The handler may decide how to react to the signal by sending
a27a279701f8 Initial revision
claus
parents:
diff changeset
   668
     a corresponding message to the exception (see there).
a27a279701f8 Initial revision
claus
parents:
diff changeset
   669
     If the signal is not raised, return the value of evaluating
a27a279701f8 Initial revision
claus
parents:
diff changeset
   670
     aBlock."
a27a279701f8 Initial revision
claus
parents:
diff changeset
   671
a27a279701f8 Initial revision
claus
parents:
diff changeset
   672
     ^ aBlock value  "the real logic is in raise/Exception"
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   673
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   674
      "
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   675
       Object messageNotUnderstoodSignal handle:[:ex |
159
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   676
	  'oops' printNL.
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   677
	  ex return
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   678
       ] do:[
159
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   679
	  123 size open   
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   680
       ]
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   681
      "
120
9a2e74ed2f81 added per-process handler
claus
parents: 95
diff changeset
   682
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   683
      "
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   684
       |num|
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   685
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   686
       num := 0.
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   687
       Number divisionByZeroSignal handle:[:ex |
159
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   688
	  'oops' printNL.
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   689
	  ex return
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   690
       ] do:[
159
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   691
	  123 / num   
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   692
       ]
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
   693
      "
44
b262907c93ea *** empty log message ***
claus
parents: 27
diff changeset
   694
!
b262907c93ea *** empty log message ***
claus
parents: 27
diff changeset
   695
362
claus
parents: 345
diff changeset
   696
handle:handleBlock from:anObject do:aBlock
claus
parents: 345
diff changeset
   697
    "evaluate the argument, aBlock.
claus
parents: 345
diff changeset
   698
     If the receiver-signal is raised during evaluation,
claus
parents: 345
diff changeset
   699
     and the exception originated from anObject,
claus
parents: 345
diff changeset
   700
     evaluate the handleBlock passing it an Exception argument.
claus
parents: 345
diff changeset
   701
     The handler may decide how to react to the signal by sending
claus
parents: 345
diff changeset
   702
     a corresponding message to the exception (see there).
claus
parents: 345
diff changeset
   703
     If the signal is not raised, return the value of evaluating
claus
parents: 345
diff changeset
   704
     aBlock."
claus
parents: 345
diff changeset
   705
claus
parents: 345
diff changeset
   706
     ^ aBlock value  "the real logic is in raise/Exception"
claus
parents: 345
diff changeset
   707
claus
parents: 345
diff changeset
   708
      "
2689
ada9b102abcf typo fix
Claus Gittinger <cg@exept.de>
parents: 2497
diff changeset
   709
       the first open will be caught; the second not:
362
claus
parents: 345
diff changeset
   710
claus
parents: 345
diff changeset
   711
       |o1 o2|
claus
parents: 345
diff changeset
   712
claus
parents: 345
diff changeset
   713
       o1 := 123.
claus
parents: 345
diff changeset
   714
       o2 := nil.
claus
parents: 345
diff changeset
   715
       Object messageNotUnderstoodSignal 
claus
parents: 345
diff changeset
   716
	   handle:
claus
parents: 345
diff changeset
   717
		[:ex |
claus
parents: 345
diff changeset
   718
		    'oops' printNL.
claus
parents: 345
diff changeset
   719
		    ex proceed
claus
parents: 345
diff changeset
   720
		] 
claus
parents: 345
diff changeset
   721
	   from:o1
claus
parents: 345
diff changeset
   722
	   do:
claus
parents: 345
diff changeset
   723
		[
claus
parents: 345
diff changeset
   724
		    o1 open.
claus
parents: 345
diff changeset
   725
		    o2 open
claus
parents: 345
diff changeset
   726
		]
claus
parents: 345
diff changeset
   727
      "
claus
parents: 345
diff changeset
   728
!
claus
parents: 345
diff changeset
   729
419
62f39bdfe99d *** empty log message ***
claus
parents: 406
diff changeset
   730
ignoreIn:aBlock
159
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   731
     "evaluate the argument, aBlock.
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   732
      Ignore the receiver-signal during evaluation - i.e. simply
419
62f39bdfe99d *** empty log message ***
claus
parents: 406
diff changeset
   733
      continue. 
62f39bdfe99d *** empty log message ***
claus
parents: 406
diff changeset
   734
      This makes only sense for some signals, such as UserInterrupt
62f39bdfe99d *** empty log message ***
claus
parents: 406
diff changeset
   735
      or AbortSignal, because continuing after an exception without any cleanup
62f39bdfe99d *** empty log message ***
claus
parents: 406
diff changeset
   736
      often leads to followup-errors."
159
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   737
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   738
      ^ self handle:[:ex | ex proceed] do:aBlock.
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   739
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   740
      "
419
62f39bdfe99d *** empty log message ***
claus
parents: 406
diff changeset
   741
       Object messageNotUnderstoodSignal ignoreIn:[
159
514c749165c3 *** empty log message ***
claus
parents: 145
diff changeset
   742
	  123 size open   
61
claus
parents: 44
diff changeset
   743
       ]
claus
parents: 44
diff changeset
   744
      "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   745
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   746
2207
ee6d4213b9df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1610
diff changeset
   747
!Signal class methodsFor:'documentation'!
1249
2d5d0edd3359 commentary
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
   748
2d5d0edd3359 commentary
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
   749
version
3008
Claus Gittinger <cg@exept.de>
parents: 3004
diff changeset
   750
    ^ '$Header: /cvs/stx/stx/libbasic/Signal.st,v 1.45 1997-10-08 11:28:28 cg Exp $'
1249
2d5d0edd3359 commentary
Claus Gittinger <cg@exept.de>
parents: 854
diff changeset
   751
! !
622
a17084b7ac06 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   752
Signal initialize!