DebugView.st
author Claus Gittinger <cg@exept.de>
Sat, 26 Jul 2014 09:55:23 +0200
changeset 14680 858e67cc7b81
parent 14676 cc90618aa4be
child 14695 cecbcb8523d9
permissions -rw-r--r--
class: DebugView added:5 methods comment/format in: #documentation changed: #breakPointMenuSpec #menuForIgnoreBreakpointIfCalledFromAnyOf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
571fd5eee315 Initial revision
claus
parents:
diff changeset
     1
"
4
77d8e96499b2 *** empty log message ***
claus
parents: 2
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
     3
              All Rights Reserved
0
571fd5eee315 Initial revision
claus
parents:
diff changeset
     4
571fd5eee315 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
571fd5eee315 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
571fd5eee315 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
571fd5eee315 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
571fd5eee315 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
571fd5eee315 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
571fd5eee315 Initial revision
claus
parents:
diff changeset
    11
"
2678
90eb8be47ac4 avoid annoying modified-code dialog when reselecting the same
Claus Gittinger <cg@exept.de>
parents: 2633
diff changeset
    12
"{ Package: 'stx:libtool' }"
90eb8be47ac4 avoid annoying modified-code dialog when reselecting the same
Claus Gittinger <cg@exept.de>
parents: 2633
diff changeset
    13
0
571fd5eee315 Initial revision
claus
parents:
diff changeset
    14
StandardSystemView subclass:#DebugView
12839
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    15
	instanceVariableNames:'busy haveControl exitAction canContinue contextView codeView
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    16
		receiverInspector contextInspector contextArray selectedContext
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    17
		catchBlock grabber mayProceed traceView tracing bigStep
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    18
		skipLineNr steppedContextAddress abortButton terminateButton
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    19
		continueButton stepButton nextButton nextOverButton nextOutButton
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    20
		sendButton returnButton restartButton exclusive inspecting
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    21
		nChainShown inspectedProcess updateProcess stopButton
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    22
		updateButton defineButton monitorToggle stepping
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    23
		steppedContextLineno stepForReturn actualContext inWrap
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    24
		stackInspector steppedContext wrapperContext verboseBacktrace
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    25
		firstContext stepHow cachable currentMethod ignoreBreakpoints
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    26
		stepUntilEntering lastStepUntilEntering
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    27
		lastSelectionInReceiverInspector lastSelectionInContextInspector
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    28
		canShowMore exitAbort reportButton setOfHiddenCallingSelectors
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    29
		isStoppedAtHaltOrBreakPoint exceptionInfoLabel methodCodeToggle
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    30
		methodCodeToggleSelectionHolder
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    31
		isStoppedAtBreakPointWithParameter breakPointParameter
13362
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
    32
		hideSupportCode contextInfoLabel resendButton
13488
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
    33
		gotoDialogOpenerButton isStoppedInModalDialog selectorToDefine
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
    34
		classToDefineIn gotoApplicationActionMethodButton
14531
174dbf38254c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14524
diff changeset
    35
		isStoppedInApplicationAction isStoppedAtStatementBreakpoint'
12839
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    36
	classVariableNames:'CachedDebugger CachedExclusive OpenDebuggers MoreDebuggingDetail
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    37
		DebuggingDebugger DebuggingDebugger2
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    38
		DefaultDebuggerBackgroundColor InitialNChainShown IgnoredHalts
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    39
		ShowThreadID LastIgnoreHaltNTimes LastIgnoreHaltDuration
13111
62e4e27bd560 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13059
diff changeset
    40
		LastExtent LastOrigin RememberedCallChain DebuggingDebugger3
62e4e27bd560 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13059
diff changeset
    41
		NumberOfDebuggers'
12839
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    42
	poolDictionaries:''
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    43
	category:'Interface-Debugger'
0
571fd5eee315 Initial revision
claus
parents:
diff changeset
    44
!
571fd5eee315 Initial revision
claus
parents:
diff changeset
    45
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
    46
Object subclass:#IgnoredHaltOrBreakpoint
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
    47
	instanceVariableNames:'ignoreEndTime ignoreCount ignoreUntilShiftKeyPressed
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
    48
		ignoredReceiverClasses ignoredProcesses
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
    49
		ignoredSendingClassAndSelectors'
12839
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    50
	classVariableNames:''
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    51
	poolDictionaries:''
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    52
	privateIn:DebugView
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
    53
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
    54
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
    55
DebugView::IgnoredHaltOrBreakpoint subclass:#IgnoredHalt
12839
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    56
	instanceVariableNames:'weakMethodHolder lineNumber'
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    57
	classVariableNames:''
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    58
	poolDictionaries:''
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    59
	privateIn:DebugView
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
    60
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
    61
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
    62
DebugView::IgnoredHaltOrBreakpoint subclass:#IgnoredBreakpoint
12839
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    63
	instanceVariableNames:'parameter'
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    64
	classVariableNames:''
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    65
	poolDictionaries:''
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
    66
	privateIn:DebugView
8170
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
    67
!
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
    68
778
e0f6238c9dd5 better stepping of an interrupted context.
Claus Gittinger <cg@exept.de>
parents: 775
diff changeset
    69
!DebugView class methodsFor:'documentation'!
29
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
    70
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
    71
copyright
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
    72
"
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
    73
 COPYRIGHT (c) 1989 by Claus Gittinger
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
    74
              All Rights Reserved
29
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
    75
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
    76
 This software is furnished under a license and may be used
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
    77
 only in accordance with the terms of that license and with the
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
    78
 inclusion of the above copyright notice.   This software may not
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
    79
 be provided or otherwise made available to, or used by, any
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
    80
 other person.  No title to or ownership of the software is
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
    81
 hereby transferred.
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
    82
"
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
    83
!
0
571fd5eee315 Initial revision
claus
parents:
diff changeset
    84
29
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
    85
documentation
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
    86
"
1240
ff3fdaa72df6 In #destroy CodeView>>contents: has been called and caused a
Stefan Vogel <sv@exept.de>
parents: 1213
diff changeset
    87
    This class implements a graphical debugger interface.
29
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
    88
    The debugger usually sits on top of the faulting process,
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
    89
    taking over its event processing.
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
    90
2358
81472caab073 comment
Claus Gittinger <cg@exept.de>
parents: 2355
diff changeset
    91
    (this is different from other Smalltalk debuggers, which control
81472caab073 comment
Claus Gittinger <cg@exept.de>
parents: 2355
diff changeset
    92
     the debuggee as a separate process. Consider this an historic
14680
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
    93
     leftover - the debugger was one of the first applications written for ST/X.
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
    94
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
    95
     The whole setup might be changed, once the required process primitives
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
    96
     are available, which allow control of another processes execution
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
    97
     (i.e. single-step, restart & return). The setup will be changed then,
14680
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
    98
     to have the debugger control the debuggee (i.e. two processes).
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
    99
     However, as it works as it is, and is reliable enough, 
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   100
     why should we change it without a particular need...).
2358
81472caab073 comment
Claus Gittinger <cg@exept.de>
parents: 2355
diff changeset
   101
81472caab073 comment
Claus Gittinger <cg@exept.de>
parents: 2355
diff changeset
   102
    Only the 'stopped' debugged process is affected;
29
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
   103
    other processes continue to respond to events.
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
   104
    The one exception to this is when an error occurs within the dispatcher process
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
   105
    or in one of the eventhandler processes. In this case, the debugger
29
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
   106
    will sit on an exclusive display connection.
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
   107
35
cd5cb075fd6a *** empty log message ***
claus
parents: 29
diff changeset
   108
    See additional information in 'doc/misc/debugger.doc'.
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
   109
14680
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   110
    Notice & Warning (attention when changing thingslike menus, window spec etc. here):
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   111
        the DebugView class caches the last used debugger in a class variable,
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   112
        and hides/shows this window without recreating one from scratch. This is done to make
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   113
        the debugger come up faster when single stepping, or hopping from breakpoint to breakpoint.
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   114
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   115
        It may happen, that a malfunctioning debugger (for example, a halfway created/destroyed one) 
11837
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
   116
        is kept there. You will notice this, if a debugger comes up without showing any contents. 
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
   117
        In this case, close (or destroy) the broken debugView, and execute
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   118
            Debugger newDebugger
11837
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
   119
        which removes the cached debugger and forces creation of a new one the next time. 
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
   120
        This is a temporary workaround - the debugger should be fixed to avoid this situation.
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
   121
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
   122
        You must also flush the cached debugger, if you change the debugger's
11837
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
   123
        initialization code (buttons, menu, etc.) or the debugger's class layout,
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
   124
        and you want the new code to become effective.
508
8d2ab732fca5 documentation
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
   125
8d2ab732fca5 documentation
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
   126
    [author:]
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   127
        Claus Gittinger
508
8d2ab732fca5 documentation
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
   128
8d2ab732fca5 documentation
Claus Gittinger <cg@exept.de>
parents: 494
diff changeset
   129
    [see also:]
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   130
        Exception Signal
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   131
        Process
29
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
   132
"
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
   133
! !
0
571fd5eee315 Initial revision
claus
parents:
diff changeset
   134
778
e0f6238c9dd5 better stepping of an interrupted context.
Claus Gittinger <cg@exept.de>
parents: 775
diff changeset
   135
!DebugView class methodsFor:'initialization'!
243
4cdc71d87dd4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 212
diff changeset
   136
1092
059c29fac604 made the number of frames shown initially a
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   137
initialize
13362
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
   138
    DebuggingDebugger := DebuggingDebugger2 := MoreDebuggingDetail := false.
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
   139
9135
b686c004104c comment/format in: #initializeStepButtonIn:
Claus Gittinger <cg@exept.de>
parents: 9133
diff changeset
   140
    InitialNChainShown := 50.
8148
21180715dbe9 new layout
Claus Gittinger <cg@exept.de>
parents: 8143
diff changeset
   141
    "/ DefaultDebuggerBackgroundColor := nil.
3387
4cbed052fbbe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   142
    "/ DefaultDebuggerBackgroundColor := Color red lightened.
4cbed052fbbe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
   143
    "/ DefaultDebuggerBackgroundColor := Color blue lightened lightened.
1092
059c29fac604 made the number of frames shown initially a
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   144
059c29fac604 made the number of frames shown initially a
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   145
    "Created: 20.3.1997 / 16:53:37 / cg"
059c29fac604 made the number of frames shown initially a
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   146
    "Modified: 20.3.1997 / 16:54:32 / cg"
059c29fac604 made the number of frames shown initially a
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   147
!
059c29fac604 made the number of frames shown initially a
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
   148
243
4cdc71d87dd4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 212
diff changeset
   149
reinitialize
7822
3438bb87dda0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7797
diff changeset
   150
    "reinitialize after an image-restart"
3438bb87dda0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7797
diff changeset
   151
243
4cdc71d87dd4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 212
diff changeset
   152
    self newDebugger
4cdc71d87dd4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 212
diff changeset
   153
! !
4cdc71d87dd4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 212
diff changeset
   154
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   155
!DebugView class methodsFor:'cleanup'!
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   156
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
   157
lowSpaceCleanup
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   158
    "in low memory situations, give up cached debuggers"
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   159
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   160
    CachedDebugger := nil.
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   161
    CachedExclusive := nil.
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   162
    OpenDebuggers := nil.
11391
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
   163
    RememberedCallChain := nil.
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   164
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   165
    "
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   166
     DebugView lowSpaceCleanup
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   167
    "
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   168
11391
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
   169
    "Modified: / 08-03-2012 / 01:30:21 / cg"
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   170
!
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   171
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   172
newDebugger
13488
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
   173
    "force creation of a new debugger (give up cached debuggers).
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
   174
     Call this, if you changed the debugger heavily, and you want to avoid
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
   175
     that an old, cached debugger gets reused when the next error comes around."
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   176
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   177
    CachedDebugger := nil.
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   178
    CachedExclusive := nil.
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   179
    OpenDebuggers := nil.
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   180
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   181
    (Debugger isBehavior and:[Debugger name = #DebugView]) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   182
        Debugger := self
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   183
    ].
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   184
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   185
    "
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   186
     DebugView newDebugger
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   187
    "
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   188
! !
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   189
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   190
!DebugView class methodsFor:'defaults'!
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   191
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   192
defaultIcon
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   193
    "return the browsers default window icon"
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   194
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   195
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   196
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
   197
    ^ ToolbarIconLibrary debug22x22Icon
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   198
    "/ ^ ToolbarIconLibrary debugIt20x20Icon
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   199
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   200
    "Modified: / 11-02-2007 / 11:47:20 / cg"
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   201
!
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   202
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   203
defaultIconForAboutBox
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   204
    <resource: #programImage>
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   205
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
   206
    ^ ToolbarIconLibrary debug22x22IconForBlackBackgound
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   207
!
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   208
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   209
defaultVerboseBacktrace
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   210
    <resource: #obsolete>
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   211
    self obsoleteMethodWarning.
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   212
    ^ UserPreferences current verboseBacktraceInDebugger
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   213
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   214
    "Created: 11.1.1997 / 12:14:35 / cg"
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   215
!
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   216
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   217
defaultVerboseBacktrace:aBoolean
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   218
    <resource: #obsolete>
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   219
    self obsoleteMethodWarning.
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   220
    UserPreferences current verboseBacktraceInDebugger:aBoolean
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   221
!
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   222
13111
62e4e27bd560 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13059
diff changeset
   223
maxNumberOfDebuggers
62e4e27bd560 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13059
diff changeset
   224
    "to prevent debuggers from flooding the screen,
62e4e27bd560 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13059
diff changeset
   225
     in case of an error in an ever-forked background process
62e4e27bd560 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13059
diff changeset
   226
     (such as tooltip process)"
62e4e27bd560 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13059
diff changeset
   227
62e4e27bd560 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13059
diff changeset
   228
    ^ 10
62e4e27bd560 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13059
diff changeset
   229
!
62e4e27bd560 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13059
diff changeset
   230
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   231
updateStyleCache
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   232
    "extract values from the styleSheet and cache them in class variables"
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   233
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   234
    <resource: #style (#'debugView.viewBackgroundColor')>
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   235
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   236
    DefaultDebuggerBackgroundColor := StyleSheet at:#'debugView.viewBackgroundColor'
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   237
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   238
    "Modified: / 17.11.2001 / 17:31:42 / cg"
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   239
! !
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   240
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   241
!DebugView class methodsFor:'ignoring halts'!
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   242
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   243
haltIgnoreInformationFor:haltingMethod atLineNr:lineNrInHaltingMethod
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   244
    "the information (if any) about the ignore-state of a halt"
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   245
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   246
    IgnoredHalts isNil ifTrue:[^ nil].
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   247
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
   248
    IgnoredHalts do:[:ign |
12941
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
   249
        (ign isForMethod:haltingMethod line:lineNrInHaltingMethod)
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
   250
        "/ (ign isHaltIgnoredInMethod:haltingMethod line:lineNrInHaltingMethod) 
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
   251
        ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   252
            ^ ign
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   253
        ].
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   254
    ].
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   255
    ^ nil.
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   256
!
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   257
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   258
hasIgnoredHalts
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   259
    self removeInactiveIgnores.
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   260
    ^ IgnoredHalts notEmptyOrNil
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   261
!
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   262
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   263
ignoreBreakpointWithParameter:parameterOrNil 
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   264
        forCount:countOrNil orTimeDuration:dTOrNil orUntilShiftKey:untilShiftKey 
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   265
        orReceiverClass:receiverClassOrNil orProcess:processOrNil
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   266
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   267
    "remember to ignore a breakpoint with a parameter (i.e. breakpoint:#cg) for some number of invocations
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   268
     or until some time has elapsed.
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   269
     With nil count and time arguments, such an ignored breakpoint is reactivated"
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   270
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   271
    self 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   272
        ignoreHaltOrBreakpoint:#halt 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   273
        method:nil line:nil  
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   274
        parameter:parameterOrNil 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   275
        forCount:countOrNil orTimeDuration:dTOrNil orUntilShiftKey:untilShiftKey
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   276
        orReceiverClass:receiverClassOrNil orProcess:processOrNil
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   277
        orIfCalledFromMethod:nil
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   278
!
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   279
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   280
ignoreHaltIn:haltingMethod at:lineNrOfHalt 
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   281
        forCount:countOrNil orTimeDuration:dTOrNil orUntilShiftKey:untilShiftKey 
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   282
        orReceiverClass:receiverClassOrNil orProcess:processOrNil
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   283
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   284
    "remember to ignore a halt in some method for some number of invocations
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   285
     or until some time has elapsed.
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   286
     With nil count and time arguments, such an ignored halt is reactivated"
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   287
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   288
    self 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   289
        ignoreHaltOrBreakpoint:#halt 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   290
        method:haltingMethod line:lineNrOfHalt  
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   291
        parameter:nil 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   292
        forCount:countOrNil orTimeDuration:dTOrNil orUntilShiftKey:untilShiftKey
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   293
        orReceiverClass:receiverClassOrNil orProcess:processOrNil
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   294
        orIfCalledFromMethod:nil
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   295
!
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   296
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   297
ignoreHaltIn:haltingMethod at:lineNrOfHalt 
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   298
        forCount:countOrNil orTimeDuration:dTOrNil orUntilShiftKey:untilShiftKey 
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   299
        orReceiverClass:receiverClassOrNil orProcess:processOrNil
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   300
        orIfCalledFromMethod:ifCalledForMethodOrNil
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   301
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   302
    "remember to ignore a halt in some method for some number of invocations
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   303
     or until some time has elapsed.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   304
     With nil count and time arguments, such an ignored halt is reactivated"
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   305
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   306
    self 
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   307
        ignoreHaltOrBreakpoint:#halt 
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   308
        method:haltingMethod line:lineNrOfHalt  
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   309
        parameter:nil 
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   310
        forCount:countOrNil orTimeDuration:dTOrNil orUntilShiftKey:untilShiftKey
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   311
        orReceiverClass:receiverClassOrNil orProcess:processOrNil
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   312
        orIfCalledFromMethod:ifCalledForMethodOrNil
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   313
!
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   314
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   315
ignoreHaltOrBreakpoint:type method:methodOrNil line:lineNrOfHaltOrNil parameter:parameterOrNil 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   316
        forCount:countOrNil orTimeDuration:dTOrNil orUntilShiftKey:untilShiftKey
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   317
        orReceiverClass:receiverClassOrNil orProcess:processOrNil
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   318
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   319
    "remember to ignore a breakpoint with a parameter (i.e. breakpoint:#cg) for some number of invocations
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   320
     or until some time has elapsed.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   321
     With nil count and time arguments, such an ignored breakpoint is reactivated"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   322
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   323
    ^ self
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   324
        ignoreHaltOrBreakpoint:type method:methodOrNil line:lineNrOfHaltOrNil parameter:parameterOrNil 
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   325
        forCount:countOrNil orTimeDuration:dTOrNil orUntilShiftKey:untilShiftKey
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   326
        orReceiverClass:receiverClassOrNil orProcess:processOrNil
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   327
        orIfCalledFromMethod:nil
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   328
!
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   329
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   330
ignoreHaltOrBreakpoint:type method:methodOrNil line:lineNrOfHaltOrNil parameter:parameterOrNil 
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   331
        forCount:countOrNil orTimeDuration:dTOrNil orUntilShiftKey:untilShiftKey
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   332
        orReceiverClass:receiverClassOrNil orProcess:processOrNil
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   333
        orIfCalledFromMethod:ifCalledFromMethodOrNil
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   334
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   335
    "remember to ignore a breakpoint with a parameter (i.e. breakpoint:#cg) for some number of invocations
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   336
     or until some time has elapsed.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   337
     With nil count and time arguments, such an ignored breakpoint is reactivated"
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   338
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   339
    |oldEntry ign|
12947
46051d026ba5 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12941
diff changeset
   340
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   341
    IgnoredHalts notNil ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   342
        self removeInactiveIgnores.
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   343
        type == #halt ifTrue:[
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   344
            oldEntry := IgnoredHalts
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   345
                            detect:[:ign | ign isForMethod:methodOrNil line:lineNrOfHaltOrNil]
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   346
                            ifNone:nil.
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   347
        ] ifFalse:[
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   348
            oldEntry := IgnoredHalts
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   349
                            detect:[:ign | ign isForBreakpointWithParameter:parameterOrNil]
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   350
                            ifNone:nil.
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   351
        ].
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   352
        oldEntry notNil ifTrue:[
12941
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
   353
            (processOrNil notNil or:[receiverClassOrNil notNil]) ifTrue:[
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
   354
                receiverClassOrNil notNil ifTrue:[
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
   355
                    oldEntry ignoreForReceiverClass:receiverClassOrNil.
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
   356
                ].
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
   357
                processOrNil notNil ifTrue:[
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
   358
                    oldEntry ignoreForProcess:processOrNil.
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
   359
                ].
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
   360
                ^ self.
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
   361
            ].
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   362
            IgnoredHalts remove:oldEntry ifAbsent:[].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   363
        ]
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   364
    ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   365
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   366
    (countOrNil notNil 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   367
      or:[dTOrNil notNil 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   368
      or:[untilShiftKey == true
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   369
      or:[receiverClassOrNil notNil
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   370
      or:[processOrNil notNil
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   371
      or:[ifCalledFromMethodOrNil notNil]]]]]
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   372
    ) ifTrue:[
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   373
        IgnoredHalts isNil ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   374
            IgnoredHalts := OrderedCollection new.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   375
        ].
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   376
        type == #halt ifTrue:[
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   377
            ign := IgnoredHalt new method:methodOrNil lineNumber:lineNrOfHaltOrNil.
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   378
        ] ifFalse:[
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   379
            ign := IgnoredHalt new breakpointWithParameter:parameterOrNil.
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   380
        ].
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   381
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   382
        (countOrNil notNil and:[countOrNil > 0]) ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   383
            ign ignoreCount:countOrNil.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   384
        ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   385
        (dTOrNil notNil) ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   386
            ign ignoreEndTime:(Timestamp now + dTOrNil).
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   387
        ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   388
        untilShiftKey == true ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   389
            ign ignoreUntilShiftKeyPressed:true.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   390
        ].
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   391
        receiverClassOrNil notNil ifTrue:[
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   392
            ign ignoreForReceiverClass:receiverClassOrNil.
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   393
        ].
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   394
        processOrNil notNil ifTrue:[
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   395
            ign ignoreForProcess:processOrNil.
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   396
        ].
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   397
        ifCalledFromMethodOrNil notNil ifTrue:[ 
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   398
            ign ignoreIfCalledFromMethod:ifCalledFromMethodOrNil.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   399
        ].
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   400
        IgnoredHalts add:ign.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   401
    ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   402
    Smalltalk changed:#ignoredHalts.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   403
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   404
    "Created: / 06-03-2012 / 12:37:58 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   405
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   406
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   407
isBreakpointToBeIgnoredForParameter:parameter context:aContext modifyEntryCount:modifyCount
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   408
    "/ should a breakpoint be ignored ?
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   409
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   410
    IgnoredHalts isNil ifTrue:[^ false].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   411
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   412
    "/ Transcript showCR:'halt/break in ',haltingMethod printString,' at ',lineNrInHaltingMethod printString.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   413
    IgnoredHalts do:[:ign |
11367
bd0402b6421a changed: #isBreakpointToBeIgnoredForParameter:modifyEntryCount:
Claus Gittinger <cg@exept.de>
parents: 11366
diff changeset
   414
        (ign isForBreakpointWithParameter:parameter) ifTrue:[
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   415
            Transcript show:'Debugger [info]: break ignored for ', parameter.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   416
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   417
            modifyCount ifTrue:[ ign decrementIgnoreCount ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   418
            ign isHaltIgnored ifFalse:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   419
                Transcript showCR:'Debugger [info]: no longer ignore breakpoint for ', parameter.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   420
                IgnoredHalts remove:ign ifAbsent:[].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   421
            ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   422
            ^ true.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   423
        ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   424
    ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   425
13162
e19746a3bf73 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13111
diff changeset
   426
    IgnoredHalts := (IgnoredHalts reject:[:ign | ign isActive not ]) asNilIfEmpty.
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   427
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   428
    ^ false.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   429
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   430
    "Created: / 06-03-2012 / 12:50:30 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   431
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
   432
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   433
isHaltToBeIgnoredIn:haltingMethod atLineNr:lineNrInHaltingMethod context:aContext modifyEntryCount:modifyCount
12562
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   434
    "should a halt be ignored ?"
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   435
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   436
    IgnoredHalts isNil ifTrue:[^ false].
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   437
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   438
    "/ Transcript showCR:'halt/break in ',haltingMethod printString,' at ',lineNrInHaltingMethod printString.
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   439
    IgnoredHalts do:[:ign |
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   440
        (ign isHaltIgnoredInMethod:haltingMethod line:lineNrInHaltingMethod context:aContext) ifTrue:[
12562
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   441
            Transcript show:'Debugger [info]: halt/break ignored in ', haltingMethod whoString.
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   442
            Transcript show:' ('; show:ign; showCR:')'.
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   443
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   444
            modifyCount ifTrue:[ ign decrementIgnoreCount ].
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   445
            ign isHaltIgnored ifFalse:[
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   446
                Transcript showCR:'Debugger [info]: no longer ignore halt in ', haltingMethod whoString.
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   447
                IgnoredHalts remove:ign ifAbsent:[].
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   448
            ].
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   449
            ^ true.
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   450
        ].
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   451
    ].
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   452
13162
e19746a3bf73 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13111
diff changeset
   453
    IgnoredHalts := (IgnoredHalts reject:[:ign | ign isActive not]) asNilIfEmpty.
12562
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   454
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   455
    ^ false.
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   456
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   457
    "Modified (comment): / 06-03-2012 / 12:51:43 / cg"
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   458
!
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
   459
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   460
removeInactiveIgnores
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   461
    IgnoredHalts notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   462
        IgnoredHalts := IgnoredHalts select:[:i | i isActive].
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   463
    ].
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   464
!
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   465
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   466
stopIgnoringHalts
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   467
    "forget about all ignored halts"
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   468
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   469
    IgnoredHalts := nil.
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   470
    Smalltalk changed:#ignoredHalts.
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   471
! !
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   472
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
   473
!DebugView class methodsFor:'instance creation / entering'!
0
571fd5eee315 Initial revision
claus
parents:
diff changeset
   474
2421
9b166a3ce3cd checkin from browser
ca
parents: 2404
diff changeset
   475
enter
9b166a3ce3cd checkin from browser
ca
parents: 2404
diff changeset
   476
    "enter a debugger"
9b166a3ce3cd checkin from browser
ca
parents: 2404
diff changeset
   477
5455
05d522683185 fix to allow halt in an exception handler to work
penk
parents: 5454
diff changeset
   478
    <context: #return>
05d522683185 fix to allow halt in an exception handler to work
penk
parents: 5454
diff changeset
   479
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
   480
    ^ self
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   481
        enter:thisContext sender
13519
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
   482
        withMessage:'Debugger Entered'
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   483
        mayProceed:true.
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
   484
!
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
   485
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
   486
enter:aContext withMessage:aString
2355
5c881cb45539 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   487
    "enter a debugger"
5c881cb45539 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   488
5455
05d522683185 fix to allow halt in an exception handler to work
penk
parents: 5454
diff changeset
   489
    <context: #return>
05d522683185 fix to allow halt in an exception handler to work
penk
parents: 5454
diff changeset
   490
2355
5c881cb45539 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   491
    ^ self
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   492
        enter:aContext
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   493
        withMessage:aString
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   494
        mayProceed:true
2355
5c881cb45539 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   495
!
5c881cb45539 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2352
diff changeset
   496
2317
c2000833c86d care mayProceed information.
Claus Gittinger <cg@exept.de>
parents: 2313
diff changeset
   497
enter:aContext withMessage:aString mayProceed:mayProceed
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
   498
    "enter a debugger; if this is a recursive invocation, enter
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
   499
     a MiniDebugger instead.
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
   500
     This is the standard way of entering the debugger;
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
   501
     sent from error- and halt messages."
0
571fd5eee315 Initial revision
claus
parents:
diff changeset
   502
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
   503
    <context: #return>
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
   504
13111
62e4e27bd560 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13059
diff changeset
   505
    (NumberOfDebuggers ? 0) > self maxNumberOfDebuggers ifTrue:[
62e4e27bd560 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13059
diff changeset
   506
        NumberOfDebuggers := self allInstances count:[:d | d isOpen].
62e4e27bd560 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13059
diff changeset
   507
        NumberOfDebuggers > self maxNumberOfDebuggers ifTrue:[
62e4e27bd560 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13059
diff changeset
   508
            MiniDebugger enter:aContext withMessage:'too many debuggers - looping?' mayProceed:true.
62e4e27bd560 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13059
diff changeset
   509
        ].
62e4e27bd560 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13059
diff changeset
   510
    ].
62e4e27bd560 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13059
diff changeset
   511
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
   512
    DebuggingDebugger == true ifTrue:[
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
   513
        '==> enter1: (' print. aContext print. ')' printCR.
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
   514
    ].
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
   515
57
36e13831b62d *** empty log message ***
claus
parents: 56
diff changeset
   516
    StepInterruptPending := nil.
3998
a5d701d3802c ignore breakpoints within debugger
penk
parents: 3928
diff changeset
   517
    ControlInterrupt handle:[:ex |
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   518
        'DebugView [info]: breakpoint in debugger setup ignored [enter.]' infoPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   519
        ('DebugView [info]: breakpoint on:' , ex suspendedContext printString) infoPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   520
        ex proceed
3998
a5d701d3802c ignore breakpoints within debugger
penk
parents: 3928
diff changeset
   521
    ] do:[
13666
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   522
        |debugger|
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   523
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   524
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   525
         well, it could be a stepping or sending debugger up there;
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   526
         in this case, return to it. This happens, when a stepping process
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   527
         runs into an error (for example, a halt). In this case, we want the
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   528
         stepping debugger to come up again instead of a new one.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   529
        "
13666
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   530
        (debugger := self openDebuggerForActiveProcess) notNil ifTrue:[
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   531
            debugger unstep.
13904
fa0f2004dfd9 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13842
diff changeset
   532
            debugger setLabelFor:aString in:Processor activeProcess.
13666
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   533
            debugger mayProceed:mayProceed.
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   534
            ^ debugger enter:aContext select:nil.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   535
        ].
5911
a1444e8c5061 #enter:... returns the value for proceed
Stefan Vogel <sv@exept.de>
parents: 5904
diff changeset
   536
    ].
a1444e8c5061 #enter:... returns the value for proceed
Stefan Vogel <sv@exept.de>
parents: 5904
diff changeset
   537
    ^ self enterUnconditional:aContext withMessage:aString mayProceed:mayProceed
526
8be290d825d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 508
diff changeset
   538
13666
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   539
    "Modified: / 06-11-2013 / 20:58:54 / cg"
53
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
   540
!
2fc78a0165e7 *** empty log message ***
claus
parents: 52
diff changeset
   541
8347
724f40cfdbc6 +enterException
Claus Gittinger <cg@exept.de>
parents: 8338
diff changeset
   542
enterException:ex
724f40cfdbc6 +enterException
Claus Gittinger <cg@exept.de>
parents: 8338
diff changeset
   543
    "enter a debugger; if this is a recursive invocation, enter
724f40cfdbc6 +enterException
Claus Gittinger <cg@exept.de>
parents: 8338
diff changeset
   544
     a MiniDebugger instead.
724f40cfdbc6 +enterException
Claus Gittinger <cg@exept.de>
parents: 8338
diff changeset
   545
     This is the standard way of entering the debugger;
724f40cfdbc6 +enterException
Claus Gittinger <cg@exept.de>
parents: 8338
diff changeset
   546
     sent from error- and halt messages."
724f40cfdbc6 +enterException
Claus Gittinger <cg@exept.de>
parents: 8338
diff changeset
   547
724f40cfdbc6 +enterException
Claus Gittinger <cg@exept.de>
parents: 8338
diff changeset
   548
    ^ self
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   549
        enter:ex returnableSuspendedContext
12529
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
   550
        withMessage:('[',ex originalSignal class name,']: ',ex descriptionForDebugger)
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   551
        mayProceed:(ex mayProceed).
8347
724f40cfdbc6 +enterException
Claus Gittinger <cg@exept.de>
parents: 8338
diff changeset
   552
!
724f40cfdbc6 +enterException
Claus Gittinger <cg@exept.de>
parents: 8338
diff changeset
   553
2317
c2000833c86d care mayProceed information.
Claus Gittinger <cg@exept.de>
parents: 2313
diff changeset
   554
enterUnconditional:aContext withMessage:aString mayProceed:mayProceed
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   555
    "enter a debugger - do not check for recursive invocation"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   556
5455
05d522683185 fix to allow halt in an exception handler to work
penk
parents: 5454
diff changeset
   557
    <context: #return>
05d522683185 fix to allow halt in an exception handler to work
penk
parents: 5454
diff changeset
   558
5911
a1444e8c5061 #enter:... returns the value for proceed
Stefan Vogel <sv@exept.de>
parents: 5904
diff changeset
   559
    |aDebugger|
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   560
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   561
    StepInterruptPending := nil.
13111
62e4e27bd560 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13059
diff changeset
   562
    NumberOfDebuggers := (NumberOfDebuggers ? 0) + 1.
1309
f13dd58a3943 dont break if MessageTracer is not present
Claus Gittinger <cg@exept.de>
parents: 1302
diff changeset
   563
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   564
    "/ ignore halts & breakpoints while setting up the debugger
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   565
    "/ to avoid recursive debugging ...
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
   566
    ControlInterrupt handle:[:ex |
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   567
        'DebugView [info]: breakpoint in debugger setup ignored [enterUncond.]' infoPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   568
        ('DebugView [info]: breakpoint on:' , ex suspendedContext printString) infoPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   569
        ex proceed
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
   570
    ] do:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   571
        aDebugger := self new.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
   572
    ].
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
   573
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
   574
    aDebugger isNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   575
        'DebugView [error]: cannot open debugger' errorPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   576
        'DebugView [error]: Exception: ' errorPrint. aString errorPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   577
        mayProceed ifTrue:[
12333
a2387c6089f4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12106
diff changeset
   578
            (Dialog confirm:'Error/Breakpoint caught.\\Press Continue or Abort.' withCRs
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   579
                   yesLabel:'Continue' noLabel:'Abort')
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   580
            ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   581
                ^ nil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   582
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   583
        ] ifFalse:[
12333
a2387c6089f4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12106
diff changeset
   584
            self information:'Error caught.\\Press OK to abort the operation.' withCRs.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   585
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   586
        AbortOperationRequest raise.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   587
        "not reached"
1309
f13dd58a3943 dont break if MessageTracer is not present
Claus Gittinger <cg@exept.de>
parents: 1302
diff changeset
   588
    ].
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
   589
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
   590
    aDebugger mayProceed:mayProceed.
5911
a1444e8c5061 #enter:... returns the value for proceed
Stefan Vogel <sv@exept.de>
parents: 5904
diff changeset
   591
    aDebugger setLabelFor:aString in:Processor activeProcess.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
   592
    aDebugger enter:aContext select:nil.
5911
a1444e8c5061 #enter:... returns the value for proceed
Stefan Vogel <sv@exept.de>
parents: 5904
diff changeset
   593
    ^ nil.
a1444e8c5061 #enter:... returns the value for proceed
Stefan Vogel <sv@exept.de>
parents: 5904
diff changeset
   594
a1444e8c5061 #enter:... returns the value for proceed
Stefan Vogel <sv@exept.de>
parents: 5904
diff changeset
   595
    "
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   596
        nil halt
5911
a1444e8c5061 #enter:... returns the value for proceed
Stefan Vogel <sv@exept.de>
parents: 5904
diff changeset
   597
    "
1244
413709b30fd2 more care for breakpoints in debugger
Claus Gittinger <cg@exept.de>
parents: 1240
diff changeset
   598
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
   599
    "Modified: / 18.11.2001 / 00:29:23 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   600
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   601
6430
7673388c3254 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6366
diff changeset
   602
enterWithMessage:message
7673388c3254 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6366
diff changeset
   603
    "enter a debugger"
7673388c3254 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6366
diff changeset
   604
7673388c3254 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6366
diff changeset
   605
    <context: #return>
7673388c3254 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6366
diff changeset
   606
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
   607
    ^ self
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   608
        enter:(thisContext sender)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   609
        withMessage:message
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   610
        mayProceed:true.
6430
7673388c3254 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6366
diff changeset
   611
!
7673388c3254 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6366
diff changeset
   612
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   613
new
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
   614
    "return a new DebugView.
2358
81472caab073 comment
Claus Gittinger <cg@exept.de>
parents: 2355
diff changeset
   615
     - return a cached debugger if it already exists.
81472caab073 comment
Claus Gittinger <cg@exept.de>
parents: 2355
diff changeset
   616
     Also, care for remote displays on which no debugger is wanted
81472caab073 comment
Claus Gittinger <cg@exept.de>
parents: 2355
diff changeset
   617
     (ask with mayOpenDebugger) - if so, open on the default screen."
81472caab073 comment
Claus Gittinger <cg@exept.de>
parents: 2355
diff changeset
   618
81472caab073 comment
Claus Gittinger <cg@exept.de>
parents: 2355
diff changeset
   619
    |debugger currentScreen debuggerDevice|
81472caab073 comment
Claus Gittinger <cg@exept.de>
parents: 2355
diff changeset
   620
81472caab073 comment
Claus Gittinger <cg@exept.de>
parents: 2355
diff changeset
   621
    currentScreen := Screen current.
14
e07eee5d93ca *** empty log message ***
claus
parents: 13
diff changeset
   622
3030
5adb33d5111d fixed devices mayOpenDebugger / suppressDebugger handling.
Michael Beyl <mb@exept.de>
parents: 2963
diff changeset
   623
    currentScreen notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   624
        (currentScreen suppressDebugger) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   625
            "/ no debuggers with that device - show an alertBox which aborts...
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   626
            ^ nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   627
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   628
        (currentScreen mayOpenDebugger) ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   629
            "/ no debugger on that device - but on the main screen
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   630
            currentScreen := Screen default.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   631
        ].
3030
5adb33d5111d fixed devices mayOpenDebugger / suppressDebugger handling.
Michael Beyl <mb@exept.de>
parents: 2963
diff changeset
   632
    ].
5adb33d5111d fixed devices mayOpenDebugger / suppressDebugger handling.
Michael Beyl <mb@exept.de>
parents: 2963
diff changeset
   633
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   634
    "
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
   635
     need a blocking debugger if no processes or
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
   636
     or if its a timing/interrupt process
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   637
     (because otherwise we would not get any events here ...
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   638
    "
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   639
    Processor activeProcessIsSystemProcess ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   640
        ((debugger := CachedExclusive) isNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   641
        or:[debugger device ~~ currentScreen
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   642
        or:[currentScreen isNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   643
        or:[currentScreen isOpen not]]]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   644
            debugger := self newExclusive
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   645
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   646
        CachedExclusive := nil.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   647
    ] ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   648
        CachedDebugger notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   649
            (CachedDebugger device ~~ currentScreen
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   650
            or:[currentScreen isNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   651
            or:[currentScreen isOpen not
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   652
            or:[CachedDebugger class ~~ self]]]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   653
                CachedDebugger := nil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   654
            ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   655
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   656
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   657
        (debugger := CachedDebugger) notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   658
            CachedDebugger := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   659
        ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   660
            debuggerDevice := currentScreen.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   661
            debuggerDevice isNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   662
                "/ use the default display
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   663
                debuggerDevice := Screen default.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   664
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   665
            (debuggerDevice isNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   666
            or:[debuggerDevice isOpen not
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   667
            "/ or:[debuggerDevice mayOpenDebugger not]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   668
            ]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   669
                "/ no debugger
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   670
                ^ nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   671
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   672
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   673
            Screen currentScreenQuerySignal answer:debuggerDevice
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   674
            do:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   675
                debugger := super new.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   676
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   677
            debugger label:'Debugger'.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   678
            debugger icon:self defaultIcon.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   679
        ]
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   680
    ].
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
   681
    ^ debugger
875
f8ee393ca634 use Image instead of Form
Claus Gittinger <cg@exept.de>
parents: 870
diff changeset
   682
1265
3db375412f5d avoid caching a debugger which got destroyed
Claus Gittinger <cg@exept.de>
parents: 1263
diff changeset
   683
    "Modified: 31.7.1997 / 21:20:27 / cg"
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
   684
!
0
571fd5eee315 Initial revision
claus
parents:
diff changeset
   685
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   686
newExclusive
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   687
    "return a debugger for exclusive display access"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   688
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   689
    |debugger|
105
claus
parents: 101
diff changeset
   690
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   691
    debugger := super new.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   692
    debugger label:'Debugger'.
875
f8ee393ca634 use Image instead of Form
Claus Gittinger <cg@exept.de>
parents: 870
diff changeset
   693
    debugger icon:self defaultIcon.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   694
    debugger exclusive:true.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
   695
    ^ debugger
875
f8ee393ca634 use Image instead of Form
Claus Gittinger <cg@exept.de>
parents: 870
diff changeset
   696
f8ee393ca634 use Image instead of Form
Claus Gittinger <cg@exept.de>
parents: 870
diff changeset
   697
    "Modified: 1.1.1970 / 23:27:06 / cg"
105
claus
parents: 101
diff changeset
   698
!
claus
parents: 101
diff changeset
   699
13666
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   700
openDebuggerForActiveProcess
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   701
    "return an already open debugger for the active process, or nil, if there is none.
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   702
     Open debuggers exist when stepping only, as then, the debugger is left open until the step
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   703
     is reached, to avoid too much flickering and redrawing on the screen"
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   704
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   705
    |active|
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   706
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   707
    "
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   708
     well, it could be a stepping or sending debugger up there;
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   709
     in this case, return to it. This happens, when a stepping process
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   710
     runs into an error (for example, a halt). In this case, we want the
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   711
     stepping debugger to come up again instead of a new one.
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   712
    "
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   713
    OpenDebuggers notNil ifTrue:[
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   714
        active := Processor activeProcess.
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   715
        OpenDebuggers do:[:aDebugger |
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   716
            |debuggersProcess|
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   717
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   718
            (aDebugger notNil and:[aDebugger ~~ 0]) ifTrue:[
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   719
                debuggersProcess := aDebugger inspectedProcess.
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   720
                debuggersProcess == active ifTrue:[
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   721
                    aDebugger device isOpen ifTrue:[
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   722
                        DebuggingDebugger == true ifTrue:[
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   723
                            'reusing cached debugger' errorPrintCR.
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   724
                        ].
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   725
                        aDebugger unstep.
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   726
                        ^ aDebugger.
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   727
                    ]
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   728
                ].
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   729
                (debuggersProcess notNil and:[ debuggersProcess isDead ]) ifTrue:[
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   730
                    aDebugger destroy.
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   731
                ].
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   732
            ]
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   733
        ]
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   734
    ].
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   735
    ^ nil
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   736
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   737
    "Created: / 06-11-2013 / 20:57:49 / cg"
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   738
!
72c4ba297f65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13641
diff changeset
   739
29
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
   740
openOn:aProcess
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
   741
    "start a  debugger on aProcess
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
   742
     (actually not more than a good-looking inspector)"
15
7fc8fcef7bc6 *** empty log message ***
claus
parents: 14
diff changeset
   743
52
7b48409ae088 *** empty log message ***
claus
parents: 48
diff changeset
   744
    |aDebugger label nm|
15
7fc8fcef7bc6 *** empty log message ***
claus
parents: 14
diff changeset
   745
7fc8fcef7bc6 *** empty log message ***
claus
parents: 14
diff changeset
   746
    aDebugger := super new.
875
f8ee393ca634 use Image instead of Form
Claus Gittinger <cg@exept.de>
parents: 870
diff changeset
   747
    aDebugger icon:self defaultIcon.
29
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
   748
    aProcess notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   749
        nm := aProcess name.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   750
        nm notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   751
            nm := (nm contractTo:17) , '-' , aProcess id printString
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   752
        ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   753
            nm := aProcess id printString
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   754
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   755
        label := 'Debugger [' , nm , ']'.
29
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
   756
    ] ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
   757
        label := 'no process'
29
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
   758
    ].
1114
c663a9b0a1dc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1101
diff changeset
   759
    aDebugger label:label iconLabel:'Debugger'.
15
7fc8fcef7bc6 *** empty log message ***
claus
parents: 14
diff changeset
   760
    aDebugger openOn:aProcess.
7fc8fcef7bc6 *** empty log message ***
claus
parents: 14
diff changeset
   761
    ^ nil
875
f8ee393ca634 use Image instead of Form
Claus Gittinger <cg@exept.de>
parents: 870
diff changeset
   762
1114
c663a9b0a1dc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1101
diff changeset
   763
    "Modified: 4.4.1997 / 16:22:36 / cg"
126
claus
parents: 124
diff changeset
   764
! !
claus
parents: 124
diff changeset
   765
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
   766
!DebugView class methodsFor:'menu specs'!
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
   767
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   768
breakPointMenuSpec
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   769
    "This resource specification was automatically generated
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   770
     by the MenuEditor of ST/X."
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   771
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   772
    "Do not manually edit this!! If it is corrupted,
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   773
     the MenuEditor may not be able to read the specification."
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   774
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   775
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   776
    "
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   777
     MenuEditor new openOnClass:DebugView andSelector:#breakPointMenuSpec
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   778
     (Menu new fromLiteralArrayEncoding:(DebugView breakPointMenuSpec)) startUp
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   779
    "
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   780
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   781
    <resource: #menu>
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   782
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   783
    ^ 
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   784
     #(Menu
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   785
        (
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   786
         (MenuItem
13229
515a080489a6 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13228
diff changeset
   787
            enabled: canRemoveBreakpoint
515a080489a6 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13228
diff changeset
   788
            label: 'Remove Breakpoint'
515a080489a6 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13228
diff changeset
   789
            itemValue: removeBreakpoint
515a080489a6 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13228
diff changeset
   790
          )
515a080489a6 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13228
diff changeset
   791
         (MenuItem
515a080489a6 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13228
diff changeset
   792
            label: 'Remove all Breakpoints'
515a080489a6 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13228
diff changeset
   793
            itemValue: removeAllBreakpoints
515a080489a6 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13228
diff changeset
   794
          )
515a080489a6 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13228
diff changeset
   795
         (MenuItem
515a080489a6 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13228
diff changeset
   796
            label: '-'
515a080489a6 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13228
diff changeset
   797
          )
515a080489a6 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13228
diff changeset
   798
         (MenuItem
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   799
            label: 'Ignore this Halt/BreakPoint'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   800
            submenu: 
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   801
           (Menu
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   802
              (
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   803
               (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   804
                  enabled: isStoppedAtHaltOrBreakPointOrSelectedContextIsWrapped
13394
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   805
                  label: 'Forever (Until Ignoring is Stopped)'
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   806
                  itemValue: ignoreHaltForever
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   807
                )
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   808
               (MenuItem
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   809
                  enabled: isStoppedAtHaltOrBreakPointOrSelectedContextIsWrapped
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   810
                  label: 'For Some Time...'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   811
                  itemValue: openIgnoreHaltUntilTimeElapsedDialog
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   812
                )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   813
               (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   814
                  enabled: isStoppedAtHaltOrBreakPointOrSelectedContextIsWrapped
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   815
                  label: 'For the Next N Times...'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   816
                  itemValue: openIgnoreHaltNTimesDialog
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   817
                )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   818
               (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   819
                  enabled: isStoppedAtHaltOrBreakPointOrSelectedContextIsWrapped
13394
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   820
                  label: 'Until Shift-Key is Pressed'
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   821
                  itemValue: ignoreHaltUntilShiftKeyIsPressed
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   822
                )
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   823
               (MenuItem
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   824
                  label: '-'
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   825
                )
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   826
               (MenuItem
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   827
                  enabled: isStoppedAtHaltOrBreakPointOrSelectedContextIsWrapped
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   828
                  label: 'In Current Process'
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   829
                  itemValue: ignoreHaltForCurrentProcess
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   830
                )
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   831
               (MenuItem
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
   832
                  enabled: isStoppedAtHaltOrBreakPointOrSelectedContextIsWrapped
13394
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   833
                  label: 'For this Receiver Class'
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   834
                  itemValue: ignoreHaltForThisReceiverClass
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   835
                )
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   836
               (MenuItem
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   837
                  enabled: isStoppedAtHaltOrBreakPointOrSelectedContextIsWrapped
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   838
                  label: 'If Called from Any Of'
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   839
                  submenuChannel: menuForIgnoreBreakpointIfCalledFromAnyOf
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
   840
                )
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   841
               )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   842
              nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   843
              nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   844
            )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   845
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   846
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   847
            enabled: isStoppedAtBreakPointWithParameter
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   848
            label: 'Ignore all BreakPoints with this Parameter'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   849
            submenu: 
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   850
           (Menu
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   851
              (
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   852
               (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   853
                  enabled: isStoppedAtBreakPointWithParameter
13394
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   854
                  label: 'Forever (Reenable in BreakPoint-Browser)'
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   855
                  itemValue: ignoreBreakpointsWithThisParameterForever
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   856
                )
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   857
               (MenuItem
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   858
                  enabled: isStoppedAtBreakPointWithParameter
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   859
                  label: 'For Some Time...'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   860
                  itemValue: openIgnoreBreakpointsWithThisParameterUntilTimeElapsedDialog
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   861
                )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   862
               (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   863
                  enabled: isStoppedAtBreakPointWithParameter
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   864
                  label: 'For the Next N Times...'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   865
                  itemValue: openIgnoreBreakpointsWithThisParameterNTimesDialog
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   866
                )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   867
               (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   868
                  enabled: isStoppedAtBreakPointWithParameter
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   869
                  label: 'Until Shift-Key is Pressed'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   870
                  itemValue: ignoreBreakpointsWithThisParameterUntilShiftKeyIsPressed
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   871
                )
14680
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   872
               (MenuItem
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   873
                  label: '-'
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   874
                )
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   875
               (MenuItem
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   876
                  enabled: isStoppedAtHaltOrBreakPointOrSelectedContextIsWrapped
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   877
                  label: 'In Current Process'
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   878
                  itemValue: ignoreAllHaltsForCurrentProcess
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   879
                )
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   880
               (MenuItem
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   881
                  enabled: isStoppedAtHaltOrBreakPointOrSelectedContextIsWrapped
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   882
                  label: 'For this Receiver Class'
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   883
                  itemValue: ignoreAllHaltsForThisReceiverClass
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   884
                )
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   885
               (MenuItem
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   886
                  enabled: isStoppedAtHaltOrBreakPointOrSelectedContextIsWrapped
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   887
                  label: 'If Called from Any Of'
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   888
                  submenuChannel: menuForIgnoreAllBreakpointsIfCalledFromAnyOf
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
   889
                )
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   890
               )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   891
              nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   892
              nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   893
            )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   894
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   895
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   896
            label: 'Ignore all Halts/BreakPoints'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   897
            submenu: 
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   898
           (Menu
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   899
              (
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   900
               (MenuItem
13394
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   901
                  label: 'Forever (Until Ignoring is Stopped)'
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   902
                  itemValue: ignoreAllHaltsForever
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   903
                )
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
   904
               (MenuItem
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   905
                  label: 'For Some Time...'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   906
                  itemValue: openIgnoreAllHaltsUntilTimeElapsedDialog
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   907
                )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   908
               (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   909
                  label: 'Until Shift-Key is Pressed'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   910
                  itemValue: ignoreAllHaltsUntilShiftKeyIsPressed
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   911
                )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   912
               )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   913
              nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   914
              nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   915
            )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   916
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   917
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   918
            enabled: hasHaltsToIgnore
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   919
            label: 'Stop Ignoring'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   920
            itemValue: stopIgnoringHalts
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   921
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   922
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   923
            label: '-'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   924
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   925
         (MenuItem
13228
4aa6411bdea8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13226
diff changeset
   926
            enabled: canAddBreakpoint
4aa6411bdea8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13226
diff changeset
   927
            label: 'Add Breakpoint'
4aa6411bdea8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13226
diff changeset
   928
            itemValue: addBreakpoint
4aa6411bdea8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13226
diff changeset
   929
          )
4aa6411bdea8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13226
diff changeset
   930
         (MenuItem
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   931
            label: 'Manage Breakpoints'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   932
            itemValue: openBreakPointBrowser
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   933
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   934
         (MenuItem
13228
4aa6411bdea8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13226
diff changeset
   935
            label: '-'
4aa6411bdea8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13226
diff changeset
   936
          )
4aa6411bdea8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13226
diff changeset
   937
         (MenuItem
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   938
            label: 'Allow Halt in Debugger'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   939
            itemValue: allowBreakPointsInDebugger:
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   940
            indication: allowBreakPointsInDebugger
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   941
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   942
         )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   943
        nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   944
        nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   945
      )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   946
!
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   947
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   948
classMenuSpec
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   949
    "This resource specification was automatically generated
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   950
     by the MenuEditor of ST/X."
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   951
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   952
    "Do not manually edit this!! If it is corrupted,
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   953
     the MenuEditor may not be able to read the specification."
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   954
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   955
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   956
    "
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
   957
     MenuEditor new openOnClass:DebugView andSelector:#receiverMenuSpec
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
   958
     (Menu new fromLiteralArrayEncoding:(DebugView receiverMenuSpec)) startUp
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   959
    "
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   960
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   961
    <resource: #menu>
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   962
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   963
    ^ 
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   964
     #(Menu
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   965
        (
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   966
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   967
            enabled: canBrowseImplementingClass
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   968
            label: 'Browse Implementing Class'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   969
            itemValue: browseImplementingClass
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   970
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   971
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   972
            enabled: canBrowseReceiversClass
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
   973
            label: 'Browse Receiver''s Class'
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   974
            itemValue: browseReceiversClass
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   975
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   976
         (MenuItem
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
   977
            enabled: canBrowseProcessesApplication
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
   978
            label: 'Browse Application Class'
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
   979
            itemValue: browseProcessesApplication
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
   980
          )
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
   981
         (MenuItem
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   982
            label: '-'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   983
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   984
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   985
            enabled: canBrowseClassHierarchy
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
   986
            label: 'Browse Receiver''s Class Hierarchy'
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   987
            itemValue: browseClassHierarchy
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   988
            isVisible: false
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   989
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   990
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   991
            enabled: canBrowseFullClassProtocol
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
   992
            label: 'Browse Receiver''s Full Protocol'
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   993
            itemValue: browseFullClassProtocol
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   994
            isVisible: false
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   995
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   996
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   997
            label: '-'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   998
            isVisible: false
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
   999
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1000
         (MenuItem
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1001
            enabled: canInspectWidgetHierarchy
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1002
            label: 'Inspect Widget Hierarchy'
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1003
            itemValue: inspectWidgetHierarchy
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1004
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1005
         )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1006
        nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1007
        nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1008
      )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1009
!
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1010
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1011
contextMenuSpec
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1012
    "This resource specification was automatically generated
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1013
     by the MenuEditor of ST/X."
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1014
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1015
    "Do not manually edit this!! If it is corrupted,
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1016
     the MenuEditor may not be able to read the specification."
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1017
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1018
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1019
    "
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1020
     MenuEditor new openOnClass:DebugView andSelector:#contextMenuSpec
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1021
     (Menu new fromLiteralArrayEncoding:(DebugView contextMenuSpec)) startUp
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1022
    "
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1023
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1024
    <resource: #menu>
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1025
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1026
    ^ 
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1027
     #(Menu
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1028
        (
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1029
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1030
            enabled: canReturn
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1031
            label: 'Return'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1032
            itemValue: doReturn
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1033
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1034
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1035
            enabled: canRestart
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1036
            label: 'Restart'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1037
            itemValue: doRestart
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1038
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1039
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1040
            label: '-'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1041
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1042
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1043
            enabled: hasContextSelected
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1044
            label: 'Inspect'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1045
            itemValue: inspectContext
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1046
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1047
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1048
            label: 'Copy WalkBack Text'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1049
            itemValue: copyWalkbackText
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1050
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1051
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1052
            label: 'Bookmark Method in SystemBrowser'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1053
            itemValue: addBrowserBookmark
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1054
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1055
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1056
            label: '-'
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1057
          )
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1058
         (MenuItem
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1059
            enabled: hasContextSelected
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1060
            label: 'Find Context with String in Source...'
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1061
            itemValue: findContextWithStringInSource
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1062
          )
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1063
         (MenuItem
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1064
            enabled: hasContextSelected
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1065
            label: 'Find Context with Value in Variable...'
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1066
            itemValue: findContextWithValueInVariable
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1067
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1068
         (MenuItem
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1069
            enabled: hasContextSelected
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1070
            label: 'Find Next Exception Handler'
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1071
            itemValue: findNextExceptionHandlerContext
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1072
          )
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1073
         (MenuItem
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1074
            enabled: hasContextSelected
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1075
            label: 'Find Handler For...'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1076
            itemValue: findHandlerFor
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1077
          )
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1078
         (MenuItem
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1079
            label: 'Find Dialog Opener...'
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  1080
            itemValue: doGotoDialogOpener
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1081
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1082
         (MenuItem
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  1083
            label: 'Find Application Action Method...'
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  1084
            itemValue: doGotoApplicationActionMethod
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  1085
          )
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  1086
         (MenuItem
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1087
            label: '-'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1088
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1089
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1090
            label: 'Remember Callchain && Highlight on Next Entry'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1091
            itemValue: rememberCallchain
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1092
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1093
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1094
            label: 'Clear Remembered Callchain'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1095
            itemValue: clearRememberedCallchain
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1096
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1097
         )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1098
        nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1099
        nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1100
      )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1101
!
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1102
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1103
fileMenuSpec
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1104
    "This resource specification was automatically generated
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1105
     by the MenuEditor of ST/X."
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1106
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1107
    "Do not manually edit this!! If it is corrupted,
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1108
     the MenuEditor may not be able to read the specification."
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1109
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1110
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1111
    "
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1112
     MenuEditor new openOnClass:DebugView andSelector:#fileMenuSpec
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1113
     (Menu new fromLiteralArrayEncoding:(DebugView fileMenuSpec)) startUp
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1114
    "
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1115
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1116
    <resource: #menu>
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1117
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1118
    ^ 
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1119
     #(Menu
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1120
        (
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1121
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1122
            enabled: canSendEmail
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1123
            label: 'Report a Bug via eMail...'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1124
            itemValue: doOpenReportMailApp
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1125
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1126
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1127
            label: '-'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1128
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1129
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1130
            enabled: canCloseAllDebuggers
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1131
            label: 'Close all Debuggers...'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1132
            itemValue: closeAllDebuggers
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1133
            isVisible: isNotInspecting
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1134
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1135
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1136
            label: '-'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1137
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1138
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1139
            label: 'Exit'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1140
            itemValue: closeRequest
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1141
            isVisible: isInspecting
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1142
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1143
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1144
            label: 'Close Debugger and Abort'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1145
            itemValue: closeRequest
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1146
            isVisible: isNotInspecting
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1147
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1148
         )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1149
        nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1150
        nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1151
      )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1152
!
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1153
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1154
helpMenuSpec
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1155
    "This resource specification was automatically generated
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1156
     by the MenuEditor of ST/X."
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1157
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1158
    "Do not manually edit this!! If it is corrupted,
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1159
     the MenuEditor may not be able to read the specification."
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1160
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1161
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1162
    "
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1163
     MenuEditor new openOnClass:DebugView andSelector:#helpMenuSpec
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1164
     (Menu new fromLiteralArrayEncoding:(DebugView helpMenuSpec)) startUp
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1165
    "
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1166
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1167
    <resource: #menu>
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1168
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1169
    ^ 
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1170
     #(Menu
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1171
        (
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1172
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1173
            label: 'Debugger''s Documentation'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1174
            itemValue: openHTMLDocument:
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1175
            argument: 'tools/debugger/TOP.html'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1176
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1177
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1178
            label: '-'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1179
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1180
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1181
            label: 'About DebugView...'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1182
            itemValue: openAboutThisApplication
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1183
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1184
         )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1185
        nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1186
        nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1187
      )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1188
!
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1189
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  1190
menuSpec
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  1191
    "This resource specification was automatically generated
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  1192
     by the MenuEditor of ST/X."
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  1193
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  1194
    "Do not manually edit this!! If it is corrupted,
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  1195
     the MenuEditor may not be able to read the specification."
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  1196
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  1197
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  1198
    "
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  1199
     MenuEditor new openOnClass:DebugView andSelector:#menuSpec
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  1200
     (Menu new fromLiteralArrayEncoding:(DebugView menuSpec)) startUp
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  1201
    "
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  1202
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  1203
    <resource: #menu>
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  1204
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  1205
    ^ 
5875
c85e7a5cb5dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5842
diff changeset
  1206
     #(Menu
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1207
        (
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1208
         (MenuItem
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1209
            label: 'File'
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1210
            submenuChannel: fileMenuSpec
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1211
          )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1212
         (MenuItem
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1213
            label: 'View'
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1214
            submenuChannel: viewMenuSpec
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1215
          )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1216
         (MenuItem
12534
397f6b124b1a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12529
diff changeset
  1217
            label: 'Process'
397f6b124b1a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12529
diff changeset
  1218
            submenuChannel: processMenuSpec
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1219
          )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1220
         (MenuItem
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1221
            label: 'Context'
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1222
            submenuChannel: contextMenuSpec
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1223
          )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1224
         (MenuItem
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1225
            label: 'Receiver'
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1226
            submenuChannel: classMenuSpec
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1227
          )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1228
         (MenuItem
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1229
            label: 'Selector'
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1230
            submenuChannel: selectorMenuSpec
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1231
          )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1232
         (MenuItem
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1233
            label: 'Breakpoint'
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1234
            submenuChannel: breakPointMenuSpec
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1235
          )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1236
         (MenuItem
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1237
            label: 'Help'
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1238
            startGroup: conditionalRight
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1239
            submenuChannel: helpMenuSpec
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1240
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1241
         )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1242
        nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1243
        nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1244
      )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1245
!
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1246
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1247
processMenuSpec
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1248
    "This resource specification was automatically generated
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1249
     by the MenuEditor of ST/X."
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1250
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1251
    "Do not manually edit this!! If it is corrupted,
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1252
     the MenuEditor may not be able to read the specification."
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1253
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1254
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1255
    "
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1256
     MenuEditor new openOnClass:DebugView andSelector:#processMenuSpec
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1257
     (Menu new fromLiteralArrayEncoding:(DebugView processMenuSpec)) startUp
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1258
    "
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1259
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1260
    <resource: #menu>
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1261
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1262
    ^ 
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1263
     #(Menu
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1264
        (
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1265
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1266
            label: 'Continue'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1267
            itemValue: doContinue
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1268
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1269
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1270
            label: 'Next (Line-Step)'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1271
            itemValue: doNext
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1272
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1273
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1274
            label: 'Step'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1275
            itemValue: doStep
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1276
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1277
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1278
            label: '-'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1279
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1280
         (MenuItem
13351
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1281
            label: 'After 5 Seconds'
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1282
            submenu: 
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1283
           (Menu
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1284
              (
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1285
               (MenuItem
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1286
                  label: 'Continue'
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1287
                  itemValue: doContinueAfterDelay
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1288
                )
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1289
               (MenuItem
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1290
                  label: 'Next (Line-Step)'
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1291
                  itemValue: doNextAfterDelay
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1292
                )
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1293
               (MenuItem
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1294
                  label: 'Step'
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1295
                  itemValue: doStepAfterDelay
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1296
                )
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1297
               )
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1298
              nil
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1299
              nil
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1300
            )
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1301
          )
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1302
         (MenuItem
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1303
            label: '-'
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1304
          )
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  1305
         (MenuItem
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1306
            label: 'Skip to Cursor Line'
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1307
            itemValue: skip
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1308
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1309
         (MenuItem
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1310
            label: 'Step Out (Skip until Return)'
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1311
            itemValue: skipForReturn
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1312
          )
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1313
         (MenuItem
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1314
            label: 'Skip until Entering...'
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1315
            itemValue: skipUntilEntering
12671
9124b4453947 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12633
diff changeset
  1316
          )
9124b4453947 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12633
diff changeset
  1317
         (MenuItem
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1318
            label: '-'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1319
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1320
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1321
            label: 'Abort'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1322
            itemValue: doAbort
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1323
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1324
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1325
            enabled: abortAllIsHandled
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1326
            label: 'Abort All'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1327
            itemValue: doAbortAll
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1328
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1329
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1330
            label: '-'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1331
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1332
         (MenuItem
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1333
            label: 'Inspect'
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1334
            itemValue: doInspectProcess
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1335
          )
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1336
         (MenuItem
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1337
            label: 'Change Priority...'
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1338
            itemValue: doChangeProcessPriority
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1339
          )
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1340
         (MenuItem
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1341
            label: '-'
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1342
          )
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1343
         (MenuItem
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1344
            label: 'Terminate'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1345
            itemValue: doTerminate
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1346
          )
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1347
         (MenuItem
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1348
            label: 'Hard Terminate (Danger)'
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1349
            itemValue: quickTerminate
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1350
            isVisible: false
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  1351
          )
12437
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1352
         )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1353
        nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1354
        nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1355
      )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1356
!
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1357
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1358
selectorMenuSpec
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1359
    "This resource specification was automatically generated
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1360
     by the MenuEditor of ST/X."
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1361
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1362
    "Do not manually edit this!! If it is corrupted,
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1363
     the MenuEditor may not be able to read the specification."
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1364
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1365
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1366
    "
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1367
     MenuEditor new openOnClass:DebugView andSelector:#selectorMenuSpec
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1368
     (Menu new fromLiteralArrayEncoding:(DebugView selectorMenuSpec)) startUp
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1369
    "
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1370
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1371
    <resource: #menu>
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1372
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1373
    ^ 
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1374
     #(Menu
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1375
        (
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1376
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1377
            label: 'Browse Implementors...'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1378
            itemValue: browseImplementorsOf
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1379
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1380
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1381
            label: 'Browse Senders...'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1382
            itemValue: browseSendersOf
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1383
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1384
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1385
            label: '-'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1386
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1387
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1388
            enabled: canDefineMethod
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1389
            label: 'Define Missing Method'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1390
            itemValue: doDefineMethod
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1391
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1392
         )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1393
        nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1394
        nil
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1395
      )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1396
!
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1397
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1398
viewMenuSpec
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1399
    "This resource specification was automatically generated
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1400
     by the MenuEditor of ST/X."
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1401
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1402
    "Do not manually edit this!! If it is corrupted,
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1403
     the MenuEditor may not be able to read the specification."
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1404
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1405
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1406
    "
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1407
     MenuEditor new openOnClass:DebugView andSelector:#viewMenuSpec
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1408
     (Menu new fromLiteralArrayEncoding:(DebugView viewMenuSpec)) startUp
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1409
    "
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1410
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1411
    <resource: #menu>
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1412
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1413
    ^ 
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1414
     #(Menu
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1415
        (
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1416
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1417
            enabled: canShowMore
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1418
            label: 'Show More WalkBack'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1419
            itemValue: showMoreWalkback
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1420
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1421
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1422
            enabled: canShowMore
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1423
            label: 'Show Full WalkBack'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1424
            itemValue: showFullWalkback
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1425
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1426
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1427
            label: '-'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1428
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1429
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1430
            label: 'Show Dense WalkBack'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1431
            itemValue: showingDenseWalkback:
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1432
            hideMenuOnActivated: false
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1433
            indication: showingDenseWalkback
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1434
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1435
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1436
            label: 'Show Support Code (Implementation of Enumerations, Exceptions etc.)'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1437
            itemValue: showingSupportCode:
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1438
            hideMenuOnActivated: false
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1439
            indication: showingSupportCode
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1440
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1441
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1442
            label: '-'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1443
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1444
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1445
            label: 'Raise Debugger when Entering'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1446
            itemValue: autoRaiseView:
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1447
            hideMenuOnActivated: false
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1448
            indication: autoRaiseView
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1449
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1450
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1451
            label: '-'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1452
          )
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1453
         (MenuItem
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1454
            label: 'Settings...'
7f9093a67e5f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12333
diff changeset
  1455
            itemValue: openSettingsDialog
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1456
          )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1457
         )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1458
        nil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1459
        nil
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  1460
      )
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  1461
! !
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  1462
913
6460993f73a3 made interestingContextFrom: public - its useful in
Claus Gittinger <cg@exept.de>
parents: 875
diff changeset
  1463
!DebugView class methodsFor:'misc'!
6460993f73a3 made interestingContextFrom: public - its useful in
Claus Gittinger <cg@exept.de>
parents: 875
diff changeset
  1464
4121
Claus Gittinger <cg@exept.de>
parents: 4120
diff changeset
  1465
interestingContextFrom:aContext
5117
038af0448624 interrestingContextFrom - duplicated code removed
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  1466
    "return an interesting context to be shown in an error notifier.
038af0448624 interrestingContextFrom - duplicated code removed
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  1467
     We move up the calling chain, skipping intermediate Signal
913
6460993f73a3 made interestingContextFrom: public - its useful in
Claus Gittinger <cg@exept.de>
parents: 875
diff changeset
  1468
     and Exception contexts, to present the context in which the error
6460993f73a3 made interestingContextFrom: public - its useful in
Claus Gittinger <cg@exept.de>
parents: 875
diff changeset
  1469
     actually occured.
6460993f73a3 made interestingContextFrom: public - its useful in
Claus Gittinger <cg@exept.de>
parents: 875
diff changeset
  1470
     Just for your convenience :-)"
6460993f73a3 made interestingContextFrom: public - its useful in
Claus Gittinger <cg@exept.de>
parents: 875
diff changeset
  1471
5117
038af0448624 interrestingContextFrom - duplicated code removed
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  1472
    |someContexts con idx|
038af0448624 interrestingContextFrom - duplicated code removed
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  1473
12839
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1474
    "/ fetch some contexts...
5117
038af0448624 interrestingContextFrom - duplicated code removed
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  1475
    someContexts := Array new:25.
2042
ccbf16071e41 code cleanup
Claus Gittinger <cg@exept.de>
parents: 2033
diff changeset
  1476
    con := aContext.
5117
038af0448624 interrestingContextFrom - duplicated code removed
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  1477
    idx := 1.
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  1478
    [(idx <= someContexts size) and:[con notNil]] whileTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1479
        someContexts at:idx put:con.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1480
        con := con sender.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1481
        idx := idx + 1.
5117
038af0448624 interrestingContextFrom - duplicated code removed
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  1482
    ].
12839
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1483
    "/ search...
5117
038af0448624 interrestingContextFrom - duplicated code removed
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  1484
    idx := self interestingContextIndexIn:someContexts.
038af0448624 interrestingContextFrom - duplicated code removed
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  1485
    ^ someContexts at:idx.
13398
8d20abbafdb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13394
diff changeset
  1486
8d20abbafdb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13394
diff changeset
  1487
    "Modified: / 28-08-2013 / 20:12:47 / cg"
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1488
!
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1489
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  1490
interestingContextIndexIn:aContextArray
12039
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1491
    "return an interesting context's index, or nil.
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1492
     This is the context initially shown (selected) in the walkback.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1493
     We move up the calling chain, skipping all intermediate Signal
12039
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1494
     and Exception contexts, to present the context in which the error actually occured.
13398
8d20abbafdb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13394
diff changeset
  1495
     Just for your (my) convenience :-)"
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1496
13309
b1581c095cb9 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13293
diff changeset
  1497
    |con found offset sel prev rcvr nMax idx methodHome method|
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1498
13398
8d20abbafdb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13394
diff changeset
  1499
"/ Transcript showCR:'x'.
7713
11282af806b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
  1500
"/ Transcript showCR:aContextArray.
7648
acfbc051149f *** empty log message ***
ca
parents: 7647
diff changeset
  1501
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1502
    nMax := aContextArray size.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1503
    nMax <= 1 ifTrue:[^ 1].
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1504
    con := aContextArray at:1.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1505
    con isBlockContext ifTrue:[^ 1].
12039
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1506
    (con method notNil and:[ con method isWrapped ]) ifTrue:[^ 1].  "/ we are already there
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1507
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1508
    "/ somewhere, at the bottom, there must be a raise ...
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1509
    "/ find the exception
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1510
    1 to:5 do:[:i |
12839
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1511
        found isNil ifTrue:[
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1512
            con := aContextArray at:i ifAbsent:nil.
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1513
            con notNil ifTrue:[
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1514
                sel := con selector ? ''.
13641
8b66149100f6 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13589
diff changeset
  1515
                (sel isSymbol
8b66149100f6 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13589
diff changeset
  1516
                and:[ (sel startsWith:'raise') 
12839
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1517
                and:[ ((rcvr := con receiver) isLazyValue not) 
13641
8b66149100f6 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13589
diff changeset
  1518
                and:[ rcvr isExceptionCreator]]]) ifTrue:[
10289
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1519
                    offset := i.
12839
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1520
                    found := con.
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1521
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1522
                    "/ if this is a noHandler exception, 
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1523
                    "/ skip forward to the erronous context
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1524
                    (rcvr isException) ifTrue:[
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1525
                        rcvr creator == Signal noHandlerSignal ifTrue:[
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1526
                            found := rcvr suspendedContext.
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1527
                            offset := aContextArray identityIndexOf:found.
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1528
                        ]
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1529
                    ].
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1530
                ].
10289
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1531
            ].
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1532
        ].
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1533
    ].
12039
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1534
"/ Transcript showCR:con.
10289
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1535
"/ Transcript show:'1 '; showCR:found.
12839
b932ddfbdeb7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12812
diff changeset
  1536
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1537
    found isNil ifTrue:[
10289
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1538
        "/ this is a kludge, but convenient.
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1539
        "/ show the place where the error (divisionByZero...) happend,
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1540
        "/ not where the signal was raised.
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1541
        con := (aContextArray at:1).
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1542
        sel := con methodHome selector.
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1543
13398
8d20abbafdb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13394
diff changeset
  1544
"/ Transcript show:'2 '; showCR:con.
10289
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1545
        "/ typically a DivisionByZero - show caller of division
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1546
        (sel == #//
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1547
        or:[sel == #/
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1548
        or:[sel == #\\]]) ifTrue:[
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1549
            ^ 2
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1550
        ].
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1551
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1552
        "/ show the place of the bad message; not where the Signal was raised...
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1553
        (sel == #doesNotUnderstand:) ifTrue:[
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1554
            idx := 3.
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1555
            nMax > 2 ifTrue:[
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1556
                sel := (aContextArray at:idx) selector ? ''.
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1557
                sel == #doesNotUnderstand: ifTrue:[
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1558
                    idx := 4
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1559
                ].
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1560
                nMax > idx ifTrue:[
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1561
                    sel := (aContextArray at:idx) selector ? ''.
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1562
                    "/ show the place of the perfor-send; not where the Signal was raised...
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1563
                    ((sel == #perform:)
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1564
                    or:[sel startsWith:'perform:with']) ifTrue:[
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1565
                        idx := idx + 1
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1566
                    ].
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1567
                ]
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1568
            ].
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1569
            ^ idx min:nMax
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1570
        ].
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1571
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1572
        "/ show the bad method; not where the Signal was raised...
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1573
        (sel == #noByteCode) ifTrue:[
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1574
            ^ 2
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1575
        ].
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1576
8143
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1577
"/        "/ show the place of the halt; not where the HaltSignal was raised...
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1578
"/        ((sel == #halt) or:[sel == #halt:]) ifTrue:[
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1579
"/            ^ 2
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1580
"/        ].
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1581
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1582
"/        "/ show the place of the shouldImplement; not where the Signal was raised...
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1583
"/        (sel == #shouldImplement) ifTrue:[
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1584
"/            ^ 2
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1585
"/        ].
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1586
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1587
"/        "/ show the place of error-call; not where the ErrorSignal was raised...
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1588
"/        ((sel == #error:mayProceed:)
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1589
"/        or:[ sel == #signalFailure:resumable:]) ifTrue:[
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1590
"/            nMax > 2 ifTrue:[
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1591
"/                sel := (aContextArray at:2) selector.
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1592
"/                sel == #mustBeBoolean ifTrue:[
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1593
"/                    ^ 3
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1594
"/                ].
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1595
"/            ].
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1596
"/            ^ 2
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1597
"/        ].
7862
8aaae35e340f interesting context
Claus Gittinger <cg@exept.de>
parents: 7844
diff changeset
  1598
10289
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1599
        "/ show the place of signalInterrupt-call; not where the Signal was raised...
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1600
        (sel == #signalInterrupt:) ifTrue:[
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1601
            ^ 2
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1602
        ].
5117
038af0448624 interrestingContextFrom - duplicated code removed
Claus Gittinger <cg@exept.de>
parents: 5114
diff changeset
  1603
8143
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1604
"/        "/ show the place of error-call; not where the ErrorSignal was raised...
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1605
"/        ((sel == #error) or:[sel == #error:]) ifTrue:[
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1606
"/            con method mclass == Object ifTrue:[
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1607
"/                ^ 2
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1608
"/            ]
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1609
"/        ].
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1610
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1611
"/        "/ show the place of the send; not where the Signal was raised...
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1612
"/        (sel == #subclassResponsibility) ifTrue:[
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1613
"/            ^ 2
539df8f4f32e interresting context search generalized
Claus Gittinger <cg@exept.de>
parents: 8142
diff changeset
  1614
"/        ].
6132
ca1f04f5232b lineNumber display of shared subclassResponsibilityMethods
Claus Gittinger <cg@exept.de>
parents: 6129
diff changeset
  1615
10289
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1616
        "/ show the place of the bad index; not where the Signal was raised...
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1617
        ( #(#notIndexed
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1618
            #indexNotIntegerOrOutOfBounds:
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1619
            #subscriptBoundsError:
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1620
            #elementBoundsError:
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1621
            "/ #subclassResponsibility
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1622
        ) includes:sel) ifTrue:[
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1623
            idx := 2.
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1624
            [ idx <= 3
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1625
                and:[
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1626
                    sel := (aContextArray at:idx) selector.
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1627
                    #(#notIndexed
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1628
                      #indexNotIntegerOrOutOfBounds:
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1629
                      #subscriptBoundsError:
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1630
                      #elementBoundsError: ) includes:sel
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1631
                ]
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1632
            ] whileTrue:[ idx := idx + 1 ].
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1633
            sel := (aContextArray at:idx) selector.
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1634
            (nMax > idx and:[ #(#basicAt: #basicAt:put: #at: #at:put: ) includes:sel])
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1635
            ifTrue:[
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1636
                sel := (aContextArray at:idx+1) selector.
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1637
                (nMax > (idx+1) and:[ #(#basicAt: #basicAt:put: #at: #at:put: ) includes:sel])
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1638
                ifTrue:[
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1639
                    sel := (aContextArray at:idx+2) selector.
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1640
                    (nMax > (idx+2) and:[ #(#basicAt: #basicAt:put: #at: #at:put: ) includes:sel])
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1641
                    ifTrue:[
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1642
                        ^ idx+3
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1643
                    ].
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1644
                    ^ idx+2
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1645
                ].
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1646
                ^ idx+1
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1647
            ].
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1648
            ^ idx
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1649
        ].
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1650
        offset := 1.
8152
4720caf862eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8148
diff changeset
  1651
    ].
4720caf862eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8148
diff changeset
  1652
4720caf862eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8148
diff changeset
  1653
    "/ the above is all too hard-coded;
4720caf862eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8148
diff changeset
  1654
    "/ ask the method, if it thinks it should be skipped in the walkback.
4720caf862eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8148
diff changeset
  1655
    "/ as more methods get flagged, remove code from above.
4720caf862eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8148
diff changeset
  1656
    con := aContextArray at:offset ifAbsent:nil.
13398
8d20abbafdb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13394
diff changeset
  1657
"/ Transcript show:'2 '; showCR:con.
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  1658
    [
10289
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1659
        con notNil
13309
b1581c095cb9 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13293
diff changeset
  1660
        and:[ (methodHome := con methodHome) notNil
b1581c095cb9 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13293
diff changeset
  1661
        and:[ (method := methodHome method) notNil
b1581c095cb9 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13293
diff changeset
  1662
        and:[ method shouldBeSkippedInDebuggersWalkBack ]]]
8152
4720caf862eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8148
diff changeset
  1663
    ] whileTrue:[
4720caf862eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8148
diff changeset
  1664
"/ Transcript showCR:con methodHome method.
10289
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1665
        offset := offset + 1.
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1666
        con := aContextArray at:offset ifAbsent:nil.
8152
4720caf862eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8148
diff changeset
  1667
    ].
13309
b1581c095cb9 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13293
diff changeset
  1668
    methodHome := nil. "/ help GC
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1669
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1670
    "
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1671
     got it; move up, skipping all intermediate Signal and
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1672
     Exception contexts
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1673
    "
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1674
    prev := nil.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1675
    rcvr := con receiver.
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  1676
    [
10289
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1677
        rcvr isLazyValue not and:[(rcvr isExceptionHandler) or:[(rcvr isException)]]
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1678
    ] whileTrue:[
10289
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1679
        prev := con.
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1680
        nMax > offset ifFalse:[^ offset].
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1681
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1682
        offset := offset + 1.
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1683
        con := aContextArray at:offset.
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1684
        rcvr := con receiver.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1685
    ].
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1686
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1687
    "
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1688
     now, we are one above the raising context
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1689
    "
13398
8d20abbafdb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13394
diff changeset
  1690
"/ Transcript show:'3 '; showCR:con.
8d20abbafdb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13394
diff changeset
  1691
8d20abbafdb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13394
diff changeset
  1692
    (con selector == #retry:coercing:) ifTrue:[
8d20abbafdb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13394
diff changeset
  1693
        "/ show the operation which failed to coerce, not the coerce
8d20abbafdb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13394
diff changeset
  1694
        ^ offset + 1
8d20abbafdb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13394
diff changeset
  1695
    ].
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1696
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1697
    "
13398
8d20abbafdb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13394
diff changeset
  1698
     if the sender-method of the raise is one of object's error methods ...
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1699
    "
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  1700
    ( #( halt halt:
10289
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1701
         error error:
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1702
         doesNotUnderstand:
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1703
         subclassResponsibility
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1704
         primitiveFailed) includes:con selector)
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1705
    ifTrue:[
10289
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1706
        con selector == #doesNotUnderstand: ifTrue:[
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1707
            "
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1708
             one more up, to get to the originating context
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1709
            "
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1710
            con := aContextArray at:(offset + 1).
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1711
            con isNil ifTrue:[^ offset].
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1712
            offset := offset + 1.
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1713
        ].
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1714
        con := aContextArray at:(offset + 1).
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1715
        con isNil ifTrue:[^ offset].
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1716
        offset := offset + 1.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1717
    ] ifFalse:[
10289
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1718
        "
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1719
         ok, got the raise - if its a BreakPoint, look for the sender
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1720
        "
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1721
        (prev notNil and:[prev receiver == BreakPointInterrupt]) ifTrue:[
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1722
            offset := offset + 1
cb1f8bda978e changed: #interestingContextIndexIn:
Claus Gittinger <cg@exept.de>
parents: 10205
diff changeset
  1723
        ].
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1724
    ].
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1725
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1726
    ^ offset
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1727
7713
11282af806b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7648
diff changeset
  1728
    "Created: / 17-11-2001 / 20:37:49 / cg"
13398
8d20abbafdb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13394
diff changeset
  1729
    "Modified: / 28-08-2013 / 20:23:35 / cg"
913
6460993f73a3 made interestingContextFrom: public - its useful in
Claus Gittinger <cg@exept.de>
parents: 875
diff changeset
  1730
! !
6460993f73a3 made interestingContextFrom: public - its useful in
Claus Gittinger <cg@exept.de>
parents: 875
diff changeset
  1731
14662
4fcc2440b6a4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14640
diff changeset
  1732
!DebugView methodsFor:'accessing'!
4fcc2440b6a4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14640
diff changeset
  1733
4fcc2440b6a4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14640
diff changeset
  1734
contextInspector
4fcc2440b6a4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14640
diff changeset
  1735
    ^ contextInspector
4fcc2440b6a4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14640
diff changeset
  1736
!
4fcc2440b6a4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14640
diff changeset
  1737
4fcc2440b6a4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14640
diff changeset
  1738
inspectedProcess
4fcc2440b6a4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14640
diff changeset
  1739
    ^ inspectedProcess
4fcc2440b6a4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14640
diff changeset
  1740
! !
4fcc2440b6a4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14640
diff changeset
  1741
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  1742
!DebugView methodsFor:'basic'!
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  1743
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1744
enableDisableActions
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1745
    |m|
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1746
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1747
    m := contextView middleButtonMenu.
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1748
    m notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1749
        self updateMenuItems.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1750
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1751
        (inspecting or:[AbortOperationRequest isHandled]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1752
            abortButton enable.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1753
            m enable:#doAbort.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1754
        ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1755
            abortButton disable.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1756
            m disable:#doAbort.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1757
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1758
        exclusive ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1759
            terminateButton disable.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1760
            m disable:#doTerminate.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1761
        ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1762
            terminateButton enable.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1763
            m enable:#doTerminate.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1764
        ]
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1765
    ].
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1766
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1767
    mayProceed == false ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1768
        continueButton disable.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1769
        m notNil ifTrue:[m disable:#doContinue].
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1770
    ] ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1771
        continueButton enable.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1772
        m notNil ifTrue:[m enable:#doContinue]
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1773
    ].
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1774
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1775
    "Created: / 16.11.2001 / 17:40:51 / cg"
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1776
!
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1777
13842
609697ec1e06 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13764
diff changeset
  1778
enter
609697ec1e06 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13764
diff changeset
  1779
    "enter a debugger"
609697ec1e06 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13764
diff changeset
  1780
609697ec1e06 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13764
diff changeset
  1781
    <context: #return>
609697ec1e06 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13764
diff changeset
  1782
609697ec1e06 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13764
diff changeset
  1783
    ^ self
609697ec1e06 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13764
diff changeset
  1784
        enter:thisContext sender
609697ec1e06 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13764
diff changeset
  1785
        select: nil.
609697ec1e06 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13764
diff changeset
  1786
609697ec1e06 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13764
diff changeset
  1787
    "Modified: / 28-08-2012 / 21:13:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
609697ec1e06 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13764
diff changeset
  1788
!
609697ec1e06 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13764
diff changeset
  1789
1364
15b36b5c9480 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1361
diff changeset
  1790
enter:aContext select:initialSelectionOrNil
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  1791
    "enter the debugger - get and display the context, then start an
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  1792
     exclusive event loop on top of eveything else"
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  1793
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1794
    <context: #return>
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1795
9076
Claus Gittinger <cg@exept.de>
parents: 9034
diff changeset
  1796
    |con m enteredByInterrupt sel iAmNew foundNoByteCodeContext foundExitContext c|
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1797
5349
64e779c7b08b fixed stepping through ensure: blocks
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
  1798
    DebuggingDebugger == true ifTrue:[
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  1799
        '==> enter2: (' print. aContext print.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1800
        ') select: ' print. initialSelectionOrNil printCR.
5349
64e779c7b08b fixed stepping through ensure: blocks
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
  1801
    ].
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1802
    thisContext isRecursive ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1803
        "/ care for the special case, were the Debugger was autoloaded.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1804
        "/ in this case, thisContext IS recursive, but thats no error
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1805
        "/ condition.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1806
        foundNoByteCodeContext := false.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1807
        foundExitContext := false.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1808
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1809
        c := thisContext findNextContextWithSelector:#enter:withMessage:mayProceed: or:#noByteCode or:#exit_unwindThenDo:.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1810
        [
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1811
         foundNoByteCodeContext not
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1812
         and:[ foundExitContext not
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1813
         and:[c notNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1814
         and:[c selector ~~ #enter:withMessage:mayProceed:
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1815
        ]]]]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1816
        whileTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1817
            c selector == #exit_unwindThenDo: ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1818
                foundExitContext := true
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1819
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1820
            c selector == #noByteCode ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1821
                foundNoByteCodeContext := true
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1822
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1823
            c := c findNextContextWithSelector:#enter:withMessage:mayProceed: or:#noByteCode or:#exit_unwindThenDo:.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1824
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1825
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1826
        (foundNoByteCodeContext not
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1827
        and:[ foundExitContext not]) ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1828
            ('DebugView [warning]: reentered') errorPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1829
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1830
            ^ MiniDebugger
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1831
                enter:aContext
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1832
                withMessage:'DebugView [error]: recursive error (in debugger)'
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1833
                mayProceed:mayProceed.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1834
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1835
        foundExitContext ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1836
            'DebugView [error]: recursive error (in debugger) ignored' printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1837
            ^ self.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1838
        ].
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  1839
    ].
2360
cef61dce4358 avoid empty debugger if some subcomponent forces creation
Claus Gittinger <cg@exept.de>
parents: 2358
diff changeset
  1840
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
  1841
    "/'entering: ' print. aContext printCR.
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
  1842
    "/'initial: ' print. initialSelectionOrNil printCR.
8170
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  1843
    thisContext sender fixAllLineNumbers. "/ _CONTEXTLINENOS(s)
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  1844
11890
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  1845
    (self isHaltToBeIgnored) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1846
        ^ self.
8170
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  1847
    ].
11892
d43bf1e174b5 step skipping code removed
Claus Gittinger <cg@exept.de>
parents: 11890
diff changeset
  1848
"/    "/ does not work yet - but we should ignore any breakpoints while stepping
d43bf1e174b5 step skipping code removed
Claus Gittinger <cg@exept.de>
parents: 11890
diff changeset
  1849
"/    (stepping and:[steppedContext notNil]) ifTrue:[
d43bf1e174b5 step skipping code removed
Claus Gittinger <cg@exept.de>
parents: 11890
diff changeset
  1850
"/        self isEnteredDueToBreakpointOrHalt ifTrue:[
d43bf1e174b5 step skipping code removed
Claus Gittinger <cg@exept.de>
parents: 11890
diff changeset
  1851
"/            'DebugView [info]: ignored other interrupt while stepping' infoPrintCR.
d43bf1e174b5 step skipping code removed
Claus Gittinger <cg@exept.de>
parents: 11890
diff changeset
  1852
"/            ^ self
d43bf1e174b5 step skipping code removed
Claus Gittinger <cg@exept.de>
parents: 11890
diff changeset
  1853
"/        ].
d43bf1e174b5 step skipping code removed
Claus Gittinger <cg@exept.de>
parents: 11890
diff changeset
  1854
"/    ].
8170
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  1855
13965
6213444511ae class: DebugView
Stefan Vogel <sv@exept.de>
parents: 13934
diff changeset
  1856
    iAmNew := self drawableId isNil.
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  1857
8148
21180715dbe9 new layout
Claus Gittinger <cg@exept.de>
parents: 8143
diff changeset
  1858
    verboseBacktrace := UserPreferences current verboseBacktraceInDebugger.
939
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  1859
1265
3db375412f5d avoid caching a debugger which got destroyed
Claus Gittinger <cg@exept.de>
parents: 1263
diff changeset
  1860
    busy := cachable := true.
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  1861
    inspecting := false.
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  1862
    inspectedProcess := Processor activeProcess.
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  1863
    stepping := false.
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  1864
    bigStep := false.
1063
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  1865
    stepHow := nil.
8148
21180715dbe9 new layout
Claus Gittinger <cg@exept.de>
parents: 8143
diff changeset
  1866
    nChainShown := InitialNChainShown.
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  1867
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1868
    "/ if debugger is entered while a box has grabbed the
9076
Claus Gittinger <cg@exept.de>
parents: 9034
diff changeset
  1869
    "/ pointer, we must ungrab - otherwise X won't talk to us here.
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1870
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1871
    "/ On a multiUser system, ungrab all of them ...
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1872
    "/ Q: this is good for multi-screen apps (where an error should not happen),
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1873
    "/    but not for multi-user development, where the debugger is entered often.
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1874
    "/    What is a good solution to this dilemma ?
1279
84ec8d33eba8 ungrab all screens in case of an error
Claus Gittinger <cg@exept.de>
parents: 1274
diff changeset
  1875
    Screen allScreens do:[:aScreen |
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1876
        aScreen ungrabPointer.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1877
        aScreen ungrabKeyboard.
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  1878
    ].
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  1879
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  1880
    ("inspectedProcess suspendedContext isNil
1179
e927f0c09298 Move #isSystemProcess from ProcessorScheduler to Process.
Stefan Vogel <sv@exept.de>
parents: 1148
diff changeset
  1881
    or:["inspectedProcess isSystemProcess"]") ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1882
        terminateButton disable.
316
7d529dfe8a99 disable abort & terminate for system processes
Claus Gittinger <cg@exept.de>
parents: 303
diff changeset
  1883
    ] ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1884
        terminateButton enable.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1885
        abortButton enable.
316
7d529dfe8a99 disable abort & terminate for system processes
Claus Gittinger <cg@exept.de>
parents: 303
diff changeset
  1886
    ].
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  1887
2360
cef61dce4358 avoid empty debugger if some subcomponent forces creation
Claus Gittinger <cg@exept.de>
parents: 2358
diff changeset
  1888
    iAmNew ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1889
        "/ not the first time - disable buttons & menus
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1890
        "/ from the previous life
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1891
        self turnOffAllButtons.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1892
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1893
        m := contextView middleButtonMenu.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1894
        m notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1895
            m disableAll:#(showMore "skip skipForReturn" inspectContext).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1896
        ].
11697
e776722de7b5 changed: #enter:select:
Claus Gittinger <cg@exept.de>
parents: 11696
diff changeset
  1897
        self showingDenseWalkback:(verboseBacktrace not).
132
claus
parents: 127
diff changeset
  1898
    ].
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1899
    self iconLabel:'Debugger'.
132
claus
parents: 127
diff changeset
  1900
210
947f9a23b06a better error handling in modal debugger - use new SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
  1901
    windowGroup isNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1902
        self windowGroup: WindowGroup new.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1903
        windowGroup addTopView:self.
210
947f9a23b06a better error handling in modal debugger - use new SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
  1904
    ].
132
claus
parents: 127
diff changeset
  1905
    exclusive ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1906
        "/ create a (modal) windowGroup for myself
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1907
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1908
        windowGroup setModal:true.
210
947f9a23b06a better error handling in modal debugger - use new SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
  1909
    ] ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1910
        "/ create a windowGroup with a synchronous sensor for me
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1911
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1912
        windowGroup beSynchronous.
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  1913
    ].
210
947f9a23b06a better error handling in modal debugger - use new SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
  1914
    windowGroup setProcess:Processor activeProcess.
11857
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1915
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1916
        "
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1917
         get the walkback list; clear inspectors if we did not come here by single stepping)
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1918
        "
12039
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1919
"/Transcript show:'0 '; showCR:aContext.
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1920
"/Transcript show:'0 '; showCR:thisContext sender.
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1921
"/Transcript show:'0 '; showCR:thisContext sender sender.
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1922
"/Transcript show:'0 '; showCR:thisContext sender sender sender.
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1923
"/Transcript show:'0 '; showCR:thisContext sender sender sender sender.
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1924
"/Transcript show:'0 '; showCR:thisContext sender sender sender sender sender.
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1925
"/Transcript show:'0 '; showCR:thisContext sender sender sender sender sender sender.
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1926
"/Transcript show:'0 '; showCR:thisContext sender sender sender sender sender sender sender.
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1927
"/Transcript show:'0 '; showCR:thisContext sender sender sender sender sender sender sender sender .
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1928
"/Transcript show:'0 '; showCR:thisContext sender sender sender sender sender sender sender sender sender.
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1929
"/Transcript show:'0 '; showCR:thisContext sender sender sender sender sender sender sender sender sender sender.
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1930
"/Transcript show:'0 '; showCR:thisContext sender sender sender sender sender sender sender sender sender sender sender.
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1931
"/Transcript showCR:initialSelectionOrNil.
11857
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1932
        self setContext:aContext releaseInspectors:(exitAction ~~ #step).
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1933
        "/'after setContext; first is ' print.
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1934
        "/(contextArray at:1 ifAbsent:nil) printCR.
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1935
        self setInitialSelectionOnEntry:initialSelectionOrNil context:aContext.
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1936
12039
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  1937
    IsDebuggingQuery answer:true do:[
11857
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1938
        self updateButtonsAndMenuItemsForContext:aContext.
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1939
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1940
        "
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1941
         If this is a new debugger, do a realize.
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1942
         Otherwise, its probably better to do a map, which shows the
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1943
         view at the previous position, without a need for the user to set the
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1944
         position again
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1945
        "
12809
24d2a31e458b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12743
diff changeset
  1946
        iAmNew ifTrue:[
24d2a31e458b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12743
diff changeset
  1947
            self realize.
24d2a31e458b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12743
diff changeset
  1948
        ] ifFalse:[
11857
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1949
            self remap.
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1950
        ].
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1951
        self setForegroundWindow.
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1952
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1953
        exclusive ifTrue:[
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1954
            self showError:'
210
947f9a23b06a better error handling in modal debugger - use new SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
  1955
Debugging system process `' , (inspectedProcess nameOrId) printString , '''.
947f9a23b06a better error handling in modal debugger - use new SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
  1956
947f9a23b06a better error handling in modal debugger - use new SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
  1957
This is a modal debugger - all event processing is stopped..
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  1958
Therefore, you cannot interact with other views or
210
947f9a23b06a better error handling in modal debugger - use new SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
  1959
open any other tools while this debugger is active.
947f9a23b06a better error handling in modal debugger - use new SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
  1960
947f9a23b06a better error handling in modal debugger - use new SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
  1961
Also, there is no event processing (redraw) for other views.'
11857
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1962
        ].
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1963
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1964
        self autoRaiseView ifTrue:[
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1965
            "/ self raise.
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1966
            self raiseDeiconified.
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1967
            self topView activate; setForegroundWindow; activate.
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1968
        ].
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1969
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1970
        canContinue := true.
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1971
        exitAction := nil.
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1972
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1973
        "/ enter private event handling loop. This is left (and we come back here again)
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1974
        "/ when any button was pressed which requires continuation of the debuggee or
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1975
        "/ closedown of the debugger.
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1976
        [self controlLoop] ifCurtailed:[
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1977
            windowGroup notNil ifTrue:[
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1978
                windowGroup setProcess:nil.
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1979
            ].
13544
9a6069a18d4e class: DebugView
ab
parents: 13538
diff changeset
  1980
            NumberOfDebuggers := (NumberOfDebuggers ? 1) - 1.
11857
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1981
            self destroy
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1982
        ].
13544
9a6069a18d4e class: DebugView
ab
parents: 13538
diff changeset
  1983
        NumberOfDebuggers := (NumberOfDebuggers ? 1) - 1.
11857
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  1984
    ].
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
  1985
    "/ here after my own control loop is finished.
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
  1986
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1987
    "/ release all context stuff.
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1988
    "/ This is required to avoid keeping references to the debuggees objects
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  1989
    "/ forever. (since the debugger is reused for faster startup next time)
942
25d4f244abbe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 941
diff changeset
  1990
    contextView contents:nil.
25d4f244abbe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 941
diff changeset
  1991
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  1992
    codeView acceptAction:nil.
942
25d4f244abbe checkin from browser
Claus Gittinger <cg@exept.de>
parents: 941
diff changeset
  1993
    codeView doItAction:nil.
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  1994
4892
f7b6afd8cec9 release StepInterruptHandler
penk
parents: 4871
diff changeset
  1995
    ObjectMemory stepInterruptHandler == self ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  1996
        ObjectMemory stepInterruptHandler:nil.
4892
f7b6afd8cec9 release StepInterruptHandler
penk
parents: 4871
diff changeset
  1997
    ].
f7b6afd8cec9 release StepInterruptHandler
penk
parents: 4871
diff changeset
  1998
11911
aa49a8d724b8 changed: #enter:select:
Claus Gittinger <cg@exept.de>
parents: 11898
diff changeset
  1999
    lastSelectionInReceiverInspector := receiverInspector selectedKeyName.
aa49a8d724b8 changed: #enter:select:
Claus Gittinger <cg@exept.de>
parents: 11898
diff changeset
  2000
    lastSelectionInContextInspector := contextInspector selectedKeyName.
aa49a8d724b8 changed: #enter:select:
Claus Gittinger <cg@exept.de>
parents: 11898
diff changeset
  2001
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2002
    (exitAction ~~ #step) ifTrue:[
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  2003
        "/ not stepping or continue - close window
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  2004
        self cacheMyself.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2005
        receiverInspector release.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2006
        contextInspector release.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2007
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2008
        self unmap.
13965
6213444511ae class: DebugView
Stefan Vogel <sv@exept.de>
parents: 13934
diff changeset
  2009
        self flush.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2010
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2011
        (exitAction == #abort) ifTrue:[ self exit_abort. "does not return" ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2012
        (exitAction == #abortAll) ifTrue:[ self exit_abortAll. "does not return" ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2013
        (exitAction == #return) ifTrue:[ self exit_return. "does not return" ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2014
        (exitAction == #restart) ifTrue:[ self exit_restart. "does not return" ].
13360
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2015
        (exitAction == #resend) ifTrue:[ self exit_resend. "does not return" ].
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2016
        (exitAction == #quickTerminate) ifTrue:[ self exit_quickTerminate. "does not return" ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2017
        (exitAction == #terminate) ifTrue:[ self exit_terminate. "does not return" ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2018
        exitAction isBlock ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2019
            self exit_unwindThenDo:exitAction.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2020
            "does not return"
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2021
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2022
        "not reached"
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2023
        ^ self
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2024
    ].
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2025
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2026
    "/ stepping - window stays open
940
b27a64095304 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 939
diff changeset
  2027
    selectedContext := actualContext := firstContext := nil.
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2028
2472
03b50188ac9b checkin from browser
ca
parents: 2470
diff changeset
  2029
    "/ restore the previous pointer grab
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2030
    grabber notNil ifTrue:[
13965
6213444511ae class: DebugView
Stefan Vogel <sv@exept.de>
parents: 13934
diff changeset
  2031
        self graphicsDevice grabPointerInView:grabber.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2032
        grabber := nil.
61
cb5e3560bd82 *** empty log message ***
claus
parents: 58
diff changeset
  2033
    ].
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2034
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2035
    (exitAction == #step) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2036
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2037
         schedule another stepInterrupt
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2038
         - must enter myself into the collection of open debuggers,
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2039
           in case the stepping process comes back again via a halt or signal
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2040
           before the step is finished. In this case, the stepping debugger should
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2041
           come up (instead of a new one)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2042
         - must flush caches since optimized methods not always
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2043
           look for pending interrupts
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2044
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2045
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2046
        "/
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2047
        "/ also must care for stepping into a return
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2048
        "/
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2049
        steppedContext notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2050
            Processor activeProcess forceInterruptOnReturnOf:steppedContext.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2051
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2052
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2053
        OpenDebuggers isNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2054
            OpenDebuggers := WeakIdentitySet new.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2055
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2056
        OpenDebuggers add:self.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2057
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2058
        self label:'single stepping - please wait ...'.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2059
        stepping := true.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2060
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2061
        ObjectMemory stepInterruptHandler:self.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2062
        Processor activeProcess stepInterruptHandler:self.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2063
        ObjectMemory flushCaches.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2064
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2065
        Context singleStepInterruptRequest isHandled ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2066
            Context singleStepInterruptRequest
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2067
                raiseWith:
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2068
                    (("bigStep" steppedContextLineno notNil)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2069
                        ifTrue:[#next]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2070
                        ifFalse:[#step])
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2071
        ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2072
            "/ see if we came here through an interrupt-action
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2073
            "/ (i.e. aProcess interruptWith:...)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2074
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2075
            enteredByInterrupt := false.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2076
            con := thisContext findNextContextWithSelector:#timerInterrupt or:#ioInterrupt or:nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2077
            [enteredByInterrupt not
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2078
             and:[con notNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2079
             and:[con ~~ aContext]]] whileTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2080
                ((sel := con selector) == #timerInterrupt
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2081
                or:[sel == #ioInterrupt]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2082
                    enteredByInterrupt := true.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2083
                ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2084
                    con := con findNextContextWithSelector:#timerInterrupt or:#ioInterrupt or:nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2085
                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2086
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2087
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2088
            ObjectMemory flushInlineCaches.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2089
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2090
            DebuggingDebugger == true ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2091
                enteredByInterrupt printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2092
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2093
            enteredByInterrupt ifTrue:[
11890
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  2094
                "/ don't want to step through all intermediate
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2095
                "/ (scheduler-) contexts; place a return-trap on the
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2096
                "/ one right below the interesting one
778
e0f6238c9dd5 better stepping of an interrupted context.
Claus Gittinger <cg@exept.de>
parents: 775
diff changeset
  2097
e0f6238c9dd5 better stepping of an interrupted context.
Claus Gittinger <cg@exept.de>
parents: 775
diff changeset
  2098
"/                'special unwind return' printCR.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2099
                con unwindThenDo:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2100
                                  Processor activeProcess stepInterruptHandler:self.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2101
                                  ObjectMemory stepInterruptHandler:self.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2102
                                  InStepInterrupt := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2103
                                  StepInterruptPending := 1.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2104
                                  InterruptPending := 1].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2105
            ] ifFalse:[
778
e0f6238c9dd5 better stepping of an interrupted context.
Claus Gittinger <cg@exept.de>
parents: 775
diff changeset
  2106
"/                'normal step return' printCR.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2107
                skipLineNr ~~ #return ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2108
                    StepInterruptPending := 1.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2109
                    InterruptPending := 1.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2110
                ] ifFalse:[
778
e0f6238c9dd5 better stepping of an interrupted context.
Claus Gittinger <cg@exept.de>
parents: 775
diff changeset
  2111
"/                    'step for return' printCR.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2112
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2113
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2114
            InStepInterrupt := nil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2115
        ]
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2116
    ] ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2117
        OpenDebuggers notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2118
            OpenDebuggers remove:self ifAbsent:[].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2119
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2120
        self cacheMyself.
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2121
    ]
210
947f9a23b06a better error handling in modal debugger - use new SynchronousWindowSensor
Claus Gittinger <cg@exept.de>
parents: 193
diff changeset
  2122
7796
fe6f3d31c52a autoRaise (above) other views (an option in the view-menu)
Claus Gittinger <cg@exept.de>
parents: 7713
diff changeset
  2123
    "Modified: / 17-04-1997 / 13:01:32 / stefan"
fe6f3d31c52a autoRaise (above) other views (an option in the view-menu)
Claus Gittinger <cg@exept.de>
parents: 7713
diff changeset
  2124
    "Created: / 30-10-1997 / 21:08:18 / cg"
fe6f3d31c52a autoRaise (above) other views (an option in the view-menu)
Claus Gittinger <cg@exept.de>
parents: 7713
diff changeset
  2125
    "Modified: / 13-10-1998 / 19:56:59 / ps"
11697
e776722de7b5 changed: #enter:select:
Claus Gittinger <cg@exept.de>
parents: 11696
diff changeset
  2126
    "Modified: / 27-07-2012 / 17:35:56 / cg"
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2127
!
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2128
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2129
exit_abort
5455
05d522683185 fix to allow halt in an exception handler to work
penk
parents: 5454
diff changeset
  2130
    "/ cannot simply raise an abort here, because if there is an abortHandler somewhere,
05d522683185 fix to allow halt in an exception handler to work
penk
parents: 5454
diff changeset
  2131
    "/ that one would run on top of this context.
05d522683185 fix to allow halt in an exception handler to work
penk
parents: 5454
diff changeset
  2132
    "/ Therefore, any controlInterrupt(i.e. halt) or reentering of the debugger from that handler
05d522683185 fix to allow halt in an exception handler to work
penk
parents: 5454
diff changeset
  2133
    "/ would be interpreted as a recursive invocation (in #enter:select).
05d522683185 fix to allow halt in an exception handler to work
penk
parents: 5454
diff changeset
  2134
    "/ To avoid this, we unwind all contexts and simulate the raise as if it was
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  2135
    "/ done in the #enter:select method.
5455
05d522683185 fix to allow halt in an exception handler to work
penk
parents: 5454
diff changeset
  2136
    "/ You are not expected to understand this.
05d522683185 fix to allow halt in an exception handler to work
penk
parents: 5454
diff changeset
  2137
6487
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2138
    self exit_unwindThenDo:[ AbortOperationRequest raise ]
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2139
!
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2140
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2141
exit_abortAll
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2142
    "/ cannot simply raise an abort here, because if there is an abortHandler somewhere,
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2143
    "/ that one would run on top of this context.
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2144
    "/ Therefore, any controlInterrupt(i.e. halt) or reentering of the debugger from that handler
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2145
    "/ would be interpreted as a recursive invocation (in #enter:select).
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2146
    "/ To avoid this, we unwind all contexts and simulate the raise as if it was
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  2147
    "/ done in the #enter:select method.
6487
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2148
    "/ You are not expected to understand this.
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2149
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2150
    self exit_unwindThenDo:[ AbortAllOperationRequest raise ]
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2151
!
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2152
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2153
exit_quickTerminate
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2154
    self cacheMyself.
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2155
    Processor activeProcess terminateNoSignal
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2156
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2157
    "Created: / 16.11.2001 / 17:23:51 / cg"
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2158
    "Modified: / 17.11.2001 / 23:20:07 / cg"
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2159
!
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2160
13360
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2161
exit_resend
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2162
    |con|
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2163
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2164
    selectedContext notNil ifTrue:[
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2165
        con := selectedContext.
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2166
        self cacheMyself.
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2167
        "
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2168
         have to catch errors occuring in unwind-blocks
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2169
        "
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2170
        Error handle:[:ex |
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2171
            'DebugView [info]: ignored error while unwinding: ' infoPrint.
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2172
            ex description infoPrintCR.
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2173
            ex proceed
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2174
        ] do:[
13411
4a1d147858a8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13408
diff changeset
  2175
            ^ con unwindThenResend.
13360
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2176
        ].
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2177
        'DebugView [warning]: cannot resend selected context''s message' errorPrintCR
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2178
    ]
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2179
!
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  2180
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2181
exit_restart
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2182
    |con|
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2183
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2184
    selectedContext notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2185
        con := selectedContext.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2186
        self cacheMyself.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2187
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2188
         have to catch errors occuring in unwind-blocks
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2189
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2190
        Error handle:[:ex |
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2191
            'DebugView [info]: ignored error while unwinding: ' infoPrint.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2192
            ex description infoPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2193
            ex proceed
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2194
        ] do:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2195
            con unwindAndRestart.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2196
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2197
        'DebugView [warning]: cannot restart selected context' errorPrintCR
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2198
    ]
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2199
11818
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  2200
    "Created: / 16-11-2001 / 17:23:17 / cg"
11819
0829ba326853 changed: #exit_restart
Claus Gittinger <cg@exept.de>
parents: 11818
diff changeset
  2201
    "Modified: / 26-09-2012 / 15:09:52 / cg"
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2202
!
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2203
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2204
exit_return
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2205
    |con retVal|
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2206
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2207
    selectedContext notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2208
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2209
         if there is a selection in the codeView,
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2210
         evaluate it and use the result as return value
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2211
        "
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2212
"/ disabled for now, there is almost always a selection (the current line)
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2213
"/ and that is syntactically incorrect ...
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2214
"/ ... leading to a popup warning from the codeView
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2215
"/
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2216
"/                codeView hasSelection ifTrue:[
4644
e6dd5c21b9c0 Convert Object>>errorSignal -> Error
Stefan Vogel <sv@exept.de>
parents: 4356
diff changeset
  2217
"/                    Error handle:[:ex |
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2218
"/                        'DebugView [warning]: error - returning nil' errorPrintCR.
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2219
"/                        retVal := nil.
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2220
"/                        ex return
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2221
"/                    ] do:[
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2222
"/                        |s|
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2223
"/
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2224
"/                        s := codeView selection asString.
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2225
"/                        retVal := codeView doItAction value:s.
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2226
"/                    ].
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2227
"/                ].
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2228
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2229
        con := selectedContext.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2230
        self cacheMyself.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2231
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2232
         have to catch errors occuring in unwind-blocks
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2233
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2234
        Error handle:[:ex |
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2235
            'DebugView [info]: ignored error while unwinding: ' infoPrint.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2236
            ex description infoPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2237
            ex proceed
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2238
        ] do:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2239
            con unwind:retVal.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2240
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2241
        'DebugView [warning]: cannot return from selected context' errorPrintCR
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2242
    ]
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2243
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2244
    "Created: / 16.11.2001 / 17:22:24 / cg"
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2245
    "Modified: / 17.11.2001 / 23:20:21 / cg"
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2246
!
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2247
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2248
exit_terminate
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2249
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2250
    "
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2251
     have to catch errors occuring in unwind-blocks
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2252
    "
4644
e6dd5c21b9c0 Convert Object>>errorSignal -> Error
Stefan Vogel <sv@exept.de>
parents: 4356
diff changeset
  2253
    Error handle:[:ex |
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2254
        'DebugView [info]: ignored error while unwinding: ' infoPrint.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2255
        ex description infoPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2256
        ex proceed
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2257
    ] do:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2258
        self cacheMyself.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2259
        Processor activeProcess terminate.
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2260
    ].
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2261
    'DebugView [warning]: cannot terminate process' errorPrintCR
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2262
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2263
    "Created: / 16.11.2001 / 17:24:20 / cg"
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2264
    "Modified: / 17.11.2001 / 23:20:27 / cg"
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2265
!
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2266
6487
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2267
exit_unwindThenDo:aBlock
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2268
    |con|
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2269
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2270
    "/ cannot simply raise an abort here, because if there is an abortHandler somewhere,
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2271
    "/ that one would run on top of this context.
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2272
    "/ Therefore, any controlInterrupt(i.e. halt) or reentering of the debugger from that handler
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2273
    "/ would be interpreted as a recursive invocation (in #enter:select).
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2274
    "/ To avoid this, we unwind all contexts and simulate the raise as if it was
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  2275
    "/ done in the #enter:select method.
6487
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2276
    "/ You are not expected to understand this.
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2277
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2278
    "
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2279
     have to catch errors occuring in unwind-blocks
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2280
    "
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2281
    self cacheMyself.
12743
43616af3d027 class: DebugView
Stefan Vogel <sv@exept.de>
parents: 12716
diff changeset
  2282
    con := thisContext sender.
6487
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2283
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2284
    Error handle:[:ex |
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2285
        'DebugView [info]: ignored error while unwinding: ' infoPrint.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2286
        ex description infoPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2287
        ex proceed
6487
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2288
    ] do:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2289
        "/ find the enter:select context.
12743
43616af3d027 class: DebugView
Stefan Vogel <sv@exept.de>
parents: 12716
diff changeset
  2290
        [(con selector ~~ #enter:select:) or:[con receiver ~~ self]] whileTrue:[ 
43616af3d027 class: DebugView
Stefan Vogel <sv@exept.de>
parents: 12716
diff changeset
  2291
            con := con sender 
43616af3d027 class: DebugView
Stefan Vogel <sv@exept.de>
parents: 12716
diff changeset
  2292
        ].
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2293
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2294
        "/ must skip over its caller (because this one has a ControlInterrupt handler too)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2295
        con sender receiver == self class ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2296
            con := con sender.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2297
            con sender receiver == self class ifTrue:[
12743
43616af3d027 class: DebugView
Stefan Vogel <sv@exept.de>
parents: 12716
diff changeset
  2298
                con := con sender methodHome.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2299
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2300
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2301
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2302
        con unwindThenDo:aBlock.
6487
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2303
    ].
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2304
    'DebugView [warning]: abort failed' errorPrintCR
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2305
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2306
    "Created: / 16.11.2001 / 17:20:45 / cg"
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2307
    "Modified: / 18.11.2001 / 00:58:14 / cg"
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2308
!
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  2309
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2310
initialSelectionOnEntry:initialSelectionOrNil context:aContext
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2311
    |selection con1 con2 h|
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2312
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2313
    initialSelectionOrNil notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2314
        ^ initialSelectionOrNil
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2315
    ].
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2316
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2317
    "
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2318
     and find the one context to show initially
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2319
     - if we came here by a send (single step), its the top context;
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2320
     - if we came here by a step (i.e. bigStep), its the top context
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2321
       (for ifs and whiles) or the sender (for regular sends).
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2322
     - otherwise, we came here by some signal raise, and we are interested
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2323
       in the context where the raise actually occured.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2324
    "
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2325
    con1 := (contextArray at:1 ifAbsent:nil).
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2326
    con2 := (contextArray at:2 ifAbsent:nil).
12039
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  2327
"/ Transcript show:'x '; showCR:exitAction.
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  2328
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  2329
    "/ came here via a step?
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2330
    exitAction == #step ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2331
        selection := 1.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2332
        steppedContext notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2333
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2334
            "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2335
             if we came here by a big-step, show the method where we are
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2336
            "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2337
            con1 == steppedContext ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2338
                selection := 1
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2339
            ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2340
                con2 == steppedContext ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2341
                    selection := 2
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2342
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2343
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2344
            "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2345
             for bigStep, we could also be in a block below the actual method ...
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2346
            "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2347
            ((h := con1 home) notNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2348
             and:[h == steppedContext]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2349
                selection := 1
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2350
            ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2351
                (con2 notNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2352
                and:[(h := con2 home) notNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2353
                and:[h == steppedContext]]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2354
                    selection := 2
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2355
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2356
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2357
            h := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2358
        ]
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2359
    ] ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2360
        steppedContext isNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2361
            "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2362
             preselect a more interesting context, (where halt/raise was ...)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2363
            "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2364
            "/ selection := self class interestingContextIndexFrom:aContext.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2365
            selection := self class interestingContextIndexIn:contextArray.
12039
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  2366
"/ Transcript show:'x '; showCR:selection.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2367
            selection := selection min:(contextArray size).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2368
        ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2369
            "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2370
             if we came here by a big-step, show the method where we are
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2371
            "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2372
            con1 == steppedContext ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2373
                selection := 1
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2374
            ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2375
                con2 == steppedContext ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2376
                    selection := 2.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2377
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2378
            ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2379
        ]
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2380
    ].
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2381
    ^ selection
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2382
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2383
    "Created: / 17.11.2001 / 20:26:26 / cg"
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2384
    "Modified: / 17.11.2001 / 22:51:46 / cg"
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2385
!
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2386
5110
Claus Gittinger <cg@exept.de>
parents: 5088
diff changeset
  2387
isInspecting
Claus Gittinger <cg@exept.de>
parents: 5088
diff changeset
  2388
    ^ inspecting
Claus Gittinger <cg@exept.de>
parents: 5088
diff changeset
  2389
!
Claus Gittinger <cg@exept.de>
parents: 5088
diff changeset
  2390
Claus Gittinger <cg@exept.de>
parents: 5088
diff changeset
  2391
isNotInspecting
Claus Gittinger <cg@exept.de>
parents: 5088
diff changeset
  2392
    ^ inspecting not
Claus Gittinger <cg@exept.de>
parents: 5088
diff changeset
  2393
!
Claus Gittinger <cg@exept.de>
parents: 5088
diff changeset
  2394
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2395
openOn:aProcess
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  2396
    "enter the debugger on a process -
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2397
     in this case, we are just inspecting the context chain of the process,
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2398
     not running on top of the debugged process, but as a separate
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2399
     one. (think of it as an inspector showing more detail, and offering
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2400
     some more control operations)"
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2401
1398
d3f02207f847 rearranged buttons (terminate was too exposed);
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  2402
    |bpanel dummy w|
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2403
8148
21180715dbe9 new layout
Claus Gittinger <cg@exept.de>
parents: 8143
diff changeset
  2404
    verboseBacktrace := UserPreferences current verboseBacktraceInDebugger.
939
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  2405
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2406
    busy := true.
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2407
    bigStep := false.
1063
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  2408
    stepHow := nil.
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2409
    inspecting := true.
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2410
    inspectedProcess := aProcess.
8148
21180715dbe9 new layout
Claus Gittinger <cg@exept.de>
parents: 8143
diff changeset
  2411
    nChainShown := InitialNChainShown.
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2412
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2413
    bpanel := abortButton superView.
1398
d3f02207f847 rearranged buttons (terminate was too exposed);
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  2414
    bpanel ignoreInvisibleComponents:true.
d3f02207f847 rearranged buttons (terminate was too exposed);
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  2415
d3f02207f847 rearranged buttons (terminate was too exposed);
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  2416
    "/ get the max size & freeze button
6647
89560e789618 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6622
diff changeset
  2417
    continueButton label:(resources string:'Continue').
8161
c3a91c963a35 added preferredWidth & preferredHeight
Claus Gittinger <cg@exept.de>
parents: 8154
diff changeset
  2418
    w := continueButton preferredWidth.
6647
89560e789618 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6622
diff changeset
  2419
    continueButton label:(resources string:'Stop').
8161
c3a91c963a35 added preferredWidth & preferredHeight
Claus Gittinger <cg@exept.de>
parents: 8154
diff changeset
  2420
    w := w max:(continueButton preferredWidth).
c3a91c963a35 added preferredWidth & preferredHeight
Claus Gittinger <cg@exept.de>
parents: 8154
diff changeset
  2421
    continueButton preferredExtent:(w @ continueButton preferredHeight).
779
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  2422
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  2423
    aProcess state == #run ifTrue:[
13965
6213444511ae class: DebugView
Stefan Vogel <sv@exept.de>
parents: 13934
diff changeset
  2424
        self graphicsDevice hasColors ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2425
            continueButton foregroundColor:Color red darkened.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2426
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2427
        continueButton label:(resources string:'Stop').
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2428
        continueButton action:[self doStop].
779
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  2429
    ] ifFalse:[
13965
6213444511ae class: DebugView
Stefan Vogel <sv@exept.de>
parents: 13934
diff changeset
  2430
        self graphicsDevice hasColors ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2431
            continueButton foregroundColor:Color green darkened darkened.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2432
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2433
        continueButton label:(resources string:'Continue').
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2434
        continueButton action:[self doContinue].
779
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  2435
    ].
8161
c3a91c963a35 added preferredWidth & preferredHeight
Claus Gittinger <cg@exept.de>
parents: 8154
diff changeset
  2436
    continueButton preferredExtent:(w @ continueButton preferredHeight).
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2437
1398
d3f02207f847 rearranged buttons (terminate was too exposed);
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  2438
    returnButton disable.
d3f02207f847 rearranged buttons (terminate was too exposed);
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  2439
    restartButton disable.
d3f02207f847 rearranged buttons (terminate was too exposed);
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  2440
92
claus
parents: 90
diff changeset
  2441
    dummy := View extent:(10 @ 5) in:bpanel.
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2442
    dummy borderWidth:0; level:0.
61
cb5e3560bd82 *** empty log message ***
claus
parents: 58
diff changeset
  2443
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2444
"/    stepButton destroy.
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2445
"/    sendButton destroy.
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2446
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2447
    updateButton := Button
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2448
                        label:(resources string:'Update')
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2449
                        action:[self updateContext]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2450
                        in:bpanel.
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2451
    monitorToggle := Toggle in:bpanel.
6647
89560e789618 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6622
diff changeset
  2452
    monitorToggle label:(resources string:'Monitor').
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2453
    monitorToggle pressAction:[self autoUpdateOn].
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2454
    monitorToggle releaseAction:[self autoUpdateOff].
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2455
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2456
    "can only look into process - context chain is not active"
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2457
    canContinue := true.
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2458
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2459
    terminateButton enable.
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2460
    abortButton enable.
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2461
2305
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  2462
    sendButton disable; beInvisible.
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  2463
    stepButton disable; beInvisible.
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  2464
    nextButton disable; beInvisible.
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  2465
    nextOverButton notNil ifTrue:[nextOverButton disable; beInvisible].
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  2466
    nextOutButton notNil ifTrue:[nextOutButton disable; beInvisible].
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2467
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2468
    aProcess isNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2469
        terminateButton disable.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2470
        abortButton disable.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2471
        continueButton disable.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2472
        returnButton disable.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2473
        restartButton disable.
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2474
    ] ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2475
        (aProcess suspendedContext isNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2476
        or:[aProcess isSystemProcess]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2477
            terminateButton disable.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2478
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2479
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2480
        self setContextSkippingInterruptContexts:aProcess suspendedContext.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2481
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2482
        catchBlock := [
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2483
            catchBlock := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2484
            contextArray := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2485
            selectedContext := actualContext := firstContext := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2486
            steppedContext := wrapperContext := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2487
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2488
            (exitAction == #terminate) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2489
                aProcess terminate.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2490
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2491
            (exitAction == #quickTerminate) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2492
                aProcess terminateNoSignal.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2493
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2494
            super destroy
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2495
        ].
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2496
    ].
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  2497
    self open
316
7d529dfe8a99 disable abort & terminate for system processes
Claus Gittinger <cg@exept.de>
parents: 303
diff changeset
  2498
1092
059c29fac604 made the number of frames shown initially a
Claus Gittinger <cg@exept.de>
parents: 1091
diff changeset
  2499
    "Modified: 20.3.1997 / 16:53:56 / cg"
1179
e927f0c09298 Move #isSystemProcess from ProcessorScheduler to Process.
Stefan Vogel <sv@exept.de>
parents: 1148
diff changeset
  2500
    "Modified: 17.4.1997 / 13:01:57 / stefan"
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2501
!
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2502
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  2503
selectContextWithIndex:index
13362
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  2504
    self showSelection:index.
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  2505
    contextView setSelection:index.
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  2506
    index > 1 ifTrue:[
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  2507
        contextView scrollToLine:(index - 1)
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  2508
    ].
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  2509
!
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  2510
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2511
setInitialSelectionOnEntry:initialSelectionOrNil context:aContext
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2512
    |selection|
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2513
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2514
    selection := self initialSelectionOnEntry:initialSelectionOrNil context:aContext.
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2515
    selection notNil ifTrue:[
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  2516
        self selectContextWithIndex:selection
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2517
    ].
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2518
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2519
    "Created: / 16.11.2001 / 17:28:07 / cg"
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2520
    "Modified: / 17.11.2001 / 20:27:21 / cg"
3434
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2521
!
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2522
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2523
turnOffAllButtons
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2524
    terminateButton turnOffWithoutRedraw.
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2525
    continueButton turnOffWithoutRedraw.
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2526
    returnButton turnOffWithoutRedraw.
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2527
    restartButton turnOffWithoutRedraw.
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2528
    abortButton turnOffWithoutRedraw.
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2529
    nextButton turnOffWithoutRedraw.
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2530
    stepButton turnOffWithoutRedraw.
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2531
    sendButton turnOffWithoutRedraw.
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2532
05bfb9406e06 class based exceptions - abortSignal;
Claus Gittinger <cg@exept.de>
parents: 3432
diff changeset
  2533
    "Created: / 16.11.2001 / 17:36:18 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2534
! !
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2535
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2536
!DebugView methodsFor:'help'!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2537
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  2538
flyByHelpDependsOnPositionIn:aView
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  2539
    "subclasses where the help-text depends upon the pointer position might
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  2540
     want to redefine this"
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  2541
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  2542
    ^ aView == codeView
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  2543
!
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  2544
3510
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2545
flyByHelpTextFor:aComponent
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2546
    |s|
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2547
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2548
    aComponent == abortButton ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2549
        s := 'Abort (unwind to eventLoop)'
3510
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2550
    ].
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2551
    aComponent == terminateButton ifTrue:[
13339
1aacbaaed26e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13309
diff changeset
  2552
        Processor activeProcess isGUIProcess ifTrue:[
1aacbaaed26e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13309
diff changeset
  2553
            s := 'Terminate the process (closes view and shuts down application)'
1aacbaaed26e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13309
diff changeset
  2554
        ] ifFalse:[
1aacbaaed26e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13309
diff changeset
  2555
            s := 'Terminate the process'
1aacbaaed26e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13309
diff changeset
  2556
        ]
3510
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2557
    ].
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2558
    aComponent == continueButton ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2559
        continueButton label = (resources string:'Stop') ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2560
            s := 'Stop'
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2561
        ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2562
            s := 'Continue execution'
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2563
        ]
3510
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2564
    ].
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2565
    aComponent == stepButton ifTrue:[
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  2566
        s := 'Step to next send in selected context (don''t enter into called methods)'
3510
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2567
    ].
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2568
    aComponent == nextButton ifTrue:[
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  2569
        s := 'Step to next line in selected context (don''t enter into called methods)'
3510
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2570
    ].
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2571
    aComponent == nextOverButton ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2572
        s := 'Step over to cursor-line'
3510
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2573
    ].
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2574
    aComponent == nextOutButton ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2575
        s := 'Step out to caller'
3510
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2576
    ].
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2577
    aComponent == sendButton ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2578
        s := 'Send next message (enter into called methods)'
3510
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2579
    ].
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2580
    aComponent == returnButton ifTrue:[
12977
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2581
        restartButton enabled ifTrue:[
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2582
            s := 'Return from the selected method'
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2583
        ] ifFalse:[
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2584
            s := 'Return from the selected method.\Disabled, because this method was compiled with context optimization, and cannot be returned from.' withCRs
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2585
        ]
3510
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2586
    ].
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2587
    aComponent == restartButton ifTrue:[
12977
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2588
        restartButton enabled ifTrue:[
13376
9e6c72fd57e0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13368
diff changeset
  2589
            s := 'Restart the selected method.\If the code was changed in the meanwhile, the original method will be executed again'
12977
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2590
        ] ifFalse:[
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2591
            s := 'Restart the selected method.\Disabled, because this method was compiled with context optimization, and cannot be returned from.' withCRs
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2592
        ]
3510
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2593
    ].
13361
7eb8692dbc1b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13360
diff changeset
  2594
    aComponent == resendButton ifTrue:[
7eb8692dbc1b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13360
diff changeset
  2595
        resendButton enabled ifTrue:[
13376
9e6c72fd57e0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13368
diff changeset
  2596
            s := 'Resend the selected method''s message.\If the code was changed in the meanwhile, the new method will be called with the original arguments.'
13361
7eb8692dbc1b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13360
diff changeset
  2597
        ] ifFalse:[
7eb8692dbc1b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13360
diff changeset
  2598
            s := 'Resend the selected method''s message.\Disabled, because this method was compiled with context optimization, and cannot be returned from.' withCRs
7eb8692dbc1b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13360
diff changeset
  2599
        ]
7eb8692dbc1b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13360
diff changeset
  2600
    ].
3510
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2601
    aComponent == monitorToggle ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2602
        s := 'Toggle monitoring'
3510
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2603
    ].
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2604
    aComponent == updateButton ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2605
        s := 'Update'
3510
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2606
    ].
13464
931d28c589b7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13462
diff changeset
  2607
    aComponent == defineButton ifTrue:[
931d28c589b7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13462
diff changeset
  2608
        s := 'Define the missing method (as halting) and proceed into it.\A debugger will reopen there, so you can add the code then'
931d28c589b7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13462
diff changeset
  2609
    ].
8656
6c92a022f929 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8636
diff changeset
  2610
    aComponent == reportButton ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2611
        s := 'Send a defect report via eMail'
8656
6c92a022f929 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8636
diff changeset
  2612
    ].
3510
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2613
    s notNil ifTrue:[
13376
9e6c72fd57e0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13368
diff changeset
  2614
        ^ resources stringWithCRs:s
3510
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2615
    ].
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2616
    ^ nil
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2617
9500
76bc64543166 care for original vs. current methods code (if it was changed)
Claus Gittinger <cg@exept.de>
parents: 9488
diff changeset
  2618
    "Modified: / 29-08-1995 / 23:38:54 / claus"
76bc64543166 care for original vs. current methods code (if it was changed)
Claus Gittinger <cg@exept.de>
parents: 9488
diff changeset
  2619
    "Modified: / 18-06-2010 / 11:34:51 / cg"
3510
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2620
!
850a051a8235 flyBy help
Claus Gittinger <cg@exept.de>
parents: 3503
diff changeset
  2621
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  2622
flyByHelpTextFor:aComponent at:aPointOrNil
8396
1bda666dc0e9 flyby help
Claus Gittinger <cg@exept.de>
parents: 8347
diff changeset
  2623
    |s vline line col pos interval|
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  2624
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  2625
    aComponent == codeView ifFalse:[^ nil].
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  2626
    aPointOrNil isNil ifTrue:[^ nil].
9446
be34faef3546 changed:
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
  2627
    self sensor motionEventPending ifTrue:[^ nil].
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  2628
8396
1bda666dc0e9 flyby help
Claus Gittinger <cg@exept.de>
parents: 8347
diff changeset
  2629
    vline := codeView visibleLineOfY:aPointOrNil y.
1bda666dc0e9 flyby help
Claus Gittinger <cg@exept.de>
parents: 8347
diff changeset
  2630
    col := codeView colOfX:aPointOrNil x inVisibleLine:vline.
1bda666dc0e9 flyby help
Claus Gittinger <cg@exept.de>
parents: 8347
diff changeset
  2631
    line := codeView visibleLineToAbsoluteLine:vline.
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  2632
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  2633
    pos := codeView characterPositionOfLine:line col:col.
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  2634
    interval := pos to:pos.
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  2635
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  2636
    self
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2637
        withNodeValueAtInterval:interval
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2638
        do:[:value :description |
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2639
            |valueClassOrSizeString valueString|
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2640
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2641
            valueClassOrSizeString := valueString := ''.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2642
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2643
            "/ some heuristics as when to show the class name (a purely subjective preference)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2644
            value isString ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2645
                value isText ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2646
                    valueString := '"',(value contractTo:80),'"'.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2647
                ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2648
                    valueString := value storeString contractTo:80.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2649
                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2650
            ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2651
                (value isBoolean
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2652
                or:[ value isInteger
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2653
                or:[ value isSymbol ]]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2654
                    valueString := value printString.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2655
                ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2656
                    valueClassOrSizeString := ' (',value class name,')'.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2657
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2658
                    (value isArray
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2659
                    or:[ value isOrderedCollection ]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2660
                        valueClassOrSizeString := ' (size=',value size printString,')'.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2661
                    ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2662
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2663
                    Error handle:[:ex |
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2664
                        valueString := '??? (',ex description,')'
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2665
                    ] do:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2666
                        [
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2667
                            valueString := value printString contractTo:80.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2668
                        ] valueWithWatchDog:[ valueString := value classNameWithArticle ] afterMilliseconds:30.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2669
                    ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2670
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2671
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2672
            description isEmptyOrNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2673
                s := valueString , valueClassOrSizeString
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2674
            ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2675
                s := description , ': ', valueString, valueClassOrSizeString
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2676
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2677
        ].
8592
6a544f86c279 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8580
diff changeset
  2678
    "/ Transcript showCR:s.
6a544f86c279 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8580
diff changeset
  2679
    ^ s
9446
be34faef3546 changed:
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
  2680
be34faef3546 changed:
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
  2681
    "Modified: / 27-04-2010 / 17:51:53 / cg"
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  2682
!
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  2683
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2684
helpTextFor:aComponent
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2685
    |s|
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2686
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2687
    aComponent == abortButton ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2688
        s := 'HELP_ABORT'
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2689
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2690
    aComponent == terminateButton ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2691
        s := 'HELP_TERMINATE'
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2692
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2693
    aComponent == continueButton ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2694
        continueButton label = (resources string:'Stop') ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2695
            s := 'HELP_STOP'
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2696
        ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2697
            s := 'HELP_CONTINUE'
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2698
        ]
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2699
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2700
    aComponent == stepButton ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2701
        s := 'HELP_STEP'
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2702
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2703
    aComponent == nextButton ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2704
        s := 'HELP_NEXT'
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2705
    ].
1065
feacf3883438 active help messages
Claus Gittinger <cg@exept.de>
parents: 1064
diff changeset
  2706
    aComponent == nextOverButton ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2707
        s := 'HELP_NEXTOVER'
1065
feacf3883438 active help messages
Claus Gittinger <cg@exept.de>
parents: 1064
diff changeset
  2708
    ].
feacf3883438 active help messages
Claus Gittinger <cg@exept.de>
parents: 1064
diff changeset
  2709
    aComponent == nextOutButton ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2710
        s := 'HELP_NEXTOUT'
1065
feacf3883438 active help messages
Claus Gittinger <cg@exept.de>
parents: 1064
diff changeset
  2711
    ].
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2712
    aComponent == stepButton ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2713
        s := 'HELP_STEP'
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2714
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2715
    aComponent == sendButton ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2716
        s := 'HELP_SEND'
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2717
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2718
    aComponent == returnButton ifTrue:[
12977
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2719
        returnButton enabled ifTrue:[
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2720
            s := 'HELP_RETURN'
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2721
        ] ifFalse:[
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2722
            s := 'HELP_RETURN_DISABLED'
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2723
        ].
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2724
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2725
    aComponent == restartButton ifTrue:[
12977
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2726
        restartButton enabled ifTrue:[
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2727
            s := 'HELP_RESTART'
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2728
        ] ifFalse:[
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2729
            s := 'HELP_RESTART_DISABLED'
2b05130a9a56 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12947
diff changeset
  2730
        ].
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2731
    ].
13361
7eb8692dbc1b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13360
diff changeset
  2732
    aComponent == resendButton ifTrue:[
7eb8692dbc1b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13360
diff changeset
  2733
        resendButton enabled ifTrue:[
7eb8692dbc1b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13360
diff changeset
  2734
            s := 'HELP_RESEND'
7eb8692dbc1b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13360
diff changeset
  2735
        ] ifFalse:[
7eb8692dbc1b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13360
diff changeset
  2736
            s := 'HELP_RESEND_DISABLED'
7eb8692dbc1b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13360
diff changeset
  2737
        ].
7eb8692dbc1b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13360
diff changeset
  2738
    ].
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2739
    aComponent == contextView ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2740
        s := 'HELP_WALKBACK'
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2741
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2742
    aComponent == codeView ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2743
        s := 'HELP_CODEVIEW'
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2744
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2745
    aComponent == monitorToggle ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2746
        s := 'HELP_MONITOR'
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2747
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2748
    aComponent == updateButton ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2749
        s := 'HELP_UPDATE'
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2750
    ].
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  2751
    aComponent == gotoDialogOpenerButton ifTrue:[
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  2752
        s := 'HELP_GOTO_DIALOG_OPENER'
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  2753
    ].
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  2754
    aComponent == gotoApplicationActionMethodButton ifTrue:[
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  2755
        s := 'HELP_GOTO_APPLICATION_ACTION'
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  2756
    ].
779
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  2757
"/    aComponent == stopButton ifTrue:[
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  2758
"/        s := 'HELP_STOP'
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  2759
"/    ].
612
986e371232a2 isSubViewOf: -> isComponentOf:
Claus Gittinger <cg@exept.de>
parents: 583
diff changeset
  2760
    (aComponent isComponentOf:receiverInspector) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2761
        s := 'HELP_REC_INSP'
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2762
    ].
612
986e371232a2 isSubViewOf: -> isComponentOf:
Claus Gittinger <cg@exept.de>
parents: 583
diff changeset
  2763
    (aComponent isComponentOf:contextInspector) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2764
        s := 'HELP_CON_INSP'
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2765
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2766
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2767
    s notNil ifTrue:[
13376
9e6c72fd57e0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13368
diff changeset
  2768
        ^ resources stringWithCRs:s
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2769
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2770
    ^ nil
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2771
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2772
    "Modified: 29.8.1995 / 23:38:54 / claus"
1065
feacf3883438 active help messages
Claus Gittinger <cg@exept.de>
parents: 1064
diff changeset
  2773
    "Modified: 4.3.1997 / 01:54:03 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2774
! !
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2775
2589
2342403139a7 extract selector from selection (as in browser)
Claus Gittinger <cg@exept.de>
parents: 2581
diff changeset
  2776
!DebugView methodsFor:'initialization & release'!
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2777
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2778
addToCurrentProject
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2779
    "ignored here"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2780
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2781
    ^ self
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2782
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2783
2115
c134aa00bc7b category change
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
  2784
destroy
c134aa00bc7b category change
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
  2785
    "closing the debugger implies an abort or continue"
c134aa00bc7b category change
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
  2786
11457
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  2787
    self destroyWithConfirmation:true
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  2788
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  2789
    "Modified: / 10-07-1997 / 17:15:41 / stefan"
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  2790
    "Modified: / 23-03-2012 / 12:50:01 / cg"
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  2791
!
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  2792
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  2793
destroyWithConfirmation:withConfirmation
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  2794
    "closing the debugger implies an abort or continue"
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  2795
2404
5d0d2c826eff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2397
diff changeset
  2796
    |m|
5d0d2c826eff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2397
diff changeset
  2797
11457
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  2798
    withConfirmation ifTrue:[
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  2799
        self checkIfCodeIsReallyModified ifTrue:[
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  2800
            (self confirm:('Code modified - exit anyway ?'))
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  2801
            ifFalse:[
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  2802
                ^ self
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  2803
            ]
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2804
        ]
2115
c134aa00bc7b category change
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
  2805
    ].
c134aa00bc7b category change
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
  2806
2172
dc9b1ed43f64 turn off autoUpdate when destroyed
Claus Gittinger <cg@exept.de>
parents: 2150
diff changeset
  2807
    self autoUpdateOff.
dc9b1ed43f64 turn off autoUpdate when destroyed
Claus Gittinger <cg@exept.de>
parents: 2150
diff changeset
  2808
2404
5d0d2c826eff checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2397
diff changeset
  2809
    (m := contextView middleButtonMenu) notNil ifTrue:[m hide].
2115
c134aa00bc7b category change
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
  2810
    inspecting ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2811
        "I am running on top of a process, abort or continue it"
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2812
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2813
        windowGroup notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2814
            windowGroup setProcess:nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2815
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2816
        self uncacheMyself.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2817
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2818
        "/
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2819
        "/ catch invalid return;
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2820
        "/ this happens, when my process has somehow died (quickterminate)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2821
        "/ and I am a leftOver view, which gets terminated via the launchers
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2822
        "/ #destroy-window function.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2823
        "/
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2824
        Context cannotReturnSignal handle:[:ex |
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2825
            'DebugView [info]: OOPS - non regular debugView closing(1)' infoPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2826
            self uncacheMyself.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2827
            Debugger newDebugger.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2828
            ex return.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2829
        ] do:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2830
            AbortOperationRequest isHandled ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2831
                self doAbort.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2832
            ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2833
                self doContinue
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2834
            ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2835
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2836
        "/ We don't reach this point normally
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2837
        'DebugView [info]: OOPS - non regular debugView closing(2)' infoPrintCR.
2115
c134aa00bc7b category change
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
  2838
    ].
c134aa00bc7b category change
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
  2839
2299
3cadf0ee9d2e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2258
diff changeset
  2840
    Debugger newDebugger.
2115
c134aa00bc7b category change
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
  2841
    "/ since I am going to be destroyed, remove me from the cache
c134aa00bc7b category change
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
  2842
    self uncacheMyself.
c134aa00bc7b category change
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
  2843
    super destroy.
c134aa00bc7b category change
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
  2844
11457
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  2845
    "Modified: / 10-07-1997 / 17:15:41 / stefan"
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  2846
    "Created: / 23-03-2012 / 12:49:50 / cg"
2115
c134aa00bc7b category change
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
  2847
!
c134aa00bc7b category change
Claus Gittinger <cg@exept.de>
parents: 2060
diff changeset
  2848
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2849
initialize
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  2850
    |menu menuPanel mH panel bpanel bH bpanel1 bH1 bpanel2 bH2 codePanel
12529
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  2851
     newLayout v exceptionAndTogglePanel codeToggleLabels userPrefs|
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2852
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2853
    super initialize.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2854
12529
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  2855
    userPrefs := UserPreferences current.
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  2856
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  2857
    verboseBacktrace := userPrefs verboseBacktraceInDebugger ? false.
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  2858
    hideSupportCode := userPrefs hideSupportCodeInDebugger ? false.
2445
acd747458906 allow for breaks/halts in doIts to be optionally
Claus Gittinger <cg@exept.de>
parents: 2433
diff changeset
  2859
    ignoreBreakpoints := true.    "/ ignore halts/breakpoints in doIts of
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2860
                                  "/ the debugger
936
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  2861
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2862
    busy := false.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2863
    exclusive := false.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2864
    inspecting := false.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2865
    exitAction := nil.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2866
    bigStep := false.
1063
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  2867
    stepHow := nil.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2868
    canContinue := false.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  2869
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  2870
    mH := 0.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  2871
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2872
    menuPanel := MenuPanel in:self.
8131
3c3539ab8681 menu also nationalized
Claus Gittinger <cg@exept.de>
parents: 7999
diff changeset
  2873
    menuPanel receiver:self.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2874
    menuPanel verticalLayout:false.
8131
3c3539ab8681 menu also nationalized
Claus Gittinger <cg@exept.de>
parents: 7999
diff changeset
  2875
    menu := self class menuSpec decodeAsLiteralArray.
3c3539ab8681 menu also nationalized
Claus Gittinger <cg@exept.de>
parents: 7999
diff changeset
  2876
    menu findGuiResourcesIn:self.
3c3539ab8681 menu also nationalized
Claus Gittinger <cg@exept.de>
parents: 7999
diff changeset
  2877
    menuPanel menu:menu.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2878
8161
c3a91c963a35 added preferredWidth & preferredHeight
Claus Gittinger <cg@exept.de>
parents: 8154
diff changeset
  2879
    mH := menuPanel preferredHeight.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2880
    menuPanel origin:(0.0 @ 0.0) corner:(1.0 @ (mH)).
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2881
12529
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  2882
    newLayout := userPrefs useNewLayoutInDebugger.
8148
21180715dbe9 new layout
Claus Gittinger <cg@exept.de>
parents: 8143
diff changeset
  2883
    newLayout ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2884
        bpanel := HorizontalPanelView in:self.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2885
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2886
        self initializeButtonsIn:bpanel.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2887
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2888
        bH := bpanel preferredHeight + 5.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2889
        bpanel origin:(0.0 @ mH)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2890
               extent:(1.0 @ bH).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2891
        panel := VariableVerticalPanel
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2892
                            origin:(0.0 @ (mH + bH))
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2893
                            corner:(1.0 @ 1.0)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2894
                            in:self.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2895
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2896
        v := self initializeContextListViewIn:panel.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2897
        v origin:(0.0 @ 0.0) corner:(1.0 @ 0.25).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2898
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2899
        codePanel := View in:panel.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2900
        v := self initializeCodeViewIn:codePanel.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2901
        v origin:(0.0 @ 0.0) corner:(1.0 @ 1.0).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2902
        codePanel origin:(0.0 @ 0.25) corner:(1.0 @ 0.75).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2903
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2904
        v := self initializeInspectorViewsIn:panel.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2905
        v origin:(0.0 @ 0.75) corner:(1.0 @ 1.0).
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  2906
8148
21180715dbe9 new layout
Claus Gittinger <cg@exept.de>
parents: 8143
diff changeset
  2907
    ] ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2908
        bpanel1 := HorizontalPanelView in:self.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2909
        self initializeButtons1In:bpanel1.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2910
12529
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  2911
        contextInfoLabel := Label label:''.
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  2912
        contextInfoLabel adjust:#left.
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  2913
        bpanel1 add:contextInfoLabel.
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  2914
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2915
        bH1 := bpanel1 preferredHeight + 5.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2916
        bpanel1 origin:(0.0 @ mH)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2917
                extent:(1.0 @ bH1).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2918
        panel := VariableVerticalPanel
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2919
                            origin:(0.0 @ (mH + bH1))
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2920
                            corner:(1.0 @ 1.0)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2921
                                in:self.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2922
        "/ panel showHandle:true.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2923
        "/ panel handlePosition:#left.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2924
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2925
        v := self initializeContextListViewIn:panel.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2926
        v origin:(0.0 @ 0.0) corner:(1.0 @ 0.25).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2927
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2928
        codePanel := View in:panel.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2929
        bpanel2 := HorizontalPanelView in:codePanel.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2930
        self initializeButtons2In:bpanel2.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2931
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2932
        bH2 := bpanel2 preferredHeight + 5.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2933
        bpanel2 origin:(0.0 @ 0.0)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2934
                extent:(1.0 @ bH2).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2935
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2936
        exceptionInfoLabel := Label label:''.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2937
        exceptionInfoLabel adjust:#left.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2938
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2939
        exceptionAndTogglePanel := HorizontalPanelView in:codePanel.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2940
        exceptionAndTogglePanel horizontalLayout:#left.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2941
        exceptionAndTogglePanel
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2942
            geometryLayout:
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2943
                ((LayoutFrame
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2944
                    origin:(0.0 @ 0.0)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2945
                    corner:(1.0 @ 0.0))
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2946
                        topOffset:bH2;
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2947
                        bottomOffset:(bH2 + exceptionInfoLabel preferredHeight + 6);
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2948
                        rightOffset:-2).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2949
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2950
        methodCodeToggleSelectionHolder := 1 asValue.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2951
        methodCodeToggleSelectionHolder onChangeSend:#methodCodeToggleChanged to:self.
11305
f9019302309d changed: #initialize
Claus Gittinger <cg@exept.de>
parents: 11304
diff changeset
  2952
        codeToggleLabels := resources array:{ 
f9019302309d changed: #initialize
Claus Gittinger <cg@exept.de>
parents: 11304
diff changeset
  2953
                    'Showing Original Code (being executed, but obsolete)' asText backgroundColorizeAllWith:Color red lightened . 
f9019302309d changed: #initialize
Claus Gittinger <cg@exept.de>
parents: 11304
diff changeset
  2954
                    'Showing Current Code'                                 asText backgroundColorizeAllWith:Color green lightened . 
f9019302309d changed: #initialize
Claus Gittinger <cg@exept.de>
parents: 11304
diff changeset
  2955
                  }.
f9019302309d changed: #initialize
Claus Gittinger <cg@exept.de>
parents: 11304
diff changeset
  2956
        methodCodeToggle := PopUpList label:codeToggleLabels first in:exceptionAndTogglePanel.
f9019302309d changed: #initialize
Claus Gittinger <cg@exept.de>
parents: 11304
diff changeset
  2957
        methodCodeToggle list:codeToggleLabels.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2958
        methodCodeToggle useIndex:true.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2959
        methodCodeToggle model:methodCodeToggleSelectionHolder.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2960
        methodCodeToggle beInvisible.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2961
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2962
        exceptionAndTogglePanel add:exceptionInfoLabel.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2963
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2964
        v := self initializeCodeViewIn:codePanel.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2965
        v origin:(0.0 @ (bH2+exceptionInfoLabel preferredHeight+6)) corner:(1.0 @ 1.0).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2966
        codePanel origin:(0.0 @ 0.25) corner:(1.0 @ 0.75).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2967
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2968
        v := self initializeInspectorViewsIn:panel.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2969
        v origin:(0.0 @ 0.75) corner:(1.0 @ 1.0).
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  2970
    ].
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  2971
3387
4cbed052fbbe *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3350
diff changeset
  2972
    DefaultDebuggerBackgroundColor notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2973
        self allViewBackground:DefaultDebuggerBackgroundColor.
3570
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  2974
    ].
9626
746106f8e83c remember origin & extent
Claus Gittinger <cg@exept.de>
parents: 9618
diff changeset
  2975
    LastExtent notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2976
        self extent:LastExtent.
9626
746106f8e83c remember origin & extent
Claus Gittinger <cg@exept.de>
parents: 9618
diff changeset
  2977
    ].
746106f8e83c remember origin & extent
Claus Gittinger <cg@exept.de>
parents: 9618
diff changeset
  2978
    LastOrigin notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2979
        self origin:LastOrigin.
9626
746106f8e83c remember origin & extent
Claus Gittinger <cg@exept.de>
parents: 9618
diff changeset
  2980
    ].
3570
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  2981
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  2982
    "
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  2983
     Debugger newDebugger
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  2984
    "
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2985
11693
367eaa0e1ead changed: #initialize
Claus Gittinger <cg@exept.de>
parents: 11661
diff changeset
  2986
    "Modified: / 27-07-2012 / 14:46:07 / cg"
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  2987
!
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  2988
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  2989
initializeAbortButtonIn:bpanel
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  2990
    abortButton := Button
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2991
                label:(resources string:'Abort')
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2992
                action:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2993
                    abortButton turnOffWithoutRedraw.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2994
                    self doAbort
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2995
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  2996
                in:bpanel.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2997
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2998
    "Created: / 17.11.2001 / 20:56:47 / cg"
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  2999
    "Modified: / 17.11.2001 / 20:57:17 / cg"
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3000
!
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3001
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3002
initializeButtons1In:bpanel
9093
afeec57f277e generate a change notification when ignore-halts changes
Claus Gittinger <cg@exept.de>
parents: 9078
diff changeset
  3003
    "creates the top button row, consisting of 'continue', 'abort', 'terminate'..."
afeec57f277e generate a change notification when ignore-halts changes
Claus Gittinger <cg@exept.de>
parents: 9078
diff changeset
  3004
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3005
    |separator|
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3006
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3007
    bpanel horizontalLayout:#left.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3008
    bpanel verticalLayout:#centerMax.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3009
    bpanel verticalSpace:ViewSpacing // 2.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3010
8194
051110bdd147 button panels
Claus Gittinger <cg@exept.de>
parents: 8193
diff changeset
  3011
    self initializeContinueButtonIn:bpanel.
9135
b686c004104c comment/format in: #initializeStepButtonIn:
Claus Gittinger <cg@exept.de>
parents: 9133
diff changeset
  3012
    continueButton width:150.
b686c004104c comment/format in: #initializeStepButtonIn:
Claus Gittinger <cg@exept.de>
parents: 9133
diff changeset
  3013
9131
3787cb7519e8 changed:
Claus Gittinger <cg@exept.de>
parents: 9120
diff changeset
  3014
    "/ separator := View extent:(10 @ 5) in:bpanel.
3787cb7519e8 changed:
Claus Gittinger <cg@exept.de>
parents: 9120
diff changeset
  3015
    "/ separator borderWidth:0; level:0.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3016
    self initializeAbortButtonIn:bpanel.
9135
b686c004104c comment/format in: #initializeStepButtonIn:
Claus Gittinger <cg@exept.de>
parents: 9133
diff changeset
  3017
    abortButton width:150.
b686c004104c comment/format in: #initializeStepButtonIn:
Claus Gittinger <cg@exept.de>
parents: 9133
diff changeset
  3018
b686c004104c comment/format in: #initializeStepButtonIn:
Claus Gittinger <cg@exept.de>
parents: 9133
diff changeset
  3019
    separator := View extent:(100 @ 5) in:bpanel.
1398
d3f02207f847 rearranged buttons (terminate was too exposed);
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  3020
    separator borderWidth:0; level:0.
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3021
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3022
    self initializeTerminateButtonIn:bpanel.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3023
9131
3787cb7519e8 changed:
Claus Gittinger <cg@exept.de>
parents: 9120
diff changeset
  3024
    separator := View extent:(50 @ 5) in:bpanel.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3025
    separator borderWidth:0; level:0.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3026
13362
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  3027
    self initializeGotoDialogOpenerButtonIn:bpanel.
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  3028
    self initializeGotoApplicationActionMethodButtonIn:bpanel.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3029
    self initializeDefineButtonIn:bpanel.
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  3030
4356
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  3031
    (UserPreferences current allowSendMailFromDebugger and:[SendMailTool notNil]) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3032
        separator := View extent:(10 @ 5) in:bpanel.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3033
        separator borderWidth:0; level:0.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3034
        self initializeReportButtonIn:bpanel.
4356
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  3035
    ].
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3036
    "Modified: / 17.11.2001 / 21:02:59 / cg"
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3037
!
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3038
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3039
initializeButtons2In:bpanel
9093
afeec57f277e generate a change notification when ignore-halts changes
Claus Gittinger <cg@exept.de>
parents: 9078
diff changeset
  3040
    "creates the second button row, consisting of 'next', 'step', 'return'..."
afeec57f277e generate a change notification when ignore-halts changes
Claus Gittinger <cg@exept.de>
parents: 9078
diff changeset
  3041
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3042
    |separator|
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3043
9131
3787cb7519e8 changed:
Claus Gittinger <cg@exept.de>
parents: 9120
diff changeset
  3044
    bpanel horizontalLayout:#left.
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3045
    bpanel verticalLayout:#centerMax.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3046
    bpanel verticalSpace:ViewSpacing // 2.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3047
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3048
    self initializeNextButtonIn:bpanel.
9135
b686c004104c comment/format in: #initializeStepButtonIn:
Claus Gittinger <cg@exept.de>
parents: 9133
diff changeset
  3049
    nextButton width:100.
b686c004104c comment/format in: #initializeStepButtonIn:
Claus Gittinger <cg@exept.de>
parents: 9133
diff changeset
  3050
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3051
    self initializeStepButtonIn:bpanel.
9135
b686c004104c comment/format in: #initializeStepButtonIn:
Claus Gittinger <cg@exept.de>
parents: 9133
diff changeset
  3052
    stepButton width:100.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3053
2305
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3054
"/ cg:
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3055
"/ I disabled the stepIn / stepOut buttons - for now.
9500
76bc64543166 care for original vs. current methods code (if it was changed)
Claus Gittinger <cg@exept.de>
parents: 9488
diff changeset
  3056
"/ they do not work reliable with inlined blocks yet.
2305
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3057
"/
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3058
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3059
2305
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3060
"/    img := Image fromFile:'bitmaps/stepIn.xpm'.
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3061
"/    img isNil ifTrue:[
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3062
"/        img := (resources at:'next')
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3063
"/    ].
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3064
"/    nextButton := Button
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3065
"/                        label:img
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3066
"/                        action:[stepButton turnOff. self doNext]
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3067
"/                        in:bpanel.
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3068
"/
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3069
"/    img := Image fromFile:'bitmaps/stepOver.xpm'.
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3070
"/    img isNil ifTrue:[
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3071
"/        img := (resources at:'over')
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3072
"/    ].
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3073
"/    nextOverButton := Button
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3074
"/                        label:img
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3075
"/                        action:[stepButton turnOff. self doNextOver]
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3076
"/                        in:bpanel.
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3077
"/
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3078
"/    img := Image fromFile:'bitmaps/stepOut.xpm'.
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3079
"/    img isNil ifTrue:[
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3080
"/        img := (resources at:'out')
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3081
"/    ].
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3082
"/    nextOutButton := Button
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3083
"/                        label:img
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3084
"/                        action:[stepButton turnOff. self doNextOut]
4df4dcd30c13 disabled the stepIn / stepOut buttons - for now
Claus Gittinger <cg@exept.de>
parents: 2299
diff changeset
  3085
"/                        in:bpanel.
1063
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  3086
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3087
    self initializeSendButtonIn:bpanel.
9135
b686c004104c comment/format in: #initializeStepButtonIn:
Claus Gittinger <cg@exept.de>
parents: 9133
diff changeset
  3088
    sendButton width:100.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3089
1398
d3f02207f847 rearranged buttons (terminate was too exposed);
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  3090
    separator := View extent:(30 @ 5) in:bpanel.
d3f02207f847 rearranged buttons (terminate was too exposed);
Claus Gittinger <cg@exept.de>
parents: 1394
diff changeset
  3091
    separator borderWidth:0; level:0.
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3092
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3093
    self initializeReturnButtonIn:bpanel.
9135
b686c004104c comment/format in: #initializeStepButtonIn:
Claus Gittinger <cg@exept.de>
parents: 9133
diff changeset
  3094
    returnButton width:100.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3095
    self initializeRestartButtonIn:bpanel.
9135
b686c004104c comment/format in: #initializeStepButtonIn:
Claus Gittinger <cg@exept.de>
parents: 9133
diff changeset
  3096
    restartButton width:100.
13360
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  3097
    self initializeResendButtonIn:bpanel.
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  3098
    resendButton width:100.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3099
9500
76bc64543166 care for original vs. current methods code (if it was changed)
Claus Gittinger <cg@exept.de>
parents: 9488
diff changeset
  3100
    "Modified: / 18-06-2010 / 08:32:05 / cg"
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3101
!
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3102
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3103
initializeButtonsIn:bpanel
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3104
    |separator|
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3105
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3106
    bpanel horizontalLayout:#left.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3107
    bpanel verticalLayout:#centerMax.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3108
    bpanel verticalSpace:ViewSpacing // 2.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3109
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3110
    self initializeAbortButtonIn:bpanel.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3111
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3112
    separator := View extent:(10 @ 5) in:bpanel.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3113
    separator borderWidth:0; level:0.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3114
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3115
    self initializeContinueButtonIn:bpanel.
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3116
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3117
    separator := View extent:(10 @ 5) in:bpanel.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3118
    separator borderWidth:0; level:0.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3119
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3120
    self initializeReturnButtonIn:bpanel.
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3121
    self initializeRestartButtonIn:bpanel.
13360
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  3122
    self initializeResendButtonIn:bpanel.
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3123
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3124
    separator := View extent:(10 @ 5) in:bpanel.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3125
    separator borderWidth:0; level:0.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3126
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3127
    self initializeNextButtonIn:bpanel.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3128
    self initializeStepButtonIn:bpanel.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3129
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3130
"/ cg:
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3131
"/ I disabled the stepIn / stepOut buttons - for now.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3132
"/ they do not work relyable with inlined blocks yet.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3133
"/
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3134
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3135
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3136
"/    img := Image fromFile:'bitmaps/stepIn.xpm'.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3137
"/    img isNil ifTrue:[
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3138
"/        img := (resources at:'next')
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3139
"/    ].
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3140
"/    nextButton := Button
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3141
"/                        label:img
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3142
"/                        action:[stepButton turnOff. self doNext]
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3143
"/                        in:bpanel.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3144
"/
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3145
"/    img := Image fromFile:'bitmaps/stepOver.xpm'.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3146
"/    img isNil ifTrue:[
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3147
"/        img := (resources at:'over')
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3148
"/    ].
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3149
"/    nextOverButton := Button
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3150
"/                        label:img
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3151
"/                        action:[stepButton turnOff. self doNextOver]
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3152
"/                        in:bpanel.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3153
"/
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3154
"/    img := Image fromFile:'bitmaps/stepOut.xpm'.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3155
"/    img isNil ifTrue:[
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3156
"/        img := (resources at:'out')
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3157
"/    ].
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3158
"/    nextOutButton := Button
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3159
"/                        label:img
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3160
"/                        action:[stepButton turnOff. self doNextOut]
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3161
"/                        in:bpanel.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3162
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3163
    self initializeSendButtonIn:bpanel.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3164
3187
3d8f1bbf585b added define-Button
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3165
    separator := View extent:(30 @ 5) in:bpanel.
3d8f1bbf585b added define-Button
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  3166
    separator borderWidth:0; level:0.
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3167
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3168
    self initializeTerminateButtonIn:bpanel.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3169
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3170
    separator := View extent:(30 @ 5) in:bpanel.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3171
    separator borderWidth:0; level:0.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3172
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3173
    self initializeDefineButtonIn:bpanel.
4356
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  3174
    (UserPreferences current allowSendMailFromDebugger and:[SendMailTool notNil]) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3175
        self initializeReportButtonIn:bpanel.
4356
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  3176
    ].
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  3177
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3178
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3179
    "Created: / 17.11.2001 / 20:56:20 / cg"
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3180
    "Modified: / 17.11.2001 / 21:03:18 / cg"
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3181
!
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3182
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3183
initializeCodeViewIn:panel
13519
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3184
    |scrollableCodeView|
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3185
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  3186
    (UserPreferences current useCodeView2In: #Debugger) ifTrue:[
13519
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3187
        scrollableCodeView := codeView := Tools::CodeView2 new.
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  3188
        codeView model: ValueHolder new.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  3189
        codeView methodHolder: ValueHolder new.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  3190
        codeView classHolder: ValueHolder new.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  3191
    ] ifFalse:[
13519
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3192
        scrollableCodeView := HVScrollableView
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  3193
                    for:CodeView
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  3194
                    miniScrollerH:true
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  3195
                    miniScrollerV:false
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  3196
                    in:panel.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  3197
13519
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3198
        codeView := scrollableCodeView scrolledView.
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  3199
        codeView enableMotionEvents. "/ for active help
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  3200
    ].
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3201
13842
609697ec1e06 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13764
diff changeset
  3202
     (UserPreferences current showAcceptCancelBarInBrowser 
609697ec1e06 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13764
diff changeset
  3203
        and:[codeView isCodeView2 not or:[UserPreferences current codeView2ShowAcceptCancel not]]) ifTrue:[
13519
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3204
        ViewWithAcceptAndCancelBar notNil ifTrue:[
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3205
            |v|
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3206
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3207
            v := ViewWithAcceptAndCancelBar new.
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3208
            v slaveView:scrollableCodeView.
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3209
            v reallyModifiedHolder:(codeView isCodeView2 
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3210
                                        ifTrue:[ codeView reallyModifiedChannel ]
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3211
                                        ifFalse:[ 
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3212
                                            BlockValue
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3213
                                                with:[:m |
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3214
                                                    |same|
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3215
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3216
                                                    same := (codeView contentsAsString string = currentMethod source string).
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3217
                                                    codeView modifiedChannel setValue:false.  "/ so it triggers again
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3218
                                                    same not.
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3219
                                                ]
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3220
                                                argument:codeView modifiedChannel 
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3221
                                        ]).
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3222
            v cancelAction:
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3223
                [
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3224
                    "/ codeView setClipboardText:(codeView contents).   "/ for undo
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3225
                    codeView device rememberInCopyBufferHistory:(codeView contents).  "/ for undo
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3226
                    codeView contents:(currentMethod source).
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3227
                    codeView modifiedChannel setValue:false; changed.   "/ trigger
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3228
                    codeView requestFocus.
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3229
                ].
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3230
            v compareAction:
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3231
                [
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3232
                    v := DiffCodeView
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3233
                            openOn:codeView contentsAsString
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3234
                            label:(resources string:'Changed definition (to be accepted ?)')
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3235
                            and:currentMethod source
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3236
                            label:(resources string:'Method''s Original Code').
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3237
                    v label:(resources string:'Changed Code in Debugger').
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3238
                    v waitUntilVisible.
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3239
                    "/ codeView requestFocus
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3240
                ].
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3241
            scrollableCodeView := v.
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3242
        ]
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3243
    ].
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3244
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3245
    panel add:scrollableCodeView.
97e23cf8edbb class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13490
diff changeset
  3246
    ^ scrollableCodeView
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  3247
13842
609697ec1e06 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13764
diff changeset
  3248
    "Modified: / 06-12-2013 / 17:30:55 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3249
!
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3250
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3251
initializeContextListViewIn:panel
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3252
    |v|
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3253
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3254
    v := HVScrollableView
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3255
                for:SelectionInListView
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3256
                miniScrollerH:true
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3257
                miniScrollerV:false
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3258
                in:panel.
3034
fad21a9a02bd context-list is horizontal scrollable
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3259
    v autoHideHorizontalScrollBar:true.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3260
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3261
    contextView := v scrolledView.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3262
    contextView action:[:lineNr | self showSelection:lineNr].
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3263
    contextView doubleClickAction:[:line | self browseImplementingClass].
2678
90eb8be47ac4 avoid annoying modified-code dialog when reselecting the same
Claus Gittinger <cg@exept.de>
parents: 2633
diff changeset
  3264
    contextView selectConditionBlock:[:line | self checkSelectionChangeAllowed:line].
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3265
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3266
    contextView middleButtonMenu:(self middleButtonMenu).
5453
4211f29ea931 contextViews menu
Claus Gittinger <cg@exept.de>
parents: 5451
diff changeset
  3267
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3268
    ^ v
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3269
!
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3270
5453
4211f29ea931 contextViews menu
Claus Gittinger <cg@exept.de>
parents: 5451
diff changeset
  3271
initializeContextViewsMiddleButtonMenu
4211f29ea931 contextViews menu
Claus Gittinger <cg@exept.de>
parents: 5451
diff changeset
  3272
    <resource: #programMenu >
4211f29ea931 contextViews menu
Claus Gittinger <cg@exept.de>
parents: 5451
diff changeset
  3273
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3274
    contextView middleButtonMenu:(self middleButtonMenu).
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3275
!
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3276
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3277
initializeContinueButtonIn:bpanel
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3278
    continueButton := Button
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3279
                label:(resources string:'Continue')
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3280
                action:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3281
                    continueButton turnOffWithoutRedraw.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3282
                    self doContinue
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3283
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3284
                in:bpanel.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3285
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3286
    "Created: / 17.11.2001 / 20:57:34 / cg"
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3287
!
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3288
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3289
initializeDefineButtonIn:bpanel
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3290
    defineButton := Button
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3291
                label:(resources string:'Define')
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3292
                action:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3293
                    defineButton turnOffWithoutRedraw.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3294
                    self doDefine
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3295
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3296
                in:bpanel.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3297
    defineButton beInvisible
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3298
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3299
    "Created: / 17.11.2001 / 21:02:48 / cg"
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3300
!
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3301
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  3302
initializeGotoApplicationActionMethodButtonIn:bpanel
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  3303
    gotoApplicationActionMethodButton := Button
14524
e51b02f9f0b6 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14523
diff changeset
  3304
                label:(resources string:'Goto Responsible Application Method')
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  3305
                action:[
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  3306
                    gotoApplicationActionMethodButton turnOffWithoutRedraw.
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  3307
                    self doGotoApplicationActionMethod
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  3308
                ]
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  3309
                in:bpanel.
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  3310
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  3311
    gotoApplicationActionMethodButton beInvisible
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  3312
!
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  3313
13362
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  3314
initializeGotoDialogOpenerButtonIn:bpanel
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  3315
    gotoDialogOpenerButton := Button
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  3316
                label:(resources string:'Goto Dialog Opener')
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  3317
                action:[
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  3318
                    gotoDialogOpenerButton turnOffWithoutRedraw.
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  3319
                    self doGotoDialogOpener
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  3320
                ]
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  3321
                in:bpanel.
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  3322
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  3323
    gotoDialogOpenerButton beInvisible
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  3324
!
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  3325
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3326
initializeInspectorViewsIn:panel
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3327
    |hpanel|
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3328
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3329
    hpanel := VariableHorizontalPanel in:panel.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3330
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3331
    receiverInspector := InspectorView
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3332
                                origin:(0.0 @ 0.0) corner:(0.5 @ 1.0)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3333
                                    in:hpanel.
4103
6c0eb2985cee label: -> fieldListLabel: in inspector
Claus Gittinger <cg@exept.de>
parents: 3998
diff changeset
  3334
    receiverInspector fieldListLabel:'Receiver'.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3335
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3336
    contextInspector := ContextInspectorView
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3337
                                origin:(0.5 @ 0.0) corner:(1.0 @ 1.0)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3338
                                    in:hpanel.
4103
6c0eb2985cee label: -> fieldListLabel: in inspector
Claus Gittinger <cg@exept.de>
parents: 3998
diff changeset
  3339
    contextInspector fieldListLabel:'Context'.
646
04dafb2560bf added labels 'receiver' & 'context';
Claus Gittinger <cg@exept.de>
parents: 642
diff changeset
  3340
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  3341
    ^ hpanel
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3342
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3343
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3344
initializeNextButtonIn:bpanel
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3345
    nextButton := Button
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3346
                label:(resources string:'Debug_Next')
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3347
                action:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3348
                    stepButton turnOff.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3349
                    self doNext
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3350
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3351
                in:bpanel.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3352
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3353
    "Created: / 17.11.2001 / 20:59:38 / cg"
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3354
!
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3355
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3356
initializeReportButtonIn:bpanel
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3357
    reportButton := Button
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3358
                label:(resources string:'Report by Mail...')
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3359
                action:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3360
                    reportButton turnOffWithoutRedraw.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3361
                    self doOpenReportMailApp.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3362
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3363
                in:bpanel.
4356
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  3364
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  3365
    "Created: / 17.11.2001 / 21:02:20 / cg"
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  3366
!
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  3367
13360
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  3368
initializeResendButtonIn:bpanel
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  3369
    resendButton := Button
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  3370
                label:(resources string:'Resend')
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  3371
                action:[
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  3372
                    resendButton turnOff.
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  3373
                    self doResend
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  3374
                ]
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  3375
                in:bpanel.
13490
5dbbc9379782 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13489
diff changeset
  3376
5dbbc9379782 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13489
diff changeset
  3377
    "/ if we have this, we do not need the restart button
5dbbc9379782 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13489
diff changeset
  3378
    restartButton beInvisible.
13360
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  3379
!
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  3380
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3381
initializeRestartButtonIn:bpanel
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3382
    restartButton := Button
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3383
                label:(resources string:'Restart')
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3384
                action:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3385
                    restartButton turnOff.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3386
                    self doRestart
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3387
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3388
                in:bpanel.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3389
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3390
    "Created: / 17.11.2001 / 20:58:52 / cg"
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3391
!
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3392
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3393
initializeReturnButtonIn:bpanel
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3394
    returnButton := Button
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3395
                label:(resources string:'Return')
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3396
                action:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3397
                    returnButton turnOff.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3398
                    self doReturn
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3399
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3400
                in:bpanel.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3401
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3402
    "Created: / 17.11.2001 / 20:58:22 / cg"
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3403
!
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3404
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3405
initializeSendButtonIn:bpanel
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3406
    sendButton := Button
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3407
                label:(resources string:'Send')
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3408
                action:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3409
                    sendButton turnOff.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3410
                    self doSend
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3411
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3412
                in:bpanel.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3413
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3414
    "Created: / 17.11.2001 / 21:01:20 / cg"
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3415
!
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3416
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3417
initializeStepButtonIn:bpanel
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3418
    stepButton := Button
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3419
                label:(resources string:'Debug_Step')
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3420
                action:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3421
                    stepButton turnOff.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3422
                    self doStep
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3423
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3424
                in:bpanel.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3425
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3426
    "Created: / 17.11.2001 / 21:00:13 / cg"
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3427
!
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3428
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3429
initializeTerminateButtonIn:bpanel
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3430
    terminateButton := Button
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3431
                label:(resources string:'Debug_Terminate')
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3432
                action:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3433
                    terminateButton turnOffWithoutRedraw.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3434
                    self doTerminate
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3435
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3436
                in:bpanel.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3437
9135
b686c004104c comment/format in: #initializeStepButtonIn:
Claus Gittinger <cg@exept.de>
parents: 9133
diff changeset
  3438
    terminateButton backgroundColor:Color red lightened.
b686c004104c comment/format in: #initializeStepButtonIn:
Claus Gittinger <cg@exept.de>
parents: 9133
diff changeset
  3439
    "/ terminateButton foregroundColor:Color red.
b686c004104c comment/format in: #initializeStepButtonIn:
Claus Gittinger <cg@exept.de>
parents: 9133
diff changeset
  3440
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  3441
    "Created: / 17.11.2001 / 21:02:20 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3442
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3443
1249
9a0070d01218 #realize -> #postRealize
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
  3444
postRealize
9a0070d01218 #realize -> #postRealize
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
  3445
    super postRealize.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3446
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3447
    inspecting ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3448
        inspectedProcess notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3449
            "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3450
             set prio somewhat higher (by 2, to allow walkBack-update process
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3451
             to run between mine and the debugged processes prio)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3452
            "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3453
            Processor activeProcess
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3454
                priority:(((inspectedProcess priority + 2) min:(Processor highIOPriority)) max:(Processor userSchedulingPriority+1)).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3455
        ]
3517
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  3456
    ].
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  3457
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  3458
    self sensor addEventListener:self.
1249
9a0070d01218 #realize -> #postRealize
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
  3459
9a0070d01218 #realize -> #postRealize
Claus Gittinger <cg@exept.de>
parents: 1244
diff changeset
  3460
    "Created: 24.7.1997 / 18:17:44 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3461
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3462
2150
a3148483962e do not re-realize a debugView after a snapshot-restart
Claus Gittinger <cg@exept.de>
parents: 2115
diff changeset
  3463
reinitialize
a3148483962e do not re-realize a debugView after a snapshot-restart
Claus Gittinger <cg@exept.de>
parents: 2115
diff changeset
  3464
    "/ redefined - since the debugView runs on top of
a3148483962e do not re-realize a debugView after a snapshot-restart
Claus Gittinger <cg@exept.de>
parents: 2115
diff changeset
  3465
    "/ the debuggee, there would be no event loop for me.
a3148483962e do not re-realize a debugView after a snapshot-restart
Claus Gittinger <cg@exept.de>
parents: 2115
diff changeset
  3466
13965
6213444511ae class: DebugView
Stefan Vogel <sv@exept.de>
parents: 13934
diff changeset
  3467
    self drawableId notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3468
        ^ self
2150
a3148483962e do not re-realize a debugView after a snapshot-restart
Claus Gittinger <cg@exept.de>
parents: 2115
diff changeset
  3469
    ].
a3148483962e do not re-realize a debugView after a snapshot-restart
Claus Gittinger <cg@exept.de>
parents: 2115
diff changeset
  3470
    "physically create the view & subviews"
a3148483962e do not re-realize a debugView after a snapshot-restart
Claus Gittinger <cg@exept.de>
parents: 2115
diff changeset
  3471
    self recreate.
a3148483962e do not re-realize a debugView after a snapshot-restart
Claus Gittinger <cg@exept.de>
parents: 2115
diff changeset
  3472
!
a3148483962e do not re-realize a debugView after a snapshot-restart
Claus Gittinger <cg@exept.de>
parents: 2115
diff changeset
  3473
11818
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3474
releaseDebuggee
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3475
    "We have to be careful to release all refs to the debuggee,
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3476
     because we may be in the cache.
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3477
     Otherwise, the GC will not be able to release it"
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3478
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3479
    busy := false.
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3480
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3481
    codeView acceptAction:nil.
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3482
    codeView doItAction:nil.
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3483
    codeView contents:nil.
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3484
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3485
    receiverInspector release.
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3486
    contextInspector release.
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3487
    inspectedProcess := nil.
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3488
    contextArray := nil.
13361
7eb8692dbc1b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13360
diff changeset
  3489
    ((exitAction == #restart) or:[exitAction == #return or:[exitAction == #resend]]) ifFalse:[
11818
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3490
        selectedContext := nil.
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3491
    ].
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3492
    actualContext := firstContext := nil.
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3493
    steppedContext := wrapperContext := nil.
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3494
    catchBlock := nil.
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3495
    grabber := nil.
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3496
    self autoUpdateOff.
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3497
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3498
    "Created: / 10-07-1997 / 14:57:51 / stefan"
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3499
    "Modified: / 26-09-2012 / 15:08:21 / cg"
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3500
!
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  3501
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3502
setLabelFor:aMessage in:aProcess
9403
ba9cafeaecd7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9348
diff changeset
  3503
    |l lines processNameOrNil pidOrNil osPidString|
6821
a6c4d3cd072c care for multiline label
Claus Gittinger <cg@exept.de>
parents: 6818
diff changeset
  3504
a6c4d3cd072c care for multiline label
Claus Gittinger <cg@exept.de>
parents: 6818
diff changeset
  3505
    lines := aMessage asStringCollection.
a6c4d3cd072c care for multiline label
Claus Gittinger <cg@exept.de>
parents: 6818
diff changeset
  3506
    lines size > 1 ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3507
        l := lines first
6821
a6c4d3cd072c care for multiline label
Claus Gittinger <cg@exept.de>
parents: 6818
diff changeset
  3508
    ] ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3509
        l := aMessage.
6821
a6c4d3cd072c care for multiline label
Claus Gittinger <cg@exept.de>
parents: 6818
diff changeset
  3510
    ].
a6c4d3cd072c care for multiline label
Claus Gittinger <cg@exept.de>
parents: 6818
diff changeset
  3511
a6c4d3cd072c care for multiline label
Claus Gittinger <cg@exept.de>
parents: 6818
diff changeset
  3512
    l := l , ' ('.
4644
e6dd5c21b9c0 Convert Object>>errorSignal -> Error
Stefan Vogel <sv@exept.de>
parents: 4356
diff changeset
  3513
    Error handle:[:ex |
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3514
        l := l , '???'
1030
1a1ee0356c1b catch errors while extracting processes name
ca
parents: 1019
diff changeset
  3515
    ] do:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3516
        processNameOrNil := aProcess name.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3517
        processNameOrNil notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3518
            l := l , (processNameOrNil contractTo:20) , ''.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3519
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3520
        pidOrNil := aProcess id printString.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3521
        l := l , '[' , pidOrNil , ']'.
73
e332d9c71624 *** empty log message ***
claus
parents: 69
diff changeset
  3522
    ].
1030
1a1ee0356c1b catch errors while extracting processes name
ca
parents: 1019
diff changeset
  3523
    l := l , ')'.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  3524
    self label:l.
6821
a6c4d3cd072c care for multiline label
Claus Gittinger <cg@exept.de>
parents: 6818
diff changeset
  3525
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3526
    ((ShowThreadID == true) and:[OperatingSystem isMSDOSlike]) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3527
        osPidString := ' {threadID: ',OperatingSystem getThreadId printString,'}'.
9403
ba9cafeaecd7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9348
diff changeset
  3528
    ].
ba9cafeaecd7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9348
diff changeset
  3529
8305
9d6337aa3ab8 exception info
Claus Gittinger <cg@exept.de>
parents: 8257
diff changeset
  3530
    exceptionInfoLabel notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3531
        exceptionInfoLabel
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3532
            label:(resources
12529
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  3533
                    string:'%1 in process %2 [%3]%4'
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3534
                    with:(lines first colorizeAllWith:Color red)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3535
                    with:(processNameOrNil ? '')
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3536
                    with:(pidOrNil ? '')
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3537
                    with:(osPidString ? ''))
8305
9d6337aa3ab8 exception info
Claus Gittinger <cg@exept.de>
parents: 8257
diff changeset
  3538
    ].
9d6337aa3ab8 exception info
Claus Gittinger <cg@exept.de>
parents: 8257
diff changeset
  3539
6821
a6c4d3cd072c care for multiline label
Claus Gittinger <cg@exept.de>
parents: 6818
diff changeset
  3540
    "Modified: / 06-07-2006 / 12:43:19 / cg"
0
571fd5eee315 Initial revision
claus
parents:
diff changeset
  3541
! !
571fd5eee315 Initial revision
claus
parents:
diff changeset
  3542
571fd5eee315 Initial revision
claus
parents:
diff changeset
  3543
!DebugView methodsFor:'interrupt handling'!
571fd5eee315 Initial revision
claus
parents:
diff changeset
  3544
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3545
contextInterrupt
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3546
    DebuggingDebugger == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3547
        'contextIRQ' printCR.
12743
43616af3d027 class: DebugView
Stefan Vogel <sv@exept.de>
parents: 12716
diff changeset
  3548
        thisContext methodHome sender fullPrint.
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3549
    ].
5340
8e2526806312 return value of stepInterrupt, contextInterrupt and stepOrNext
Claus Gittinger <cg@exept.de>
parents: 5271
diff changeset
  3550
    self stepOrNext
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3551
1364
15b36b5c9480 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1361
diff changeset
  3552
    "Modified: / 30.10.1997 / 21:22:25 / cg"
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3553
!
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3554
0
571fd5eee315 Initial revision
claus
parents:
diff changeset
  3555
stepInterrupt
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3556
    DebuggingDebugger == true ifTrue:[
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3557
        'stepIRQ' print.
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3558
        "/ ' in ' print. thisContext sender fullPrint.
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3559
        '' printCR.
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3560
    ].
1394
7765db9114ff more context hiding in dense-walkback mode
Claus Gittinger <cg@exept.de>
parents: 1388
diff changeset
  3561
    Processor yield.
5340
8e2526806312 return value of stepInterrupt, contextInterrupt and stepOrNext
Claus Gittinger <cg@exept.de>
parents: 5271
diff changeset
  3562
    self stepOrNext
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3563
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3564
    "Modified: / 20-07-2012 / 14:06:54 / cg"
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3565
!
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3566
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3567
stepOrNext
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3568
    |where here con s isWrap method wrappedMethod 
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3569
     originalMethodOfWrappedMethod originalMethodsContext
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3570
     inBlock subBlockLeft ignore contextBelow wrapContext
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3571
     leftWrap enteredWrap anyStepBlocks
9024
fb4eebb44e21 comment/format in: #initialize
Claus Gittinger <cg@exept.de>
parents: 8967
diff changeset
  3572
     oneMore initiallyShown inBlockBelow receiver processName|
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3573
789
a9595b71a8fa improved next-stepping in blocks
Claus Gittinger <cg@exept.de>
parents: 788
diff changeset
  3574
    "/ DebuggingDebugger := true
1049
3223853742a4 fixed initial selection after stepping with non-verbose
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
  3575
    "/ DebuggingDebugger := false
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3576
    "/ DebuggingDebugger2 := true
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3577
    "/ DebuggingDebugger2 := false
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3578
    "/ DebuggingDebugger3 := false
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3579
    "/ '' printCR
789
a9595b71a8fa improved next-stepping in blocks
Claus Gittinger <cg@exept.de>
parents: 788
diff changeset
  3580
9024
fb4eebb44e21 comment/format in: #initialize
Claus Gittinger <cg@exept.de>
parents: 8967
diff changeset
  3581
    processName := (Processor activeProcess nameOrId),' [',Processor activeProcess id printString,']'.
fb4eebb44e21 comment/format in: #initialize
Claus Gittinger <cg@exept.de>
parents: 8967
diff changeset
  3582
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3583
    skipLineNr == #return ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3584
        self label:('stepping context returned ' , ' (process: ' , processName , ')').
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3585
        here := thisContext sender sender.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3586
        here setLineNumber:nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3587
        here := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3588
        con := thisContext sender sender sender.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3589
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3590
        HaltInterrupt handle:[:ex |
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3591
            ('DebugView [info]: halt/breakpoint in debugger at %1 ignored [stepOrNext]' bindWith:ex suspendedContext) infoPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3592
            ex proceed
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3593
        ] do:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3594
            self enter:con select:nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3595
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3596
        con := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3597
        ^ self
300
027ffcadd12d keep context in lower-right inspector when single stepping
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
  3598
    ].
027ffcadd12d keep context in lower-right inspector when single stepping
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
  3599
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3600
"/    "/
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3601
"/    "/ should no longer happen
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3602
"/    "/
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3603
"/    stepForReturn == true ifTrue:[
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3604
"/"/'stepForreturn' printCR.
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3605
"/        self enter:thisContext sender.
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3606
"/        ^ self
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3607
"/    ].
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3608
52
7b48409ae088 *** empty log message ***
claus
parents: 48
diff changeset
  3609
    Processor activeProcess ~~ inspectedProcess ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3610
        'DebugView [info]: stray step interrupt' infoPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3611
        ^ self
52
7b48409ae088 *** empty log message ***
claus
parents: 48
diff changeset
  3612
    ].
7b48409ae088 *** empty log message ***
claus
parents: 48
diff changeset
  3613
29
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
  3614
    here := thisContext.        "stepInterrupt"
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3615
    here := here sender.        "the caller; step- or contextIRQ"
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3616
    here := here sender.        "the interrupted context"
29
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
  3617
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3618
    DebuggingDebugger2 == true ifTrue:[
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3619
        '***************************' printCR.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3620
        'here in ' print.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3621
        inWrap ifTrue:['(wrap) ' print.].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3622
        ((ObjectMemory addressOf:here) printStringRadix:16) print. ' ' print.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3623
        here selector printCR.
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3624
        'stepping in ' print. 
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3625
        steppedContext notNil ifTrue:[    
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3626
            ((ObjectMemory addressOf:steppedContext) printStringRadix:16) print. ' ' print.
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3627
        ].
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3628
        steppedContext printCR.
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3629
    ].
10
46e0d4f2079f *** empty log message ***
claus
parents: 7
diff changeset
  3630
13197
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3631
    "/ when single stepping, ignore breakpoints
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3632
    here selector == #break ifTrue:[
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3633
        (here receiver isKindOf:Breakpoint) ifTrue:[
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3634
            false "here receiver isEnabled" ifFalse:[
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3635
                con := nil.
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3636
                where := nil. here := nil.
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3637
                StepInterruptPending := 1.
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3638
                InterruptPending := 1.
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3639
                InStepInterrupt := nil.
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3640
                ^ self
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3641
            ]
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3642
        ].
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3643
    ].
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3644
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3645
    "/ kludge: a bug-workaround;
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3646
    "/ I should not see those...
2581
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  3647
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  3648
    here selector == #ioInterrupt ifTrue:[
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3649
        DebuggingDebugger2 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3650
            'oops - should not get that one' printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3651
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3652
        Processor ioInterrupt.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3653
        StepInterruptPending := 1.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3654
        InterruptPending := 1.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3655
        where := nil. here := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3656
        InStepInterrupt := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3657
        ^ self
2581
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  3658
    ].
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  3659
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  3660
    stepUntilEntering notNil ifTrue:[
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3661
        DebuggingDebugger2 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3662
            'check if entering ' print. stepUntilEntering printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3663
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3664
        (stepUntilEntering match:here selector) ifTrue:[
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3665
            DebuggingDebugger2 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3666
                'entering...' printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3667
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3668
            self label:('arrived at ' , stepUntilEntering , ' (process: ' , processName , ')').
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3669
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3670
            lastStepUntilEntering := stepUntilEntering.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3671
            stepUntilEntering := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3672
            self enter:here select:nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3673
            con := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3674
            ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3675
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3676
        "/ see if stepping context is still active ...
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3677
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3678
        con := here.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3679
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3680
        DebuggingDebugger2 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3681
            'start searching at: ' print.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3682
            con fullPrint.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3683
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3684
        [con notNil and:[con ~~ steppedContext]] whileTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3685
            con := con sender
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3686
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3687
        con notNil ifTrue:[
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3688
            DebuggingDebugger2 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3689
                'steppingContext still active - continue stepping' printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3690
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3691
            con := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3692
            where := nil. here := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3693
            StepInterruptPending := 1.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3694
            InterruptPending := 1.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3695
            InStepInterrupt := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3696
            ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3697
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3698
        stepUntilEntering := nil.
2581
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  3699
    ].
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  3700
781
33e4d40fddbe better stepping (stepping in methods blockContext)
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
  3701
    "
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3702
     kludge to hide breakpoint wrappers in the context list and when single stepping:
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3703
         check if we are in a wrapper method's hidden setup-sequence
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3704
         if so, ignore the interrupt and continue single sending.
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3705
         Assume we are in a wrappers setup code, if there is another context above,
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3706
         which is for the wrapper method (i.e. if there is context with an originalmethod
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3707
         of some other context higher in the caller chain
781
33e4d40fddbe better stepping (stepping in methods blockContext)
Claus Gittinger <cg@exept.de>
parents: 779
diff changeset
  3708
    "
29
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
  3709
    isWrap := false.
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3710
    subBlockLeft := false.
788
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  3711
    leftWrap := enteredWrap := false.
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  3712
57
36e13831b62d *** empty log message ***
claus
parents: 56
diff changeset
  3713
    inWrap ifTrue:[
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3714
        "/ situation1:
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3715
        "/   valueWithReceiver or other
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3716
        "/   foo (wrapped)                 <- wrapContext
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3717
        "/
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3718
        "/ situation2:
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3719
        "/   foo (original)                <- originalMethodsContext
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3720
        "/   valueWithReceiver
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3721
        "/   foo (wrapped)                 <- wrapContext
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3722
        "/
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3723
        "/ situation3:
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3724
        "/   other
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3725
        "/   foo (original)                <- originalMethodsContext
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3726
        "/   valueWithReceiver
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3727
        "/   foo (wrapped)                 <- wrapContext
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3728
        "/
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3729
        "/ situation4:
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3730
        "/   ... many-contexts ... (more than 8)
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3731
        "/   possibly foo (original)  
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3732
        "/   valueWithReceiver or other
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3733
        "/   foo (wrapped)                 
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3734
        "/
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3735
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3736
        "/ search for the wrapped method's context and extract the original method 
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3737
        where := here.
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3738
        8 timesRepeat:[
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3739
            wrapContext isNil ifTrue:[
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3740
                where notNil ifTrue:[
13362
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  3741
                    DebuggingDebugger2 == true ifTrue:[ 
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3742
                        ((ObjectMemory addressOf:where) printStringRadix:16) print. ' ' print.
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3743
                        where printCR 
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3744
                    ].
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3745
                    where isBlockContext ifFalse:[
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3746
                        method := where method.
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3747
                        (method notNil and:[method isWrapped]) ifTrue:[
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3748
                            originalMethodOfWrappedMethod := method originalMethod.
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3749
                            wrappedMethod := method.
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3750
                            wrapContext := where.
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3751
                        ].
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3752
                    ].
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3753
                    where := where sender
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3754
                ]
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3755
            ]
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3756
        ].
13362
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  3757
        DebuggingDebugger2 == true ifTrue:[ 
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3758
            'wrap-context is: ' print.
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3759
            wrapContext notNil ifTrue:[    
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3760
                ((ObjectMemory addressOf:wrapContext) printStringRadix:16) print. ' ' print.
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3761
            ].
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3762
            wrapContext printCR 
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3763
        ].
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3764
        originalMethodOfWrappedMethod isNil ifTrue:[
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3765
            'oops no wrap?' errorPrintCR.
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3766
        ].
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3767
    ].
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3768
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3769
    (inWrap and:[ originalMethodOfWrappedMethod notNil ]) ifTrue:[
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3770
        isWrap := false.
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3771
        "/ DebuggingDebugger2 ifTrue:[ '----------->' print. originalMethodOfWrappedMethod printCR ].
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3772
        where := here.
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3773
        8 timesRepeat:[
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3774
            originalMethodsContext isNil ifTrue:[
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3775
                where notNil ifTrue:[
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3776
                    DebuggingDebugger2 ifTrue:[ 
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3777
                        ((ObjectMemory addressOf:where) printStringRadix:16) print. ' ' print.
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3778
                        where printCR 
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3779
                    ].
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3780
                    where isBlockContext ifFalse:[
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3781
                        method := where method.
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3782
                        method == originalMethodOfWrappedMethod ifTrue:[
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3783
                            originalMethodsContext := here.
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3784
                            where == here ifTrue:[
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3785
                                "/ situation2
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3786
                                DebuggingDebugger2 ifTrue:[ 's2' printCR ].
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3787
                                isWrap := true.
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3788
                                "/ here setSender:(wrapContext sender). --- leads to a crash
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3789
                            ] ifFalse: [
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3790
                                "/ situation3
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3791
                                DebuggingDebugger2 ifTrue:[ 's3' printCR ].
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3792
                                inWrap := false.
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3793
                                isWrap := false. 
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3794
                            ].
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3795
                            steppedContext := where
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3796
"/                        ] ifFalse:[
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3797
"/                            where selector == wrapContext selector ifTrue:[
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3798
"/                                where receiver == wrapContext receiver ifTrue:[
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3799
"/                                    '!!!!!!!!!!!!!!!!!!!!!!!!' printCR.
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3800
"/                                    method printCR.
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3801
"/                                    method originalMethod printCR.
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3802
"/                                    originalMethodOfWrappedMethod printCR.
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3803
"/                                    '!!!!!!!!!!!!!!!!!!!!!!!!' printCR.
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3804
"/                                ].
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3805
"/                            ].
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3806
                        ].
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3807
                        where := where sender
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3808
                    ].
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3809
                ].
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3810
            ].
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3811
        ].
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3812
        DebuggingDebugger2 ifTrue:[ 
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3813
            'original method-context is: ' print.
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3814
            originalMethodsContext notNil ifTrue:[
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3815
                ((ObjectMemory addressOf:originalMethodsContext) printStringRadix:16) print. ' ' print.
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3816
            ].
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3817
            originalMethodsContext printCR 
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3818
        ].
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3819
        originalMethodsContext isNil ifTrue:[
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3820
            originalMethodOfWrappedMethod isNil ifTrue:[
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3821
                "/ situation4
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3822
                DebuggingDebugger2 ifTrue:[ 's4' printCR ].
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3823
                DebuggingDebugger2 ifTrue:[ steppedContext printCR ].
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3824
                isWrap := false.
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3825
            ] ifFalse:[
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3826
                "/ situation1
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3827
                DebuggingDebugger2 ifTrue:[ 's1' printCR ].
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3828
                isWrap := true.
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3829
                "/ steppedContext := wrapContext
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  3830
            ].
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3831
        ].
29
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
  3832
    ].
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
  3833
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
  3834
    isWrap ifTrue:[
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3835
        DebuggingDebugger2 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3836
            'ignore wrap' printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3837
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3838
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3839
        "/
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3840
        "/ ignore, while in wrappers hidden setup
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3841
        "/
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3842
        where := nil. here := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3843
        ObjectMemory flushInlineCaches.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3844
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3845
        DebuggingDebugger2 == true ifTrue:[
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3846
            skipLineNr == #return ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3847
                'skipRet in wrap' printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3848
            ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3849
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3850
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3851
        StepInterruptPending := 1.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3852
        InterruptPending := 1.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3853
        InStepInterrupt := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3854
        ^ self
29
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
  3855
    ].
8a72e10043f6 *** empty log message ***
claus
parents: 22
diff changeset
  3856
3593
eb71fcdf0cfa single stepping in blocks of a method (fixed - I hope)
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  3857
    inBlock := inBlockBelow := anyStepBlocks := false.
57
36e13831b62d *** empty log message ***
claus
parents: 56
diff changeset
  3858
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3859
    DebuggingDebugger2 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3860
        'bigStep is: ' print. bigStep printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3861
        'steppedContext is: ' print. steppedContext printCR.
2581
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  3862
    ].
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  3863
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3864
    "/
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3865
    "/ is this for a send or a step/next ?
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3866
    "/
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  3867
    (bigStep
787
dab2fdc4a811 care for degenerated stepInterrupt
Claus Gittinger <cg@exept.de>
parents: 786
diff changeset
  3868
    and:[steppedContext notNil]) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3869
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3870
         a step or next - ignore all contexts below the interesting one
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3871
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3872
        where := here.      "the interrupted context"
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3873
        contextBelow := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3874
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3875
        where home notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3876
            "/
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3877
            "/ in a block called by 'our' context ?
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3878
            "/
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3879
            where home == steppedContext ifTrue:[
13197
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3880
                "/ '*block*' printCR.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3881
                inBlock := true
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3882
            ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3883
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3884
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3885
        where == steppedContext ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3886
            where := where sender.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3887
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3888
            where notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3889
                where home == steppedContext ifTrue:[
13197
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3890
                    "/ '*block*' printCR.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3891
                    inBlock := true.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3892
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3893
            ].
57
36e13831b62d *** empty log message ***
claus
parents: 56
diff changeset
  3894
36e13831b62d *** empty log message ***
claus
parents: 56
diff changeset
  3895
"/ 'looking for ' print.
3055
a84f555bb673 printNL -> printCR
Stefan Vogel <sv@exept.de>
parents: 3034
diff changeset
  3896
"/  (steppedContextAddress printStringRadix:16)print. '' printCR.
57
36e13831b62d *** empty log message ***
claus
parents: 56
diff changeset
  3897
786
429c3146c03d better stepping over stepped send (dummy context in send.c)
Claus Gittinger <cg@exept.de>
parents: 781
diff changeset
  3898
"/where print. ' ' print. ((ObjectMemory addressOf:where)printStringRadix:16) printCR.
429c3146c03d better stepping over stepped send (dummy context in send.c)
Claus Gittinger <cg@exept.de>
parents: 781
diff changeset
  3899
"/steppedContext print. ' ' print. ((ObjectMemory addressOf:steppedContext)printStringRadix:16) printCR.
429c3146c03d better stepping over stepped send (dummy context in send.c)
Claus Gittinger <cg@exept.de>
parents: 781
diff changeset
  3900
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3901
            where == steppedContext ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3902
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3903
                "/ check if we are in a context below steppedContext
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3904
                "/ (i.e. if steppedContext can be reached from
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3905
                "/  interrupted context. Not using context-ref but its
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3906
                "/  address to avoid creation of many useless contexts.)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3907
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3908
                inBlock ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3909
                    [where notNil] whileTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3910
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3911
                        "/ if either the receiver or any arg of this context
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3912
                        "/ is a block of the steppedContext, we must really
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3913
                        "/ do a single step. Otherwise, stepping through a
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3914
                        "/ do:-loop would be very difficult.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3915
                        receiver := where receiver.
13197
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3916
where selector == #critical: ifTrue:[
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3917
anyStepBlocks := true.
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3918
] ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3919
                        (receiver isBlock
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3920
                        and:[(receiver isKindOf:Block)
13197
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3921
                        and:[receiver homeMethod == steppedContext method
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3922
                             "receiver home == steppedContext"]])
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3923
                        ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3924
                            anyStepBlocks := true.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3925
                        ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3926
                            where args do:[:arg |
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3927
                                (arg isBlock
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3928
                                and:[(arg isKindOf:Block)
13197
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3929
                                and:[arg homeMethod == steppedContext method
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3930
                                     "arg home == steppedContext"]])
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3931
                                ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3932
                                    anyStepBlocks := true.
13197
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3933
                                ] ifFalse:[
13218
b67ece43f671 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13210
diff changeset
  3934
                                    (where methodHome notNil
b67ece43f671 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13210
diff changeset
  3935
                                    and:[where methodHome receiver isBlock
13197
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3936
                                    and:[(where methodHome receiver isKindOf:Block)
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3937
                                    and:[where methodHome receiver homeMethod == steppedContext method
13218
b67ece43f671 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13210
diff changeset
  3938
                                         "where methodHome receiver home == steppedContext"]]])
13197
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3939
                                    ifTrue:[
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3940
                                        anyStepBlocks := true.
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3941
                                    ]
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3942
                                ].
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3943
                            ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3944
                        ].
13197
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  3945
].
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3946
                        DebuggingDebugger2 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3947
                            ((ObjectMemory addressOf:where) printStringRadix:16)print. ' ' print.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3948
                            where selector printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3949
                        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3950
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3951
                        where == steppedContext ifTrue:[
3055
a84f555bb673 printNL -> printCR
Stefan Vogel <sv@exept.de>
parents: 3034
diff changeset
  3952
"/ 'found it - below; ignore' printCR.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3953
                            "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3954
                             found the interesting context somwehere up in the
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3955
                             chain. We seem to be still below the interesting one ...
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3956
                            "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3957
                            tracing == true ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3958
                                here printString printCR
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3959
                            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3960
                            "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3961
                              yes, a context below
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3962
                              - continue and schedule another stepInterrupt.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3963
                              Must flush caches since optimized methods not always
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3964
                              look for pending interrupts
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3965
                            "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3966
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3967
                            contextBelow notNil ifTrue:[
3055
a84f555bb673 printNL -> printCR
Stefan Vogel <sv@exept.de>
parents: 3034
diff changeset
  3968
"/ 'prepare for unwind-catch' printCR.
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  3969
"/ 'con= ' print. contextBelow printCR.
1613
3590eeac968f dont change the windowTitle while stepping (its too slow)
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
  3970
"/                                contextBelow selector notNil ifTrue:[
3590eeac968f dont change the windowTitle while stepping (its too slow)
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
  3971
"/                                    self label:'single stepping - please wait ...(' , contextBelow selector , ')'.
3590eeac968f dont change the windowTitle while stepping (its too slow)
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
  3972
"/                                ].
1399
35674d7ac5bc handle contextVars in codeViews doIt.
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
  3973
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3974
                                DebuggingDebugger2 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3975
                                    'below stepCon; continue until unwind of: ' print.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3976
                                    contextBelow printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3977
                                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3978
                                Processor activeProcess forceInterruptOnReturnOf:contextBelow.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3979
                                StepInterruptPending := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3980
                            ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3981
                                ObjectMemory flushInlineCaches.
1399
35674d7ac5bc handle contextVars in codeViews doIt.
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
  3982
1613
3590eeac968f dont change the windowTitle while stepping (its too slow)
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
  3983
"/                                here selector notNil ifTrue:[
3590eeac968f dont change the windowTitle while stepping (its too slow)
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
  3984
"/                                    self label:'single stepping - please wait ...(' , here selector , ')'.
3590eeac968f dont change the windowTitle while stepping (its too slow)
Claus Gittinger <cg@exept.de>
parents: 1598
diff changeset
  3985
"/                                ].
1399
35674d7ac5bc handle contextVars in codeViews doIt.
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
  3986
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  3987
                                DebuggingDebugger2 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3988
                                    'in stepCon; continue single stepping' printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3989
                                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3990
                                StepInterruptPending := 1.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3991
                                InterruptPending := 1.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3992
                            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3993
                            where := nil. here := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3994
                            InStepInterrupt := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3995
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3996
                            ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3997
                        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3998
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  3999
                        (steppedContext notNil and:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4000
                         where methodHome == steppedContext methodHome]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4001
                            inBlockBelow := true.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4002
                        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4003
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4004
                        anyStepBlocks ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4005
                            inBlock ifFalse:[
2633
41bd35e18e4e line-stepping into blocks fixed.
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4006
"/ workaround a VM bug,
41bd35e18e4e line-stepping into blocks fixed.
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4007
"/ which does not honor interrupt-on-return of block contexts
41bd35e18e4e line-stepping into blocks fixed.
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4008
"/ sigh
41bd35e18e4e line-stepping into blocks fixed.
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4009
where isBlockContext ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4010
                                contextBelow := where
2633
41bd35e18e4e line-stepping into blocks fixed.
Claus Gittinger <cg@exept.de>
parents: 2591
diff changeset
  4011
].
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4012
                            ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4013
                        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4014
                        where := where sender
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4015
                    ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4016
                    s := 'context returned'.
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  4017
                    subBlockLeft := true.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4018
                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4019
            ] ifTrue:[
3055
a84f555bb673 printNL -> printCR
Stefan Vogel <sv@exept.de>
parents: 3034
diff changeset
  4020
"/ 'found it right in sender' printCR.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4021
                s := 'after step'
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4022
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4023
        ] ifTrue:[
3055
a84f555bb673 printNL -> printCR
Stefan Vogel <sv@exept.de>
parents: 3034
diff changeset
  4024
"/ 'found it right away' printCR.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4025
            s := 'after step'
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4026
        ].
0
571fd5eee315 Initial revision
claus
parents:
diff changeset
  4027
    ] ifFalse:[
3055
a84f555bb673 printNL -> printCR
Stefan Vogel <sv@exept.de>
parents: 3034
diff changeset
  4028
"/ ' send' printCR.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4029
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4030
         a send
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4031
        "
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  4032
        DebuggingDebugger2 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4033
            'clear steppedContext' printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4034
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4035
        steppedContext := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4036
        s := 'after send'
0
571fd5eee315 Initial revision
claus
parents:
diff changeset
  4037
    ].
7
92b82578c88c *** empty log message ***
claus
parents: 4
diff changeset
  4038
788
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  4039
    ignore := false.
1063
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  4040
    (inBlock and:[stepHow == #nextOver or:[stepHow == #nextOut]]) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4041
        ignore := true.
1063
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  4042
    ].
788
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  4043
790
6a166894d5e1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 789
diff changeset
  4044
    "/ handle the case, when a subBlock leaves;
6a166894d5e1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 789
diff changeset
  4045
    "/ continue stepping in the home context.
6a166894d5e1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 789
diff changeset
  4046
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  4047
    subBlockLeft ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4048
        steppedContext home notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4049
            steppedContext := steppedContext home.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4050
            s := 'after step'.
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  4051
            subBlockLeft := false.
803
f8371812c789 fast next in subcontext of subblock
Claus Gittinger <cg@exept.de>
parents: 801
diff changeset
  4052
"/ DebugView enterUnconditional:thisContext withMessage:'debug'.
f8371812c789 fast next in subcontext of subblock
Claus Gittinger <cg@exept.de>
parents: 801
diff changeset
  4053
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4054
        ]
790
6a166894d5e1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 789
diff changeset
  4055
    ].
6a166894d5e1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 789
diff changeset
  4056
788
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  4057
    "
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  4058
     kludge to hide breakpoint wrappers in the context list:
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4059
         check if we are in a wrapper methods hidden exit-sequence
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4060
         if so, ignore the interrupt and continue single sending
788
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  4061
    "
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  4062
    (where isNil
788
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  4063
    and:[wrapperContext notNil])
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  4064
    ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4065
        "/ did not find our steppedContext along the chain;
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4066
        "/ could be in a wrappedMethods exitBlock ...
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4067
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4068
        leftWrap ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4069
            where := here.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4070
            wrappedMethod := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4071
            5 timesRepeat:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4072
                where notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4073
                    where isBlockContext ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4074
                        method := where method.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4075
                        (method notNil and:[method isWrapped]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4076
                            where == wrapperContext ifTrue:[
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  4077
                                DebuggingDebugger2 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4078
                                    'change stepCon fromWrapped: ' print.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4079
                                    steppedContext print.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4080
                                    ' to: ' print.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4081
                                    wrapperContext printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4082
                                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4083
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4084
                                inWrap := true.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4085
                                enteredWrap := true.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4086
                                steppedContext := wrapperContext.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4087
                                wrapperContext := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4088
                            ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4089
                        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4090
                    ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4091
                    where := where sender
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4092
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4093
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4094
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4095
        enteredWrap ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4096
            ignore := true
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4097
        ]
788
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  4098
    ].
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  4099
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  4100
    "/
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  4101
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  4102
    subBlockLeft ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4103
        "/ special care for stepInterrupt in send,
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4104
        "/ when created a dummy context (lineNr == 1)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4105
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4106
        steppedContext lineNumber isNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4107
            steppedContext selector == here sender selector ifTrue:[
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  4108
                subBlockLeft := false.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4109
                s := 'after step'.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4110
                steppedContext := here sender.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4111
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4112
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4113
        oneMore := true
786
429c3146c03d better stepping over stepped send (dummy context in send.c)
Claus Gittinger <cg@exept.de>
parents: 781
diff changeset
  4114
    ].
429c3146c03d better stepping over stepped send (dummy context in send.c)
Claus Gittinger <cg@exept.de>
parents: 781
diff changeset
  4115
57
36e13831b62d *** empty log message ***
claus
parents: 56
diff changeset
  4116
    inBlock ifTrue:[
13197
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  4117
        DebuggingDebugger2 == true ifTrue:[
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  4118
            'inBlock' printCR.
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  4119
        ].
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4120
        s := 'in block'.
57
36e13831b62d *** empty log message ***
claus
parents: 56
diff changeset
  4121
    ].
3593
eb71fcdf0cfa single stepping in blocks of a method (fixed - I hope)
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  4122
    inBlockBelow ifTrue:[
13197
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  4123
        DebuggingDebugger2 == true ifTrue:[
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  4124
            'inBlockBelow' printCR.
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  4125
        ].
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4126
        ignore := true
3593
eb71fcdf0cfa single stepping in blocks of a method (fixed - I hope)
Claus Gittinger <cg@exept.de>
parents: 3591
diff changeset
  4127
    ].
57
36e13831b62d *** empty log message ***
claus
parents: 56
diff changeset
  4128
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  4129
    DebuggingDebugger2 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4130
        where notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4131
            '(' print. steppedContextLineno print. ') ' print.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4132
            where printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4133
        ].
654
dac2634ce5ec better support for alien context single stepping
Claus Gittinger <cg@exept.de>
parents: 651
diff changeset
  4134
    ].
57
36e13831b62d *** empty log message ***
claus
parents: 56
diff changeset
  4135
788
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  4136
    ignore ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4137
        (bigStep
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4138
        and:[steppedContextLineno notNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4139
        and:[where notNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4140
        and:[where lineNumber == steppedContextLineno]]]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4141
            (here isBlockContext
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4142
            and:[(here methodHome == steppedContext)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4143
                 or:[here home == steppedContext]]) ifTrue:[
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  4144
                DebuggingDebugger2 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4145
                    'same line but in block' printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4146
                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4147
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4148
                steppedContext := actualContext := here.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4149
                steppedContextLineno := here lineNumber.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4150
            ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4151
                "/ kludge - I only have the info for up to 255 lines
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4152
                steppedContextLineno ~~ 255 ifTrue:[
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  4153
                    DebuggingDebugger2 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4154
                        'same line - ignored' printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4155
                    ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4156
                    ignore := true
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4157
                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4158
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4159
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4160
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  4161
        (subBlockLeft not
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4162
        and:[skipLineNr notNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4163
        and:[where notNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4164
        and:[where lineNumber notNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4165
        and:[where lineNumber < skipLineNr]]]]) ifTrue:[
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  4166
            DebuggingDebugger2 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4167
                'skip (' print. skipLineNr print. ' unreached - ignored' printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4168
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4169
            ignore := true
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4170
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4171
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4172
        (steppedContextLineno isNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4173
        and:[skipLineNr isNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4174
        and:[thisContext sender selector == #contextInterrupt]]) ifTrue:[
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  4175
            DebuggingDebugger2 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4176
                'same line2 (after conIRQ) - ignored' printCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4177
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4178
            ignore := true
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4179
        ].
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  4180
    ].
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  4181
57
36e13831b62d *** empty log message ***
claus
parents: 56
diff changeset
  4182
    ignore ifTrue:[
3055
a84f555bb673 printNL -> printCR
Stefan Vogel <sv@exept.de>
parents: 3034
diff changeset
  4183
"/' ' printCR.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4184
        where := nil. here := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4185
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4186
         yes, a context below
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4187
          - continue and schedule another stepInterrupt.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4188
          Must flush caches since optimized methods not always
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4189
          look for pending interrupts
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4190
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4191
        ObjectMemory flushInlineCaches.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4192
        StepInterruptPending := 1.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4193
        InterruptPending := 1.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4194
        InStepInterrupt := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4195
        ^ self
57
36e13831b62d *** empty log message ***
claus
parents: 56
diff changeset
  4196
    ].
36e13831b62d *** empty log message ***
claus
parents: 56
diff changeset
  4197
3055
a84f555bb673 printNL -> printCR
Stefan Vogel <sv@exept.de>
parents: 3034
diff changeset
  4198
"/ ' ' printCR.
57
36e13831b62d *** empty log message ***
claus
parents: 56
diff changeset
  4199
9024
fb4eebb44e21 comment/format in: #initialize
Claus Gittinger <cg@exept.de>
parents: 8967
diff changeset
  4200
    self label:(s , ' (process: ' , processName , ')').
7
92b82578c88c *** empty log message ***
claus
parents: 4
diff changeset
  4201
57
36e13831b62d *** empty log message ***
claus
parents: 56
diff changeset
  4202
    tracing := false.
36e13831b62d *** empty log message ***
claus
parents: 56
diff changeset
  4203
    bigStep := false.
36e13831b62d *** empty log message ***
claus
parents: 56
diff changeset
  4204
0
571fd5eee315 Initial revision
claus
parents:
diff changeset
  4205
    "release refs to context"
571fd5eee315 Initial revision
claus
parents:
diff changeset
  4206
    where := nil. here := nil.
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  4207
"/'enter' printCR.
788
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  4208
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  4209
    DebuggingDebugger2 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4210
        '==> enter on: ' print. thisContext sender sender printCR.
1049
3223853742a4 fixed initial selection after stepping with non-verbose
Claus Gittinger <cg@exept.de>
parents: 1030
diff changeset
  4211
    ].
1364
15b36b5c9480 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1361
diff changeset
  4212
15b36b5c9480 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1361
diff changeset
  4213
    initiallyShown := nil.
15b36b5c9480 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1361
diff changeset
  4214
    (oneMore == true) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4215
        (thisContext sender sender lineNumber ? 0) <= 1 ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4216
            initiallyShown := 2
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4217
        ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4218
            initiallyShown := 1
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4219
        ]
1364
15b36b5c9480 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1361
diff changeset
  4220
    ].
2060
0b1b4269aa75 care for breakPoints while entering debugger
Claus Gittinger <cg@exept.de>
parents: 2042
diff changeset
  4221
    con := thisContext sender sender.
3435
2f45c629f115 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3434
diff changeset
  4222
9235
fdcf1d96cdfe changed:
Stefan Vogel <sv@exept.de>
parents: 9155
diff changeset
  4223
    HaltInterrupt handle:[:ex |
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4224
        'DebugView [info]: halt/breakpoint in debugger ignored [stepOpNext 2]' infoPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4225
        ex proceed
3435
2f45c629f115 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3434
diff changeset
  4226
    ] do:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4227
        self enter:con select:initiallyShown
2060
0b1b4269aa75 care for breakPoints while entering debugger
Claus Gittinger <cg@exept.de>
parents: 2042
diff changeset
  4228
    ].
0b1b4269aa75 care for breakPoints while entering debugger
Claus Gittinger <cg@exept.de>
parents: 2042
diff changeset
  4229
    con := nil
1364
15b36b5c9480 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1361
diff changeset
  4230
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  4231
    "Created: / 14-10-1996 / 12:53:39 / cg"
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  4232
    "Modified: / 20-07-2012 / 15:26:26 / cg"
0
571fd5eee315 Initial revision
claus
parents:
diff changeset
  4233
! !
571fd5eee315 Initial revision
claus
parents:
diff changeset
  4234
4867
269d62a1ed27 method category rename
Claus Gittinger <cg@exept.de>
parents: 4859
diff changeset
  4235
!DebugView methodsFor:'menu & button actions'!
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4236
5875
c85e7a5cb5dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5842
diff changeset
  4237
addBrowserBookmark
c85e7a5cb5dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5842
diff changeset
  4238
    "add a browser-bookmark for the selected contexts method"
c85e7a5cb5dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5842
diff changeset
  4239
c85e7a5cb5dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5842
diff changeset
  4240
    |cls sel|
c85e7a5cb5dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5842
diff changeset
  4241
c85e7a5cb5dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5842
diff changeset
  4242
    selectedContext isNil ifTrue:[^ self].
c85e7a5cb5dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5842
diff changeset
  4243
c85e7a5cb5dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5842
diff changeset
  4244
    cls := selectedContext receiver class.
c85e7a5cb5dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5842
diff changeset
  4245
    sel := selectedContext selector.
c85e7a5cb5dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5842
diff changeset
  4246
    (cls includesSelector:sel) ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4247
        sel := nil
5875
c85e7a5cb5dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5842
diff changeset
  4248
    ].
c85e7a5cb5dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5842
diff changeset
  4249
    Tools::NewSystemBrowser addToBookMarks:cls selector:sel
c85e7a5cb5dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5842
diff changeset
  4250
!
c85e7a5cb5dd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5842
diff changeset
  4251
7796
fe6f3d31c52a autoRaise (above) other views (an option in the view-menu)
Claus Gittinger <cg@exept.de>
parents: 7713
diff changeset
  4252
autoRaiseView
fe6f3d31c52a autoRaise (above) other views (an option in the view-menu)
Claus Gittinger <cg@exept.de>
parents: 7713
diff changeset
  4253
    ^ UserPreferences current autoRaiseDebugger
fe6f3d31c52a autoRaise (above) other views (an option in the view-menu)
Claus Gittinger <cg@exept.de>
parents: 7713
diff changeset
  4254
fe6f3d31c52a autoRaise (above) other views (an option in the view-menu)
Claus Gittinger <cg@exept.de>
parents: 7713
diff changeset
  4255
    "Created: / 15-05-2007 / 13:29:55 / cg"
fe6f3d31c52a autoRaise (above) other views (an option in the view-menu)
Claus Gittinger <cg@exept.de>
parents: 7713
diff changeset
  4256
!
fe6f3d31c52a autoRaise (above) other views (an option in the view-menu)
Claus Gittinger <cg@exept.de>
parents: 7713
diff changeset
  4257
fe6f3d31c52a autoRaise (above) other views (an option in the view-menu)
Claus Gittinger <cg@exept.de>
parents: 7713
diff changeset
  4258
autoRaiseView:aBoolean
fe6f3d31c52a autoRaise (above) other views (an option in the view-menu)
Claus Gittinger <cg@exept.de>
parents: 7713
diff changeset
  4259
    UserPreferences current autoRaiseDebugger:aBoolean
fe6f3d31c52a autoRaise (above) other views (an option in the view-menu)
Claus Gittinger <cg@exept.de>
parents: 7713
diff changeset
  4260
fe6f3d31c52a autoRaise (above) other views (an option in the view-menu)
Claus Gittinger <cg@exept.de>
parents: 7713
diff changeset
  4261
    "Created: / 15-05-2007 / 13:30:04 / cg"
fe6f3d31c52a autoRaise (above) other views (an option in the view-menu)
Claus Gittinger <cg@exept.de>
parents: 7713
diff changeset
  4262
!
fe6f3d31c52a autoRaise (above) other views (an option in the view-menu)
Claus Gittinger <cg@exept.de>
parents: 7713
diff changeset
  4263
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4264
autoUpdateOff
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4265
    "stop the update process"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4267
    updateProcess notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4268
        monitorToggle lampColor:(Color yellow).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4269
        updateProcess terminate.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4270
        updateProcess := nil
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4271
    ]
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4272
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4273
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4274
autoUpdateOn
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4275
    "fork a subprocess which updates the contextList in regular intervals"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4276
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4277
    updateProcess isNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4278
        updateProcess :=
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4279
            [
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4280
                [true] whileTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4281
                    monitorToggle showLamp ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4282
                        monitorToggle lampColor:(Color yellow).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4283
                    ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4284
                        monitorToggle activeForegroundColor:Color black.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4285
                    ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4286
                    (Delay forSeconds:0.25) wait.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4287
                    self updateContext.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4288
                    monitorToggle showLamp ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4289
                        monitorToggle lampColor:(Color red).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4290
                    ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4291
                        monitorToggle activeForegroundColor:Color red.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4292
                    ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4293
                    (Delay forSeconds:0.25) wait.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4294
                    self updateContext.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4295
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4296
            ] forkAt:(Processor activePriority - 1)
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4297
    ]
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4298
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4299
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4300
13408
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  4301
browseBlocksHome
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  4302
    "browse the receiver block's home method (if a value-like send is selected)"
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  4303
13414
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4304
    |cls sel block mthd|
13408
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  4305
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  4306
    selectedContext isNil ifTrue:[^ self].
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  4307
    (block := selectedContext receiver) isBlock ifFalse:[ ^ self ].
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  4308
13414
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4309
    mthd := block method.
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4310
    cls := mthd mclass.
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4311
    sel := mthd selector.
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4312
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4313
    (cls notNil and:[(cls includesSelector:sel)]) ifTrue:[
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4314
        cls browserClass openInClass:cls selector:sel.
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4315
        ^ self
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4316
    ].
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4317
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4318
    mthd source notEmptyOrNil ifTrue:[
13415
3ed3e30cbf8e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13414
diff changeset
  4319
        (Dialog confirm:'Block''s home method is (no longer) present in any class.\Do you want to see the method anyway?' withCRs)
13414
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4320
        ifTrue:[
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4321
            UserPreferences current systemBrowserClass 
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4322
                browseMethods:{ mthd } title:'Unbound Method' sort:false
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4323
            "/ TextView openWith:mthd source title:'Unbound Method''s Source'.
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4324
        ].
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4325
        ^ self
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4326
    ].
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4327
    cls notNil ifTrue:[
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4328
        (Dialog confirm:'Block''s home method is (no longer) present in any class and no source can be shown.\Do you want to browse the method''s last class instead?' withCRs)
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4329
        ifTrue:[
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4330
            cls browserClass openInClass:cls selector:nil.
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4331
        ].
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4332
        ^ self
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4333
    ].
91c34e5eaf4e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13412
diff changeset
  4334
    Dialog information:'Block''s home method is (no longer) present in any class.'.
13408
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  4335
!
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  4336
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4337
browseClass
9348
df88a9a5ef36 added: browseProcessesApplication
Claus Gittinger <cg@exept.de>
parents: 9337
diff changeset
  4338
    "browse the receiver's class (of the selected context's message)"
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4339
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4340
    |cls sel|
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4341
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4342
    selectedContext isNil ifTrue:[^ self].
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4343
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4344
    cls := selectedContext receiver class.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4345
    sel := selectedContext selector.
3591
754970803c0f #implements: -> #includesSelector:
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
  4346
    (cls includesSelector:sel) ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4347
        sel := nil
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4348
    ].
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4349
    cls browserClass openInClass:cls selector:sel.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4350
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4351
    "Modified: / 3.2.1998 / 20:23:36 / cg"
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4352
!
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4353
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4354
browseClassHierarchy
9348
df88a9a5ef36 added: browseProcessesApplication
Claus Gittinger <cg@exept.de>
parents: 9337
diff changeset
  4355
    "browse the receiver's classHierarchy (of the selected context's message)"
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4356
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4357
    |cls mthd|
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4358
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4359
    selectedContext isNil ifTrue:[^ self].
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4360
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4361
    mthd := selectedContext method.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4362
    mthd notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4363
        cls := mthd containingClass.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4364
        "/ still nil if unbound - then use receivers class
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4365
    ].
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4366
    cls isNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4367
        cls := selectedContext receiver class
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4368
    ].
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4369
    cls browserClass browseClassHierarchy:cls.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4370
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4371
    "Modified: / 17.11.2001 / 19:43:06 / cg"
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4372
!
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4373
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4374
browseFullClassProtocol
9348
df88a9a5ef36 added: browseProcessesApplication
Claus Gittinger <cg@exept.de>
parents: 9337
diff changeset
  4375
    "browse the receiver's full protocol (of the selected context's message)"
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4376
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4377
    |cls mthd|
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4378
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4379
    selectedContext isNil ifTrue:[^ self].
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4380
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4381
    mthd := selectedContext method.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4382
    mthd notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4383
        cls := mthd containingClass.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4384
        "/ still nil if unbound - then use receivers class
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4385
    ].
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4386
    cls isNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4387
        cls := selectedContext receiver class
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4388
    ].
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4389
    cls browserClass browseFullClassProtocol:cls.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4390
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4391
    "Modified: / 17.11.2001 / 19:43:43 / cg"
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4392
!
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4393
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4394
browseImplementingClass
9348
df88a9a5ef36 added: browseProcessesApplication
Claus Gittinger <cg@exept.de>
parents: 9337
diff changeset
  4395
    "browse the implementing class (of the selected context's message)"
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4396
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4397
    |con mthd who sel cls home|
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4398
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4399
    con := selectedContext ? actualContext.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4400
    con isNil ifTrue:[^ self].
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4401
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4402
    mthd := con method.
651
b8a14e281c24 fixed browse, if there is nothing to browse
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4403
    mthd notNil ifTrue:[
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4404
        who := mthd who.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4405
        who notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4406
            cls := who methodClass.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4407
            sel := who methodSelector.
11303
28e758994349 changed: #browseImplementingClass
Claus Gittinger <cg@exept.de>
parents: 11210
diff changeset
  4408
        ] ifFalse:[
28e758994349 changed: #browseImplementingClass
Claus Gittinger <cg@exept.de>
parents: 11210
diff changeset
  4409
            "might have been re-accepted"
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4410
            (home := con methodHome) notNil ifTrue:[
11303
28e758994349 changed: #browseImplementingClass
Claus Gittinger <cg@exept.de>
parents: 11210
diff changeset
  4411
                (sel := home selector) notNil ifTrue:[
28e758994349 changed: #browseImplementingClass
Claus Gittinger <cg@exept.de>
parents: 11210
diff changeset
  4412
                    cls := home receiver class 
11304
d142697b6c1e changed: #browseImplementingClass
Claus Gittinger <cg@exept.de>
parents: 11303
diff changeset
  4413
                            whichClassImplements:selectedContext selector.
d142697b6c1e changed: #browseImplementingClass
Claus Gittinger <cg@exept.de>
parents: 11303
diff changeset
  4414
                    cls notNil ifTrue:[
d142697b6c1e changed: #browseImplementingClass
Claus Gittinger <cg@exept.de>
parents: 11303
diff changeset
  4415
                        Dialog information:'Method has been changed/moved in the meanwhile.\Browser will show the most recent (current) version.' withCRs.
d142697b6c1e changed: #browseImplementingClass
Claus Gittinger <cg@exept.de>
parents: 11303
diff changeset
  4416
                    ].
11303
28e758994349 changed: #browseImplementingClass
Claus Gittinger <cg@exept.de>
parents: 11210
diff changeset
  4417
                ]
28e758994349 changed: #browseImplementingClass
Claus Gittinger <cg@exept.de>
parents: 11210
diff changeset
  4418
            ].
28e758994349 changed: #browseImplementingClass
Claus Gittinger <cg@exept.de>
parents: 11210
diff changeset
  4419
        ].
651
b8a14e281c24 fixed browse, if there is nothing to browse
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4420
    ].
b8a14e281c24 fixed browse, if there is nothing to browse
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4421
    cls isNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4422
        "/ class not found - try receiver
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4423
        cls := con receiver class
651
b8a14e281c24 fixed browse, if there is nothing to browse
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4424
    ].
b8a14e281c24 fixed browse, if there is nothing to browse
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4425
b8a14e281c24 fixed browse, if there is nothing to browse
Claus Gittinger <cg@exept.de>
parents: 646
diff changeset
  4426
    cls browserClass openInClass:cls selector:sel.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4427
11303
28e758994349 changed: #browseImplementingClass
Claus Gittinger <cg@exept.de>
parents: 11210
diff changeset
  4428
    "Created: / 22-11-1995 / 21:27:01 / cg"
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4429
    "Modified: / 19-07-2012 / 11:27:32 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4430
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4431
2577
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4432
browseImplementors
9348
df88a9a5ef36 added: browseProcessesApplication
Claus Gittinger <cg@exept.de>
parents: 9337
diff changeset
  4433
    "open a browser on the implementors of the selected method's selector"
2577
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4434
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4435
    selectedContext isNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4436
        ^ self showError:'** select a context first **'
2577
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4437
    ].
4153
603173e5f84e ask userPrefs
Claus Gittinger <cg@exept.de>
parents: 4122
diff changeset
  4438
    "/ selectedContext receiver class browserClass
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4439
    self withWaitCursorDo:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4440
        UserPreferences systemBrowserClass
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4441
             browseImplementorsOf:selectedContext selector.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4442
    ]
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4443
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4444
    "Modified: / 19-07-2012 / 11:44:03 / cg"
2577
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4445
!
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4446
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4447
browseImplementorsOf
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4448
    "open a browser on the implementors of some selector"
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4449
2589
2342403139a7 extract selector from selection (as in browser)
Claus Gittinger <cg@exept.de>
parents: 2581
diff changeset
  4450
    |initial selector sel|
2342403139a7 extract selector from selection (as in browser)
Claus Gittinger <cg@exept.de>
parents: 2581
diff changeset
  4451
2342403139a7 extract selector from selection (as in browser)
Claus Gittinger <cg@exept.de>
parents: 2581
diff changeset
  4452
    (sel := codeView selection) notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4453
        initial := SystemBrowser extractSelectorFrom:sel
2589
2342403139a7 extract selector from selection (as in browser)
Claus Gittinger <cg@exept.de>
parents: 2581
diff changeset
  4454
    ].
2342403139a7 extract selector from selection (as in browser)
Claus Gittinger <cg@exept.de>
parents: 2581
diff changeset
  4455
    initial isNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4456
        initial := selectedContext isNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4457
                            ifTrue:[nil]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4458
                            ifFalse:[selectedContext selector].
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  4459
    ].
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  4460
    selector := Dialog
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4461
                    requestSelector:'Selector to browse implementors of:'
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4462
                    initialAnswer:initial.
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4463
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4464
    selector notEmptyOrNil ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4465
        self withWaitCursorDo:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4466
            UserPreferences systemBrowserClass
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4467
                browseImplementorsMatching:selector.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4468
        ]
2577
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4469
    ]
2589
2342403139a7 extract selector from selection (as in browser)
Claus Gittinger <cg@exept.de>
parents: 2581
diff changeset
  4470
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4471
    "Modified: / 19-07-2012 / 11:43:52 / cg"
2577
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4472
!
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4473
9348
df88a9a5ef36 added: browseProcessesApplication
Claus Gittinger <cg@exept.de>
parents: 9337
diff changeset
  4474
browseProcessesApplication
df88a9a5ef36 added: browseProcessesApplication
Claus Gittinger <cg@exept.de>
parents: 9337
diff changeset
  4475
    "browse the application class (of the process, if it is a GUI process)"
df88a9a5ef36 added: browseProcessesApplication
Claus Gittinger <cg@exept.de>
parents: 9337
diff changeset
  4476
13488
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  4477
    |app appClass|
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  4478
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  4479
    (app := self processesApplication) notNil ifTrue:[
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  4480
        appClass := app class.
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  4481
        appClass browserClass openInClass:appClass selector:nil.
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  4482
        ^ self
9348
df88a9a5ef36 added: browseProcessesApplication
Claus Gittinger <cg@exept.de>
parents: 9337
diff changeset
  4483
    ].
df88a9a5ef36 added: browseProcessesApplication
Claus Gittinger <cg@exept.de>
parents: 9337
diff changeset
  4484
!
df88a9a5ef36 added: browseProcessesApplication
Claus Gittinger <cg@exept.de>
parents: 9337
diff changeset
  4485
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4486
browseReceiversClass
9348
df88a9a5ef36 added: browseProcessesApplication
Claus Gittinger <cg@exept.de>
parents: 9337
diff changeset
  4487
    "browse the receiver's class (of the selected context's message)"
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4488
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4489
    |cls sel|
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4490
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4491
    selectedContext isNil ifTrue:[^ self].
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4492
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4493
    selectedContext isCheapBlockContext ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4494
        cls := selectedContext method mclass.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4495
        sel := selectedContext method selector.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4496
    ] ifFalse:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4497
        cls := selectedContext receiver class.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4498
        sel := selectedContext selector.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4499
    ].
3591
754970803c0f #implements: -> #includesSelector:
Claus Gittinger <cg@exept.de>
parents: 3580
diff changeset
  4500
    (cls includesSelector:sel) ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4501
        sel := nil
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4502
    ].
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4503
    cls browserClass openInClass:cls selector:sel.
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4504
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4505
    "Modified: / 19-07-2012 / 11:29:48 / cg"
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4506
!
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4507
2577
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4508
browseSenders
9348
df88a9a5ef36 added: browseProcessesApplication
Claus Gittinger <cg@exept.de>
parents: 9337
diff changeset
  4509
    "open a browser on the senders of the selected method's selector"
2577
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4510
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4511
    selectedContext isNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4512
        ^ self showError:'** select a context first **'
2577
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4513
    ].
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4514
    self withWaitCursorDo:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4515
        UserPreferences systemBrowserClass
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4516
            browseAllCallsOn:selectedContext selector.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4517
    ]
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4518
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4519
    "Modified: / 19-07-2012 / 11:43:02 / cg"
2577
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4520
!
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4521
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4522
browseSendersOf
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4523
    "open a browser on the senders of some selector"
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4524
2589
2342403139a7 extract selector from selection (as in browser)
Claus Gittinger <cg@exept.de>
parents: 2581
diff changeset
  4525
    |initial selector sel|
2342403139a7 extract selector from selection (as in browser)
Claus Gittinger <cg@exept.de>
parents: 2581
diff changeset
  4526
2342403139a7 extract selector from selection (as in browser)
Claus Gittinger <cg@exept.de>
parents: 2581
diff changeset
  4527
    (sel := codeView selection) notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4528
        initial := SystemBrowser extractSelectorFrom:sel
2589
2342403139a7 extract selector from selection (as in browser)
Claus Gittinger <cg@exept.de>
parents: 2581
diff changeset
  4529
    ].
2342403139a7 extract selector from selection (as in browser)
Claus Gittinger <cg@exept.de>
parents: 2581
diff changeset
  4530
    initial isNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4531
        initial := selectedContext isNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4532
                            ifTrue:[nil]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4533
                            ifFalse:[selectedContext selector].
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  4534
    ].
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  4535
    selector := Dialog
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4536
                    requestSelector:'Selector to browse senders of:'
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4537
                    initialAnswer:initial.
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4538
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4539
    selector notEmptyOrNil ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4540
        self withWaitCursorDo:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4541
            UserPreferences systemBrowserClass
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4542
                browseAllCallsOn:selector asSymbol.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4543
        ]
2577
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4544
    ]
2589
2342403139a7 extract selector from selection (as in browser)
Claus Gittinger <cg@exept.de>
parents: 2581
diff changeset
  4545
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  4546
    "Modified: / 19-07-2012 / 11:43:29 / cg"
2577
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4547
!
14b7cc070a6b added implementorsOf and sendersOf menu functions
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
  4548
11391
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  4549
clearRememberedCallchain
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  4550
    "clear the remembered callchain."
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  4551
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  4552
    RememberedCallChain := nil
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  4553
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  4554
    "Created: / 08-03-2012 / 01:29:46 / cg"
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  4555
!
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  4556
11457
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4557
closeAllDebuggers
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4558
    (Dialog confirm:'Close all Debuggers (without confirmation if code was changed)?')
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4559
    ifFalse:[
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4560
        ^ self
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4561
    ].
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4562
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4563
    self class allInstancesDo:[:debugger | 
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4564
        debugger ~~ self ifTrue:[
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4565
            debugger busy ifTrue:[
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4566
                debugger destroyWithConfirmation:true.
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4567
            ].
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4568
        ].
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4569
    ].
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4570
    self closeRequest.
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4571
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4572
    "Created: / 23-03-2012 / 12:40:22 / cg"
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4573
!
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4574
9626
746106f8e83c remember origin & extent
Claus Gittinger <cg@exept.de>
parents: 9618
diff changeset
  4575
configureX:x y:y width:newWidth height:newHeight
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  4576
    super configureX:x y:y width:newWidth height:newHeight.
9626
746106f8e83c remember origin & extent
Claus Gittinger <cg@exept.de>
parents: 9618
diff changeset
  4577
    LastExtent := self extent.
746106f8e83c remember origin & extent
Claus Gittinger <cg@exept.de>
parents: 9618
diff changeset
  4578
    LastOrigin := self origin.
746106f8e83c remember origin & extent
Claus Gittinger <cg@exept.de>
parents: 9618
diff changeset
  4579
746106f8e83c remember origin & extent
Claus Gittinger <cg@exept.de>
parents: 9618
diff changeset
  4580
    "Created: / 10-11-2010 / 10:09:11 / cg"
746106f8e83c remember origin & extent
Claus Gittinger <cg@exept.de>
parents: 9618
diff changeset
  4581
!
746106f8e83c remember origin & extent
Claus Gittinger <cg@exept.de>
parents: 9618
diff changeset
  4582
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4583
copyWalkbackText
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4584
    "place the contents of the walkback view into the copy-paste buffer.
12884
399d8af76101 class: DebugView
Stefan Vogel <sv@exept.de>
parents: 12862
diff changeset
  4585
     This allows pasting it into some other view for printing.
399d8af76101 class: DebugView
Stefan Vogel <sv@exept.de>
parents: 12862
diff changeset
  4586
399d8af76101 class: DebugView
Stefan Vogel <sv@exept.de>
parents: 12862
diff changeset
  4587
     Show the full verbose context without filtering."
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4588
10760
364875d0d64f changed: #copyWalkbackText
Stefan Vogel <sv@exept.de>
parents: 10752
diff changeset
  4589
    |infoText|
364875d0d64f changed: #copyWalkbackText
Stefan Vogel <sv@exept.de>
parents: 10752
diff changeset
  4590
12884
399d8af76101 class: DebugView
Stefan Vogel <sv@exept.de>
parents: 12862
diff changeset
  4591
    firstContext isNil ifTrue:[
10760
364875d0d64f changed: #copyWalkbackText
Stefan Vogel <sv@exept.de>
parents: 10752
diff changeset
  4592
        infoText := 'No context, no walkback'.
364875d0d64f changed: #copyWalkbackText
Stefan Vogel <sv@exept.de>
parents: 10752
diff changeset
  4593
    ] ifFalse:[
14200
aa1b9175c866 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14150
diff changeset
  4594
        exceptionInfoLabel notNil ifTrue:[
aa1b9175c866 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14150
diff changeset
  4595
            infoText := exceptionInfoLabel label , '\\' withCRs.
aa1b9175c866 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14150
diff changeset
  4596
        ] ifFalse:[
aa1b9175c866 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14150
diff changeset
  4597
            infoText := ''
aa1b9175c866 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14150
diff changeset
  4598
        ].
aa1b9175c866 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14150
diff changeset
  4599
        infoText := infoText asStringCollection, firstContext fullPrintAllString asStringCollection.
10760
364875d0d64f changed: #copyWalkbackText
Stefan Vogel <sv@exept.de>
parents: 10752
diff changeset
  4600
    ].
364875d0d64f changed: #copyWalkbackText
Stefan Vogel <sv@exept.de>
parents: 10752
diff changeset
  4601
364875d0d64f changed: #copyWalkbackText
Stefan Vogel <sv@exept.de>
parents: 10752
diff changeset
  4602
    self setClipboardText:infoText
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4603
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4604
    "Modified: 28.8.1995 / 15:31:59 / claus"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4605
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4606
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4607
doAbort
1187
Claus Gittinger <cg@exept.de>
parents: 1179
diff changeset
  4608
    "abort - send Object>>abortSignal, which is usually caught
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4609
     at save places (for example: in the event loop) and returns back
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4610
     from whatever the process is doing, but does not terminate it."
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4611
3097
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  4612
    self checkIfCodeIsReallyModified ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4613
        (self confirm:('Code modified - abort anyway ?'))
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4614
        ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4615
            ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4616
        ]
1765
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  4617
    ].
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  4618
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4619
    inspecting ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4620
        inspectedProcess isDead ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4621
            self showTerminated.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4622
            ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4623
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4624
        (AbortOperationRequest isHandledIn:inspectedProcess suspendedContext) ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4625
            self showError:'** the process does not handle the abort signal **'
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4626
        ] ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4627
            self interruptProcessWith:[AbortOperationRequest raise].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4628
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4629
        ^ self
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4630
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4631
788
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  4632
    steppedContext := wrapperContext := nil.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4633
    haveControl := false.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4634
    exitAction := #abort.
581
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  4635
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  4636
    "exit private event-loop"
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  4637
    catchBlock notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4638
        abortButton turnOff.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4639
        catchBlock value.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4640
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4641
        "/ not reached
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4642
        'DebugView [warning]: abort failed' errorPrintCR.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4643
    ].
581
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  4644
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4645
    ^ self.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4646
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4647
    "Modified: / 17.11.2001 / 22:53:22 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4648
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4649
6487
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4650
doAbortAll
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4651
    "abortAll - send Object>>abortAllSignal, which is usually caught
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4652
     at save places (for example: in the event loop) and returns back
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4653
     from whatever the process is doing, but does not terminate it."
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4654
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4655
    self checkIfCodeIsReallyModified ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4656
        (self confirm:('Code modified - abort anyway ?'))
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4657
        ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4658
            ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4659
        ]
6487
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4660
    ].
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4661
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4662
    inspecting ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4663
        inspectedProcess isDead ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4664
            self showTerminated.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4665
            ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4666
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4667
        (AbortOperationRequest isHandledIn:inspectedProcess suspendedContext) ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4668
            self showError:'** the process does not handle the abort signal **'
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4669
        ] ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4670
            self interruptProcessWith:[AbortAllOperationRequest raise].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4671
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4672
        ^ self
6487
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4673
    ].
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4674
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4675
    steppedContext := wrapperContext := nil.
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4676
    haveControl := false.
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4677
    exitAction := #abortAll.
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4678
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4679
    "exit private event-loop"
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4680
    catchBlock notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4681
        abortButton turnOff.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4682
        catchBlock value.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4683
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4684
        "/ not reached
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4685
        'DebugView [warning]: abort failed' errorPrintCR.
6487
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4686
    ].
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4687
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4688
    ^ self.
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4689
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4690
    "Modified: / 17.11.2001 / 22:53:22 / cg"
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4691
!
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  4692
11378
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4693
doChangeProcessPriority
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4694
    "ask for and change the process's priority"
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4695
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4696
    |oldPrio newPrio s|
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4697
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4698
    oldPrio := (inspectedProcess ? Processor activeProcess) priority.
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4699
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4700
    [
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4701
        s := Dialog 
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4702
                request:(resources stringWithCRs:'Change the processes priority to (proceed with prio):\\    2 - system background\    4 - user background\    8 - normal\    9 - high\   16 - I/O (danger alert)\')
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4703
                initialAnswer:oldPrio printString.
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4704
        s isEmptyOrNil ifTrue:[^ self].
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4705
        newPrio := Integer readFrom:s onError:nil.
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4706
        newPrio isNil
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4707
    ] whileTrue.
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4708
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4709
    newPrio := newPrio max:(Processor lowestPriority).
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4710
    newPrio := newPrio min:(Processor highestPriority).
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4711
    newPrio >= Processor highIOPriority ifTrue:[
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4712
        (Dialog 
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4713
                confirm:(resources 
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4714
                            stringWithCRs:'Attention: event handling takes place at prio 16.\An ever running high priority process\could block the system and make the UI unusable.\\Proceed?'))
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4715
        ifFalse:[^ self].
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4716
    ].
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4717
    (inspectedProcess ? Processor activeProcess) priority:newPrio.
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4718
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4719
    "Created: / 07-03-2012 / 14:15:09 / cg"
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4720
!
d7e8d0227a78 added: #doChangeProcessPriority
Claus Gittinger <cg@exept.de>
parents: 11372
diff changeset
  4721
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4722
doContinue
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4723
    "continue from menu"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4724
1719
4f99e8100bb5 when continuing after a stack-overflow,
Claus Gittinger <cg@exept.de>
parents: 1699
diff changeset
  4725
    |proc exContext ex answer|
4f99e8100bb5 when continuing after a stack-overflow,
Claus Gittinger <cg@exept.de>
parents: 1699
diff changeset
  4726
3097
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  4727
    self checkIfCodeIsReallyModified ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4728
        (self confirm:('Code modified - continue anyway ?')) ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4729
            ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4730
        ]
1765
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  4731
    ].
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  4732
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4733
    inspecting ifTrue:[
13965
6213444511ae class: DebugView
Stefan Vogel <sv@exept.de>
parents: 13934
diff changeset
  4734
        self graphicsDevice hasColors ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4735
            continueButton foregroundColor:Color red darkened.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4736
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4737
        continueButton label:(resources string:'Stop').
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4738
        continueButton action:[self doStop].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4739
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4740
        self processPerform:#resume.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4741
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4742
        ^ self
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4743
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4744
    canContinue ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4745
        exContext := thisContext findSpecialHandle:false raise:true.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4746
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4747
        (exContext notNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4748
        and:[ (ex := exContext receiver) isLazyValue not
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4749
        and:[ ex isException
12687
1d78c217e701 use #creator instead of #signal
Claus Gittinger <cg@exept.de>
parents: 12671
diff changeset
  4750
        and:[ ex creator == NoHandlerError
1d78c217e701 use #creator instead of #signal
Claus Gittinger <cg@exept.de>
parents: 12671
diff changeset
  4751
        and:[ ex exception creator == RecursionError]]]])
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4752
        ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4753
            "/ debug due to unhandled recursionInterrupt.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4754
            "/ ask if we should proceed with more stack.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4755
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4756
            answer := self confirm:'Debugger entered due to a stack overflow.\\Continue with more stack ?' withCRs.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4757
            answer == true ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4758
                proc := Processor activeProcess.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4759
                proc setMaximumStackSize:(proc maximumStackSize * 2).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4760
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4761
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4762
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4763
        steppedContext := wrapperContext := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4764
        tracing := false.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4765
        haveControl := false.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4766
        exitAction := #continue.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4767
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4768
        "exit private event-loop"
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4769
        catchBlock value.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4770
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4771
        "/ not reached.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4772
        'DebugView [warning]: continue failed' errorPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4773
        continueButton turnOff.
581
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  4774
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4775
    ] ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4776
        inspecting ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4777
            'DebugView [info]: resuming top context' infoPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4778
            self showSelection:1.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4779
            self doReturn
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4780
        ]
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4781
    ]
477
6351acd20dfb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 448
diff changeset
  4782
1917
200617958f79 continue with more stack fixed
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  4783
    "Modified: / 5.10.1998 / 13:03:47 / cg"
2308
96e0033aa5a3 Exception handling change.
Stefan Vogel <sv@exept.de>
parents: 2305
diff changeset
  4784
    "Modified: / 26.7.1999 / 15:38:45 / stefan"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4785
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  4786
13351
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  4787
doContinueAfterDelay
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  4788
    Delay waitForSeconds:5.
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  4789
    self doContinue.
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  4790
!
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  4791
3187
3d8f1bbf585b added define-Button
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  4792
doDefine
5955
8704599a5d2f nice argument names in define-method
ca
parents: 5911
diff changeset
  4793
    |selectionIndex selector argNames receiversClass proto haltStmtDef haltStmtFix code cat
11457
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4794
     bagOfClassNames bagOfUsedClassNames implClass idx callee restart varName argName|
3270
cd3562cffc61 fixed define-method for numArgs>0
Claus Gittinger <cg@exept.de>
parents: 3269
diff changeset
  4795
cd3562cffc61 fixed define-method for numArgs>0
Claus Gittinger <cg@exept.de>
parents: 3269
diff changeset
  4796
    selectionIndex := contextView selection.
8595
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  4797
    restart := true.
3270
cd3562cffc61 fixed define-method for numArgs>0
Claus Gittinger <cg@exept.de>
parents: 3269
diff changeset
  4798
13488
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  4799
    selectorToDefine notNil ifTrue:[
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  4800
        selector := selectorToDefine.
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  4801
        receiversClass := classToDefineIn.
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  4802
    ] ifFalse:[
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  4803
        selector := actualContext selector.
13538
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4804
        receiversClass := actualContext receiver class.
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4805
    ].
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4806
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4807
    implClass := actualContext receiver class whichClassIncludesSelector:selector.
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4808
    implClass notNil ifTrue:[
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4809
        "/ must be a subclassResponsibility
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4810
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4811
        idx := contextArray identityIndexOf:actualContext.
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4812
        idx > 1 ifTrue:[
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4813
            callee := contextArray at:idx-1.
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4814
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4815
            callee selector == #subclassResponsibility ifTrue:[
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4816
                restart := false.
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4817
            ]
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4818
        ].
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4819
    ].
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4820
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4821
    "generate nice argument names"
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4822
    bagOfClassNames := (actualContext args collect:[:eachArg | eachArg class name]) asBag.
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4823
    bagOfUsedClassNames := Bag new.
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4824
    argNames := actualContext args
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4825
                    collect:
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4826
                        [:eachArg |
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4827
                            |nm|
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4828
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4829
                            nm := eachArg class nameWithoutPrefix.
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4830
                            (bagOfClassNames occurrencesOf:nm) == 1 ifTrue:[
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4831
                                nm article , nm
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4832
                            ] ifFalse:[
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4833
                                bagOfUsedClassNames add:nm.
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4834
                                nm asLowercaseFirst , (bagOfUsedClassNames occurrencesOf:nm) printString
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4835
                            ].
13538
bd35b9f1813a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13519
diff changeset
  4836
                        ].
5955
8704599a5d2f nice argument names in define-method
ca
parents: 5911
diff changeset
  4837
8704599a5d2f nice argument names in define-method
ca
parents: 5911
diff changeset
  4838
    proto := Method methodDefinitionTemplateForSelector:selector andArgumentNames:argNames.
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4839
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4840
    haltStmtDef := '    self halt:''please define %2 here''.'.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4841
    haltStmtFix := '    self halt:''please change %2 as required''.'.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4842
13488
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  4843
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  4844
    ( { UndefinedObject . True . False } includes:receiversClass ) ifTrue:[
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  4845
        (self confirm:'Are you sure you want to add this method (to ',receiversClass name,') ?')
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4846
        ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4847
            ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4848
        ]
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4849
    ].
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4850
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4851
11457
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4852
    "/ code for a getter
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4853
    (receiversClass instVarNames includes:selector) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4854
        code := '%1\' , haltStmtFix , '\    ^ %2'.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4855
        cat := 'accessing'.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4856
    ].
11457
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4857
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4858
    "/ code for a setter
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4859
    (selector numArgs == 1
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4860
    and:[(selector endsWith:':')
12716
062e27d32904 Changed usage of deprecated #copyWithoutLast: to #copyButLast:
Stefan Vogel <sv@exept.de>
parents: 12687
diff changeset
  4861
    and:[receiversClass instVarNames includes:(selector copyButLast:1)]])
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4862
    ifTrue:[
12716
062e27d32904 Changed usage of deprecated #copyWithoutLast: to #copyButLast:
Stefan Vogel <sv@exept.de>
parents: 12687
diff changeset
  4863
        varName := selector copyButLast:1.
11457
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4864
        argName := argNames first.
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4865
        code := '%1\' , haltStmtFix , '\    %3 := %4.'.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4866
        cat := 'accessing'.
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4867
    ].
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4868
11457
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4869
    "/ code for a tester
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4870
    (selector numArgs == 0
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4871
    and:[(selector startsWith:'is')
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4872
    and:[(Smalltalk classNamed:(selector copyFrom:3)) notNil ]])
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4873
    ifTrue:[
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4874
        (receiversClass nameWithoutPrefix = (selector copyFrom:3)) ifTrue:[
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4875
            code := '%1\' , haltStmtFix , '\    ^ true.'.
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4876
        ] ifFalse:[
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4877
            code := '%1\' , haltStmtFix , '\    ^ false.'.
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4878
        ].
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4879
        cat := 'testing'.
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4880
    ].
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4881
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4882
"/    actualContext receiver isClass ifTrue:[
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4883
"/        selector == #new ifTrue:[
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4884
"/            code := '%1\' , haltStmt , '\    ^ self basicNew initialize'
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4885
"/        ].
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4886
"/        selector == #'new:' ifTrue:[
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4887
"/            code := '%1\' , haltStmt , '\    ^ (self basicNew:arg) initialize'
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4888
"/        ].
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4889
"/    ].
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  4890
    code isNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4891
        code := '%1\' , haltStmtDef
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  4892
    ].
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  4893
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  4894
    self
11457
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4895
        codeAccept:(code bindWith:proto with:selector with:varName with:argName) withCRs
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4896
        inClass:receiversClass
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4897
        unwind:false
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4898
        category:cat
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4899
        onCancel:[^ self].
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  4900
3270
cd3562cffc61 fixed define-method for numArgs>0
Claus Gittinger <cg@exept.de>
parents: 3269
diff changeset
  4901
    self doShowSelection:selectionIndex.
8595
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  4902
    restart ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  4903
        self doRestart
8595
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  4904
    ]
3427
c1a0db432106 if dense backtrace:
Claus Gittinger <cg@exept.de>
parents: 3412
diff changeset
  4905
11457
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  4906
    "Modified: / 23-03-2012 / 09:49:31 / cg"
3187
3d8f1bbf585b added define-Button
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  4907
!
3d8f1bbf585b added define-Button
Claus Gittinger <cg@exept.de>
parents: 3165
diff changeset
  4908
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4909
doGotoApplicationActionMethod
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4910
    "select the first application-model context.
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4911
     This is another great helper, when you hit an exception,
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4912
     to quickly navigate to the responsible code of you application"
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4913
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4914
    contextArray keysAndValuesDo:[:i :c |
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4915
        |nextCon nextRcvr dialog|
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4916
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4917
        "/ find the first appModel context
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4918
        nextCon := contextArray at:i+1.
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4919
        "/
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4920
        "/ while not in the appModel
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4921
        "/
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4922
        [ 
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4923
            nextRcvr := nextCon receiver.
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4924
            (nextRcvr isKindOf:ApplicationModel)
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4925
        ] whileFalse:[
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4926
            nextCon := nextCon sender
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4927
        ].
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4928
        self selectContext:nextCon.
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4929
        ^ self.            
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4930
    ].
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4931
    "/ not found
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4932
    gotoApplicationActionMethodButton disable.
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4933
!
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4934
13362
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  4935
doGotoDialogOpener
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4936
    "select the context where the dialog was opened.
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4937
     This is a great helper, when you press interrupt while a modal dialog
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4938
     is open, to quickly navigate to the corresponding opening code of you application"
13362
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  4939
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  4940
    contextArray keysAndValuesDo:[:i :c |
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  4941
        |nextCon nextRcvr dialog|
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  4942
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  4943
        "/ find the openModal, then walk upward
13367
5c9b85ea7a77 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13363
diff changeset
  4944
        ((c selector == #openModal) or:[c selector == #openModal:]) ifTrue:[
13362
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  4945
            dialog := c receiver.
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  4946
            nextCon := contextArray at:i+1.
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4947
            "/
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  4948
            "/ while still in dialog code
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4949
            "/
13368
f2f60625d4d1 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13367
diff changeset
  4950
            [ 
f2f60625d4d1 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13367
diff changeset
  4951
                nextRcvr := nextCon receiver.
f2f60625d4d1 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13367
diff changeset
  4952
                (nextRcvr == dialog)
f2f60625d4d1 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13367
diff changeset
  4953
                or:[ nextRcvr == dialog class
f2f60625d4d1 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13367
diff changeset
  4954
                or:[ nextRcvr == DialogBox ]]
13363
4cc837ad3854 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13362
diff changeset
  4955
            ] whileTrue:[
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  4956
                (nextCon isBlockContext and:[ nextCon methodHome notNil]) ifTrue:[ 
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  4957
                    nextCon := nextCon methodHome 
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  4958
                ].
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  4959
                nextCon := nextCon sender.
13363
4cc837ad3854 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13362
diff changeset
  4960
            ].
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4961
            "/
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  4962
            "/ while still in a Notification
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4963
            "/
13368
f2f60625d4d1 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13367
diff changeset
  4964
            [ 
f2f60625d4d1 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13367
diff changeset
  4965
                nextRcvr := nextCon receiver.
f2f60625d4d1 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13367
diff changeset
  4966
                (nextRcvr isKindOf:UserInformation)
f2f60625d4d1 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13367
diff changeset
  4967
                or:[ nextRcvr isBehavior
f2f60625d4d1 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13367
diff changeset
  4968
                     and:[nextRcvr includesBehavior:UserInformation]]
13362
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  4969
            ] whileTrue:[
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  4970
                nextCon := nextCon sender
13362
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  4971
            ].
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4972
            "/
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4973
            "/ while still in UIBuilder
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4974
            "/
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4975
            [ 
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4976
                nextRcvr := nextCon receiver.
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4977
                (nextRcvr isKindOf:WindowBuilder)
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4978
            ] whileTrue:[
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4979
                nextCon := nextCon sender
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4980
            ].
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4981
            "/
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4982
            "/ while still in SimpleDialog
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4983
            "/
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4984
            [ 
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4985
                nextRcvr := nextCon receiver.
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4986
                (nextRcvr class == SimpleDialog)
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4987
            ] whileTrue:[
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4988
                nextCon := nextCon sender
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4989
            ].
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4990
            "/
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4991
            "/ while still in applicationModel support code
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4992
            "/
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4993
            [ 
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4994
                (nextCon selector startsWith:'openDialogSpec').
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4995
            ] whileTrue:[
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4996
                nextCon := nextCon sender
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  4997
            ].
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  4998
            self selectContext:nextCon.
13362
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  4999
            ^ self.            
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  5000
        ]
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  5001
    ].
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5002
    "/ not found
13362
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  5003
    gotoDialogOpenerButton disable.
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  5004
!
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  5005
12671
9124b4453947 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12633
diff changeset
  5006
doInspectProcess
9124b4453947 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12633
diff changeset
  5007
    (inspectedProcess ? Processor activeProcess) inspect.
9124b4453947 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12633
diff changeset
  5008
!
9124b4453947 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12633
diff changeset
  5009
1067
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5010
doMicroSend
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5011
    "single send; reenter with next message send"
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5012
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5013
    inspecting ifTrue:[^ self].
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5014
3097
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  5015
    self checkIfCodeIsReallyModified ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5016
        (self confirm:('Code modified - step anyway ?'))
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5017
        ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5018
            ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5019
        ]
1765
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  5020
    ].
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  5021
1067
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5022
    canContinue ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5023
        steppedContext := wrapperContext := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5024
        haveControl := false.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5025
        exitAction := #step.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5026
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5027
        "exit private event-loop"
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5028
        catchBlock value.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5029
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5030
        "/ not reached
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5031
        'DebugView [warning]: send failed' errorPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5032
        sendButton turnOff.
1067
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5033
    ]
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5034
1765
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  5035
    "Created: / 6.3.1997 / 21:09:36 / cg"
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  5036
    "Modified: / 29.7.1998 / 21:49:29 / cg"
1067
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5037
!
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5038
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5039
doNext
1072
50366cfc181a step vs send
Claus Gittinger <cg@exept.de>
parents: 1069
diff changeset
  5040
    "skip for next source-code line; entering blocks"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5041
1063
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5042
    stepHow := #nextIn.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5043
    self doStep:nil
790
6a166894d5e1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 789
diff changeset
  5044
1072
50366cfc181a step vs send
Claus Gittinger <cg@exept.de>
parents: 1069
diff changeset
  5045
    "Modified: 7.3.1997 / 18:38:41 / cg"
1063
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5046
!
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5047
13351
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  5048
doNextAfterDelay
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  5049
    Delay waitForSeconds:5.
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  5050
    self doNext.
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  5051
!
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  5052
1063
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5053
doNextOut
1072
50366cfc181a step vs send
Claus Gittinger <cg@exept.de>
parents: 1069
diff changeset
  5054
    "skip for next source-code line; leaving blocks"
1063
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5055
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5056
    stepHow := #nextOut.
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5057
    self doStep:nil
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5058
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5059
    "Created: 3.3.1997 / 21:31:22 / cg"
1072
50366cfc181a step vs send
Claus Gittinger <cg@exept.de>
parents: 1069
diff changeset
  5060
    "Modified: 7.3.1997 / 18:38:49 / cg"
1063
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5061
!
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5062
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5063
doNextOver
1072
50366cfc181a step vs send
Claus Gittinger <cg@exept.de>
parents: 1069
diff changeset
  5064
    "skip for next source-code line; skip over blocks"
1063
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5065
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5066
    stepHow := #nextOver.
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5067
    self doStep:nil
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5068
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5069
    "Created: 3.3.1997 / 20:50:38 / cg"
1072
50366cfc181a step vs send
Claus Gittinger <cg@exept.de>
parents: 1069
diff changeset
  5070
    "Modified: 7.3.1997 / 18:39:00 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5071
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5072
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5073
doNoTrace
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5074
    traceView notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5075
        traceView topView destroy.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5076
        traceView := nil.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5077
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5078
    tracing := false
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5079
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5080
4356
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5081
doOpenReportMailApp
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5082
    "open a mail report tool"
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5083
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5084
    | str |
7844
cf6ca4e657fb changed #doOpenReportMailApp
Claus Gittinger <cg@exept.de>
parents: 7843
diff changeset
  5085
4356
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5086
    str := '' writeStream.
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5087
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5088
    str nextPutLine:('Error notification from '
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5089
                    , OperatingSystem getLoginName
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5090
                    , '@'
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5091
                    , OperatingSystem getHostName).
4356
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5092
    str cr.
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5093
5779
f2f987342b81 Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 5664
diff changeset
  5094
    str nextPutLine:('Time: ' , Timestamp now printString).
4356
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5095
    str nextPutLine:('STX Version: ' , Smalltalk versionString).
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5096
    str nextPutLine:('Description: ' , self label).
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5097
"/    str nextPutLine:('Error: ', printedException description).
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5098
"/    str nextPutLine:('Signal: ', printedException signal printString).
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5099
"/    str nextPutLine:('Parameter: ', printedException parameter printString).
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5100
    str nextPutLine:'Backtrace:'.
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5101
    str cr.
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5102
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5103
    firstContext notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5104
        firstContext fullPrintAllOn:str.
4356
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5105
    ].
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5106
    str cr;cr.
7844
cf6ca4e657fb changed #doOpenReportMailApp
Claus Gittinger <cg@exept.de>
parents: 7843
diff changeset
  5107
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  5108
    SendMailTool
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5109
        openForMessage:(str contents)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5110
        withSubject:('STX Error:[', self label, ']')
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5111
        preOpenBlock:[:inst|
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5112
            inst recipientEntryField value:'error@exept.de'
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5113
        ].
7844
cf6ca4e657fb changed #doOpenReportMailApp
Claus Gittinger <cg@exept.de>
parents: 7843
diff changeset
  5114
cf6ca4e657fb changed #doOpenReportMailApp
Claus Gittinger <cg@exept.de>
parents: 7843
diff changeset
  5115
    "Modified: / 20-09-2007 / 12:40:40 / cg"
4356
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5116
!
d953f8e8a4fe can send mail to SMTP Server now
penk
parents: 4153
diff changeset
  5117
13360
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5118
doResend
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5119
    "resend - the selected context is unwound and its message resent.
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5120
     To be done after a cde change, to get nto the new method"
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5121
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5122
    self checkIfCodeIsReallyModified ifTrue:[
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5123
        (self confirm:('Code modified - resend anyway ?')) ifFalse:[
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5124
            ^ self
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5125
        ]
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5126
    ].
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5127
    inspecting ifTrue:[
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5128
        ^ self showError:'** not avail in inspecting debugger **'
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5129
    ].
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5130
    steppedContext := wrapperContext := nil.
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5131
    haveControl := false.
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5132
    exitAction := #resend. "exit private event-loop"
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5133
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5134
    catchBlock value.
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5135
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5136
    "/ normally not reached
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5137
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5138
    'DebugView [warning]: resend failed' errorPrintCR.
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5139
    resendButton turnOff.
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5140
!
f87b54dfc58a class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13351
diff changeset
  5141
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5142
doRestart
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5143
    "restart - the selected context will be restarted"
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  5144
3097
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  5145
    self checkIfCodeIsReallyModified ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5146
        (self confirm:('Code modified - restart anyway ?')) ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5147
            ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5148
        ]
1765
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  5149
    ].
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5150
    inspecting ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5151
        selectedContext isNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5152
            ^ self showError:'** select a context first **'
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5153
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5154
        self interruptProcessWith:[ selectedContext unwindAndRestart ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5155
        ^ self
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5156
    ].
788
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  5157
    steppedContext := wrapperContext := nil.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5158
    haveControl := false.
6365
027e8d0a78ee code cleanup
Claus Gittinger <cg@exept.de>
parents: 6361
diff changeset
  5159
    exitAction := #restart. "exit private event-loop"
027e8d0a78ee code cleanup
Claus Gittinger <cg@exept.de>
parents: 6361
diff changeset
  5160
027e8d0a78ee code cleanup
Claus Gittinger <cg@exept.de>
parents: 6361
diff changeset
  5161
    catchBlock value.
027e8d0a78ee code cleanup
Claus Gittinger <cg@exept.de>
parents: 6361
diff changeset
  5162
027e8d0a78ee code cleanup
Claus Gittinger <cg@exept.de>
parents: 6361
diff changeset
  5163
    "/ normally not reached
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  5164
935
7c75379de9ec newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  5165
    'DebugView [warning]: restart failed' errorPrintCR.
581
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5166
    restartButton turnOff.
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5167
1765
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  5168
    "Modified: / 29.7.1998 / 21:49:53 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5169
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5170
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5171
doReturn
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5172
    "return - the selected context will do a ^nil"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5173
3097
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  5174
    self checkIfCodeIsReallyModified ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5175
        (self confirm:('Code modified - return anyway ?'))
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5176
        ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5177
            ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5178
        ]
1765
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  5179
    ].
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  5180
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5181
    inspecting ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5182
        selectedContext isNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5183
            ^ self showError:'** select a context first **'
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5184
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5185
        self interruptProcessWith:[selectedContext unwind:nil].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5186
        ^ self
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5187
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5188
788
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  5189
    steppedContext := wrapperContext := nil.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5190
    haveControl := false.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5191
    exitAction := #return.
581
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5192
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5193
    "exit private event-loop"
6365
027e8d0a78ee code cleanup
Claus Gittinger <cg@exept.de>
parents: 6361
diff changeset
  5194
    catchBlock value.
477
6351acd20dfb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 448
diff changeset
  5195
581
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5196
    "/ not reached
935
7c75379de9ec newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  5197
    'DebugView [warning]: return failed' errorPrintCR.
581
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5198
    returnButton turnOff.
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5199
1765
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  5200
    "Modified: / 29.7.1998 / 21:50:03 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5201
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5202
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5203
doSend
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5204
    "single send; reenter with next message send"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5205
1072
50366cfc181a step vs send
Claus Gittinger <cg@exept.de>
parents: 1069
diff changeset
  5206
    stepHow := #send.
1067
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5207
    self doStep:-1
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5208
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5209
"/    inspecting ifTrue:[^ self].
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5210
"/
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5211
"/    canContinue ifTrue:[
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5212
"/        steppedContext := wrapperContext := nil.
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5213
"/        haveControl := false.
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5214
"/        exitAction := #step.
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5215
"/
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5216
"/        "exit private event-loop"
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5217
"/        catchBlock notNil ifTrue:[catchBlock value].
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5218
"/
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5219
"/        "/ not reached
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5220
"/        'DebugView [warning]: send failed' errorPrintCR.
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5221
"/        sendButton turnOff.
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5222
"/    ]
e6d52091b3af old: SEND executed debuggee up to the next send
Claus Gittinger <cg@exept.de>
parents: 1065
diff changeset
  5223
1072
50366cfc181a step vs send
Claus Gittinger <cg@exept.de>
parents: 1069
diff changeset
  5224
    "Modified: 7.3.1997 / 18:41:26 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5225
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5226
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5227
doStep
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5228
    "skip for next send in selected method"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5229
1063
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5230
    stepHow := #step.
790
6a166894d5e1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 789
diff changeset
  5231
    self doStep:-1
6a166894d5e1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 789
diff changeset
  5232
1072
50366cfc181a step vs send
Claus Gittinger <cg@exept.de>
parents: 1069
diff changeset
  5233
    "Modified: 7.3.1997 / 18:46:49 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5234
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5235
13197
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  5236
doStep:lineNrOrNilOrMinus1
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  5237
    "common helper for step, skip & next.
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  5238
     Arrange for single-steppping until we pass lineNr (if nonNil)
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  5239
     or to next line (if nil) or to next send (if -1)"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5240
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5241
    |con method|
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5242
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5243
    inspecting ifTrue:[^ self].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5244
3097
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  5245
    self checkIfCodeIsReallyModified ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5246
        (self confirm:('Code modified - step anyway ?'))
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5247
        ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5248
            ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5249
        ]
1765
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  5250
    ].
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  5251
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5252
    canContinue ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5253
        selectedContext notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5254
            con := actualContext. "/ selectedContext.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5255
            steppedContextLineno := actualContext lineNumber.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5256
        ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5257
            con := contextArray at:2.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5258
            steppedContextLineno := con lineNumber.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5259
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5260
13197
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  5261
        skipLineNr := lineNrOrNilOrMinus1.
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  5262
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  5263
        lineNrOrNilOrMinus1 == -1 ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5264
            steppedContextLineno := skipLineNr := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5265
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5266
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5267
        (stepUntilEntering isNil and:[stepHow == #send]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5268
            steppedContext := contextArray at:1.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5269
            stepHow := #nextIn.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5270
        ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5271
            stepHow == #nextOut ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5272
                steppedContext := con home.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5273
            ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5274
                steppedContext := con.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5275
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5276
        ].
13197
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  5277
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5278
        wrapperContext := nil.
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  5279
789
a9595b71a8fa improved next-stepping in blocks
Claus Gittinger <cg@exept.de>
parents: 788
diff changeset
  5280
"/ ' step con:' print. (ObjectMemory addressOf:steppedContext) printHex. ' ' print. steppedContext printCR.
a9595b71a8fa improved next-stepping in blocks
Claus Gittinger <cg@exept.de>
parents: 788
diff changeset
  5281
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5282
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5283
         if we step in a wrapped method,
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5284
         prepare to skip the prolog ...
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5285
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5286
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5287
        inWrap := false.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5288
        method := con method.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5289
        (method notNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5290
        and:[method isWrapped
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5291
        and:[method originalMethod ~~ method]]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5292
            inWrap := true
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5293
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5294
13197
74bdfa87c71d class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13162
diff changeset
  5295
        lineNrOrNilOrMinus1 == #return ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5296
            Processor activeProcess forceInterruptOnReturnOf:con.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5297
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5298
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5299
        con := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5300
        bigStep := true.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5301
        haveControl := false.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5302
        exitAction := #step.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5303
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5304
        "exit private event-loop"
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5305
        catchBlock value.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5306
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5307
        "/ not reached
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5308
        'DebugView [warning]: step failed' errorPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5309
        stepButton turnOff. nextButton turnOff. sendButton turnOff.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5310
    ]
477
6351acd20dfb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 448
diff changeset
  5311
1765
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  5312
    "Modified: / 29.7.1998 / 21:50:16 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5313
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5314
13351
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  5315
doStepAfterDelay
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  5316
    Delay waitForSeconds:5.
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  5317
    self doStep.
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  5318
!
2f01d5b41262 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13350
diff changeset
  5319
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5320
doStop
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5321
    "stop the process (if its running, otherwise this is a no-op)"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5322
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5323
    inspecting ifTrue:[
13965
6213444511ae class: DebugView
Stefan Vogel <sv@exept.de>
parents: 13934
diff changeset
  5324
        self graphicsDevice hasColors ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5325
            continueButton foregroundColor:Color green darkened darkened.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5326
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5327
        continueButton label:(resources string:'Continue').
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5328
        continueButton action:[self doContinue].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5329
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5330
        self processPerform:#stop.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5331
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5332
        ^ self
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5333
    ].
779
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  5334
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  5335
    "Modified: 20.10.1996 / 18:30:48 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5336
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5337
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5338
doTerminate
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5339
    "terminate - the process has a chance for cleanup"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5340
3097
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  5341
    self checkIfCodeIsReallyModified ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5342
        (self confirm:('Code modified - terminate anyway ?'))
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5343
        ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5344
            ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5345
        ]
1765
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  5346
    ].
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  5347
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5348
    inspecting ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5349
        self processPerform:#terminate.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5350
        ^ self
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5351
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5352
788
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  5353
    steppedContext := wrapperContext := nil.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5354
    haveControl := false.
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  5355
    exitAction := #terminate.
581
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5356
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5357
    "exit private event-loop"
6365
027e8d0a78ee code cleanup
Claus Gittinger <cg@exept.de>
parents: 6361
diff changeset
  5358
    catchBlock value.
581
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5359
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5360
    "/ not reached (normally)
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5361
    inspecting ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5362
        'DebugView [warning]: terminate failed' errorPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5363
        (self confirm:'Regular terminate failed - do it the hard way ?') ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5364
            Debugger newDebugger.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5365
            Processor activeProcess terminate.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5366
        ]
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5367
    ].
581
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5368
    terminateButton turnOff.
477
6351acd20dfb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 448
diff changeset
  5369
1765
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  5370
    "Modified: / 29.7.1998 / 21:50:35 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5371
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5372
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5373
doTrace
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5374
    "tracing - not really implemented ..."
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5375
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5376
    self warn:'this function is not yet implemented'.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5377
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5378
"/    |v b|
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5379
"/
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5380
"/    traceView isNil ifTrue:[
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5381
"/        v := StandardSystemView on:Display.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5382
"/        v label:'Debugger-Trace'.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5383
"/        v icon:icon.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5384
"/
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5385
"/        b := Button label:'untrace' in:v.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5386
"/        b origin:(0 @ 0) extent:(1.0 @ (b height)).
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5387
"/        b action:[
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5388
"/            StepInterruptPending := nil.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5389
"/            tracing := false.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5390
"/            v unrealize.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5391
"/            traceView := nil
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5392
"/        ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5393
"/        traceView := ScrollableView for:TextCollector in:v.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5394
"/        traceView origin:(0 @ (b height))
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5395
"/                  extent:[v width @ (v height - b height)]
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5396
"/    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5397
"/    v realize.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5398
"/
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5399
"/    tracing := true.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5400
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5401
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5402
doTraceStep
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5403
    "tracestep - not implemented yet"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5404
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5405
    canContinue ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5406
        tracing := true.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5407
        self doStep
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5408
    ]
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5409
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5410
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5411
exit
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5412
    "exit from menu: immediate exit from smalltalk"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5413
14129
cb9000f8e03d class: DebugView
Stefan Vogel <sv@exept.de>
parents: 14122
diff changeset
  5414
    OperatingSystem exit:10
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5415
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5416
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5417
findContextForWhich:aBlock thenDo:additionalAction
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5418
    |con|
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5419
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5420
    con := self selectedContext.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5421
    con isNil ifTrue:[^ self].
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5422
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5423
    con := con sender.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5424
    [con notNil] whileTrue:[
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5425
        (aBlock value:con) ifTrue:[
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5426
            (self selectContext:con) ifTrue:[
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5427
                additionalAction value:con.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5428
                ^ self.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5429
            ] 
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5430
        ].
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5431
        con := con sender.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5432
    ].
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5433
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5434
    Dialog information:'None found'.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5435
!
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5436
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5437
findContextWithStringInSource
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5438
    |stringToSearch source|
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5439
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5440
    stringToSearch := Dialog request:'Search what:'.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5441
    stringToSearch isEmptyOrNil ifTrue:[^ self].
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5442
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5443
    self 
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5444
        findContextForWhich:[:con |
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5445
            con method notNil
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5446
            and:[ (source := con method source) notNil
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5447
            and:[ (source includesString:stringToSearch) ]]
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5448
        ]
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5449
        thenDo:[:con |
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5450
            codeView searchFwd:stringToSearch.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5451
        ]
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5452
!
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5453
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5454
findContextWithValueInVariable
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5455
    |valueStringToSearch|
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5456
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5457
    valueStringToSearch := Dialog request:'Search for a local value whith printString containing:'.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5458
    valueStringToSearch isEmptyOrNil ifTrue:[^ self].
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5459
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5460
    self 
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5461
        findContextForWhich:[:con |
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5462
            con argsAndVars contains:[:val | val printString asLowercase includesString: valueStringToSearch asLowercase]
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5463
        ]
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5464
        thenDo:[:con | ]
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5465
!
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5466
11595
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5467
findHandlerFor
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5468
    |exClass con|
11595
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5469
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5470
    (con := self selectedContext) isNil ifTrue:[ 
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5471
        con := contextArray at:1
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5472
    ].
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5473
    con sender isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5474
        self information:'Context has already returned'.
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5475
        ^ self
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5476
    ].
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5477
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5478
    exClass := Dialog 
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5479
                choose:'Exception class:'
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5480
                fromList:(GenericException withAllSubclasses copyAsOrderedCollection sort:[:a :b | a name < b name])
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5481
                lines:25
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5482
                title:'Choose Exception class'.
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  5483
    exClass isNil ifTrue:[^ self].
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5484
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5485
    self 
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5486
        findContextForWhich:[:con |
13412
23550f667aba class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13411
diff changeset
  5487
            con isHandleContext 
23550f667aba class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13411
diff changeset
  5488
            and:[ (con receiver handlerForSignal:exClass context:con originator:nil) notNil ] 
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5489
        ]
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5490
        thenDo:[:con | 
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5491
            self selectContext:con sender.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5492
        ]
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5493
!
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5494
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5495
findNextExceptionHandlerContext
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5496
    self 
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5497
        findContextForWhich:[:con |
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5498
            con isHandleContext 
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5499
        ]
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5500
        thenDo:[:con | 
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5501
            self selectContext:con sender.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5502
        ]
11595
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5503
!
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5504
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5505
inspectContext
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5506
    "launch an inspector on the currently selected context"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5507
11595
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5508
    |con|
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5509
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5510
    (con := self selectedContext) notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5511
        con inspect.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5512
    ]
11595
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5513
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5514
    "Modified: / 17-07-2012 / 12:52:34 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5515
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5516
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5517
inspectWidgetHierarchy
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5518
    |rcvr view|
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5519
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5520
    selectedContext isNil ifTrue:[ ^ self ].
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5521
    Tools::ViewTreeInspectorApplication isNil ifTrue:[
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5522
        Dialog warn:'Missing class: Tools::ViewTreeInspectorApplication'.
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5523
        ^ self.
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5524
    ].
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5525
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5526
    rcvr := selectedContext receiver.
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5527
    rcvr isView ifTrue:[
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5528
        view := rcvr
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5529
    ] ifFalse:[
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5530
        view := rcvr window
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5531
    ].
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5532
    Tools::ViewTreeInspectorApplication openOn:view
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5533
!
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5534
8142
4ad36cbbcffb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8131
diff changeset
  5535
middleButtonMenu
4ad36cbbcffb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8131
diff changeset
  5536
    <resource: #programMenu >
4ad36cbbcffb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8131
diff changeset
  5537
9488
2035181e2ec5 changed: #middleButtonMenu
Claus Gittinger <cg@exept.de>
parents: 9479
diff changeset
  5538
    |items m nameOfExecutable|
8142
4ad36cbbcffb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8131
diff changeset
  5539
4ad36cbbcffb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8131
diff changeset
  5540
    exclusive ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5541
        items := #(
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5542
                    ('Show More WalkBack'               showMore                )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5543
                    ('-'                                                        )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5544
                    ('Add Breakpoint'                   addBreakpoint           )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5545
                    ('Remove Breakpoint'                removeBreakpoint        )
11661
2bda6075f0fa comment/format in:
Claus Gittinger <cg@exept.de>
parents: 11647
diff changeset
  5546
                    ('Remove all Break- && Tracepoints'  removeAllBreakpoints   )
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5547
                    ('-'                                                        )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5548
                  ).
8142
4ad36cbbcffb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8131
diff changeset
  5549
    ] ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5550
        items := #(
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5551
                    ('Show More WalkBack'               showMore                )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5552
                    ('-'                                                        )
13842
609697ec1e06 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13764
diff changeset
  5553
                    ('Skip'                             skip                    )
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5554
                    ('Step Out'                         skipForReturn           )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5555
                    ('Skip until Entering...'           skipUntilEntering       )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5556
                    ('-'                                                        )
8142
4ad36cbbcffb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8131
diff changeset
  5557
"
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5558
                    ('Continue'                         doContinue              )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5559
                    ('Terminate'                        doTerminate             )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5560
                    ('Abort'                            doAbort                 )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5561
                    ('-'                                                        )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5562
                    ('Step'                             doStep                  )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5563
                    ('Send'                             doSend                  )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5564
                    ('-'                                                        )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5565
                    ('Return'                           doReturn                )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5566
                    ('Restart'                          doRestart               )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5567
                    ('-'                                                        )
8142
4ad36cbbcffb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8131
diff changeset
  5568
"
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5569
                    ('Add Breakpoint'                   addBreakpoint           )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5570
                    ('Remove Breakpoint'                removeBreakpoint        )
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5571
                    ('Remove all Break- & Tracepoints'  removeAllBreakpoints    )
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5572
                ).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5573
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5574
"/        self allowBreakPointsInDebugger ifFalse:[
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5575
"/            items := items , #(
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5576
"/                        ('Allow Breakpoints & halt in Debugger'      doNotIgnoreBreakpoints  )
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5577
"/                    ).
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5578
"/        ] ifTrue:[
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5579
"/            items := items , #(
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5580
"/                        ('Ignore Breakpoints & halt in Debugger'     doIgnoreBreakpoints  )
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5581
"/                    ).
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5582
"/        ].
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5583
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5584
        items := items , #(
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5585
                    ('-'                                                        )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5586
                    ('Browse Implementing Class'      browseImplementingClass )
13210
214639c7834e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13197
diff changeset
  5587
                    ('Browse Receiver''s Class'             browseReceiversClass    )
13408
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  5588
                    ('Browse Blocks''s Home'                browseBlocksHome    )
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5589
"/                    ('Browse Receivers Class Hierarchy'   browseClassHierarchy    )
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5590
"/                    ('Browse Receivers Full Protocol'     browseFullClassProtocol )
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5591
                    ('Implementors'                     browseImplementors      )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5592
                    ('Implementors Of...'               browseImplementorsOf    )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5593
                    ('Senders'                          browseSenders           )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5594
                    ('Senders Of...'                    browseSendersOf         )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5595
                    ('-'                                                        )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5596
                    ('Inspect Context'                  inspectContext          )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5597
                  ).
8142
4ad36cbbcffb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8131
diff changeset
  5598
    ].
4ad36cbbcffb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8131
diff changeset
  5599
9488
2035181e2ec5 changed: #middleButtonMenu
Claus Gittinger <cg@exept.de>
parents: 9479
diff changeset
  5600
    items := items , #(
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5601
                ('Copy WalkBack Text'               copyWalkbackText        )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5602
                ('-'                                                        )
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  5603
                ('Hard Terminate (Danger)'          quickTerminate          )
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5604
                ('='                                                        )).
9488
2035181e2ec5 changed: #middleButtonMenu
Claus Gittinger <cg@exept.de>
parents: 9479
diff changeset
  5605
2035181e2ec5 changed: #middleButtonMenu
Claus Gittinger <cg@exept.de>
parents: 9479
diff changeset
  5606
    nameOfExecutable := OperatingSystem nameOfSTXExecutable asFilename withoutSuffix baseName.
2035181e2ec5 changed: #middleButtonMenu
Claus Gittinger <cg@exept.de>
parents: 9479
diff changeset
  5607
    nameOfExecutable = 'stx' ifTrue:[ nameOfExecutable := 'Smalltalk' ].
2035181e2ec5 changed: #middleButtonMenu
Claus Gittinger <cg@exept.de>
parents: 9479
diff changeset
  5608
2035181e2ec5 changed: #middleButtonMenu
Claus Gittinger <cg@exept.de>
parents: 9479
diff changeset
  5609
    items := items , {
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5610
        { 'Exit %1 (No Confirmation)' bindWith:nameOfExecutable. #exit                 }}.
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  5611
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  5612
    m := PopUpMenu
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5613
                itemList:items
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5614
                resources:resources
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5615
                receiver:self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5616
                for:contextView.
8142
4ad36cbbcffb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8131
diff changeset
  5617
4ad36cbbcffb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8131
diff changeset
  5618
    inspecting ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5619
        m notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5620
            m disableAll:#(doTraceStep removeBreakpoint browseImplementingClass browseReceiversClass
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5621
                           browseClassHierarchy browseFullClassProtocol
13408
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  5622
                           browseImplementors browseSenders browseBlocksHome inspectContext skip doStepOut).
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5623
        ].
8142
4ad36cbbcffb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8131
diff changeset
  5624
    ].
4ad36cbbcffb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8131
diff changeset
  5625
    self updateMenuItems.
4ad36cbbcffb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8131
diff changeset
  5626
4ad36cbbcffb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8131
diff changeset
  5627
    ^ m.
9488
2035181e2ec5 changed: #middleButtonMenu
Claus Gittinger <cg@exept.de>
parents: 9479
diff changeset
  5628
13210
214639c7834e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13197
diff changeset
  5629
    "Modified: / 22-07-2013 / 15:30:05 / cg"
8142
4ad36cbbcffb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8131
diff changeset
  5630
!
4ad36cbbcffb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8131
diff changeset
  5631
11573
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5632
notShowingSupportCode
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5633
    ^ hideSupportCode == true.
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5634
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5635
    "Created: / 10-06-2012 / 21:27:24 / cg"
11571
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  5636
!
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  5637
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5638
openAboutThisApplication
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5639
    "opens an about box for this application."
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5640
7112
b1c931857a1e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7065
diff changeset
  5641
    Dialog aboutClass:self class.
b1c931857a1e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7065
diff changeset
  5642
b1c931857a1e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7065
diff changeset
  5643
    "Modified: / 12-09-2006 / 17:20:38 / cg"
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5644
!
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5645
8620
3a015c65b246 beepInEditor flag
Claus Gittinger <cg@exept.de>
parents: 8600
diff changeset
  5646
openSettingsDialog
14559
1de1084ebbd9 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14532
diff changeset
  5647
    |settingsList|
8620
3a015c65b246 beepInEditor flag
Claus Gittinger <cg@exept.de>
parents: 8600
diff changeset
  5648
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  5649
    settingsList :=
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5650
        #(
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5651
           #('Debugger'       #'AbstractSettingsApplication::DebuggerSettingsAppl'            )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5652
           #('Editor'         #'AbstractSettingsApplication::EditSettingsAppl'                )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5653
           #('Syntax Color'   #'AbstractSettingsApplication::SyntaxColorSettingsAppl'         )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5654
           #('Code Format'    #'AbstractSettingsApplication::SourceCodeFormatSettingsAppl'    )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5655
        ).
8620
3a015c65b246 beepInEditor flag
Claus Gittinger <cg@exept.de>
parents: 8600
diff changeset
  5656
14559
1de1084ebbd9 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14532
diff changeset
  5657
    SettingsDialog 
1de1084ebbd9 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14532
diff changeset
  5658
        openWithList:settingsList 
1de1084ebbd9 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14532
diff changeset
  5659
        label:(resources string:'Debugger Settings').
8620
3a015c65b246 beepInEditor flag
Claus Gittinger <cg@exept.de>
parents: 8600
diff changeset
  5660
!
3a015c65b246 beepInEditor flag
Claus Gittinger <cg@exept.de>
parents: 8600
diff changeset
  5661
13488
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  5662
processesApplication
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  5663
    "if the debugged process is a GUI process,
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  5664
     AND it has an applicaiton, return it.
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  5665
     Otherwise, return nil"
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  5666
14430
c5408e02eebd class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14356
diff changeset
  5667
    |p wgs app nonModalWGs|
13488
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  5668
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  5669
    p := inspectedProcess ? Processor activeProcess.
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  5670
    (p notNil and:[p isGUIProcess]) ifTrue:[
13553
728eae2b6327 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13544
diff changeset
  5671
        wgs := WindowGroup scheduledWindowGroups select:[:wg | wg process == p].
14430
c5408e02eebd class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14356
diff changeset
  5672
        nonModalWGs := wgs reject:[:wg | wg isModal].
c5408e02eebd class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14356
diff changeset
  5673
        nonModalWGs notEmpty ifTrue:[^ nonModalWGs first application].
c5408e02eebd class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14356
diff changeset
  5674
13553
728eae2b6327 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13544
diff changeset
  5675
        wgs do:[:wg |
728eae2b6327 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13544
diff changeset
  5676
            |wgi|
728eae2b6327 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13544
diff changeset
  5677
728eae2b6327 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13544
diff changeset
  5678
            wgi := wg.
728eae2b6327 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13544
diff changeset
  5679
            [wgi notNil] whileTrue:[
728eae2b6327 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13544
diff changeset
  5680
                (app := wgi application) notNil ifTrue:[^ app].
728eae2b6327 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13544
diff changeset
  5681
                wgi isModal ifTrue:[
728eae2b6327 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13544
diff changeset
  5682
                    wgi := wgi previousGroup
728eae2b6327 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13544
diff changeset
  5683
                ] ifFalse:[
728eae2b6327 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13544
diff changeset
  5684
                    wgi := nil.
728eae2b6327 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13544
diff changeset
  5685
                ]
13488
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  5686
            ]
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  5687
        ]
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  5688
    ].
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  5689
    ^ nil
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  5690
!
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  5691
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5692
quickTerminate
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5693
    "quick terminate - the process will get no chance for cleanup actions"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5694
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5695
    inspecting ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5696
        self processPerform:#terminateNoSignal.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5697
        ^ self
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5698
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5699
788
26d452e40e52 care for wrappedMethods exit-blocks, when singleStepping
Claus Gittinger <cg@exept.de>
parents: 787
diff changeset
  5700
    steppedContext := wrapperContext := nil.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5701
    haveControl := false.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5702
    exitAction := #quickTerminate.
581
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5703
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5704
    "exit private event-loop"
6365
027e8d0a78ee code cleanup
Claus Gittinger <cg@exept.de>
parents: 6361
diff changeset
  5705
    catchBlock value.
581
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5706
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5707
    "/ not reached (normally)
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5708
    inspecting ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5709
        'DebugView [warning]: quick terminate failed' errorPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5710
        (self confirm:'Regular quick terminate failed - do it the hard way ?') ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5711
            Debugger newDebugger.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5712
            Processor activeProcess terminateNoSignal.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5713
        ]
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5714
    ].
581
d1a1ae9d49e4 removed old non-thread support
Claus Gittinger <cg@exept.de>
parents: 579
diff changeset
  5715
    terminateButton turnOff.
477
6351acd20dfb checkin from browser
Claus Gittinger <cg@exept.de>
parents: 448
diff changeset
  5716
935
7c75379de9ec newStyle info & error messages
Claus Gittinger <cg@exept.de>
parents: 934
diff changeset
  5717
    "Modified: 10.1.1997 / 17:42:10 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5718
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5719
11391
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  5720
rememberCallchain
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  5721
    "remember the callchain in a classvar.
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  5722
     When entered the next time, highlight already entered contexts.
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  5723
     This makes it possible to identitfy the caller as the first common context
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  5724
     along the chain (i.e. the context which is responsible for the debugger to be entered)"
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  5725
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  5726
    RememberedCallChain := contextArray copy
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  5727
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  5728
    "Created: / 07-03-2012 / 23:07:07 / cg"
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  5729
!
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  5730
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5731
selectContext:aContext
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5732
    |idx|
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5733
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5734
    idx := contextArray identityIndexOf:aContext.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5735
    idx == 0 ifTrue:[
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5736
        "/ some contexts hidden?
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5737
        (self showingDenseWalkback or:[self showingSupportCode not]) ifTrue:[
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5738
            Dialog information:'Context is hidden - disabling the "hideSupportCode" option (see view menu)'.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5739
            self showFullWalkback.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5740
            self showingDenseWalkback:false.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5741
            self showingSupportCode:true.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5742
        ].
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5743
        idx := contextArray identityIndexOf:aContext.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5744
    ].
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5745
    idx ~~ 0 ifTrue:[
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5746
        self selectContextWithIndex:idx.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5747
        ^ true.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5748
    ].
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5749
    ^ false
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5750
!
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  5751
11595
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5752
selectedContext
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5753
    contextView selection notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5754
        (contextView selectionValue startsWith:'**') ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5755
            ^ (contextArray at:(contextView selection)).
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5756
        ]
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5757
    ].
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5758
    ^ nil
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5759
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5760
    "Created: / 17-07-2012 / 12:52:10 / cg"
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5761
!
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  5762
11647
Claus Gittinger <cg@exept.de>
parents: 11645
diff changeset
  5763
showFullWalkback
Claus Gittinger <cg@exept.de>
parents: 11645
diff changeset
  5764
    "double the number of contexts shown"
Claus Gittinger <cg@exept.de>
parents: 11645
diff changeset
  5765
Claus Gittinger <cg@exept.de>
parents: 11645
diff changeset
  5766
    contextArray notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 11645
diff changeset
  5767
        nChainShown := 9999.
Claus Gittinger <cg@exept.de>
parents: 11645
diff changeset
  5768
        self redisplayBacktrace.
Claus Gittinger <cg@exept.de>
parents: 11645
diff changeset
  5769
    ]
Claus Gittinger <cg@exept.de>
parents: 11645
diff changeset
  5770
Claus Gittinger <cg@exept.de>
parents: 11645
diff changeset
  5771
    "Created: / 23-07-2012 / 12:24:02 / cg"
Claus Gittinger <cg@exept.de>
parents: 11645
diff changeset
  5772
!
Claus Gittinger <cg@exept.de>
parents: 11645
diff changeset
  5773
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5774
showMore
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5775
    "double the number of contexts shown"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5776
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5777
    contextArray notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5778
        nChainShown := nChainShown * 2.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5779
        self redisplayBacktrace.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5780
    ]
563
93633e3ff304 selection: / setSelection:
Claus Gittinger <cg@exept.de>
parents: 554
diff changeset
  5781
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5782
    "Modified: / 17.11.2001 / 20:14:31 / cg"
936
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  5783
!
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  5784
11573
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5785
showSupportCode
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5786
    hideSupportCode := false.
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5787
    self redisplayBacktrace.
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5788
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5789
    "Created: / 10-06-2012 / 21:27:53 / cg"
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5790
!
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5791
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5792
showingDenseWalkback
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5793
    ^ verboseBacktrace == false.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5794
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5795
    "Created: / 17.11.2001 / 20:13:53 / cg"
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5796
!
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5797
11694
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  5798
showingDenseWalkback:aBoolean
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  5799
    verboseBacktrace := aBoolean not.
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  5800
    self redisplayBacktrace.
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  5801
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  5802
    "Created: / 27-07-2012 / 14:58:00 / cg"
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  5803
!
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  5804
11573
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5805
showingSupportCode
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5806
    ^ hideSupportCode == false.
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5807
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5808
    "Created: / 10-06-2012 / 21:28:05 / cg"
11571
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  5809
!
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  5810
11836
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  5811
showingSupportCode:aBoolean
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  5812
    hideSupportCode := aBoolean not.
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  5813
    self redisplayBacktrace.
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  5814
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  5815
    "Created: / 27-07-2012 / 14:58:00 / cg"
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  5816
!
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  5817
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5818
showingVerboseWalkback
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5819
    ^ verboseBacktrace == true.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5820
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5821
    "Created: / 17.11.2001 / 20:13:46 / cg"
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5822
!
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5823
9626
746106f8e83c remember origin & extent
Claus Gittinger <cg@exept.de>
parents: 9618
diff changeset
  5824
sizeChanged:how
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  5825
    super sizeChanged:how.
9626
746106f8e83c remember origin & extent
Claus Gittinger <cg@exept.de>
parents: 9618
diff changeset
  5826
    LastExtent := self extent.
746106f8e83c remember origin & extent
Claus Gittinger <cg@exept.de>
parents: 9618
diff changeset
  5827
746106f8e83c remember origin & extent
Claus Gittinger <cg@exept.de>
parents: 9618
diff changeset
  5828
    "Created: / 10-11-2010 / 09:08:41 / cg"
746106f8e83c remember origin & extent
Claus Gittinger <cg@exept.de>
parents: 9618
diff changeset
  5829
!
746106f8e83c remember origin & extent
Claus Gittinger <cg@exept.de>
parents: 9618
diff changeset
  5830
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5831
skip
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5832
    "skip for cursor line in selected method"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5833
1063
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5834
    stepHow := #skip.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5835
    self doStep:codeView cursorLine.
790
6a166894d5e1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 789
diff changeset
  5836
1063
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5837
    "Modified: 3.3.1997 / 20:56:23 / cg"
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  5838
!
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  5839
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  5840
skipForReturn
2581
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  5841
    "skip until the selected context is left."
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  5842
1063
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5843
    stepHow := #skipReturn.
754
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  5844
    self doStep:#return.
1848d4e89bc4 much better next & step (no longer single-steps through all sends)
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  5845
1063
cc4f9a5d49ac added stepIn, stepOver and stepOut;
Claus Gittinger <cg@exept.de>
parents: 1049
diff changeset
  5846
    "Modified: 3.3.1997 / 20:56:32 / cg"
2581
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  5847
!
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  5848
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  5849
skipUntilEntering
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  5850
    "skip until some particular method is invoked."
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  5851
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  5852
    |selector|
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  5853
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  5854
    selector := Dialog
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5855
                request:'Skip until entering what (matchpattern):'
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  5856
                initialAnswer:self goodSkipUntilSelector.
2581
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  5857
    selector size == 0 ifTrue:[^ self].
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  5858
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  5859
    stepUntilEntering := selector asSymbol.
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  5860
    stepHow := #send.
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  5861
    self doStep:-1.
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  5862
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  5863
    "Modified: 3.3.1997 / 20:56:32 / cg"
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5864
!
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5865
11573
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5866
toggleShowSupportCode
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5867
    hideSupportCode ifTrue:[
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5868
        self showSupportCode
11645
4f39a925956d changed: #toggleShowSupportCode
Stefan Vogel <sv@exept.de>
parents: 11636
diff changeset
  5869
    ] ifFalse:[
11573
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5870
        self hideSupportCode
11571
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  5871
    ].
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  5872
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  5873
    "Modified: / 17-11-2001 / 20:07:45 / cg"
11573
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  5874
    "Created: / 10-06-2012 / 21:28:17 / cg"
11571
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  5875
!
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  5876
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  5877
toggleVerboseWalkback
11694
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  5878
    self showingDenseWalkback:(self showingDenseWalkback not)
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  5879
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  5880
    "Modified: / 27-07-2012 / 15:00:15 / cg"
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5881
!
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5882
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5883
updateMenuItems
13408
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  5884
    "enable/disable some menu items, depending on the current selected context"
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  5885
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5886
    |m mthd cls mCls rCls|
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5887
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5888
    m := contextView middleButtonMenu.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5889
    m notNil ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5890
        m disable:#removeBreakpoint.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5891
        m disable:#addBreakpoint.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5892
        canShowMore ifFalse:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5893
            m disable:#showMore
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5894
        ].
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5895
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5896
        selectedContext notNil ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5897
            m enableAll:#(browseImplementors browseSenders inspectContext skip skipForReturn).
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5898
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5899
            mthd := selectedContext method.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5900
            mthd notNil ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5901
                cls := mCls := mthd containingClass.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5902
                mthd isBreakpointed ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5903
                    m enable:#removeBreakpoint.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5904
                ] ifFalse:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5905
                    m enable:#addBreakpoint.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5906
                ]
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5907
            ].
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5908
            (selectedContext isBlockContext and:[selectedContext home isNil]) ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5909
                "/ a cheap block's context
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5910
            ] ifFalse:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5911
                rCls := selectedContext receiver class.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5912
                cls isNil ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5913
                    cls := rCls
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5914
                ].
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5915
            ].
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5916
            cls notNil ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5917
                m enableAll:#(browseImplementingClass browseReceiversClass browseClassHierarchy browseFullClassProtocol).
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5918
                rCls == mCls ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5919
                    m disable:#browseReceiversClass
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5920
                ].
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5921
                mCls isNil ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5922
                    m disable:#browseImplementingClass
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5923
                ]
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5924
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5925
            ] ifFalse:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5926
                m disableAll:#(browseImplementingClass browseReceiversClass browseClassHierarchy browseFullClassProtocol).
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5927
            ].
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5928
            mthd notNil ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5929
                m enableAll:#(browseImplementingClass).
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5930
            ].
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5931
            selectedContext isCheapBlockContext ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5932
                m disableAll:#(browseReceiversClass).
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5933
            ].
13408
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  5934
            selectedContext receiver isBlock ifTrue:[
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  5935
                m enableAll:#(browseBlocksHome).
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  5936
            ] ifFalse:[
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  5937
                m disableAll:#(browseBlocksHome).
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  5938
            ].
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5939
        ] ifFalse:[
13408
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  5940
            m disableAll:#(browseImplementingClass browseReceiversClass browseClassHierarchy 
a29a1a5b7013 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13398
diff changeset
  5941
                           browseBlocksHome browseFullClassProtocol).
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5942
        ]
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5943
    ]
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5944
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  5945
    "Modified: / 19-07-2012 / 11:53:30 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5946
! !
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  5947
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5948
!DebugView methodsFor:'menu & button actions-breakpoints'!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5949
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5950
addBreakpoint
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5951
    "add a breakpoint on the selected contexts method - if any"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5952
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5953
    |implementorClass method|
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5954
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5955
    selectedContext isNil ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5956
        ^ self showError:'** select a context first **'
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5957
    ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5958
    (MessageTracer isNil or:[MessageTracer isLoaded not]) ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5959
        ^ self
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5960
    ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5961
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5962
    implementorClass := selectedContext methodClass.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5963
    implementorClass notNil ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5964
        method := implementorClass compiledMethodAt:selectedContext selector.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5965
        (method notNil and:[method isBreakpointed not]) ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5966
            method setBreakPoint
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5967
        ]
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5968
    ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5969
    contextView middleButtonMenu disable:#addBreakpoint.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5970
    contextView middleButtonMenu enable:#removeBreakpoint.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5971
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5972
    "Modified: / 13.1.1998 / 00:24:47 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5973
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5974
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5975
allowBreakPointsInDebugger
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5976
    ^ ignoreBreakpoints not
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5977
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5978
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5979
allowBreakPointsInDebugger:aBoolean
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5980
    ignoreBreakpoints := aBoolean not.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5981
    self initializeMiddleButtonMenu.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5982
    self initializeContextViewsMiddleButtonMenu.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5983
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5984
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5985
doIgnoreBreakpoints
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5986
    self allowBreakPointsInDebugger:false
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5987
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5988
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5989
doNotIgnoreBreakpoints
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5990
    self allowBreakPointsInDebugger:true
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5991
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  5992
14680
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  5993
ignoreAllHaltsForCurrentProcess
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  5994
    self 
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  5995
        addIgnoredHaltForCount:nil orTimeDuration:nil orUntilShiftKey:false 
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  5996
        orThisReceiverClass:false orCurrentProcess:true 
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  5997
        orIfCalledFromMethod:nil
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  5998
        forAll:true.
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  5999
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6000
    "Created: / 27-01-2012 / 11:32:14 / cg"
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6001
!
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6002
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6003
ignoreAllHaltsForThisReceiverClass
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6004
    self 
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6005
        addIgnoredHaltForCount:nil orTimeDuration:nil orUntilShiftKey:false 
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6006
        orThisReceiverClass:true orCurrentProcess:false 
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6007
        orIfCalledFromMethod:nil
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6008
        forAll:true.
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6009
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6010
    "Created: / 27-01-2012 / 11:32:14 / cg"
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6011
!
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6012
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6013
ignoreAllHaltsForever
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6014
    self 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6015
        addIgnoredHaltForCount:-1 orTimeDuration:nil orUntilShiftKey:false 
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6016
        orThisReceiverClass:false orCurrentProcess:false
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6017
        orIfCalledFromMethod:nil
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6018
        forAll:true.
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6019
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6020
    "Created: / 08-05-2011 / 10:19:56 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6021
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6022
14680
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6023
ignoreAllHaltsIfCalledFromMethod:aMethod
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6024
    self 
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6025
        addIgnoredHaltForCount:nil orTimeDuration:nil orUntilShiftKey:false 
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6026
        orThisReceiverClass:false orCurrentProcess:false 
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6027
        orIfCalledFromMethod:aMethod
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6028
        forAll:true.
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6029
!
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6030
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6031
ignoreAllHaltsUntilShiftKeyIsPressed
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6032
    self 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6033
        addIgnoredHaltForCount:nil orTimeDuration:nil orUntilShiftKey:true 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6034
        orThisReceiverClass:false orCurrentProcess:false 
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6035
        orIfCalledFromMethod:nil
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6036
        forAll:true.
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6037
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6038
    "Created: / 27-01-2012 / 11:32:14 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6039
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6040
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6041
ignoreBreakpointsWithThisParameterForever
11370
4aed54a6a78a changed:
Claus Gittinger <cg@exept.de>
parents: 11367
diff changeset
  6042
    Object disableBreakPoint:breakPointParameter.
4aed54a6a78a changed:
Claus Gittinger <cg@exept.de>
parents: 11367
diff changeset
  6043
    "/ self addIgnoredHaltForCount:-1 orTimeDuration:nil orUntilShiftKey:false forAll:false.
4aed54a6a78a changed:
Claus Gittinger <cg@exept.de>
parents: 11367
diff changeset
  6044
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6045
    "Created: / 06-03-2012 / 12:35:48 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6046
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6047
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6048
ignoreBreakpointsWithThisParameterUntilShiftKeyIsPressed
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6049
    self 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6050
        addIgnoredHaltForCount:nil orTimeDuration:nil orUntilShiftKey:true 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6051
        orThisReceiverClass:false orCurrentProcess:false 
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6052
        orIfCalledFromMethod:nil
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6053
        forAll:false.
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6054
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6055
    "Created: / 06-03-2012 / 12:35:22 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6056
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6057
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6058
ignoreHaltForCurrentProcess
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6059
    self 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6060
        addIgnoredHaltForCount:nil orTimeDuration:nil orUntilShiftKey:false 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6061
        orThisReceiverClass:false orCurrentProcess:true 
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6062
        orIfCalledFromMethod:nil
12941
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  6063
        forAll:false.
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6064
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6065
    "Created: / 27-01-2012 / 11:32:14 / cg"
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6066
!
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6067
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6068
ignoreHaltForThisReceiverClass
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6069
    self 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6070
        addIgnoredHaltForCount:nil orTimeDuration:nil orUntilShiftKey:false 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6071
        orThisReceiverClass:true orCurrentProcess:false 
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6072
        orIfCalledFromMethod:nil
12941
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  6073
        forAll:false.
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6074
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6075
    "Created: / 27-01-2012 / 11:32:14 / cg"
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6076
!
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6077
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6078
ignoreHaltForever
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6079
    self 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6080
        addIgnoredHaltForCount:-1 orTimeDuration:nil orUntilShiftKey:false 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6081
        orThisReceiverClass:false orCurrentProcess:false 
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6082
        orIfCalledFromMethod:nil
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6083
        forAll:false.
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6084
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6085
    "Modified: / 27-01-2012 / 11:31:37 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6086
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6087
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6088
ignoreHaltIfCalledFromMethod:aMethod
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6089
    self 
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6090
        addIgnoredHaltForCount:nil orTimeDuration:nil orUntilShiftKey:false 
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6091
        orThisReceiverClass:false orCurrentProcess:false 
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6092
        orIfCalledFromMethod:aMethod
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6093
        forAll:false.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6094
!
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6095
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6096
ignoreHaltUntilShiftKeyIsPressed
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6097
    self 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6098
        addIgnoredHaltForCount:nil orTimeDuration:nil orUntilShiftKey:true 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6099
        orThisReceiverClass:false orCurrentProcess:false 
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6100
        orIfCalledFromMethod:nil
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6101
        forAll:false.
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6102
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6103
    "Created: / 27-01-2012 / 11:36:54 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6104
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6105
14680
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6106
menuForIgnoreAllBreakpointsIfCalledFromAnyOf
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6107
    <resource: #programMenu >
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6108
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6109
    ^ self menuForIgnoreBreakpointIfCalledFromAnyOfForAll:true
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6110
!
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6111
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6112
menuForIgnoreBreakpointIfCalledFromAnyOf
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6113
    <resource: #programMenu >
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6114
14680
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6115
    ^ self menuForIgnoreBreakpointIfCalledFromAnyOfForAll:false
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6116
!
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6117
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6118
menuForIgnoreBreakpointIfCalledFromAnyOfForAll:forAllHaltsBoolean
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6119
    <resource: #programMenu >
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6120
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6121
    |m count already|
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6122
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6123
    m := Menu new.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6124
    count := 0.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6125
    already := IdentitySet new.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6126
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6127
    contextArray do:[:con |
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6128
        |mthd cls sel|
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6129
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6130
        mthd := con method.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6131
        mthd notNil ifTrue:[
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6132
            mthd isWrapped ifFalse:[
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6133
                (already includes:already) ifFalse:[
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6134
                    already add:mthd.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6135
                    m addItem:(MenuItem 
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6136
                                label: (mthd whoString)
14680
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6137
                                itemValue: [ forAllHaltsBoolean
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6138
                                                ifTrue:[self ignoreHaltIfCalledFromMethod:mthd]
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6139
                                                ifFalse:[self ignoreAllHaltsIfCalledFromMethod:mthd]
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  6140
                                           ]
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6141
                                translateLabel: false).
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6142
                    count := count + 1.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6143
                    (count > 20) ifTrue:[
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6144
                        ^ m
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6145
                    ].
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6146
                ]
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6147
            ]
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6148
        ]
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6149
    ].
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6150
    ^ m
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6151
!
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6152
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6153
openBreakPointBrowser
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6154
    Tools::BreakpointBrowser open
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6155
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6156
    "Created: / 27-10-2010 / 12:52:49 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6157
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6158
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6159
openIgnoreAllHaltsUntilTimeElapsedDialog
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6160
    |answer dT|
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6161
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6162
    [
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6163
        answer := Dialog
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6164
                    request:(resources string:'How long should all halts/breakpoints be ignored [smh] ?')
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6165
                    initialAnswer:(LastIgnoreHaltDuration ? '30s') printString.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6166
        answer isEmptyOrNil ifTrue:[^ self].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6167
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6168
        dT := TimeDuration readFrom:answer onError:[ nil ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6169
        dT notNil ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6170
            LastIgnoreHaltDuration := dT.
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6171
            self 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6172
                addIgnoredHaltForCount:nil orTimeDuration:dT orUntilShiftKey:false 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6173
                orThisReceiverClass:false orCurrentProcess:false 
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6174
                orIfCalledFromMethod:nil
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6175
                forAll:true.
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6176
            ^ self.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6177
        ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6178
    ] loop
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6179
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6180
    "Created: / 08-05-2011 / 10:19:20 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6181
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6182
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6183
openIgnoreBreakpointsWithThisParameterNTimesDialog
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6184
    |answer n|
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6185
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6186
    [
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6187
        answer := Dialog
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6188
                    request:(resources 
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6189
                                string:'How often should breakpoints with parameter "%1" be ignored ?'
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6190
                                with:breakPointParameter)
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6191
                    initialAnswer:(LastIgnoreHaltNTimes ? '') printString.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6192
        answer isEmptyOrNil ifTrue:[^ self].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6193
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6194
        n := Integer readFrom:answer onError:nil.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6195
        n notNil ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6196
            LastIgnoreHaltNTimes := n.
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6197
            self 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6198
                addIgnoredHaltForCount:n orTimeDuration:nil orUntilShiftKey:false 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6199
                orThisReceiverClass:false orCurrentProcess:false 
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6200
                orIfCalledFromMethod:nil
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6201
                forAll:false.
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6202
            ^ self.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6203
        ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6204
    ] loop.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6205
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6206
    "Modified: / 27-01-2012 / 11:31:44 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6207
    "Created: / 06-03-2012 / 12:28:51 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6208
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6209
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6210
openIgnoreBreakpointsWithThisParameterUntilTimeElapsedDialog
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6211
    |answer dT|
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6212
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6213
    [
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6214
        answer := Dialog
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6215
                    request:(resources 
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6216
                                string:'How long should breakpoints with parameter "%1" be ignored (s/m/h) ?'
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6217
                                with:breakPointParameter)
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6218
                    initialAnswer:(LastIgnoreHaltDuration ? '30s') printString.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6219
        answer isEmptyOrNil ifTrue:[^ self].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6220
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6221
        dT := TimeDuration readFrom:answer onError:[ nil ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6222
        dT notNil ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6223
            LastIgnoreHaltDuration := dT.
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6224
            self 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6225
                addIgnoredHaltForCount:nil orTimeDuration:dT orUntilShiftKey:false 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6226
                orThisReceiverClass:false orCurrentProcess:false 
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6227
                orIfCalledFromMethod:nil
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6228
                forAll:false.
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6229
            ^ self.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6230
        ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6231
    ] loop
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6232
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6233
    "Created: / 06-03-2012 / 12:03:36 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6234
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6235
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6236
openIgnoreHaltNTimesDialog
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6237
    |answer n|
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6238
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6239
    [
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6240
        answer := Dialog
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6241
                    request:(resources string:'How often should this halt be ignored ?')
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6242
                    initialAnswer:(LastIgnoreHaltNTimes ? '') printString.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6243
        answer isEmptyOrNil ifTrue:[^ self].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6244
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6245
        n := Integer readFrom:answer onError:nil.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6246
        n notNil ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6247
            LastIgnoreHaltNTimes := n.
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6248
            self 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6249
                addIgnoredHaltForCount:n orTimeDuration:nil orUntilShiftKey:false 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6250
                orThisReceiverClass:false orCurrentProcess:false 
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6251
                orIfCalledFromMethod:nil
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6252
                forAll:false.
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6253
            ^ self.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6254
        ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6255
    ] loop.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6256
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6257
    "Modified: / 27-01-2012 / 11:31:44 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6258
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6259
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6260
openIgnoreHaltUntilTimeElapsedDialog
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6261
    |answer dT|
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6262
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6263
    [
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6264
        answer := Dialog
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6265
                    request:(resources string:'How long should this halt/breakpoint be ignored (s/m/h) ?')
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6266
                    initialAnswer:(LastIgnoreHaltDuration ? '30s') printString.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6267
        answer isEmptyOrNil ifTrue:[^ self].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6268
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6269
        dT := TimeDuration readFrom:answer onError:[ nil ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6270
        dT notNil ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6271
            LastIgnoreHaltDuration := dT.
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6272
            self 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6273
                addIgnoredHaltForCount:nil orTimeDuration:dT orUntilShiftKey:false 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6274
                orThisReceiverClass:false orCurrentProcess:false 
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6275
                orIfCalledFromMethod:nil
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6276
                forAll:false.
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6277
            ^ self.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6278
        ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6279
    ] loop
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6280
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6281
    "Modified: / 27-01-2012 / 11:31:47 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6282
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6283
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6284
removeAllBreakpoints
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6285
    "remove all trace & breakpoints - if any"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6286
14532
72c1d3cae279 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14531
diff changeset
  6287
    self withExecuteCursorDo:[
72c1d3cae279 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14531
diff changeset
  6288
        (MessageTracer notNil and:[MessageTracer isLoaded]) ifTrue:[
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6289
            MessageTracer unwrapAllMethods
14532
72c1d3cae279 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14531
diff changeset
  6290
        ].
72c1d3cae279 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14531
diff changeset
  6291
        (MethodWithBreakpoints notNil and:[MethodWithBreakpoints isLoaded]) ifTrue:[
72c1d3cae279 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14531
diff changeset
  6292
            MethodWithBreakpoints removeAllBreakpoints
72c1d3cae279 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14531
diff changeset
  6293
        ].
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6294
    ]
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6295
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6296
    "Modified: / 21.5.1998 / 01:44:43 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6297
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6298
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6299
removeBreakpoint
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6300
    "remove breakpoint on the selected contexts method - if any"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6301
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6302
    |implementorClass method|
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6303
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6304
    selectedContext isNil ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6305
        ^ self showError:'** select a context first **'
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6306
    ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6307
    (MessageTracer isNil or:[MessageTracer isLoaded not]) ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6308
        ^ self
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6309
    ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6310
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6311
    implementorClass := selectedContext methodClass.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6312
    implementorClass notNil ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6313
        method := implementorClass compiledMethodAt:selectedContext selector.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6314
        (method notNil and:[method isBreakpointed]) ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6315
            method clearBreakPoint
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6316
        ]
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6317
    ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6318
    contextView middleButtonMenu disable:#removeBreakpoint.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6319
    contextView middleButtonMenu enable:#addBreakpoint.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6320
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6321
    "Modified: / 13.1.1998 / 00:24:47 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6322
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6323
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6324
stopIgnoringHalts
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6325
    self class stopIgnoringHalts
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6326
! !
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6327
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6328
!DebugView methodsFor:'private'!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6329
6487
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  6330
abortAllIsHandled
9750
1b2ef761d2d0 changed: #abortAllIsHandled
Claus Gittinger <cg@exept.de>
parents: 9688
diff changeset
  6331
    ^ AbortAllOperationWantedQuery query
1b2ef761d2d0 changed: #abortAllIsHandled
Claus Gittinger <cg@exept.de>
parents: 9688
diff changeset
  6332
1b2ef761d2d0 changed: #abortAllIsHandled
Claus Gittinger <cg@exept.de>
parents: 9688
diff changeset
  6333
    "Modified: / 09-02-2011 / 13:53:13 / cg"
6487
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  6334
!
ad82a074feae new menu action: abortAll
Claus Gittinger <cg@exept.de>
parents: 6464
diff changeset
  6335
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6336
busy
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6337
    ^ busy
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6338
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6339
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6340
exclusive:aBoolean
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6341
    exclusive := aBoolean
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6342
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6343
3517
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6344
explainSelection
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6345
    |interval crsrPos|
3517
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6346
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6347
    interval := self selectedInterval.
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6348
    interval isEmpty ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6349
        crsrPos := codeView characterPositionOfCursor.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6350
        codeView characterUnderCursor isSeparator ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6351
            crsrPos := (crsrPos - 1) max:1
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6352
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6353
        interval := crsrPos to:crsrPos.
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  6354
    ].
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  6355
    self
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6356
        withNodeValueAtInterval:interval
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6357
        do:[:value :description |
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6358
            self showValue:value
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6359
        ].
3517
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6360
!
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6361
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6362
findNodeForInterval:interval
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6363
    |source|
3517
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6364
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6365
    interval isEmpty ifTrue: [^ nil].
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6366
8487
ddf59247960c slow runArray (text) operations
Claus Gittinger <cg@exept.de>
parents: 8432
diff changeset
  6367
    source := codeView contentsAsString string.
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  6368
"/    source := currentMethod notNil
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  6369
"/                ifTrue:[ currentMethod source ]
8396
1bda666dc0e9 flyby help
Claus Gittinger <cg@exept.de>
parents: 8347
diff changeset
  6370
"/                ifFalse:[ codeView contents asString ].
8257
106d3fecbca0 findNodeForInterval: care for nonexisting source
Claus Gittinger <cg@exept.de>
parents: 8225
diff changeset
  6371
    source isNil ifTrue:[^ nil].
8214
87b74dc47b98 flyByHelp fixed
Claus Gittinger <cg@exept.de>
parents: 8213
diff changeset
  6372
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6373
    ^ DoWhatIMeanSupport findNodeForInterval:interval in:(source string) allowErrors:true.
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6374
"/    ^ DoWhatIMeanSupport findNodeForInterval:interval in:(source string).
3517
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6375
!
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6376
7912
3c7e853977b7 codeCompletion added
Claus Gittinger <cg@exept.de>
parents: 7888
diff changeset
  6377
findNodeIn:tree forInterval:interval
3c7e853977b7 codeCompletion added
Claus Gittinger <cg@exept.de>
parents: 7888
diff changeset
  6378
    <resource: #obsolete>
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  6379
3517
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6380
    |node|
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6381
7912
3c7e853977b7 codeCompletion added
Claus Gittinger <cg@exept.de>
parents: 7888
diff changeset
  6382
self obsoleteMethodWarning.
3517
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6383
    node := nil.
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  6384
    tree nodesDo:[:each |
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6385
        (each intersectsInterval:interval) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6386
            (node isNil or:[node == each parent]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6387
                node := each
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6388
            ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6389
                (node parent notNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6390
                    and:[node parent isCascade and:[each parent isCascade]]) ifFalse:[^ nil]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6391
            ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6392
        ]
3517
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6393
    ].
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6394
    ^ node
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6395
!
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6396
2581
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  6397
goodSkipUntilSelector
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  6398
    |current|
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  6399
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  6400
    lastStepUntilEntering notNil ifTrue:[^ lastStepUntilEntering].
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  6401
    selectedContext isNil ifTrue:[^ nil].
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  6402
    current := selectedContext selector.
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  6403
    current isNil ifTrue:[^ nil].
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  6404
    ('change:*' match:current) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6405
        ^ 'update:*'
2581
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  6406
    ].
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  6407
    ^ nil
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  6408
!
6593d7ee2f3e added skip until entering
Claus Gittinger <cg@exept.de>
parents: 2577
diff changeset
  6409
8179
79462318090d ignoring for some time;
Claus Gittinger <cg@exept.de>
parents: 8171
diff changeset
  6410
haltSelectors
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6411
    ^ #( #'halt' #'halt:' #'breakPoint:' #'breakPoint:info:' #'break').
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6412
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6413
    "Modified (format): / 27-01-2012 / 11:10:00 / cg"
8179
79462318090d ignoring for some time;
Claus Gittinger <cg@exept.de>
parents: 8171
diff changeset
  6414
!
79462318090d ignoring for some time;
Claus Gittinger <cg@exept.de>
parents: 8171
diff changeset
  6415
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6416
interruptProcessWith:aBlock
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6417
    "let inspected process do something, then update the context list"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6418
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6419
    inspectedProcess isDead ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6420
        self showTerminated.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6421
        ^ self
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6422
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6423
    inspectedProcess interruptWith:aBlock.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6424
    "
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6425
     give the process a chance to run, then update
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6426
    "
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6427
    (Delay forSeconds:0.2) wait.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6428
    self setContext:(inspectedProcess suspendedContext).
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6429
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6430
2317
c2000833c86d care mayProceed information.
Claus Gittinger <cg@exept.de>
parents: 2313
diff changeset
  6431
mayProceed:aBoolean
c2000833c86d care mayProceed information.
Claus Gittinger <cg@exept.de>
parents: 2313
diff changeset
  6432
    mayProceed := aBoolean
c2000833c86d care mayProceed information.
Claus Gittinger <cg@exept.de>
parents: 2313
diff changeset
  6433
!
c2000833c86d care mayProceed information.
Claus Gittinger <cg@exept.de>
parents: 2313
diff changeset
  6434
8194
051110bdd147 button panels
Claus Gittinger <cg@exept.de>
parents: 8193
diff changeset
  6435
openHTMLDocument: anHTMLFilename
051110bdd147 button panels
Claus Gittinger <cg@exept.de>
parents: 8193
diff changeset
  6436
    "open a HTMLDocumentView on anHTMLFilename"
051110bdd147 button panels
Claus Gittinger <cg@exept.de>
parents: 8193
diff changeset
  6437
051110bdd147 button panels
Claus Gittinger <cg@exept.de>
parents: 8193
diff changeset
  6438
    HTMLDocumentView openFullOnDocumentationFile: anHTMLFilename
051110bdd147 button panels
Claus Gittinger <cg@exept.de>
parents: 8193
diff changeset
  6439
!
051110bdd147 button panels
Claus Gittinger <cg@exept.de>
parents: 8193
diff changeset
  6440
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6441
processPerform:aMessage
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6442
    "do something, then update the context list"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6443
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6444
    inspectedProcess isDead ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6445
        self showTerminated.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6446
        ^ self
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6447
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6448
    inspectedProcess perform:aMessage.
9348
df88a9a5ef36 added: browseProcessesApplication
Claus Gittinger <cg@exept.de>
parents: 9337
diff changeset
  6449
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6450
    "
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6451
     give the process a chance to run, then update
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6452
    "
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6453
    (Delay forSeconds:0.2) wait.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6454
    self setContext:(inspectedProcess suspendedContext).
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6455
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  6456
939
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  6457
redisplayBacktrace
1394
7765db9114ff more context hiding in dense-walkback mode
Claus Gittinger <cg@exept.de>
parents: 1388
diff changeset
  6458
    "force redisplay of the walkBack list; invoked when the
7765db9114ff more context hiding in dense-walkback mode
Claus Gittinger <cg@exept.de>
parents: 1388
diff changeset
  6459
     verbose-flag setting is changed"
7765db9114ff more context hiding in dense-walkback mode
Claus Gittinger <cg@exept.de>
parents: 1388
diff changeset
  6460
939
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  6461
    |oldSelection oldContext con idx|
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  6462
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  6463
    contextArray notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6464
        self withExecuteCursorDo:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6465
            oldSelection := contextView selection.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6466
            oldSelection notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6467
                oldContext := contextArray at:oldSelection ifAbsent:nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6468
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6469
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6470
            con := firstContext.
950
f1df338e6a78 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 949
diff changeset
  6471
"/            con := contextArray at:1.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6472
            "/ force redeisplay, even if same by changing the first entry
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6473
            contextArray size > 0 ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6474
                contextArray at:1 put:nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6475
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6476
            self setContext:con.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6477
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6478
            oldContext isNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6479
                idx := oldSelection
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6480
            ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6481
                idx := contextArray identityIndexOf:oldContext ifAbsent:nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6482
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6483
            contextView setSelection:idx.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6484
            idx notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6485
                self showSelection:idx
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6486
            ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6487
        ]
939
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  6488
    ]
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  6489
1394
7765db9114ff more context hiding in dense-walkback mode
Claus Gittinger <cg@exept.de>
parents: 1388
diff changeset
  6490
    "Created: / 10.1.1997 / 21:36:46 / cg"
1661
ba0ed1c5e137 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1646
diff changeset
  6491
    "Modified: / 21.5.1998 / 01:47:07 / cg"
939
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  6492
!
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  6493
3517
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6494
selectedInterval
7912
3c7e853977b7 codeCompletion added
Claus Gittinger <cg@exept.de>
parents: 7888
diff changeset
  6495
    ^ codeView selectedInterval
3517
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6496
!
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  6497
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6498
showError:message
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6499
    codeView contents:(resources string:message).
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6500
    shown ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6501
        exclusive ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6502
            "/ consider this a kludge:
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6503
            "/ if exclusive, cannot use flash, since it suspends
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6504
            "/ (but we cannot suspend here ...)
13965
6213444511ae class: DebugView
Stefan Vogel <sv@exept.de>
parents: 13934
diff changeset
  6505
            codeView redrawInverted. self flush.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6506
            OperatingSystem millisecondDelay:200.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6507
            codeView redraw
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6508
        ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6509
            codeView flash
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6510
        ]
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6511
    ]
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6512
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6513
    "Modified: / 18.11.2001 / 00:01:13 / cg"
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6514
!
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6515
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6516
showTerminated
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6517
    self showError:'** the process has terminated **'
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6518
!
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6519
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6520
showValue:aValue
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6521
    "/ TODO: show value in info field
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6522
    "/ Transcript showCR:aValue printString
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6523
!
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6524
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  6525
stepping
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  6526
    ^ stepping
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  6527
!
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  6528
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  6529
unstep
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6530
    stepping := false.
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6531
    bigStep := false.
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6532
    steppedContext := wrapperContext := nil.
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6533
    exitAction := nil
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6534
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6535
    "Modified: 22.10.1996 / 11:59:57 / cg"
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6536
!
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6537
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
  6538
updateButtonsAndMenuItemsForContext:aContext
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
  6539
    |m|
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
  6540
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
  6541
    m := contextView middleButtonMenu.
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
  6542
    m notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6543
        self updateMenuItems.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6544
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6545
        (inspecting or:[AbortOperationRequest isHandledIn:aContext]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6546
            abortButton enable.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6547
            m enable:#doAbort.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6548
        ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6549
            abortButton disable.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6550
            m disable:#doAbort.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6551
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6552
        exclusive ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6553
            terminateButton disable.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6554
            m disable:#doTerminate.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6555
        ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6556
            terminateButton enable.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6557
            m enable:#doTerminate.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6558
        ].
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
  6559
    ].
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
  6560
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
  6561
    mayProceed == false ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6562
        continueButton disable.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6563
        m notNil ifTrue:[m disable:#doContinue].
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
  6564
    ] ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6565
        continueButton enable.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6566
        m notNil ifTrue:[m enable:#doContinue]
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
  6567
    ].
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
  6568
13363
4cc837ad3854 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13362
diff changeset
  6569
    isStoppedInModalDialog ifTrue:[
13362
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  6570
        gotoDialogOpenerButton enable.
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  6571
        gotoDialogOpenerButton beVisible.
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  6572
    ] ifFalse:[
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  6573
        gotoDialogOpenerButton beInvisible.
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  6574
    ].
d21110a7dded class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13361
diff changeset
  6575
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  6576
    (isStoppedInModalDialog not & isStoppedInApplicationAction) ifTrue:[
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  6577
        gotoApplicationActionMethodButton enable.
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  6578
        gotoApplicationActionMethodButton beVisible.
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  6579
    ] ifFalse:[
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  6580
        gotoApplicationActionMethodButton beInvisible.
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  6581
    ].
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  6582
10203
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
  6583
    "Created: / 06-07-2011 / 12:24:53 / cg"
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
  6584
!
Claus Gittinger <cg@exept.de>
parents: 9922
diff changeset
  6585
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6586
updateContext
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6587
    |oldContext idx|
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6588
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6589
    inspectedProcess state == #dead ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6590
        self showTerminated.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6591
        ^ self
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6592
    ].
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6593
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6594
    oldContext := selectedContext.
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6595
    [
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6596
        (self setContextSkippingInterruptContexts:inspectedProcess suspendedContext) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6597
            oldContext notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6598
                contextArray notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6599
                    idx := contextArray identityIndexOf:oldContext.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6600
                    idx ~~ 0 ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6601
                        self showSelection:idx
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6602
                    ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6603
                        codeView contents:('** context returned **')
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6604
                    ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6605
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6606
            ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6607
        ].
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6608
    ] valueUninterruptably.
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6609
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6610
    "Modified: 20.10.1996 / 18:11:24 / cg"
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6611
!
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6612
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6613
withNodeValueAtInterval:interval do:aBlock
14122
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6614
    "helper for flyByHelp and explan-selection"
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6615
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6616
    |node definingNode nm nmBold nameSymbol 
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6617
     varIdx parentNode receiver con receiversNonMetaClass|
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6618
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6619
    "/ interval printCR.
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  6620
    Error
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6621
        handle:[:ex | ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6622
        do:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6623
            [
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6624
                node := self findNodeForInterval:interval
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6625
            ] valueWithWatchDog:[ ^ self ] afterMilliseconds:50.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6626
        ].
9314
e58b9abd145a comment/format in: #withNodeValueAtInterval:do:
Claus Gittinger <cg@exept.de>
parents: 9308
diff changeset
  6627
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6628
    node isNil ifTrue:[ ^ self ].
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  6629
    node isVariable ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6630
        "/ Transcript showCR:node.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6631
        ^ self
8592
6a544f86c279 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8580
diff changeset
  6632
    ].
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6633
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6634
    nm := node name.
8214
87b74dc47b98 flyByHelp fixed
Claus Gittinger <cg@exept.de>
parents: 8213
diff changeset
  6635
    nmBold := nm allBold.
8600
7b68bafada1b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8595
diff changeset
  6636
    actualContext isNil ifTrue:[^ self ].
8636
fc9c77c184a8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8626
diff changeset
  6637
    actualContext methodHome isNil ifTrue:[^ self ].
8214
87b74dc47b98 flyByHelp fixed
Claus Gittinger <cg@exept.de>
parents: 8213
diff changeset
  6638
    receiver := actualContext methodHome receiver.
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6639
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6640
    (nm = 'self') ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6641
        aBlock value:receiver value:'receiver' allBold.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6642
        ^ self
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6643
    ].
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6644
    (nm = 'super') ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6645
        aBlock value:receiver value:'receiver' allBold.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6646
        ^ self
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6647
    ].
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6648
    (nm = 'thisContext') ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6649
        aBlock value:actualContext value:'context' allBold.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6650
        ^ self
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6651
    ].
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6652
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6653
    definingNode := node whoDefines:nm.
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6654
    definingNode isNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6655
        (receiver class allInstVarNames includes:nm) ifTrue:[
8214
87b74dc47b98 flyByHelp fixed
Claus Gittinger <cg@exept.de>
parents: 8213
diff changeset
  6656
"/aBlock value:'xIII' value:'instVar'.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6657
            receiver class isMetaclass ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6658
                aBlock value:(receiver instVarNamed:nm) value:'classInstVar ',nmBold.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6659
            ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6660
                aBlock value:(receiver instVarNamed:nm) value:'instVar ',nmBold.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6661
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6662
            ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6663
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6664
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6665
        receiversNonMetaClass := receiver class theNonMetaclass.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6666
        (receiversNonMetaClass privateClasses contains:[:cls | cls nameWithoutPrefix = nm]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6667
            aBlock value:'' value:'private class ',nmBold.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6668
            ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6669
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6670
        (receiversNonMetaClass classVarNames includes:nm) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6671
            aBlock value:((currentMethod mclass ? receiversNonMetaClass) theNonMetaclass classVarAt:nm) value:'classVar ',nmBold.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6672
            ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6673
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6674
        receiversNonMetaClass sharedPoolNames do:[:eachPoolName |
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6675
            |pool|
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6676
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6677
            pool := Smalltalk at:eachPoolName.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6678
            pool isNil ifTrue:[ pool := receiversNonMetaClass topNameSpace at:eachPoolName].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6679
            (pool classVarNames includes:nm) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6680
                aBlock value:(pool classVarAt:nm) value:'poolVar ',nm allBold,' in ',eachPoolName allBold,' '.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6681
                ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6682
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6683
        ].
14122
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6684
        nameSymbol := nm asSymbolIfInterned.
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6685
        nameSymbol notNil ifTrue:[
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6686
            (Smalltalk includesKey:nameSymbol) ifTrue:[
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6687
                (Smalltalk at:nameSymbol) isClass ifTrue:[
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6688
                    aBlock value:'class: ',nmBold value:nil.
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6689
                ] ifFalse:[
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6690
                    aBlock value:(Smalltalk at:nameSymbol) value:'global ',nmBold.
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6691
                ].
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6692
                ^ self
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6693
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6694
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6695
        aBlock value:'' value:'unknown'.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6696
        ^ self
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6697
    ].
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6698
"/definingNode printCR.
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6699
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6700
    definingNode isMethod ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6701
        varIdx := definingNode arguments findFirst:[:arg | arg name = nm].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6702
        varIdx ~~ 0 ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6703
            Error
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6704
                handle:[:ex | ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6705
                do:[ aBlock value:(actualContext methodHome argAt:varIdx) value:'methodArg ',nmBold ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6706
            ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6707
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6708
        varIdx := definingNode temporaries findFirst:[:var | var name = nm].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6709
        varIdx ~~ 0 ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6710
            actualContext methodHome numVars >= varIdx ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6711
                Error
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6712
                    handle:[:ex | ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6713
                    do:[ aBlock value:(actualContext methodHome varAt:varIdx) value:'methodVar ',nmBold ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6714
                ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6715
            ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6716
        ].
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6717
    ].
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6718
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6719
    definingNode isBlock ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6720
        varIdx := definingNode arguments findFirst:[:arg | arg name = nm].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6721
        (definingNode arguments contains:[:arg | arg name = nm]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6722
            varIdx ~~ 0 ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6723
                "/ am I in this block ?
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6724
                (actualContext lineNumber notNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6725
                and:[ definingNode lastLineNumber notNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6726
                and:[ (actualContext lineNumber
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6727
                            between:definingNode firstLineNumber
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6728
                            and:definingNode lastLineNumber)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6729
                and:[ varIdx <= actualContext numArgs ] ]])
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6730
                ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6731
                    aBlock value:(actualContext argAt:varIdx) value:'blockArg ',nmBold .
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6732
                    ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6733
                ].
14122
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6734
                aBlock value:nmBold , ' is not in scope of selected context' value:nil.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6735
                ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6736
            ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6737
        ].
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6738
    ].
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6739
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6740
    parentNode := definingNode parent.
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6741
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6742
    [parentNode notNil] whileTrue:[
14122
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6743
        "/'isMethod ' print. parentNode isMethod printCR.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6744
        parentNode isMethod ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6745
            varIdx := parentNode temporaries findFirst:[:var | var name = nm].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6746
            varIdx ~~ 0 ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6747
                actualContext methodHome numVars >= varIdx ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6748
                    Error
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6749
                        handle:[:ex | ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6750
                        do:[ aBlock value:(actualContext methodHome varAt:varIdx) value:'methodVar ',nmBold ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6751
                    ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6752
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6753
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6754
        ].
14122
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6755
        "/'isBlock ' print. parentNode isBlock printCR.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6756
        parentNode isBlock ifTrue:[
14122
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6757
            "/ we don't have any information on the inlineability
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6758
            "/ of this block here (RBParser does not know what
14122
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6759
            "/ the compiler does).
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6760
            "/ therefore, it is questionable if we can use the
14122
c255f0f49ce0 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14109
diff changeset
  6761
            "/ context's home context here.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6762
            "/ am I in this block ?
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6763
            con := actualContext.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6764
            [con notNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6765
            and:[ parentNode lastLineNumber notNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6766
            and:[ con lineNumber notNil
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6767
            and:[ con lineNumber
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6768
                    between:parentNode firstLineNumber
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6769
                    and:parentNode lastLineNumber ]]]] whileTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6770
                con := con sender.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6771
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6772
            con notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6773
                varIdx := parentNode arguments findFirst:[:arg | arg name = nm].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6774
                varIdx ~~ 0 ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6775
                    Error
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6776
                        handle:[:ex | ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6777
                        do:[ aBlock value:(con argAt:varIdx) value:'blockArg ',nmBold ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6778
                    ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6779
                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6780
                varIdx := parentNode body temporaries findFirst:[:var | var name = nm].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6781
                varIdx ~~ 0 ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6782
                    Error
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6783
                        handle:[:ex | ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6784
                        do:[ aBlock value:(con varAt:varIdx) value:'blockVar ',nmBold ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6785
                    ^ self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6786
                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6787
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6788
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6789
        parentNode := parentNode parent.
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  6790
    ].
8214
87b74dc47b98 flyByHelp fixed
Claus Gittinger <cg@exept.de>
parents: 8213
diff changeset
  6791
    aBlock value:nmBold , ' is not in scope of selected context' value:nil.
9446
be34faef3546 changed:
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
  6792
9688
805ea34ba3ef changed: #withNodeValueAtInterval:do:
Claus Gittinger <cg@exept.de>
parents: 9662
diff changeset
  6793
    "Modified: / 18-01-2011 / 17:57:34 / cg"
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6794
! !
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6795
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6796
!DebugView methodsFor:'private queries'!
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6797
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6798
canBrowseClassHierarchy
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6799
    |m|
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6800
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6801
    m := contextView middleButtonMenu.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6802
    ^ m notNil and:[m isEnabled:#browseClassHierarchy]
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6803
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6804
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6805
canBrowseFullClassProtocol
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6806
    |m|
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6807
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6808
    m := contextView middleButtonMenu.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6809
    ^ m notNil and:[m isEnabled:#browseFullClassProtocol]
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6810
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6811
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6812
canBrowseImplementingClass
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6813
    |m|
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6814
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6815
    m := contextView middleButtonMenu.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6816
    ^ m notNil and:[m isEnabled:#browseImplementingClass]
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6817
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6818
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6819
canBrowseProcessesApplication
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6820
    |p|
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6821
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6822
    p := inspectedProcess ? Processor activeProcess.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6823
    p isNil ifTrue:[^ false].
14430
c5408e02eebd class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14356
diff changeset
  6824
    ^ p isGUIProcess and:[self processesApplication notNil ].
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6825
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6826
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6827
canBrowseReceiversClass
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6828
    |m|
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6829
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6830
    m := contextView middleButtonMenu.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6831
    ^ m notNil and:[m isEnabled:#browseReceiversClass]
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6832
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6833
11457
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  6834
canCloseAllDebuggers
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  6835
    self class allInstancesDo:[:debugger | 
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  6836
        debugger ~~ self ifTrue:[
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  6837
            debugger busy ifTrue:[^ true].
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  6838
        ]
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  6839
    ].
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  6840
    ^ false
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  6841
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  6842
    "Created: / 23-03-2012 / 12:40:18 / cg"
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  6843
!
b304a867b5e0 added: closeAllDebuggers functions
Claus Gittinger <cg@exept.de>
parents: 11443
diff changeset
  6844
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6845
canDefineMethod
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6846
    ^ defineButton isVisible
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6847
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6848
12840
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  6849
canInspectWidgetHierarchy
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  6850
    |rcvr|
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  6851
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  6852
    ^ selectedContext notNil
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  6853
    and:[ (rcvr := selectedContext receiver) isView
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  6854
          or:[ rcvr isKindOf: ApplicationModel ]]
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  6855
!
6ac068e01016 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12839
diff changeset
  6856
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6857
canRestart
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6858
    ^ restartButton isEnabled
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6859
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6860
    "Modified: / 17.11.2001 / 19:59:49 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6861
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6862
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6863
canReturn
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6864
    ^ returnButton isEnabled
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6865
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6866
    "Modified: / 17.11.2001 / 19:59:18 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6867
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6868
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6869
canSendEmail
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6870
    ^ SendMailTool notNil
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6871
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6872
    "Created: / 15-10-2010 / 11:51:23 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6873
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6874
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6875
canShowMore
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6876
    ^ canShowMore
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6877
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6878
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6879
hasContextSelected
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6880
    ^ contextView hasSelection
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6881
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6882
    "Created: / 17.11.2001 / 19:57:03 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6883
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6884
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6885
hasHaltsToIgnore
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6886
    ^ IgnoredHalts notEmptyOrNil
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6887
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6888
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6889
isAborting
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6890
    ^ exitAction == #abort
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6891
!
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6892
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6893
isStoppedAtBreakPointWithParameter
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6894
    ^ isStoppedAtBreakPointWithParameter
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6895
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6896
    "Created: / 06-03-2012 / 12:16:56 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6897
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6898
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6899
isStoppedAtHaltOrBreakPoint
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6900
    ^ isStoppedAtHaltOrBreakPoint
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6901
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6902
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6903
isStoppedAtHaltOrBreakPointOrSelectedContextIsWrapped
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6904
    ^ isStoppedAtHaltOrBreakPoint or:[self selectedContextIsWrapped]
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6905
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6906
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6907
selectedContextIsWrapped
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6908
    |con mthd|
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6909
11595
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  6910
    (con := self selectedContext) notNil ifTrue:[
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  6911
        mthd := con method.
11595
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  6912
        ^ mthd notNil and:[mthd isWrapped]
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6913
    ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6914
    ^ false.
11595
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  6915
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  6916
    "Modified: / 19-07-2012 / 11:36:28 / cg"
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6917
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  6918
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6919
setOfHiddenCallingSelectors
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6920
    ^ setOfHiddenCallingSelectors ? #( #'doIt' #'doIt:' )
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6921
!
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6922
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6923
setOfHiddenCallingSelectors:aCollectionOfSymbols
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6924
    setOfHiddenCallingSelectors := aCollectionOfSymbols
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6925
! !
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  6926
9922
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6927
!DebugView methodsFor:'private-breakpoints'!
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6928
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6929
addIgnoredHaltForCount:countOrNil 
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6930
        orTimeDuration:dTOrNil orUntilShiftKey:untilShiftKey 
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6931
        orThisReceiverClass:forThisReceiverClass orCurrentProcess:forCurrentProcess
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6932
        orIfCalledFromMethod:ifCalledForMethodOrNil
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6933
        forAll:aBoolean
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6934
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6935
    |haltingContext haltingMethod lineNrOfHalt receiverClassOrNil processOrNil|
9922
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6936
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6937
    aBoolean ifTrue:[
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6938
        haltingMethod := #all
9922
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6939
    ] ifFalse:[
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6940
        haltingContext := self findHaltingContext.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6941
        haltingContext isNil ifTrue:[ 
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6942
            Transcript showCR:'no halting context found'. 
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6943
            ^ self 
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6944
        ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6945
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6946
        haltingMethod := haltingContext method.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6947
        lineNrOfHalt := haltingContext lineNumber.
12562
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
  6948
        (lineNrOfHalt isNil or:[lineNrOfHalt <= 0]) ifTrue:[ 
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
  6949
            Transcript showCR:'no halt lineNr found'. 
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
  6950
            ^ self 
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
  6951
        ].
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6952
        forThisReceiverClass ifTrue:[
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6953
            receiverClassOrNil := haltingContext receiver class
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6954
        ].
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6955
        forCurrentProcess ifTrue:[
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6956
            processOrNil := Processor activeProcess
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6957
        ].
9922
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6958
    ].
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6959
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6960
    self class
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6961
        ignoreHaltIn:haltingMethod at:lineNrOfHalt
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6962
        forCount:countOrNil orTimeDuration:dTOrNil orUntilShiftKey:untilShiftKey
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  6963
        orReceiverClass:receiverClassOrNil orProcess:processOrNil
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  6964
        orIfCalledFromMethod:ifCalledForMethodOrNil
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6965
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  6966
    "Created: / 27-01-2012 / 11:31:12 / cg"
9922
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6967
!
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6968
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6969
canAddBreakpoint
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6970
    |m|
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6971
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6972
    m := contextView middleButtonMenu.
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6973
    ^ m notNil and:[m isEnabled:#addBreakpoint]
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6974
!
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6975
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6976
canRemoveBreakpoint
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6977
    |m|
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6978
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6979
    m := contextView middleButtonMenu.
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6980
    ^ m notNil and:[m isEnabled:#removeBreakpoint]
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6981
!
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6982
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6983
findHaltingContext
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6984
    |haltSelectors|
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6985
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6986
    haltSelectors := self haltSelectors.
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  6987
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  6988
    contextArray keysAndValuesDo:[:idx :con |
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6989
        |sel con2 sel2 method|
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6990
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6991
        sel := con selector.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6992
        (haltSelectors includes:sel) ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6993
            (method := con method) notNil ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6994
                method mclass == Object ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6995
                    con2 := contextArray at:idx+1.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6996
                    sel2 := con2 selector.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6997
                    (haltSelectors includes:sel2) ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6998
                        con2 method mclass == Object ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  6999
                            ^ contextArray at:idx+2.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7000
                        ]
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7001
                    ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7002
                    ^ contextArray at:idx+1
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7003
                ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7004
                method mclass == Breakpoint ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7005
(contextArray at:idx+1) infoPrintCR.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7006
                    ^ contextArray at:idx+1
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7007
                ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7008
            ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7009
        ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7010
        con method isWrapped ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7011
            ^ con
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7012
        ].
9922
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  7013
    ].
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  7014
    ^ nil
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  7015
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7016
    "Modified: / 27-01-2012 / 11:06:02 / cg"
9922
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  7017
!
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  7018
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  7019
ignoreBreakpoints
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  7020
    ^ ignoreBreakpoints
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  7021
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  7022
    "Created: / 17.11.2001 / 18:20:16 / cg"
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  7023
! !
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  7024
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7025
!DebugView methodsFor:'private-cache handling'!
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7026
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7027
cacheMyself
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7028
    "remember myself for next debug session"
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7029
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7030
    "caching the last debugger will make the next debugger appear
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7031
     faster, since no resources have to be allocated in the display.
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7032
     We have to be careful to release all refs to the debuggee, though.
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7033
     Otherwise, the GC will not be able to release it."
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7034
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7035
    windowGroup notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7036
        windowGroup setProcess:nil.
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7037
    ].
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7038
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7039
    self releaseDebuggee.
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7040
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7041
    cachable ~~ true ifTrue:[^ self].
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7042
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7043
    "/
13764
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  7044
    "/ only cache if I am on the Display (i.e. the default screen)
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7045
    "/
13965
6213444511ae class: DebugView
Stefan Vogel <sv@exept.de>
parents: 13934
diff changeset
  7046
    self graphicsDevice == Display ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7047
        exclusive ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7048
            CachedExclusive := self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7049
        ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7050
            CachedDebugger := self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7051
        ].
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7052
    ].
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7053
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7054
    ObjectMemory stepInterruptHandler == self ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7055
        ObjectMemory stepInterruptHandler:nil
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7056
    ].
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7057
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7058
    "Modified: 10.7.1997 / 15:50:46 / stefan"
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7059
    "Modified: 31.7.1997 / 21:20:14 / cg"
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7060
!
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7061
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7062
isCached
13226
255f2f3a04f5 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13218
diff changeset
  7063
    "tell whether we are a cached debugger"
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7064
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7065
    CachedExclusive == self ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7066
        ^ true.
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7067
    ].
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7068
    CachedDebugger == self ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7069
        ^ true.
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7070
    ].
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7071
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7072
    ^ false.
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7073
13226
255f2f3a04f5 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13218
diff changeset
  7074
    "Created: / 10-07-1997 / 15:22:43 / stefan"
255f2f3a04f5 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13218
diff changeset
  7075
    "Modified (comment): / 27-07-2013 / 15:38:47 / cg"
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7076
!
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7077
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7078
uncacheMyself
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7079
    "do not remember myself any longer for next debug session"
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7080
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7081
    cachable := false.
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7082
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7083
    CachedExclusive == self ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7084
        CachedExclusive := nil.
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7085
    ].
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7086
    CachedDebugger == self ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7087
        CachedDebugger := nil.
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7088
    ].
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7089
    OpenDebuggers notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7090
        OpenDebuggers remove:self ifAbsent:[].
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7091
    ].
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7092
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7093
    "Modified: 31.7.1997 / 21:20:11 / cg"
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7094
! !
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7095
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  7096
!DebugView methodsFor:'private-code view'!
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  7097
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  7098
codeAspect
11704
36941d3a2a03 changed: #codeAspect
Claus Gittinger <cg@exept.de>
parents: 11697
diff changeset
  7099
    ^ SyntaxHighlighter codeAspectMethod
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  7100
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  7101
    "Created: / 27-07-2011 / 13:07:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
11704
36941d3a2a03 changed: #codeAspect
Claus Gittinger <cg@exept.de>
parents: 11697
diff changeset
  7102
    "Modified: / 27-07-2012 / 22:20:27 / cg"
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  7103
! !
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  7104
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7105
!DebugView methodsFor:'private-context handling'!
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7106
11391
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  7107
contextListEntryFor:aContext
11694
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7108
    ^ Error
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7109
        handle:[:ex | '???' ]
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7110
        do:[
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7111
            |s|
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7112
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7113
            aContext selector == #doIt ifTrue:[
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7114
                aContext receiver isNil ifTrue:[
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7115
                    s := 'doIt' allBold
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7116
                ]
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7117
            ].
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7118
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7119
            s := Text streamContents:[:s | aContext printOn:s ].
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7120
            RememberedCallChain notNil ifTrue:[
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7121
                (RememberedCallChain includesIdentical:aContext) ifTrue:[
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7122
                    s := s colorizeAllWith:(Color red).
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7123
                ].
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7124
            ].
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7125
            s
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7126
        ].
11391
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  7127
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  7128
    "Created: / 21-05-2007 / 13:30:24 / cg"
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  7129
!
730b258a005f class definition
Claus Gittinger <cg@exept.de>
parents: 11378
diff changeset
  7130
11571
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7131
is:aHomeContext inCallingChainOf:aContext
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7132
    |con|
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7133
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7134
    con := aContext.
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7135
    [con notNil and:[con ~~ aHomeContext]] whileTrue:[
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7136
        con := con sender
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7137
    ].
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7138
    ^ con notNil
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7139
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7140
    "Created: / 10-06-2012 / 18:46:29 / cg"
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7141
!
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7142
11890
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7143
isEnteredDueToBreakpointOrHalt
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7144
    "see if we came here due to a step interrupt"
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7145
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7146
    |c cReceiver|
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7147
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7148
    "/ look for a breakpoint-wrapper's context
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7149
    c := thisContext findNextContextWithSelector:#'raiseRequestWith:errorString:in:' or:nil or:nil.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7150
    c isNil ifTrue:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7151
        ^ true.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7152
    ].
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7153
    cReceiver := c receiver.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7154
    ^ cReceiver == BreakPointInterrupt
13293
8a52b9f19f8b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13229
diff changeset
  7155
8a52b9f19f8b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13229
diff changeset
  7156
    "Modified: / 01-08-2013 / 23:34:01 / cg"
11890
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7157
!
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7158
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7159
isHaltToBeIgnored
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7160
    "see if the current halt (if any) is in the ignore-list"
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7161
13059
8542618fd970 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12977
diff changeset
  7162
    |c cReceiver sender haltingMethod lineNrInHaltingMethod breakpointParameter
8542618fd970 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12977
diff changeset
  7163
     sReceiver|
11890
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7164
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7165
    "/ should a halt be ignored ?
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7166
    IgnoredHalts isNil ifTrue:[^ false].
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7167
13059
8542618fd970 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12977
diff changeset
  7168
    "/ look for a method breakpoint-wrapper's context
11890
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7169
    c := thisContext findNextContextWithSelector:#doRaise or:nil or:nil.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7170
    c notNil ifTrue:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7171
        ((cReceiver := c receiver) isKindOf:NoHandlerError) ifTrue:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7172
            c := c sender findNextContextWithSelector:#doRaise or:nil or:nil.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7173
            cReceiver := c receiver.    
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7174
        ].
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7175
        (cReceiver isKindOf:BreakPointInterrupt) ifFalse:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7176
            c := nil
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7177
        ] ifTrue:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7178
            [ 
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7179
                sender := c sender.
13059
8542618fd970 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12977
diff changeset
  7180
                ((sReceiver := sender receiver) isKindOf:BreakPointInterrupt)
8542618fd970 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12977
diff changeset
  7181
                or:[ sReceiver == BreakPointInterrupt ]
11890
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7182
            ] whileTrue:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7183
                c := sender
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7184
            ].
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7185
            [ (sender := c sender) isBlockContext ] whileTrue:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7186
                c := sender
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7187
            ].
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7188
            sender := nil. "/ avoid keeping a reference to this context
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7189
        ].
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7190
    ].
14531
174dbf38254c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14524
diff changeset
  7191
Transcript showCR:c.
11890
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7192
    c isNil ifTrue:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7193
        "/ look for halts or explicit breakpoints
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7194
        c := thisContext findNextContextWithSelector:#halt or:#halt: or:nil.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7195
        c isNil ifTrue:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7196
            c := thisContext findNextContextWithSelector:#breakPoint: or:#breakPoint:info: or:nil.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7197
            c isNil ifTrue:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7198
               ^ false
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7199
            ].
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7200
            breakpointParameter := c argAt:1.
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  7201
            (self class 
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  7202
                    isBreakpointToBeIgnoredForParameter:breakpointParameter
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  7203
                    context:(c sender)
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  7204
                    modifyEntryCount:true
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  7205
            ) ifTrue:[
11890
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7206
                ^ true.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7207
            ].
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7208
        ].
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7209
    ].
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7210
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7211
    c := c sender.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7212
    "/ a code-breakpoint ?
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7213
    (c receiver isKindOf:Breakpoint) ifTrue:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7214
        c := c sender.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7215
    ].
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7216
    haltingMethod := c method.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7217
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7218
    haltingMethod isWrapped ifTrue:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7219
        lineNrInHaltingMethod := 1.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7220
    ] ifFalse:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7221
        lineNrInHaltingMethod := c lineNumber.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7222
        "/ Transcript showCR:c.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7223
    ].
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7224
12562
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
  7225
    ^ self class
11890
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7226
        isHaltToBeIgnoredIn:haltingMethod
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7227
        atLineNr:lineNrInHaltingMethod
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  7228
        context:c
11890
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7229
        modifyEntryCount:true.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7230
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7231
    "Created: / 22-10-2010 / 12:09:53 / cg"
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7232
    "Modified: / 06-03-2012 / 12:54:09 / cg"
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7233
!
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7234
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7235
setContext:aContext
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7236
    "show calling chain from aContext in the walk-back listview"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7237
641
e02a521493ba checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  7238
    ^ self setContext:aContext releaseInspectors:true
300
027ffcadd12d keep context in lower-right inspector when single stepping
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
  7239
641
e02a521493ba checkin from browser
Claus Gittinger <cg@exept.de>
parents: 628
diff changeset
  7240
    "Modified: 27.6.1996 / 17:21:59 / cg"
300
027ffcadd12d keep context in lower-right inspector when single stepping
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
  7241
!
027ffcadd12d keep context in lower-right inspector when single stepping
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
  7242
027ffcadd12d keep context in lower-right inspector when single stepping
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
  7243
setContext:aContext releaseInspectors:releaseInspectors
2720
a756bd875d02 more filtering of uninteresting contexts
Claus Gittinger <cg@exept.de>
parents: 2709
diff changeset
  7244
    "show calling chain from aContext in the walk-back listview.
a756bd875d02 more filtering of uninteresting contexts
Claus Gittinger <cg@exept.de>
parents: 2709
diff changeset
  7245
     Most complications here arise from filtering less-interesting contexts
11573
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  7246
     if not in verbose-context mode or when hiding implementation contexts."
300
027ffcadd12d keep context in lower-right inspector when single stepping
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
  7247
14531
174dbf38254c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14524
diff changeset
  7248
    |con sel text method caller caller2 called called2 m count c cc sndr
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7249
     suspendContext calledBySuspendContext nm h calledContext show2
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7250
     alreadyInApplicationCode|
11836
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  7251
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  7252
"/    (contextArray size > 0 and:[aContext == (contextArray at:1)]) ifTrue:[
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  7253
"/        "no change"
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  7254
"/        ^ false
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  7255
"/    ].
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7256
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7257
    isStoppedAtHaltOrBreakPoint := isStoppedAtBreakPointWithParameter := false.
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7258
    isStoppedInModalDialog := isStoppedInApplicationAction := alreadyInApplicationCode := false.
14531
174dbf38254c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14524
diff changeset
  7259
    isStoppedAtStatementBreakpoint := false.
939
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  7260
    firstContext := aContext.
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  7261
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7262
    m := contextView middleButtonMenu.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7263
    m notNil ifTrue:[
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7264
        m disable:#showMore.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7265
    ].
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  7266
    canShowMore := false.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7267
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7268
    aContext isNil ifTrue:[
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7269
        text := Array with:'** no context **'.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7270
        contextArray := nil.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7271
    ] ifFalse:[
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7272
        text := OrderedCollection new:nChainShown.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7273
        contextArray := OrderedCollection new:nChainShown.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7274
        con := aContext.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7275
        calledContext := nil.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7276
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7277
        alreadyInApplicationCode := con receiver isKindOf:ApplicationModel.
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7278
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7279
        verboseBacktrace ~~ true ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7280
            "/ with dense backtrace, hide the ProcessorScheduler
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7281
            "/ contexts at the top; look for a Process>>suspend*
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7282
            "/ context within the first 10 contexts
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7283
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7284
            suspendContext := nil.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7285
            c := con.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7286
            1 to:10 do:[:i |
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7287
                |sel|
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7288
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7289
                c notNil ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7290
                    (sel := c selector) notNil ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7291
                        ((sel isSymbol and:[sel startsWith:'suspend'])
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7292
                        and:[c receiver isMemberOf:Process]) ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7293
                            suspendContext := c.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7294
                            calledBySuspendContext := cc.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7295
                        ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7296
                    ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7297
                    cc := c.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7298
                    c := c sender.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7299
                ]
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7300
            ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7301
            suspendContext notNil ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7302
                con := suspendContext.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7303
                calledContext := calledBySuspendContext.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7304
                suspendContext := nil
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7305
            ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7306
        ].
12039
23a6414c2eef class: DebugView
Claus Gittinger <cg@exept.de>
parents: 11943
diff changeset
  7307
"/ Transcript show:'1 '; showCR:con.
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7308
        con notNil ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7309
            "/ hide the halt implementation
14531
174dbf38254c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14524
diff changeset
  7310
            sel := con selector.
174dbf38254c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14524
diff changeset
  7311
            (self haltSelectors includes:sel) ifTrue:[
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7312
                (method := con method) notNil ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7313
                    method mclass == Object ifTrue:[
14531
174dbf38254c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14524
diff changeset
  7314
                        (sel isSymbol
174dbf38254c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14524
diff changeset
  7315
                        and:[ sel startsWith:'breakPoint:']) ifTrue:[
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  7316
                            isStoppedAtBreakPointWithParameter := true.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  7317
                            breakPointParameter := con argAt:1.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  7318
                        ].
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7319
                        isStoppedAtHaltOrBreakPoint := true.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7320
                        verboseBacktrace ~~ true ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7321
                            calledContext := con.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7322
                            con := con sender.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7323
                        ]
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7324
                    ] ifFalse:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7325
                        method mclass == Breakpoint ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7326
                            isStoppedAtHaltOrBreakPoint := true.
14531
174dbf38254c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14524
diff changeset
  7327
                            isStoppedAtStatementBreakpoint := true.
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7328
                            verboseBacktrace ~~ true ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7329
                                calledContext := con.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7330
                                con := con sender.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7331
                            ]
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7332
                        ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7333
                    ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7334
                ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7335
            ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7336
        ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7337
        "
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7338
         get them all, by walking along the caller chain.
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7339
         depending on the settings, skip some intermediate contexts
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7340
         (such as collection enumeration implementations), which are usually not
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7341
         of interest when debugging an application.
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7342
         On the fly, gather some additional information 
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7343
         such as: are we at a halt/breakpoint, are we in a modal dialog opened,
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7344
         are we coming from an application model's action etc.
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7345
        "
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7346
        count := 0.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7347
        [con notNil and:[count <= nChainShown]] whileTrue:[
13455
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  7348
            "/ remember any halt/breakpoint or openModal on the fly
14531
174dbf38254c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14524
diff changeset
  7349
            sel := con selector.
174dbf38254c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14524
diff changeset
  7350
            (self haltSelectors includes:sel) ifTrue:[
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7351
                (method := con method) notNil ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7352
                    method mclass == Object ifTrue:[
14531
174dbf38254c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14524
diff changeset
  7353
                        (sel isSymbol
174dbf38254c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14524
diff changeset
  7354
                        and:[sel startsWith:'breakPoint:']) ifTrue:[
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  7355
                            isStoppedAtBreakPointWithParameter := true.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  7356
                            breakPointParameter := con argAt:1.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  7357
                        ].
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7358
                        isStoppedAtHaltOrBreakPoint := true.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7359
                    ] ifFalse:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7360
                        method mclass == Breakpoint ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7361
                            isStoppedAtHaltOrBreakPoint := true.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7362
                        ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7363
                    ]
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7364
                ]
13363
4cc837ad3854 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13362
diff changeset
  7365
            ] ifFalse:[
14531
174dbf38254c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14524
diff changeset
  7366
                ((sel == #openModal) or:[sel == #openModal:]) ifTrue:[
13363
4cc837ad3854 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13362
diff changeset
  7367
                    isStoppedInModalDialog := true.
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7368
                ] ifFalse:[
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7369
                    alreadyInApplicationCode ifFalse:[
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7370
                        (con receiver isKindOf:ApplicationModel) ifTrue:[
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7371
                            isStoppedInApplicationAction := true.
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7372
                        ]
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7373
                    ]
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7374
                ]
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7375
            ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7376
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7377
            [
11836
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  7378
                |show1|
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  7379
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  7380
                show1 := self showingContext1:con calling:calledContext.
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  7381
                DebuggingDebugger3 == true ifTrue:[
13455
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  7382
                    'showingContext1: (' print. con print. ') --> ' print. show1 printCR.
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7383
                ].
11836
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  7384
                show1
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7385
            ] whileFalse:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7386
                calledContext := con.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7387
                con := con sender.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7388
            ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7389
11836
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  7390
            show2 := self showingContext2:con nesting:count.
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  7391
            DebuggingDebugger3 == true ifTrue:[
13455
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  7392
                'showingContext2: (' print. con print. ') --> ' print. show2 printCR.
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7393
            ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7394
11836
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  7395
            show2 ifTrue:[
11837
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7396
                (self showingContext3:con nesting:count) ifTrue:[
13462
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7397
                    contextArray add:con.
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7398
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7399
                    (MoreDebuggingDetail == true) ifTrue:[
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7400
                        nm := (((ObjectMemory addressOf:con) printStringRadix:16) , ' ' , con printString).
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7401
                    ] ifFalse:[
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7402
                        nm := self contextListEntryFor:con.
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7403
                    ].
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7404
                    text add:nm.
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7405
                    count := count + 1.
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7406
                ] ifFalse:[
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7407
                    DebuggingDebugger3 == true ifTrue:[
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7408
                        'showingContext3: (' print. con print. ') --> false' printCR.
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7409
                    ].
11837
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7410
                ]
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7411
            ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7412
11836
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  7413
            "/ with hidden support code, skip over internals of exceptions
11573
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  7414
            hideSupportCode == true ifTrue:[
11571
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7415
                (con isBlockContext
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7416
                and:[ (h := con home) notNil
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7417
                and:[ (self is:h inCallingChainOf:con) ]]) ifTrue:[
11887
dffcf2e6e4fa changed: #setContext:releaseInspectors:
Claus Gittinger <cg@exept.de>
parents: 11857
diff changeset
  7418
                    |blocksReceiver|
dffcf2e6e4fa changed: #setContext:releaseInspectors:
Claus Gittinger <cg@exept.de>
parents: 11857
diff changeset
  7419
                    blocksReceiver := con receiver.
11573
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  7420
                    c := con sender.
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  7421
                    [ 
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  7422
                        c notNil 
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  7423
                        and:[ 
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  7424
                            sndr := c sender.
11836
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  7425
                            (sndr ~= h) 
224a4d109673 added: #showingSupportCode:
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  7426
                            and:[ 
11887
dffcf2e6e4fa changed: #setContext:releaseInspectors:
Claus Gittinger <cg@exept.de>
parents: 11857
diff changeset
  7427
                                blocksReceiver isCollection         "/ skip collection implementations
11573
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  7428
                                or:[ ( #( #'handle:do:'         "/ skip exception implementations
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  7429
                                          #'handleDo:' 
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  7430
                                          #'answer:do:' 
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  7431
                                          #'ensure:' ) includes: c selector ) 
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  7432
                                or:[ #'perform:*'               "/ skip perform implementations
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  7433
                                         match: c selector ]] 
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  7434
                            ]
91281dc275e1 class definition
Claus Gittinger <cg@exept.de>
parents: 11571
diff changeset
  7435
                        ] 
11571
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7436
                    ] whileTrue:[ 
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7437
                        c := sndr 
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7438
                    ].
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7439
                    c notNil ifTrue:[
11887
dffcf2e6e4fa changed: #setContext:releaseInspectors:
Claus Gittinger <cg@exept.de>
parents: 11857
diff changeset
  7440
                        con := c "sender".
11571
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7441
                    ].
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7442
                ].
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7443
            ].
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7444
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7445
            "/
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7446
            "/ kludge: if it's a wrapped method, then hide the wrap-call
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7447
            "/
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7448
            method := con method.
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  7449
            method notNil ifTrue:[
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7450
                called := con.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7451
                caller := con sender.
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  7452
                (caller notNil and:[caller receiver == method]) ifTrue:[
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7453
                    called2 := caller.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7454
                    caller2 := caller sender.
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  7455
                    caller2 notNil ifTrue:[
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  7456
                        (caller2 method isWrapped
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  7457
                        and:[ caller2 method originalMethod == method ]) ifTrue:[
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  7458
                            calledContext := called2.
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  7459
                            con := caller2
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  7460
                        ].
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  7461
                    ].
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  7462
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7463
                ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7464
                caller := caller2 := nil
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7465
            ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7466
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7467
            "/ with dense backtrace, skip the doIt method's context
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7468
            "/ (its dummy anyway) and fake that context's name
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7469
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7470
            verboseBacktrace ~~ true ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7471
                (con isBlockContext
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7472
                 and:[(h := con home) == con sender
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7473
                 and:[h notNil
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7474
                 and:[(self setOfHiddenCallingSelectors includes:h selector)
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7475
                 and:[h method who isNil]]]]) ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7476
                    calledContext := con.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7477
                    con := con sender.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7478
                    text removeLast.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7479
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7480
                    text add:(self contextListEntryFor:con methodHome).
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7481
                ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7482
                h := nil.  "/ never keep refs to contexts unless you really need them ...
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7483
            ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7484
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7485
            "/ with dense backtrace, don't show contexts below the doIt
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7486
            ( verboseBacktrace ~~ true
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7487
            and:[ (self setOfHiddenCallingSelectors includes:con selector) ]) ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7488
                con := nil.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7489
            ] ifFalse:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7490
                calledContext := con.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7491
                con := con sender
11571
797d5fa9c634 option to hide enumeration code impl.
Claus Gittinger <cg@exept.de>
parents: 11457
diff changeset
  7492
            ].
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7493
        ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7494
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7495
        "
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7496
         did we reach the end ?
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7497
        "
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7498
        (con isNil or:[con sender isNil]) ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7499
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7500
            "/ the very last one is the startup context
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7501
            "/ (in main) - it has nil as receiver and nil as selector
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7502
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7503
            (contextArray notEmpty
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7504
            and:[contextArray last selector isNil]) ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7505
                contextArray removeLast.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7506
                text removeLast
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7507
            ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7508
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7509
            verboseBacktrace ~~ true ifTrue:[
14523
bd6e67500fa3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14430
diff changeset
  7510
                "/ in dense mode, remove process startup contexts (if any)
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7511
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7512
                (contextArray size > 0
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7513
                and:[(con := contextArray last) methodClass == Process]) ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7514
                    con selector == #start ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7515
                        contextArray removeLast.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7516
                        text removeLast.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7517
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7518
                        [contextArray size > 0
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7519
                         and:[contextArray last methodHome == con]] whileTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7520
                            contextArray removeLast.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7521
                            text removeLast.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7522
                        ]
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7523
                    ]
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7524
                ]
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7525
            ]
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7526
        ] ifFalse:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7527
            m notNil ifTrue:[
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7528
                m enable:#showMore.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7529
            ].
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7530
            canShowMore := true.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7531
            text add:(resources string:'*** more walkback follows - click here to see them ***')
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7532
        ].
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7533
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7534
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7535
    contextView setList:text.
944
680cc407240d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 942
diff changeset
  7536
300
027ffcadd12d keep context in lower-right inspector when single stepping
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
  7537
    releaseInspectors ifTrue:[
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7538
        receiverInspector release.
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7539
        contextInspector release.
300
027ffcadd12d keep context in lower-right inspector when single stepping
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
  7540
    ].
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7541
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7542
    m notNil ifTrue:[
11209
202af72b0a90 comment/format in: #addIgnoredHaltForCount:orTimeDuration:forAll:
Claus Gittinger <cg@exept.de>
parents: 10760
diff changeset
  7543
        m disableAll:#(addBreakpoint removeBreakpoint browseImplementors browseSenders browseReceiversClass).
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7544
    ].
3511
1a050d6e639e menu fixes
Claus Gittinger <cg@exept.de>
parents: 3510
diff changeset
  7545
    self updateMenuItems.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7546
    ^ true
300
027ffcadd12d keep context in lower-right inspector when single stepping
Claus Gittinger <cg@exept.de>
parents: 299
diff changeset
  7547
7797
b0bbe7932d47 nicer context presentation
Claus Gittinger <cg@exept.de>
parents: 7796
diff changeset
  7548
    "Created: / 14-12-1995 / 19:10:31 / cg"
11694
464f62536f09 menu changed to use checkboxes
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
  7549
    "Modified: / 27-07-2012 / 15:10:53 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7550
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7551
779
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  7552
setContextSkippingInterruptContexts:aContext
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  7553
    "show calling chain from aContext in the walk-back listview.
1213
Claus Gittinger <cg@exept.de>
parents: 1187
diff changeset
  7554
     Ignore any non-interesting interrupt-context."
779
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  7555
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  7556
    |con|
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  7557
8152
4720caf862eb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8148
diff changeset
  7558
    con := aContext.
1409
2ea39caf7f00 handle process termination gracefully
Claus Gittinger <cg@exept.de>
parents: 1408
diff changeset
  7559
    verboseBacktrace ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7560
        (con notNil and:[con selector == #threadSwitch:]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7561
            con := con sender.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7562
            (con notNil and:[con selector == #timerInterrupt]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7563
                con := con sender.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7564
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7565
        ].
779
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  7566
    ].
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  7567
    ^ self setContext:con releaseInspectors:true
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  7568
1409
2ea39caf7f00 handle process termination gracefully
Claus Gittinger <cg@exept.de>
parents: 1408
diff changeset
  7569
    "Created: / 20.10.1996 / 18:10:21 / cg"
2ea39caf7f00 handle process termination gracefully
Claus Gittinger <cg@exept.de>
parents: 1408
diff changeset
  7570
    "Modified: / 17.1.1998 / 12:43:19 / cg"
779
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  7571
!
0486301b79a1 use a single button for stop/continue;
Claus Gittinger <cg@exept.de>
parents: 778
diff changeset
  7572
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7573
showingContext1:aContext calling:calledContext
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7574
    "return false, if this (top) context is to be skipped.
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  7575
     Here, we hide some well known methods, which are usually not too interesting;
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7576
     the set of methods which are suppressed is my (claus's) own choice."
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7577
5269
a8be1af4cd35 avoid triggering lazy and future values when showing the context.
Claus Gittinger <cg@exept.de>
parents: 5195
diff changeset
  7578
    |recIsException sel rec senderRec mthd mthdClass calledSel calledRec|
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7579
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7580
    verboseBacktrace == true ifTrue:[ ^true ].
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7581
    aContext isNil ifTrue:[ ^true ].
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7582
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7583
    sel := aContext selector.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7584
    rec := aContext receiver.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7585
    mthd := aContext method.
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7586
    mthd notNil ifTrue:[ mthdClass := mthd mclass ].
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7587
5269
a8be1af4cd35 avoid triggering lazy and future values when showing the context.
Claus Gittinger <cg@exept.de>
parents: 5195
diff changeset
  7588
    "/ to avoid firing/waiting the lazy or future
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  7589
    recIsException := (rec isLazyValue not) and:[rec isException].
5269
a8be1af4cd35 avoid triggering lazy and future values when showing the context.
Claus Gittinger <cg@exept.de>
parents: 5195
diff changeset
  7590
    aContext sender notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7591
        senderRec := aContext sender receiver
5269
a8be1af4cd35 avoid triggering lazy and future values when showing the context.
Claus Gittinger <cg@exept.de>
parents: 5195
diff changeset
  7592
    ].
a8be1af4cd35 avoid triggering lazy and future values when showing the context.
Claus Gittinger <cg@exept.de>
parents: 5195
diff changeset
  7593
11636
2a26799eb21b class definition
Claus Gittinger <cg@exept.de>
parents: 11610
diff changeset
  7594
    DebuggingDebugger3 == true ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7595
        'showingContext1: (' print. aContext print.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7596
        ') calling: (' print. calledContext print.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7597
        ')' printCR.
5349
64e779c7b08b fixed stepping through ensure: blocks
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
  7598
    ].
64e779c7b08b fixed stepping through ensure: blocks
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
  7599
3723
250da8f1a968 Treat new #ensure, #ifCurtailed, #on:do:
Stefan Vogel <sv@exept.de>
parents: 3702
diff changeset
  7600
    (#(doCallHandler: doRaise
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7601
    ) includes:sel)
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7602
        ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7603
            recIsException ifTrue:[ ^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7604
        ].
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7605
3723
250da8f1a968 Treat new #ensure, #ifCurtailed, #on:do:
Stefan Vogel <sv@exept.de>
parents: 3702
diff changeset
  7606
    (#(raise raiseRequest
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7607
    ) includes:sel)
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7608
        ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7609
            recIsException ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7610
                (senderRec isLazyValue not
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7611
                and:[ senderRec isExceptionCreator]) ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7612
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7613
        ].
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7614
3723
250da8f1a968 Treat new #ensure, #ifCurtailed, #on:do:
Stefan Vogel <sv@exept.de>
parents: 3702
diff changeset
  7615
    (#(doWhile:
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7616
    ) includes:sel)
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7617
        ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7618
            rec isBlock ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7619
                true "aContext sender isBlockContext" ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7620
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7621
        ].
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7622
8620
3a015c65b246 beepInEditor flag
Claus Gittinger <cg@exept.de>
parents: 8600
diff changeset
  7623
    calledContext notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7624
        calledSel := calledContext selector.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7625
        calledRec := calledContext receiver.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7626
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7627
        calledRec isBlock ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7628
            (calledSel == #ensure:) ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7629
            (calledSel == #ifCurtailed:) ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7630
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7631
        (calledSel == #handle:do:) ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7632
        (calledSel == #answer:do:) ifTrue:[^ false].
8620
3a015c65b246 beepInEditor flag
Claus Gittinger <cg@exept.de>
parents: 8600
diff changeset
  7633
5349
64e779c7b08b fixed stepping through ensure: blocks
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
  7634
"/        calledRec isLazyValue ifFalse:[
64e779c7b08b fixed stepping through ensure: blocks
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
  7635
"/            ((calledSel == #doWhile:)
64e779c7b08b fixed stepping through ensure: blocks
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
  7636
"/            and:[calledRec isBlock])
64e779c7b08b fixed stepping through ensure: blocks
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
  7637
"/                ifTrue:[^ false].
64e779c7b08b fixed stepping through ensure: blocks
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
  7638
"/
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  7639
"/            ((#(ensure: ifCurtailed: valueNowOrOnUnwindDo: valueOnUnwindDo:
5349
64e779c7b08b fixed stepping through ensure: blocks
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
  7640
"/                ) includes:calledSel)
64e779c7b08b fixed stepping through ensure: blocks
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
  7641
"/             and:[calledRec isBlock])
64e779c7b08b fixed stepping through ensure: blocks
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
  7642
"/                ifTrue:[^ false].
64e779c7b08b fixed stepping through ensure: blocks
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
  7643
"/
64e779c7b08b fixed stepping through ensure: blocks
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
  7644
"/            ((calledSel == #handle:do:)
64e779c7b08b fixed stepping through ensure: blocks
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
  7645
"/             and:[calledRec isExceptionHandler])
64e779c7b08b fixed stepping through ensure: blocks
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
  7646
"/                ifTrue:[^ false].
64e779c7b08b fixed stepping through ensure: blocks
Claus Gittinger <cg@exept.de>
parents: 5340
diff changeset
  7647
"/        ].
8620
3a015c65b246 beepInEditor flag
Claus Gittinger <cg@exept.de>
parents: 8600
diff changeset
  7648
    ].
3723
250da8f1a968 Treat new #ensure, #ifCurtailed, #on:do:
Stefan Vogel <sv@exept.de>
parents: 3702
diff changeset
  7649
250da8f1a968 Treat new #ensure, #ifCurtailed, #on:do:
Stefan Vogel <sv@exept.de>
parents: 3702
diff changeset
  7650
    (#(handleDo:) includes:sel)
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7651
        ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7652
            (calledRec isLazyValue not and:[calledRec isExceptionHandler]) ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7653
        ].
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  7654
    (#(
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7655
        withCursor:do:
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7656
        withWaitCursorDo:
11696
1718b69fe880 changed:
Claus Gittinger <cg@exept.de>
parents: 11694
diff changeset
  7657
        withReadCursorDo:
1718b69fe880 changed:
Claus Gittinger <cg@exept.de>
parents: 11694
diff changeset
  7658
        withWriteCursorDo:
1718b69fe880 changed:
Claus Gittinger <cg@exept.de>
parents: 11694
diff changeset
  7659
        withSearchCursorDo:
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7660
      ) includes:sel)
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7661
        ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7662
            (mthdClass == TopView) ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7663
            (mthdClass == ApplicationModel) ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7664
            (mthdClass == WindowGroup) ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7665
        ].
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  7666
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  7667
    (#(
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7668
        wait
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7669
        waitWithTimeout:
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7670
        waitWithTimeoutMs:
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7671
      ) includes:sel)
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7672
        ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7673
            (mthdClass == Semaphore) ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7674
            (mthdClass == SemaphoreSet) ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7675
        ].
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7676
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7677
    ^ true
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7678
9662
d6150bfe9f1b changed:
Claus Gittinger <cg@exept.de>
parents: 9626
diff changeset
  7679
    "Created: / 17-11-2001 / 22:24:06 / cg"
11696
1718b69fe880 changed:
Claus Gittinger <cg@exept.de>
parents: 11694
diff changeset
  7680
    "Modified: / 27-07-2012 / 17:30:18 / cg"
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7681
!
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7682
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7683
showingContext2:aContext nesting:nesting
7823
9caa05596f38 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7822
diff changeset
  7684
    "return false, if this (intermediate) context is to be skipped.
13455
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  7685
     Here, we hide some well known methods, which are usually not too interesting;
1394
7765db9114ff more context hiding in dense-walkback mode
Claus Gittinger <cg@exept.de>
parents: 1388
diff changeset
  7686
     the set of methods which are suppressed is my (claus's) own choice."
939
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  7687
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  7688
    |sel rec mClass
1388
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7689
     sender senderReceiver senderSelector senderReceiverClass|
936
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  7690
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  7691
    verboseBacktrace ifTrue:[^ true].
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  7692
    aContext isNil ifTrue:[^ true].
936
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  7693
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  7694
    rec := aContext receiver.
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  7695
    sel := aContext selector.
939
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  7696
    mClass := aContext methodClass.
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  7697
1388
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7698
    sender := aContext sender.
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7699
    sender notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7700
        senderSelector := sender selector.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7701
        senderReceiver := sender receiver.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7702
        senderReceiverClass := senderReceiver class.
1388
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7703
    ].
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7704
939
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  7705
    sel == #withCursor:do: ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7706
        (mClass == WindowGroup) ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7707
        (mClass == TopView) ifTrue:[^ false].
939
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  7708
    ].
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  7709
    (sel == #withExecuteCursorDo:
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  7710
    or:[sel == #withWaitCursorDo:]) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7711
        (mClass == DisplaySurface) ifTrue:[^ false].
939
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  7712
    ].
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  7713
1484
1e1e56b84b11 in compact-stack-mode, also hide from:to:do: contexts.
Claus Gittinger <cg@exept.de>
parents: 1456
diff changeset
  7714
    (sel == #do:
6600
985a13c5e7b1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6579
diff changeset
  7715
    or:[sel == #from:to:do:
6601
b347199a06cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6600
diff changeset
  7716
    or:[sel == #keysAndValuesDo:
b347199a06cb *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6600
diff changeset
  7717
    or:[sel == #doWithIndex:]]]) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7718
        mClass == Array ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7719
        mClass == OrderedCollection ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7720
        mClass == Set ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7721
        mClass == Dictionary ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7722
        mClass == Interval ifTrue:[^ false].
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  7723
    ].
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  7724
    (sel == #perform:
1388
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7725
    or:[sel == #perform:with:
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7726
    or:[sel == #perform:with:with:
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7727
    or:[sel == #perform:with:with:with:
11696
1718b69fe880 changed:
Claus Gittinger <cg@exept.de>
parents: 11694
diff changeset
  7728
    or:[sel == #perform:with:with:with:with:
1718b69fe880 changed:
Claus Gittinger <cg@exept.de>
parents: 11694
diff changeset
  7729
    or:[sel == #perform:withArguments:
1718b69fe880 changed:
Claus Gittinger <cg@exept.de>
parents: 11694
diff changeset
  7730
    or:[sel == #perform:with:ifNotUnderstood:
1718b69fe880 changed:
Claus Gittinger <cg@exept.de>
parents: 11694
diff changeset
  7731
    or:[sel == #perform:withArguments:ifNotUnderstood:]]]]]]])
1388
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7732
    ifTrue:[
11837
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7733
        hideSupportCode == true ifTrue:[
13455
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  7734
            "/ 'x' printCR.
11837
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7735
            mClass == Object ifTrue:[^ false]
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7736
        ].
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7737
        nesting == 0 ifTrue:[^ true].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7738
        mClass == Array ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7739
        mClass == OrderedCollection ifTrue:[^ false].
1388
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7740
    ].
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7741
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7742
    sel == #valueWithReceiver:arguments:selector:search:sender: ifTrue:[^ false].
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7743
939
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  7744
    (mClass == Object) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7745
        (sel startsWith:'perform:') ifTrue:[^ false]
939
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  7746
    ].
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  7747
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  7748
    (mClass == Method) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7749
        (sel startsWith:'valueWithReceiver:') ifTrue:[^ false]
939
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  7750
    ].
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  7751
952
9f203aab32a4 skip intermediate lazyMethod loading contexts
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  7752
    (mClass == SmallInteger) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7753
        (sel == #to:do:) ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7754
        (sel == #to:by:do:) ifTrue:[^ false].
952
9f203aab32a4 skip intermediate lazyMethod loading contexts
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  7755
    ].
9f203aab32a4 skip intermediate lazyMethod loading contexts
Claus Gittinger <cg@exept.de>
parents: 950
diff changeset
  7756
939
0e700c9bd085 better dense backtrace
Claus Gittinger <cg@exept.de>
parents: 937
diff changeset
  7757
    (mClass == Block) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7758
        sel == #ensure: ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7759
        sel == #ifCurtailed: ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7760
        sel == #valueNowOrOnUnwindDo: ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7761
        sel == #valueOnUnwindDo: ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7762
        sel == #on:do: ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7763
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7764
        sel == #value ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7765
        sel == #value: ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7766
        sel == #value:value: ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7767
        sel == #value:value:value: ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7768
        sel == #value:value:value:value: ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7769
        sel == #value:value:value:value:Value: ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7770
        sel == #value:value:value:value:value:value: ifTrue:[^ false].
936
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  7771
    ].
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  7772
1388
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7773
    aContext isBlockContext ifTrue:[
936
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  7774
"/        sel == #value ifTrue:[^ false].
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  7775
"/        sel == #value: ifTrue:[^ false].
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  7776
"/        sel == #value:value: ifTrue:[^ false].
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  7777
"/        sel == #value:value:value: ifTrue:[^ false].
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  7778
"/        sel == #value:value:value:value: ifTrue:[^ false].
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  7779
"/        sel == #value:value:value:value:Value: ifTrue:[^ false].
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  7780
"/        sel == #value:value:value:value:value:value: ifTrue:[^ false].
1388
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7781
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7782
"/        (senderSelector == #answer:do:) ifTrue:[
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7783
"/            senderReceiverClass == QuerySignal ifTrue:[
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7784
"/                ^ false
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7785
"/            ]
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7786
"/        ]
1394
7765db9114ff more context hiding in dense-walkback mode
Claus Gittinger <cg@exept.de>
parents: 1388
diff changeset
  7787
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7788
        aContext home notNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7789
            aContext home receiver isLazyValue ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7790
                (aContext home receiver isMemberOf:Semaphore) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7791
                    (aContext home selector == #wait) ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7792
                    (aContext home selector == #waitWithTimeoutMs:) ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7793
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7794
            ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7795
        ]
1388
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7796
    ].
936
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  7797
3723
250da8f1a968 Treat new #ensure, #ifCurtailed, #on:do:
Stefan Vogel <sv@exept.de>
parents: 3702
diff changeset
  7798
    (rec isExceptionHandler) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7799
        sel == #handle:do: ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7800
        sel == #handleDo: ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7801
        (sel startsWith:#raise) ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7802
        sel == #answer:do: ifTrue:[^ false].
1388
d127d4379a60 more contexts suppressed in dense-backtrace
Claus Gittinger <cg@exept.de>
parents: 1386
diff changeset
  7803
    ].
5269
a8be1af4cd35 avoid triggering lazy and future values when showing the context.
Claus Gittinger <cg@exept.de>
parents: 5195
diff changeset
  7804
    (rec isLazyValue not and:[ rec isException] ) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7805
        sel == #doRaise ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7806
        sel == #doCallHandler: ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7807
        (sel == #raise or:[sel == #raiseRequest]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7808
            senderReceiverClass == Signal ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7809
        ]
1394
7765db9114ff more context hiding in dense-walkback mode
Claus Gittinger <cg@exept.de>
parents: 1388
diff changeset
  7810
    ].
7765db9114ff more context hiding in dense-walkback mode
Claus Gittinger <cg@exept.de>
parents: 1388
diff changeset
  7811
    (mClass == Context) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7812
        sel == #unwind ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7813
        sel == #unwind: ifTrue:[^ false].
1394
7765db9114ff more context hiding in dense-walkback mode
Claus Gittinger <cg@exept.de>
parents: 1388
diff changeset
  7814
    ].
7765db9114ff more context hiding in dense-walkback mode
Claus Gittinger <cg@exept.de>
parents: 1388
diff changeset
  7815
    (mClass == ProcessorScheduler) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7816
        sel == #interruptActive ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7817
        sel == #threadSwitch: ifTrue:[^ false].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7818
        sel == #suspend: ifTrue:[^ false].
1394
7765db9114ff more context hiding in dense-walkback mode
Claus Gittinger <cg@exept.de>
parents: 1388
diff changeset
  7819
    ].
7765db9114ff more context hiding in dense-walkback mode
Claus Gittinger <cg@exept.de>
parents: 1388
diff changeset
  7820
    mClass == Process ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7821
        sel == #suspendWithState: ifTrue:[^ false].
1394
7765db9114ff more context hiding in dense-walkback mode
Claus Gittinger <cg@exept.de>
parents: 1388
diff changeset
  7822
    ].
936
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  7823
    ^ true.
34f8d67c4932 allow dense & verbose context-chain display.
Claus Gittinger <cg@exept.de>
parents: 935
diff changeset
  7824
9662
d6150bfe9f1b changed:
Claus Gittinger <cg@exept.de>
parents: 9626
diff changeset
  7825
    "Created: / 17-11-2001 / 19:34:20 / cg"
11696
1718b69fe880 changed:
Claus Gittinger <cg@exept.de>
parents: 11694
diff changeset
  7826
    "Modified: / 27-07-2012 / 17:26:54 / cg"
11837
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7827
!
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7828
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7829
showingContext3:aContext nesting:nesting
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7830
    "return false, if this (intermediate) context is to be skipped.
13455
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  7831
     Here, we hide some well known methods, which are usually not too interesting;
11837
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7832
     the set of methods which are suppressed is my (claus's) own choice."
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7833
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7834
    |sel rec mClass
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7835
     sender senderReceiver senderSelector senderReceiverClass|
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7836
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7837
    hideSupportCode ifFalse:[^ true].
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7838
    aContext isNil ifTrue:[^ true].
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7839
13462
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7840
^ true.
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7841
"/ mhmh - what was this useful for?
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7842
"/    rec := aContext receiver.
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7843
"/    sel := aContext selector.
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7844
"/    mClass := aContext methodClass.
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7845
"/
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7846
"/    sender := aContext sender.
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7847
"/    sender notNil ifTrue:[
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7848
"/        senderSelector := sender selector.
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7849
"/        senderReceiver := sender receiver.
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7850
"/        senderReceiverClass := senderReceiver class.
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7851
"/    ].
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7852
"/
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7853
"/    (sel == #perform:
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7854
"/    or:[sel == #perform:with:
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7855
"/    or:[sel == #perform:with:with:
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7856
"/    or:[sel == #perform:with:with:with:
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7857
"/    or:[sel == #perform:with:with:with:with:
13464
931d28c589b7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13462
diff changeset
  7858
"/    or:[sel == #perform:with:with:with:with:with:
13462
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7859
"/    or:[sel == #perform:withArguments:
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7860
"/    or:[sel == #perform:with:ifNotUnderstood:
13464
931d28c589b7 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13462
diff changeset
  7861
"/    or:[sel == #perform:withArguments:ifNotUnderstood:]]]]]]]])
13462
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7862
"/    ifTrue:[
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7863
"/        mClass == Object ifTrue:[^ false]
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7864
"/    ].
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7865
"/
e90dca80cfc2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13455
diff changeset
  7866
"/    ^ true.
11837
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7867
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7868
    "Created: / 17-11-2001 / 19:34:20 / cg"
d3c4bfa00b18 added: #showingContext3:nesting:
Claus Gittinger <cg@exept.de>
parents: 11836
diff changeset
  7869
    "Modified: / 27-07-2012 / 17:26:54 / cg"
1240
ff3fdaa72df6 In #destroy CodeView>>contents: has been called and caused a
Stefan Vogel <sv@exept.de>
parents: 1213
diff changeset
  7870
! !
ff3fdaa72df6 In #destroy CodeView>>contents: has been called and caused a
Stefan Vogel <sv@exept.de>
parents: 1213
diff changeset
  7871
4859
462e871755e0 method category rename
Claus Gittinger <cg@exept.de>
parents: 4816
diff changeset
  7872
!DebugView methodsFor:'private-control loop'!
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7873
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7874
controlLoop
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7875
    "this is a kludge:
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7876
        start a dispatchloop which exits when
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7877
        either continue, return or step is pressed
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7878
    "
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7879
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7880
    haveControl := true.
664
f5e2b3767ea8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 657
diff changeset
  7881
    [
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7882
        [haveControl] whileTrue:[
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  7883
AbortOperationRequest handle:[:ex |
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  7884
] do:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7885
            self controlLoopCatchingErrors
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  7886
]
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7887
        ].
3597
2e7fc0ae28c9 #valueNowOrOnUnwindDo: -> #ensure:
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
  7888
    ] ensure:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7889
        catchBlock := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7890
        haveControl := false
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7891
    ].
664
f5e2b3767ea8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 657
diff changeset
  7892
f5e2b3767ea8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 657
diff changeset
  7893
    "Modified: 9.7.1996 / 18:29:09 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7894
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7895
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7896
controlLoopCatchingErrors
328
bdfe5bbd376d ignore recursive BreakPoint invocations
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  7897
    "this is the debuggers own private event handling loop;
1187
Claus Gittinger <cg@exept.de>
parents: 1179
diff changeset
  7898
     errors are caught, to prevent recursive debugger-invocations."
328
bdfe5bbd376d ignore recursive BreakPoint invocations
Claus Gittinger <cg@exept.de>
parents: 317
diff changeset
  7899
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7900
    "setup a self removing catch-block"
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7901
    catchBlock := [catchBlock := nil. ^ nil].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7902
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7903
    (exclusive or:[windowGroup isNil]) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7904
        "if we do not have multiple processes or its a system process
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7905
         we start another dispatch loop, which exits when
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7906
         either continue, return or step is pressed
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7907
         or (via the catchBlock) if an error occurs.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7908
         Since our display is an extra exclusive one,
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7909
         all processing for normal views stops here ...
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7910
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7911
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7912
        WindowGroup setActiveGroup:windowGroup.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7913
        SignalSet anySignal handle:[:ex |
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7914
            |signal|
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7915
12687
1d78c217e701 use #creator instead of #signal
Claus Gittinger <cg@exept.de>
parents: 12671
diff changeset
  7916
            signal := ex creator.
11890
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7917
            (UserNotification accepts:signal) ifTrue:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7918
Transcript showCR:'UserNotification'.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7919
                (signal ~~ ActivityNotificationSignal) ifTrue:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7920
                    self showError:ex description.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7921
                ].
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7922
                ex proceed.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7923
            ].
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7924
            (HaltInterrupt accepts:signal) ifTrue:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7925
Transcript showCR:'HaltInterrupt'.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7926
                Transcript showCR:'Halt/Break in debugger ignored'.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7927
                ex proceed.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7928
            ].
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7929
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7930
            self showError:'*** Error in modal debugger:
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7931
334
00d06ac75a99 handle notifications without err'ing
ah
parents: 333
diff changeset
  7932
>>>> Signal:  ' , signal printString , '
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7933
>>>> In:      ' , ex suspendedContext printString , '
1016
59ebb6068892 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  7934
>>>> From:    ' , ex suspendedContext sender printString , '
59ebb6068892 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  7935
>>>>     :    ' , ex suspendedContext sender sender printString , '
59ebb6068892 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  7936
>>>>     :    ' , ex suspendedContext sender sender sender printString , '
59ebb6068892 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  7937
>>>>     :    ' , ex suspendedContext sender sender sender sender printString , '
3570
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  7938
>>>>     :    ' , ex suspendedContext sender sender sender sender sender printString , '
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  7939
>>>>     :    ' , ex suspendedContext sender sender sender sender sender sender printString , '
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  7940
>>>>     :    ' , ex suspendedContext sender sender sender sender sender sender sender printString , '
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  7941
>>>>     :    ' , ex suspendedContext sender sender sender sender sender sender sender sender printString , '
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  7942
>>>>     :    ' , ex suspendedContext sender sender sender sender sender sender sender sender sender printString , '
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  7943
>>>>     :    ' , ex suspendedContext sender sender sender sender sender sender sender sender sender sender printString , '
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  7944
>>>>     :    ' , ex suspendedContext sender sender sender sender sender sender sender sender sender sender sender printString , '
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  7945
>>>>     :    ' , ex suspendedContext sender sender sender sender sender sender sender sender sender sender sender sender printString , '
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  7946
>>>>     :    ' , ex suspendedContext sender sender sender sender sender sender sender sender sender sender sender sender sender printString , '
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  7947
>>>>     :    ' , ex suspendedContext sender sender sender sender sender sender sender sender sender sender sender sender sender sender printString , '
4816
08695fc6e1e9 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 4676
diff changeset
  7948
>>>> Message: ' , ex description , '
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7949
1187
Claus Gittinger <cg@exept.de>
parents: 1179
diff changeset
  7950
caught & ignored.'.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7951
            ex return.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7952
        ] do:[
11890
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7953
"/            UserNotification handle:[:ex |
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7954
"/                (ex signal == ActivityNotificationSignal) ifTrue:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7955
"/                    ex proceed
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7956
"/                ].
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7957
"/                self showError:ex description.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7958
"/                ex proceed.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7959
"/            ] do:[
13965
6213444511ae class: DebugView
Stefan Vogel <sv@exept.de>
parents: 13934
diff changeset
  7960
                self graphicsDevice
11890
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7961
                    dispatchModalWhile:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7962
                        Processor activeProcess state:#debug.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7963
                        haveControl].
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  7964
"/            ]
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7965
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7966
        WindowGroup setActiveGroup:nil.
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  7967
    ] ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7968
        "we do have multiple processes -
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7969
         simply enter the DebugViews-Windowgroup event loop.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7970
         effectively suspending event processing for the currently
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7971
         active group.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7972
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7973
        SignalSet anySignal handle:[:ex |
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7974
            |answer signal eMsg|
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7975
12687
1d78c217e701 use #creator instead of #signal
Claus Gittinger <cg@exept.de>
parents: 12671
diff changeset
  7976
            signal := ex creator.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7977
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7978
            DebuggingDebugger ~~ true ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7979
                (signal == ActivityNotification) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7980
                    ex proceed
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7981
                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7982
                "/
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7983
                "/ ignore exceptions which say they explicitly have to be ignored
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7984
                "/
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7985
                ex catchInDebugger ifTrue:[
12333
a2387c6089f4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12106
diff changeset
  7986
                    'DebugView [info]: ',signal printString,'-signal in debugger caught for close' infoPrintCR.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7987
                    self destroy.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7988
                    ex reject
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7989
                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7990
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7991
                "/
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7992
                "/ ignore recursive breakpoints
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7993
                "/
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7994
                (signal isControlInterrupt) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7995
                    ignoreBreakpoints == true ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7996
                        'DebugView [info]: halt/break in debugger ignored 1' infoPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7997
                        ('DebugView [info]: ',ex suspendedContext printString) infoPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7998
                        ex proceed
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  7999
                    ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8000
                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8001
                (signal == TerminateProcessRequest) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8002
                    "/ mhm - someone wants to shoot me down while debugging ...
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8003
                    answer := Dialog
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8004
                                choose:('Process termination signal arrived while debugging\\close debugger ?') withCRs
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8005
                                labels:#( 'Ignore' 'Close & terminate' )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8006
                                values:#( #proceed #close )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8007
                                default:#close.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8008
                    answer == #close ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8009
                        self destroy.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8010
                        ex reject
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8011
                    ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8012
                    ex return.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8013
                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8014
                signal == RecursiveExceptionError ifTrue:[
12687
1d78c217e701 use #creator instead of #signal
Claus Gittinger <cg@exept.de>
parents: 12671
diff changeset
  8015
                    (ex exception creator == BreakPointInterrupt)
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8016
                    ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8017
                        'DebugView [info]: recursive breakpoint in debugger ignored' infoPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8018
                        ex proceed.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8019
                    ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8020
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8021
                    self showError:'*** Recursive error in debugger:
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  8022
12687
1d78c217e701 use #creator instead of #signal
Claus Gittinger <cg@exept.de>
parents: 12671
diff changeset
  8023
>>>> Signal:  ' , ex creator printString , '
1d78c217e701 use #creator instead of #signal
Claus Gittinger <cg@exept.de>
parents: 12671
diff changeset
  8024
>>>>          ' , ex parameter creator printString , '
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  8025
>>>> In:      ' , ex suspendedContext printString , '
1016
59ebb6068892 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  8026
>>>> From:    ' , ex suspendedContext sender printString , '
59ebb6068892 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  8027
>>>>     :    ' , ex suspendedContext sender sender printString , '
59ebb6068892 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  8028
>>>>     :    ' , ex suspendedContext sender sender sender printString , '
59ebb6068892 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  8029
>>>>     :    ' , ex suspendedContext sender sender sender sender printString , '
4816
08695fc6e1e9 #errorSignal -> #description
Stefan Vogel <sv@exept.de>
parents: 4676
diff changeset
  8030
>>>> Message: ' , ex description , '
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  8031
1187
Claus Gittinger <cg@exept.de>
parents: 1179
diff changeset
  8032
caught & ignored.'.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8033
                    ex return
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8034
                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8035
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8036
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8037
            self topView raiseDeiconified.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8038
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8039
            eMsg := ex description.
12687
1d78c217e701 use #creator instead of #signal
Claus Gittinger <cg@exept.de>
parents: 12671
diff changeset
  8040
            (signal isControlInterrupt) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8041
                eMsg := eMsg , Character cr asString , 'in ' , ex suspendedContext printString
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8042
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8043
            Dialog aboutToOpenBoxNotificationSignal
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8044
                handle:[:ex | ex proceed ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8045
                do:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8046
                    answer := Dialog
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8047
                        choose:('Error in debugger:\' withCRs , eMsg , '\\debug again ?' withCRs)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8048
                        labels:#( 'Proceed' 'Cancel' 'Debug' )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8049
                        values:#( #proceed #cancel #debug )
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8050
                        default:#cancel.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8051
                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8052
            answer == #debug ifTrue:[
12333
a2387c6089f4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12106
diff changeset
  8053
                'DebugView [info]: caught exception - debugging' infoPrintCR.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8054
                Debugger
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8055
                    enterUnconditional:(ex suspendedContext)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8056
                    withMessage:'Error in debugger: ' , eMsg
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8057
                    mayProceed:true.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8058
                ex proceed.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8059
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8060
            answer == #proceed ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8061
                'DebugView [info]: ignored exception - proceeding' infoPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8062
                ex proceed.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8063
            ].
12333
a2387c6089f4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12106
diff changeset
  8064
            'DebugView [info]: caught exception - returning' infoPrintCR.
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8065
            ex return.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8066
        ] do:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8067
            "/ make certain that sub-debuggers, inspectors etc.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8068
            "/ come up on my device.
13965
6213444511ae class: DebugView
Stefan Vogel <sv@exept.de>
parents: 13934
diff changeset
  8069
            Screen currentScreenQuerySignal answer:self graphicsDevice
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8070
            do:[
13363
4cc837ad3854 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13362
diff changeset
  8071
                Dialog aboutToOpenBoxNotificationSignal
4cc837ad3854 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13362
diff changeset
  8072
                    handle:[:ex | ex proceed ]
4cc837ad3854 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13362
diff changeset
  8073
                    do:[
4cc837ad3854 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13362
diff changeset
  8074
                        windowGroup
4cc837ad3854 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13362
diff changeset
  8075
                            eventLoopWhile:[Processor activeProcess state:#debug.
4cc837ad3854 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13362
diff changeset
  8076
                                              true]
4cc837ad3854 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13362
diff changeset
  8077
                            onLeave:[]
4cc837ad3854 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13362
diff changeset
  8078
                    ]
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8079
            ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8080
        ].
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  8081
    ].
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  8082
    catchBlock := nil.
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  8083
11818
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  8084
    "Created: / 24-11-1995 / 20:33:45 / cg"
94fb736aa226 changed:
Claus Gittinger <cg@exept.de>
parents: 11704
diff changeset
  8085
    "Modified: / 26-09-2012 / 15:03:39 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  8086
! !
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  8087
13416
42dde7fc4713 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13415
diff changeset
  8088
!DebugView methodsFor:'queries'!
42dde7fc4713 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13415
diff changeset
  8089
13488
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8090
canDefineForCallee:callee
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8091
    "again, pure heuristics here"
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8092
13489
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8093
    |mthd app heuristic selector|
13488
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8094
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8095
    classToDefineIn := selectorToDefine := nil.    "/ sorry - left as info to define action
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8096
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8097
    callee notNil ifTrue:[
13489
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8098
        "/ clicked on an unimplemented method ?
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8099
        callee sender notNil ifTrue:[
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8100
            mthd := callee sender method.
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8101
            mthd isNil ifTrue:[
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8102
                callee sender isBlockContext ifFalse:[
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8103
                    "/ an unimplemented method
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8104
                    selector := callee sender selector.
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8105
                    (callee sender receiver class canUnderstand:selector) ifFalse:[
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8106
                        classToDefineIn := callee sender receiver class.
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8107
                        selectorToDefine := selector.
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8108
                        ^ true
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8109
                    ]
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8110
                ]
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8111
            ].
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8112
        ].
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8113
13488
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8114
        mthd := callee method.
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8115
        mthd notNil ifTrue:[
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8116
            (mthd selector == #subclassResponsibility) ifTrue:[
13589
92a1d2b4e1db class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13562
diff changeset
  8117
                classToDefineIn := callee sender receiver class.
92a1d2b4e1db class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13562
diff changeset
  8118
                selectorToDefine := callee sender selector.
13488
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8119
                ^ true.
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8120
            ].
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8121
13553
728eae2b6327 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13544
diff changeset
  8122
            "/ that's a big hack, but I am tired of navigating to find the missing menu message...
13488
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8123
            "/ you will thank me!!
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8124
            mthd selector == #error:mayProceed: ifTrue:[
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8125
                (callee receiver isKindOf:MenuPanel) ifTrue:[
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8126
                    callee sender home notNil ifTrue:[
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8127
                        (callee sender home selector startsWith:'accept:') ifTrue:[
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8128
                            (inspectedProcess notNil and:[inspectedProcess isGUIProcess]) ifTrue:[
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8129
                                (app := self processesApplication) notNil ifTrue:[
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8130
                                    heuristic := callee sender home argsAndVars select:[:o | o isSymbol].
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8131
                                    heuristic size == 1 ifTrue:[
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8132
                                        classToDefineIn := app class.
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8133
                                        selectorToDefine := heuristic first.    
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8134
                                        ^ true
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8135
                                    ].
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8136
                                ].
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8137
                            ].
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8138
                        ].
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8139
                    ].
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8140
                ].
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8141
            ]
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8142
        ]
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8143
    ].
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8144
    ^ false
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8145
!
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8146
13489
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8147
showingAlreadyModifiedCode
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8148
    ^ methodCodeToggle isVisible
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8149
    and:[ methodCodeToggleSelectionHolder value = 2 ]
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8150
! !
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8151
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8152
!DebugView methodsFor:'user interaction'!
814f26876cd3 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13488
diff changeset
  8153
3097
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  8154
checkIfCodeIsReallyModified
6616
b8c6a5cf6522 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6601
diff changeset
  8155
    |source|
b8c6a5cf6522 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6601
diff changeset
  8156
3097
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  8157
    codeView modified ifFalse:[^ false].
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  8158
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  8159
    currentMethod isNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8160
        ^ false
3097
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  8161
    ].
6616
b8c6a5cf6522 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6601
diff changeset
  8162
    source := currentMethod source.
b8c6a5cf6522 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6601
diff changeset
  8163
    source notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8164
        source string = codeView contents string ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8165
            ^ false
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8166
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8167
        (source string withTabsExpanded:8) = (codeView contents string withTabsExpanded:8) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8168
            ^ false
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8169
        ].
6616
b8c6a5cf6522 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6601
diff changeset
  8170
    ].
3097
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  8171
    ^ true
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  8172
!
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  8173
1765
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  8174
checkSelectionChangeAllowed
2678
90eb8be47ac4 avoid annoying modified-code dialog when reselecting the same
Claus Gittinger <cg@exept.de>
parents: 2633
diff changeset
  8175
    ^ self checkSelectionChangeAllowed:nil
90eb8be47ac4 avoid annoying modified-code dialog when reselecting the same
Claus Gittinger <cg@exept.de>
parents: 2633
diff changeset
  8176
!
90eb8be47ac4 avoid annoying modified-code dialog when reselecting the same
Claus Gittinger <cg@exept.de>
parents: 2633
diff changeset
  8177
90eb8be47ac4 avoid annoying modified-code dialog when reselecting the same
Claus Gittinger <cg@exept.de>
parents: 2633
diff changeset
  8178
checkSelectionChangeAllowed:newSelection
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  8179
    |answer v|
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  8180
3097
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  8181
    self checkIfCodeIsReallyModified ifFalse:[^ true].
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  8182
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  8183
    (newSelection notNil
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  8184
    and:[newSelection = contextView selection]) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8185
        ^ true
1765
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  8186
    ].
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  8187
13388
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  8188
    answer := Dialog 
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  8189
                confirmWithCancel:('Code modified - change selection anyway ?')
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  8190
                labels:#('No' 'No, Show Diffs' 'Yes').
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  8191
    answer isNil ifTrue:[^ false].
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  8192
    answer == false ifTrue:[
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  8193
        v := DiffCodeView
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  8194
                openOn:codeView contents
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  8195
                label:(resources string:'Changed code (to be accepted ?)')
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  8196
                and:currentMethod source
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  8197
                label:(resources string:'Method''s actual (maybe original) code').
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  8198
        v label:(resources string:'Comparing method''s code').
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  8199
        v waitUntilVisible.
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  8200
        ^ false 
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  8201
    ].
65c95fd29280 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13376
diff changeset
  8202
3097
dada585e916d really modfified test (in step, ...)
Claus Gittinger <cg@exept.de>
parents: 3094
diff changeset
  8203
    codeView modified:false.
1765
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  8204
    ^ true
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  8205
!
a704122c92dc confirm close/selection change if codeView was modified without
Claus Gittinger <cg@exept.de>
parents: 1764
diff changeset
  8206
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  8207
codeAccept:someCode
13394
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
  8208
    "user wants some code to be recompiled"
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
  8209
14640
692dba3782da class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14608
diff changeset
  8210
    ParseError handle:[:ex |
692dba3782da class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14608
diff changeset
  8211
        codeView selectLine:ex lineNumber. "/ selectFromCharacterPosition:ex startPosition to:ex endPosition.
692dba3782da class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14608
diff changeset
  8212
        Dialog information:ex description.
692dba3782da class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14608
diff changeset
  8213
"/            ParseError new
692dba3782da class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14608
diff changeset
  8214
"/                errorMessage:aMessage startPosition:position endPosition:endPos;
692dba3782da class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14608
diff changeset
  8215
"/                parameter:self;
692dba3782da class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14608
diff changeset
  8216
"/                lineNumber:tokenLineNr; "lineNr"
692dba3782da class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14608
diff changeset
  8217
"/                raiseRequest.
692dba3782da class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14608
diff changeset
  8218
    ] do:[        
692dba3782da class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14608
diff changeset
  8219
        ^ self codeAccept:someCode unwind:false category:nil onCancel:nil
692dba3782da class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14608
diff changeset
  8220
    ].
7553
83cbd8707d1e do not unwind after an accept.
Claus Gittinger <cg@exept.de>
parents: 7481
diff changeset
  8221
83cbd8707d1e do not unwind after an accept.
Claus Gittinger <cg@exept.de>
parents: 7481
diff changeset
  8222
    "Modified: / 28-11-2006 / 19:49:04 / cg"
266
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  8223
!
8645fbd8fdb7 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 243
diff changeset
  8224
8595
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8225
codeAccept:someCode inClass:aClass unwind:doUnwind category:category onCancel:cancelAction
13394
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
  8226
    "user wants some code to be recompiled.
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
  8227
     Optionally unwind stack to right above the changed method.
13455
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  8228
     This undwind option is a leftover from times, when the debugger had no chance to
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  8229
     show the original code. 
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  8230
     Now, it can, and got a choice-field to select between original and changed code. 
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  8231
     So the undwind option is not longer used and probably completely obsolete now 
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  8232
     (aka: this method is always called with doUnwind==false, these days)"
3427
c1a0db432106 if dense backtrace:
Claus Gittinger <cg@exept.de>
parents: 3412
diff changeset
  8233
13842
609697ec1e06 merged in jv's chenges
Claus Gittinger <cg@exept.de>
parents: 13764
diff changeset
  8234
    |con newMethod|
3427
c1a0db432106 if dense backtrace:
Claus Gittinger <cg@exept.de>
parents: 3412
diff changeset
  8235
c1a0db432106 if dense backtrace:
Claus Gittinger <cg@exept.de>
parents: 3412
diff changeset
  8236
    codeView withWaitCursorDo:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8237
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8238
         find the method-home context for this one
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8239
        "
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8240
        doUnwind ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8241
            con := selectedContext.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8242
            top := con.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8243
            [con notNil] whileTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8244
                (con methodHome == selectedContext) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8245
                    top := con
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8246
                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8247
                con := con sender
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8248
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8249
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8250
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8251
        "/
13394
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
  8252
        "/ provide the classes nameSpace and changefile-update answers;
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
  8253
        "/ in case we accept while in another context, to not capture these settings again
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8254
        "/
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8255
        (Class updateChangeFileQuerySignal,
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8256
         Class updateChangeListQuerySignal,
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8257
         Class updateHistoryLineQuerySignal) answer:true
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8258
        do:[
13455
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  8259
            Class nameSpaceQuerySignal answer:(aClass nameSpace)
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8260
            do:[
13394
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
  8261
                "/ the compiler nowadays already cares for the package...
13455
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  8262
                "/ no, actually, it does not in case we are in the middle of a fileIn,
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  8263
                "/ and packageQuery is already answered by someone else.
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  8264
                "/ Better make it unpackaged, in case the user makes changes to other
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  8265
                "/ classes here (actually, I often change compiler, debugger, inspector here)
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  8266
                Class packageQuerySignal
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  8267
                answer:nil
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  8268
                do:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8269
                    codeView contents:someCode.
12555
cbfa9ef3e906 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12552
diff changeset
  8270
                    Class methodRedefinitionNotification 
cbfa9ef3e906 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12552
diff changeset
  8271
                        answer:#keep    
cbfa9ef3e906 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12552
diff changeset
  8272
                        do:[
14332
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8273
                            | breakpoints |
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8274
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8275
                            breakpoints := nil.
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8276
                            codeView isCodeView2 ifTrue:[
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8277
                                breakpoints := codeView breakpoints.
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8278
                            ].
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8279
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8280
                            BreakpointQuery answer: breakpoints do:[
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8281
                                "/ Use original method's programming language instead of class's one.
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8282
                                "/ In most cases it's the same, but it may be that the method edited
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8283
                                "/ and accepted was an extension method written in another languages
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8284
                                "/ (such as Smalltalk extension to Java class or Ruby extension to
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8285
                                "/ Smalltalk class.
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8286
                                newMethod := selectedContext programmingLanguage compilerClass
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8287
                                                 compile:someCode
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8288
                                                 forClass:aClass
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8289
                                                 inCategory:category
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8290
                                                 notifying:codeView.
2be5e29f8ea3 Improved support for line breakpoints.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14200
diff changeset
  8291
                            ].
12555
cbfa9ef3e906 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12552
diff changeset
  8292
                        ].
13455
510fbf53592c class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13416
diff changeset
  8293
                ].
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8294
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8295
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8296
12540
a55d080604a2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12534
diff changeset
  8297
        methodCodeToggleSelectionHolder value:2.    "/ showing current code
a55d080604a2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12534
diff changeset
  8298
        methodCodeToggle beVisible.
a55d080604a2 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12534
diff changeset
  8299
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8300
        inspecting ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8301
            (newMethod notNil and:[newMethod ~~ #Error]) ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8302
                codeView modified:false.
14676
cc90618aa4be Fix in DebugView: update codeView's method when new code is accepted in debugger.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14662
diff changeset
  8303
                codeView isCodeView2 ifTrue:[ 
cc90618aa4be Fix in DebugView: update codeView's method when new code is accepted in debugger.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14662
diff changeset
  8304
                    codeView methodHolder value: newMethod.
cc90618aa4be Fix in DebugView: update codeView's method when new code is accepted in debugger.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14662
diff changeset
  8305
                ].
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8306
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8307
                doUnwind ifTrue:[
13394
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
  8308
                    "/ if it worked, and doUnwind is true,
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
  8309
                    "/ remove everything up to and including top
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
  8310
                    "/ from the context chain
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
  8311
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8312
                    selectedContext canReturn ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8313
                        self setContext:(top "sender").
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8314
                        exitAction := #restart.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8315
                        selectedContext setLineNumber:1.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8316
                        self doRestart.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8317
                    ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8318
                        self setContext:(top sender).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8319
                        exitAction := #return.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8320
                    ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8321
                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8322
            ] ifFalse:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8323
                ^ cancelAction value
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8324
            ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8325
        ].
3427
c1a0db432106 if dense backtrace:
Claus Gittinger <cg@exept.de>
parents: 3412
diff changeset
  8326
    ].
c1a0db432106 if dense backtrace:
Claus Gittinger <cg@exept.de>
parents: 3412
diff changeset
  8327
7065
a6e34a47f7fb accept in the debugger always assignes the classes'
Claus Gittinger <cg@exept.de>
parents: 7000
diff changeset
  8328
    "Created: / 17-11-2001 / 21:50:55 / cg"
a6e34a47f7fb accept in the debugger always assignes the classes'
Claus Gittinger <cg@exept.de>
parents: 7000
diff changeset
  8329
    "Modified: / 29-08-2006 / 14:22:22 / cg"
14676
cc90618aa4be Fix in DebugView: update codeView's method when new code is accepted in debugger.
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 14662
diff changeset
  8330
    "Modified: / 24-07-2014 / 19:20:41 / Jan Vrany <jan.vrany@fit.cvut.cz>"
3427
c1a0db432106 if dense backtrace:
Claus Gittinger <cg@exept.de>
parents: 3412
diff changeset
  8331
!
c1a0db432106 if dense backtrace:
Claus Gittinger <cg@exept.de>
parents: 3412
diff changeset
  8332
8595
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8333
codeAccept:someCode unwind:doUnwind category:givenCategoryOrNil onCancel:cancelAction
13394
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
  8334
    "user wants some code to be recompiled"
8595
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8335
12812
52bef38f9017 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12809
diff changeset
  8336
    |sel implementorClass receiverClass method category|
8595
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8337
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8338
    codeView withWaitCursorDo:[
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8339
"/        "
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8340
"/         find the method-home context for this one
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8341
"/        "
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8342
"/        con := selectedContext.
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8343
"/        top := con.
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8344
"/        [con notNil] whileTrue:[
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8345
"/            (con methodHome == selectedContext) ifTrue:[
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8346
"/                top := con
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8347
"/            ].
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8348
"/            con := con sender
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8349
"/        ].
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8350
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8351
        "
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8352
         use class&selector to find the method for the compilation
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8353
         and compile.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8354
        "
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8355
        category := givenCategoryOrNil.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8356
        sel := selectedContext selector.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8357
        implementorClass := selectedContext methodClass.
11898
970fade2f840 changed:
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
  8358
        implementorClass isNil ifTrue:[
970fade2f840 changed:
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
  8359
            method := selectedContext method.
11943
10e162265c0e changed: #codeAccept:unwind:category:onCancel:
Claus Gittinger <cg@exept.de>
parents: 11912
diff changeset
  8360
            (method notNil and:[method mclass isNil]) ifTrue:[
11898
970fade2f840 changed:
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
  8361
                method := method wrapper.
970fade2f840 changed:
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
  8362
            ].
970fade2f840 changed:
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
  8363
            method notNil ifTrue:[
970fade2f840 changed:
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
  8364
                implementorClass := method mclass
970fade2f840 changed:
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
  8365
            ].
970fade2f840 changed:
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
  8366
        ] ifFalse:[
970fade2f840 changed:
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
  8367
            method := selectedContext method.
970fade2f840 changed:
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
  8368
        ].
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8369
        implementorClass notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8370
            category isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8371
                method isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8372
                    method := implementorClass compiledMethodAt:sel.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8373
                ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8374
                category := method category
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8375
            ]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8376
        ] ifFalse:[
12812
52bef38f9017 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12809
diff changeset
  8377
            receiverClass := selectedContext receiver class.
52bef38f9017 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12809
diff changeset
  8378
            implementorClass := receiverClass whichClassImplements:sel.
52bef38f9017 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12809
diff changeset
  8379
            implementorClass := implementorClass ? receiverClass.
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8380
            implementorClass ~~ Object ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8381
                implementorClass := Dialog
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8382
                                        request:('Define ''%1'' in class:' bindWith:sel allBold)
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8383
                                        initialAnswer:implementorClass name
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8384
                                        list:(implementorClass withAllSuperclasses collect:[:each| each name]).
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8385
                implementorClass size == 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8386
                    ^ cancelAction value "/ cancelled
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8387
                ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8388
                implementorClass := Smalltalk classNamed:implementorClass.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8389
                implementorClass isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8390
                    Dialog warn:'No such class'.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8391
                    ^ cancelAction value "/ cancelled
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8392
                ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8393
            ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8394
        ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8395
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8396
        self
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8397
            codeAccept:someCode
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8398
            inClass:implementorClass
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8399
            unwind:doUnwind
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8400
            category:category
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8401
            onCancel:cancelAction.
8595
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8402
    ].
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8403
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8404
    "Created: / 17-11-2001 / 21:50:55 / cg"
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8405
    "Modified: / 29-08-2006 / 14:22:22 / cg"
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8406
!
9ae7fccae337 allow \"define\" when in a subclassResponsibility method
Claus Gittinger <cg@exept.de>
parents: 8592
diff changeset
  8407
7912
3c7e853977b7 codeCompletion added
Claus Gittinger <cg@exept.de>
parents: 7888
diff changeset
  8408
codeCompletion
14109
6269ce6fbb65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13965
diff changeset
  8409
    "/ I found this code 3 times (CodeView2, NewSystemBrowser and DebugView) - smell? 
6269ce6fbb65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13965
diff changeset
  8410
    "/ (can we move that to a utility - probably DoWhatIMeanSupport)
6269ce6fbb65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13965
diff changeset
  8411
6269ce6fbb65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13965
diff changeset
  8412
    |cls language|
7912
3c7e853977b7 codeCompletion added
Claus Gittinger <cg@exept.de>
parents: 7888
diff changeset
  8413
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  8414
    currentMethod isNil ifTrue:[ ^ self ].
8338
2a8df762ed0b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8327
diff changeset
  8415
7912
3c7e853977b7 codeCompletion added
Claus Gittinger <cg@exept.de>
parents: 7888
diff changeset
  8416
    cls := currentMethod mclass.
14109
6269ce6fbb65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13965
diff changeset
  8417
    cls notNil ifTrue:[ 
6269ce6fbb65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13965
diff changeset
  8418
        language := cls programmingLanguage.
6269ce6fbb65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13965
diff changeset
  8419
    ].
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  8420
7912
3c7e853977b7 codeCompletion added
Claus Gittinger <cg@exept.de>
parents: 7888
diff changeset
  8421
    UserInformation handle:[:ex |
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8422
        ex proceed.
7912
3c7e853977b7 codeCompletion added
Claus Gittinger <cg@exept.de>
parents: 7888
diff changeset
  8423
    ] do:[
14109
6269ce6fbb65 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13965
diff changeset
  8424
        DoWhatIMeanSupport codeCompletionForLanguage:language class:cls context:selectedContext codeView:codeView.
13562
56d3659b75a0 Pass programming language when asking DWIM to complete code
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13553
diff changeset
  8425
    ].
56d3659b75a0 Pass programming language when asking DWIM to complete code
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13553
diff changeset
  8426
56d3659b75a0 Pass programming language when asking DWIM to complete code
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 13553
diff changeset
  8427
    "Modified: / 18-09-2013 / 14:20:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
7912
3c7e853977b7 codeCompletion added
Claus Gittinger <cg@exept.de>
parents: 7888
diff changeset
  8428
!
3c7e853977b7 codeCompletion added
Claus Gittinger <cg@exept.de>
parents: 7888
diff changeset
  8429
3570
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  8430
confirm:aString
6971
ef52630187a5 comment
Claus Gittinger <cg@exept.de>
parents: 6849
diff changeset
  8431
    "open a modal yes-no dialog.
ef52630187a5 comment
Claus Gittinger <cg@exept.de>
parents: 6849
diff changeset
  8432
     Redefined here, to answer true, if exclusice Debugger, which cannot handle popup boxes"
3570
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  8433
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  8434
    (exclusive or:[windowGroup isNil]) ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8435
        ^ true
3570
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  8436
    ].
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  8437
    ^ super confirm:aString.
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  8438
!
da6d661593d8 Exclusive debugger (on top of scheduler process) is working again.
Stefan Vogel <sv@exept.de>
parents: 3542
diff changeset
  8439
1284
091454814297 try to catch more errors when showing sourceCode
Claus Gittinger <cg@exept.de>
parents: 1281
diff changeset
  8440
doShowSelection:lineNr
301
cd15cb77e4b6 show wait cursor while accessing sources (may take long with CVS)
Claus Gittinger <cg@exept.de>
parents: 300
diff changeset
  8441
    "user clicked on a header line - show selected code in textView.
303
1d94813f1977 interest is written with one 'r' (shame on me)
Claus Gittinger <cg@exept.de>
parents: 301
diff changeset
  8442
     Also sent to autoselect an interesting context on entry."
0
571fd5eee315 Initial revision
claus
parents:
diff changeset
  8443
9235
fdcf1d96cdfe changed:
Stefan Vogel <sv@exept.de>
parents: 9155
diff changeset
  8444
    HaltInterrupt handle:[:ex |
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8445
        ignoreBreakpoints ifFalse:[ex reject].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8446
        ('DebugView [info]: halt/breakpoint in debugger at %1 ignored [doShowSelection.]' bindWith:ex suspendedContext) infoPrintCR.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8447
        ex proceed
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  8448
    ] do:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8449
        self updateForContext:lineNr
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  8450
    ].
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  8451
    self updateMenuItems
3432
087493c18c74 class based exceptions - no longer need to send #breakPointSígnal
Claus Gittinger <cg@exept.de>
parents: 3431
diff changeset
  8452
3447
f1a20a8ba485 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3441
diff changeset
  8453
    "Modified: / 17.11.2001 / 22:12:16 / cg"
1309
f13dd58a3943 dont break if MessageTracer is not present
Claus Gittinger <cg@exept.de>
parents: 1302
diff changeset
  8454
!
f13dd58a3943 dont break if MessageTracer is not present
Claus Gittinger <cg@exept.de>
parents: 1302
diff changeset
  8455
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  8456
hideStackInspector
4932
0758cd0b8ce9 show source of blocks if possible
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  8457
    stackInspector notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8458
        stackInspector destroy.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8459
        stackInspector := nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8460
        receiverInspector origin:(0.0 @ 0.0) corner:0.5 @ 1.0.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8461
        contextInspector origin:(0.5 @ 0.0) corner:(1.0 @ 1.0)
4932
0758cd0b8ce9 show source of blocks if possible
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  8462
    ]
0758cd0b8ce9 show source of blocks if possible
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  8463
!
0758cd0b8ce9 show source of blocks if possible
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  8464
9500
76bc64543166 care for original vs. current methods code (if it was changed)
Claus Gittinger <cg@exept.de>
parents: 9488
diff changeset
  8465
methodCodeToggleChanged
76bc64543166 care for original vs. current methods code (if it was changed)
Claus Gittinger <cg@exept.de>
parents: 9488
diff changeset
  8466
    |sel|
76bc64543166 care for original vs. current methods code (if it was changed)
Claus Gittinger <cg@exept.de>
parents: 9488
diff changeset
  8467
76bc64543166 care for original vs. current methods code (if it was changed)
Claus Gittinger <cg@exept.de>
parents: 9488
diff changeset
  8468
    sel := contextView selection.
76bc64543166 care for original vs. current methods code (if it was changed)
Claus Gittinger <cg@exept.de>
parents: 9488
diff changeset
  8469
    sel notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8470
        self showSelection:sel
9500
76bc64543166 care for original vs. current methods code (if it was changed)
Claus Gittinger <cg@exept.de>
parents: 9488
diff changeset
  8471
    ]
76bc64543166 care for original vs. current methods code (if it was changed)
Claus Gittinger <cg@exept.de>
parents: 9488
diff changeset
  8472
76bc64543166 care for original vs. current methods code (if it was changed)
Claus Gittinger <cg@exept.de>
parents: 9488
diff changeset
  8473
    "Created: / 18-06-2010 / 12:29:21 / cg"
76bc64543166 care for original vs. current methods code (if it was changed)
Claus Gittinger <cg@exept.de>
parents: 9488
diff changeset
  8474
!
76bc64543166 care for original vs. current methods code (if it was changed)
Claus Gittinger <cg@exept.de>
parents: 9488
diff changeset
  8475
3517
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  8476
processEvent:anEvent
6129
4203bef24b27 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6046
diff changeset
  8477
    "filter keyboard events for popUp variable value display.
4203bef24b27 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6046
diff changeset
  8478
     Return true, if I have eaten the event"
3517
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  8479
12106
0dd284890b62 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12080
diff changeset
  8480
    <resource: #keyboard (#CodeCompletion )>
0dd284890b62 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12080
diff changeset
  8481
3517
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  8482
    |evView focusView key rawKey inCodeView|
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  8483
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  8484
    evView := anEvent view.
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  8485
    evView notNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8486
        focusView := evView windowGroup focusView.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8487
        focusView isNil ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8488
            focusView := evView.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8489
        ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8490
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8491
        anEvent isKeyPressEvent ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8492
            key := anEvent key.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8493
            rawKey := anEvent rawKey.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8494
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8495
            inCodeView := (focusView == codeView
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8496
                          or:[focusView isComponentOf:codeView]).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8497
            inCodeView ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8498
                key == #CodeCompletion ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8499
                    "/ complete the word before/under the cursor.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8500
                    self sensor
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8501
                        pushUserEvent:#codeCompletion
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8502
                        for:self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8503
                        withArguments:#().
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8504
                    ^ true
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8505
                ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8506
            ].
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8507
        ].
3517
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  8508
3602
2ba741dd596b avoid autoloading RBstuff
Claus Gittinger <cg@exept.de>
parents: 3597
diff changeset
  8509
false ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8510
        anEvent isButtonReleaseEvent ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8511
            anEvent view == codeView ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8512
                (RBParser notNil and:[RBParser isLoaded])
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8513
                ifTrue:[
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8514
                    self sensor
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8515
                        pushEvent:anEvent.  "/ must be first in queue
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8516
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8517
                    self sensor
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8518
                      pushUserEvent:#explainSelection
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8519
                      for:self
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8520
                      withArguments:nil.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8521
                    ^ true  "/ eaten
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8522
                ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8523
            ]
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8524
        ].
3602
2ba741dd596b avoid autoloading RBstuff
Claus Gittinger <cg@exept.de>
parents: 3597
diff changeset
  8525
].
2ba741dd596b avoid autoloading RBstuff
Claus Gittinger <cg@exept.de>
parents: 3597
diff changeset
  8526
3517
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  8527
    ].
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  8528
    ^ false
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  8529
!
df36801b26b7 preps for flyBy-value-display
Claus Gittinger <cg@exept.de>
parents: 3511
diff changeset
  8530
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  8531
setCurrentMethod:aMethodOrNil
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  8532
    currentMethod := aMethodOrNil.
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  8533
!
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  8534
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8535
showSelection:lineNr 
1327
c06a0c578e30 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
  8536
    "user clicked on a header line - show selected code in textView.
c06a0c578e30 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
  8537
     Also sent to autoselect an interesting context on entry."
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8538
    
11857
e561b4e978d0 Answer IsDebuggingQuery (with true).
Stefan Vogel <sv@exept.de>
parents: 11837
diff changeset
  8539
    UserNotification 
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8540
        handle:[:ex | 
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8541
            "/ ex suspendedContext fullPrintAll.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8542
            Transcript showCR:ex description.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8543
            "/ Transcript showCR:ex parameter.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8544
            ex proceed
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8545
        ]
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8546
        do:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8547
            Error 
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8548
                handle:[:ex | 
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8549
                    |s con|
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8550
12687
1d78c217e701 use #creator instead of #signal
Claus Gittinger <cg@exept.de>
parents: 12671
diff changeset
  8551
                    ex creator isControlInterrupt ifTrue:[
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8552
                        'DebugView [info]: halt/break ignored - while showing selection in debugger' 
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8553
                            infoPrintCR.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8554
                        ex proceed
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8555
                    ].
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8556
                    ('DebugView [info]: error at %1 when showing selection in debugger ignored' 
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8557
                        bindWith:ex suspendedContext) infoPrintCR.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8558
                    s := '' writeStream.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8559
                    s nextPutLine:'**** error in debugger, while extracting source'.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8560
                    s nextPutLine:'****'.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8561
                    s nextPutLine:'**** ',(ex description).
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8562
                    s nextPutLine:'****'.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8563
                    con := ex suspendedContext.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8564
                    s nextPutLine:'**** ',(con printString).
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8565
                    con := con sender.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8566
                    HaltInterrupt ignoreIn:[ con fullPrintAllOn:s. ].
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8567
                    
5842
ed293abd4f21 notification handling
Claus Gittinger <cg@exept.de>
parents: 5821
diff changeset
  8568
"/                            [con notNil] whileTrue:[
ed293abd4f21 notification handling
Claus Gittinger <cg@exept.de>
parents: 5821
diff changeset
  8569
"/                                Error catch:[:ex |
ed293abd4f21 notification handling
Claus Gittinger <cg@exept.de>
parents: 5821
diff changeset
  8570
"/                                    s nextPutAll: '**** '; nextPutLine:(con printString).
ed293abd4f21 notification handling
Claus Gittinger <cg@exept.de>
parents: 5821
diff changeset
  8571
"/                                ].
4947
c600f7430132 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4932
diff changeset
  8572
"/
5842
ed293abd4f21 notification handling
Claus Gittinger <cg@exept.de>
parents: 5821
diff changeset
  8573
"/                                (con receiver == self and:[con selector == #'enter:select:']) ifTrue:[
ed293abd4f21 notification handling
Claus Gittinger <cg@exept.de>
parents: 5821
diff changeset
  8574
"/                                    con := nil
ed293abd4f21 notification handling
Claus Gittinger <cg@exept.de>
parents: 5821
diff changeset
  8575
"/                                ] ifFalse:[
ed293abd4f21 notification handling
Claus Gittinger <cg@exept.de>
parents: 5821
diff changeset
  8576
"/                                    con := con sender.
ed293abd4f21 notification handling
Claus Gittinger <cg@exept.de>
parents: 5821
diff changeset
  8577
"/                                ]
ed293abd4f21 notification handling
Claus Gittinger <cg@exept.de>
parents: 5821
diff changeset
  8578
"/                            ].
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8579
                    
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8580
                    codeView contents:(s contents).
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8581
                    ex return.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8582
                ]
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8583
                do:[ self doShowSelection:lineNr ]
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8584
        ]
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8585
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8586
    "Modified: / 19-07-2012 / 10:56:58 / cg"
1327
c06a0c578e30 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
  8587
!
c06a0c578e30 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1319
diff changeset
  8588
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  8589
showStackInspectorFor:con
4932
0758cd0b8ce9 show source of blocks if possible
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  8590
    stackInspector isNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8591
        receiverInspector origin:(0.0 @ 0.0) corner:0.3 @ 1.0.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8592
        contextInspector origin:(0.3 @ 0.0) corner:(0.6 @ 1.0).
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8593
        stackInspector := InspectorView
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8594
                    origin:(0.6 @ 0.0)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8595
                    corner:(1.0 @ 1.0)
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8596
                    in:contextInspector superView.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8597
        stackInspector realize.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8598
        stackInspector fieldListLabel:'Stack'.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  8599
        stackInspector hideReceiver:true
4932
0758cd0b8ce9 show source of blocks if possible
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  8600
    ].
0758cd0b8ce9 show source of blocks if possible
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  8601
    stackInspector inspect:(con stackFrame asArray).
0758cd0b8ce9 show source of blocks if possible
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  8602
    stackInspector showLast
0758cd0b8ce9 show source of blocks if possible
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  8603
!
0758cd0b8ce9 show source of blocks if possible
Claus Gittinger <cg@exept.de>
parents: 4892
diff changeset
  8604
12529
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8605
updateContextInfoFor:aContext
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8606
    "additional info as-per selected context;
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8607
     for now:
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8608
        update:with:from: - show who was responsible
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8609
    "
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8610
12552
1b3bb88d6f44 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12551
diff changeset
  8611
    |whatChanged changedObject receiver|
12529
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8612
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8613
    aContext selector == #'update:with:from:' ifTrue:[
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8614
        receiver := aContext receiver.
12552
1b3bb88d6f44 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12551
diff changeset
  8615
        whatChanged := aContext argAt:1.
12529
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8616
        changedObject := aContext argAt:3.
12552
1b3bb88d6f44 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12551
diff changeset
  8617
1b3bb88d6f44 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12551
diff changeset
  8618
        changedObject isBehavior ifTrue:[
1b3bb88d6f44 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12551
diff changeset
  8619
            contextInfoLabel label:('update (',whatChanged printString allBold,') triggered by ',changedObject name allBold).
1b3bb88d6f44 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12551
diff changeset
  8620
            ^ self
1b3bb88d6f44 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12551
diff changeset
  8621
        ].
1b3bb88d6f44 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12551
diff changeset
  8622
12529
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8623
        receiver class allInstanceVariableNames keysAndValuesDo:[:i :nm |
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8624
            (receiver instVarAt:i) == changedObject ifTrue:[
12552
1b3bb88d6f44 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12551
diff changeset
  8625
                contextInfoLabel label:('update (',whatChanged printString allBold,') triggered by ',nm allBold).
12529
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8626
                ^ self
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8627
            ]
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8628
        ].
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8629
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8630
        (receiver isKindOf:ApplicationModel) ifTrue:[
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8631
            receiver builder notNil ifTrue:[
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8632
                (receiver builder bindings ? #()) keysAndValuesDo:[:eachAspect :eachValue |
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8633
                    eachValue == changedObject ifTrue:[
12552
1b3bb88d6f44 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12551
diff changeset
  8634
                        contextInfoLabel label:('update (',whatChanged printString allBold,') triggered by aspect ',eachAspect allBold).
12529
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8635
                        ^ self
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8636
                    ]
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8637
                ]
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8638
            ]
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8639
        ].
12552
1b3bb88d6f44 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12551
diff changeset
  8640
1b3bb88d6f44 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12551
diff changeset
  8641
        contextInfoLabel label:('update (',whatChanged printString allBold,') triggered by ',changedObject classNameWithArticle allBold).
1b3bb88d6f44 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12551
diff changeset
  8642
        ^self.
12529
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8643
    ].
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8644
    contextInfoLabel label:nil.
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8645
!
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  8646
1309
f13dd58a3943 dont break if MessageTracer is not present
Claus Gittinger <cg@exept.de>
parents: 1302
diff changeset
  8647
updateForContext:lineNr
f13dd58a3943 dont break if MessageTracer is not present
Claus Gittinger <cg@exept.de>
parents: 1302
diff changeset
  8648
    "show selected code for lineNr in contextList in textView.
f13dd58a3943 dont break if MessageTracer is not present
Claus Gittinger <cg@exept.de>
parents: 1302
diff changeset
  8649
     Also used to autoselect an interesting context on entry."
f13dd58a3943 dont break if MessageTracer is not present
Claus Gittinger <cg@exept.de>
parents: 1302
diff changeset
  8650
56
d0cb937cbcaa *** empty log message ***
claus
parents: 55
diff changeset
  8651
    |con homeContext sel method code canAccept
105
claus
parents: 101
diff changeset
  8652
     implementorClass lineNrInMethod rec m line
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  8653
     sender selSender tryVars possibleBlocks errMsg
3269
9566fbc92617 some refactoring;
Claus Gittinger <cg@exept.de>
parents: 3210
diff changeset
  8654
     codeSet highlighter evaluatorClass
11912
9bcd2727c37e changed: #updateForContext:
Claus Gittinger <cg@exept.de>
parents: 11911
diff changeset
  8655
     canDefine callee searchClass originalMethod cannotAcceptDueToOutdatedClass|
9bcd2727c37e changed: #updateForContext:
Claus Gittinger <cg@exept.de>
parents: 11911
diff changeset
  8656
9bcd2727c37e changed: #updateForContext:
Claus Gittinger <cg@exept.de>
parents: 11911
diff changeset
  8657
    canDefine := cannotAcceptDueToOutdatedClass := false.
8212
51f9ecb52ae8 flyByHelp in codeView
Claus Gittinger <cg@exept.de>
parents: 8194
diff changeset
  8658
    self setCurrentMethod:nil.
1804
dcb4f893ce7d remember current method - only ask for modification
Claus Gittinger <cg@exept.de>
parents: 1776
diff changeset
  8659
1309
f13dd58a3943 dont break if MessageTracer is not present
Claus Gittinger <cg@exept.de>
parents: 1302
diff changeset
  8660
    contextArray notNil ifTrue:[
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8661
        lineNr <= contextArray size ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8662
            con := contextArray at:lineNr.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8663
            callee := contextArray at:lineNr-1 ifAbsent:nil.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8664
        ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8665
        "
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8666
         clicking on the '** ...'-line shows more ...
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8667
        "
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8668
        con isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8669
            line := contextView list at:lineNr.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8670
            (line startsWith:'**') ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8671
                self showMore.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8672
                lineNr >= contextArray size ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8673
                    contextView setSelection:lineNr.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8674
                    con := contextArray at:lineNr ifAbsent:nil
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8675
                ]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8676
            ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8677
            con isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8678
                codeView contents:nil.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8679
                ^ self
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8680
            ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8681
        ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8682
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8683
        selectedContext := con.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8684
        m := contextView middleButtonMenu.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8685
        (m notNil and:[selectedContext notNil]) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8686
            m enableAll:#(browseImplementors browseSenders inspectContext)
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8687
        ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8688
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8689
        self withExecuteCursorDo:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8690
            codeSet := false.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8691
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8692
            "
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8693
             give it to the (lower right) inspector
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8694
            "
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8695
            Error handle:[:ex |
11595
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  8696
                'DebugView [warning]: error while accessing context: ' errorPrint.
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  8697
                ex description errorPrintCR.
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8698
                contextInspector inspect:nil.
12809
24d2a31e458b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12743
diff changeset
  8699
                contextInspector fieldListLabel:('Context').
11595
Claus Gittinger <cg@exept.de>
parents: 11573
diff changeset
  8700
                ex suspendedContext fullPrintAllOn: Transcript.
9479
7364779433be changed: #updateForContext:
Claus Gittinger <cg@exept.de>
parents: 9446
diff changeset
  8701
"/ ex reject.
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8702
            ] do:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8703
                contextInspector inspect:con.
12809
24d2a31e458b class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12743
diff changeset
  8704
                "/ contextInspector fieldListLabel:('Context: ',con method whoString).
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8705
                contextInspector tryToSelectKeyNamed:lastSelectionInContextInspector.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8706
            ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8707
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8708
            "/ show a stack inspector sometimes
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8709
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8710
            con hasStackToShow ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8711
                self showStackInspectorFor:con
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8712
            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8713
                self hideStackInspector
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8714
            ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8715
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8716
            homeContext := con methodHome.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8717
            con canReturn ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8718
                returnButton enable. restartButton enable.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8719
            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8720
                returnButton disable. restartButton disable.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8721
            ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8722
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8723
            lineNrInMethod := con lineNumber.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8724
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8725
            canAccept := false.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8726
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8727
            homeContext isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8728
                "
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8729
                 mhmh - an optimized block
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8730
                 should get the block here, and get the method from
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8731
                 that one ...
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8732
                 But in the current version, there is no easy way to get to the block
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8733
                 since that one is not in the context.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8734
                 A future new block calling scheme will fix this
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8735
                 (passing the block instead of the home as block argument).
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8736
                "
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8737
                (method := con method) isNil ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8738
                    "temporary kludge - peek into the sender context.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8739
                     If its a do-like method and there is a single block variable
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8740
                     in the args or temporaries, that must be the one.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8741
                     This helps in some cases.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8742
                    "
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8743
                    (sender := con sender) notNil ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8744
                        tryVars := false.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8745
                        (selSender := sender selector) notNil ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8746
                            ((selSender endsWith:'do:') or:[selSender endsWith:'Do:']) ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8747
                                tryVars := true.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8748
                            ]
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8749
                        ].
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8750
                        tryVars ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8751
                            possibleBlocks := sender argsAndVars select:[:v | v isBlock].
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8752
                            possibleBlocks := possibleBlocks select:[:b | b home isNil].
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8753
                            possibleBlocks size == 1 ifTrue:[
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8754
                                method := possibleBlocks first method.
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8755
                            ].
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8756
                        ]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8757
                    ].
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  8758
                ]
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8759
            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8760
                "fetch rec here - so we won't need context in doItAction"
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8761
                rec := homeContext receiver.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8762
                sel := homeContext selector.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8763
                sel notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8764
                    canAccept := true.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8765
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8766
                    implementorClass := homeContext methodClass.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8767
                    implementorClass isNil ifTrue:[
11898
970fade2f840 changed:
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
  8768
                        homeContext method notNil ifTrue:[
970fade2f840 changed:
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
  8769
                            WrappedMethod allInstancesDo:[:wrapped | 
970fade2f840 changed:
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
  8770
                                wrapped originalMethod == homeContext method ifTrue:[
970fade2f840 changed:
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
  8771
                                    implementorClass := wrapped mclass
970fade2f840 changed:
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
  8772
                                ]
11912
9bcd2727c37e changed: #updateForContext:
Claus Gittinger <cg@exept.de>
parents: 11911
diff changeset
  8773
                            ].
9bcd2727c37e changed: #updateForContext:
Claus Gittinger <cg@exept.de>
parents: 11911
diff changeset
  8774
                            implementorClass isNil ifTrue:[
9bcd2727c37e changed: #updateForContext:
Claus Gittinger <cg@exept.de>
parents: 11911
diff changeset
  8775
                                (homeContext searchClass notNil
9bcd2727c37e changed: #updateForContext:
Claus Gittinger <cg@exept.de>
parents: 11911
diff changeset
  8776
                                and:[homeContext searchClass isObsolete]) ifTrue:[
9bcd2727c37e changed: #updateForContext:
Claus Gittinger <cg@exept.de>
parents: 11911
diff changeset
  8777
                                    cannotAcceptDueToOutdatedClass := true.
9bcd2727c37e changed: #updateForContext:
Claus Gittinger <cg@exept.de>
parents: 11911
diff changeset
  8778
                                ]
9bcd2727c37e changed: #updateForContext:
Claus Gittinger <cg@exept.de>
parents: 11911
diff changeset
  8779
                            ].
11898
970fade2f840 changed:
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
  8780
                        ].
970fade2f840 changed:
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
  8781
                    ].
970fade2f840 changed:
Claus Gittinger <cg@exept.de>
parents: 11892
diff changeset
  8782
                    implementorClass isNil ifTrue:[
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8783
                        Error handle:[:ex |
11890
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  8784
"/ not covered by Error, anyway
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  8785
"/                            ex signal == BreakPointInterrupt ifTrue:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  8786
"/                                ex proceed.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  8787
"/                            ].
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8788
                            code := 'error while asking method for its source'.
12687
1d78c217e701 use #creator instead of #signal
Claus Gittinger <cg@exept.de>
parents: 12671
diff changeset
  8789
                            code := code , Character cr , ex creator printString.
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8790
                            code := code , Character cr , 'in: ' , ex suspendedContext printString.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8791
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8792
                            canAccept := false.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8793
                            ex return.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8794
                        ] do:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8795
                            "
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8796
                             special: look if this context was created by
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8797
                             valueWithReceiver kind of method invocation;
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8798
                             if so, grab the method from the sender and show it
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8799
                            "
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8800
                            ((sender := homeContext sender) notNil
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8801
                            and:[((sender selector ? '') startsWith:'valueWithReceiver:')
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8802
                            and:[sender receiver isMethod]]) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8803
                                method := sender receiver.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8804
                                canAccept := false.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8805
                            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8806
                                (method := con method) notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8807
                                    canAccept := false.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8808
                                ]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8809
                            ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8810
                        ]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8811
                    ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8812
                        method := implementorClass compiledMethodAt:sel.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8813
                    ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8814
                ]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8815
            ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8816
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8817
            homeContext notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8818
                searchClass := homeContext searchClass ? rec class.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8819
                currentMethod := searchClass lookupMethodFor:sel.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8820
            ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8821
            originalMethod := currentMethod.
11602
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  8822
            (currentMethod notNil 
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  8823
            and:[currentMethod ~~ method
b04d5d5e02c7 single stepping in wrapped methods
Claus Gittinger <cg@exept.de>
parents: 11595
diff changeset
  8824
            and:[ (currentMethod isWrapped and:[ method == currentMethod originalMethod]) not ]]) ifTrue:[
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8825
                originalMethod := method.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8826
                methodCodeToggleSelectionHolder value = 1 ifTrue:[
13416
42dde7fc4713 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13415
diff changeset
  8827
                    method := originalMethod.   "/ the one which is suspended / was executing
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8828
                ] ifFalse:[
13416
42dde7fc4713 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13415
diff changeset
  8829
                    method := currentMethod.    "/ the one which has already been accepted/modified.
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8830
                    lineNrInMethod := nil.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8831
                    canAccept := true.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8832
                ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8833
                methodCodeToggle beVisible.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8834
            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8835
                methodCodeToggle beInvisible.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8836
            ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8837
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8838
            code isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8839
                errMsg := nil.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8840
                method isNil ifTrue:[
13394
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
  8841
                    "/ fall back heuristics (see how this was called, fetch block from caller)
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
  8842
                    sender := con sender.
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8843
                    con isBlockContext ifTrue:[
13394
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
  8844
                        (sender notNil
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8845
                        and:[((sender selector ? '') startsWith:'value')
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8846
                        and:[sender receiver isBlock]]) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8847
                            code := sender receiver source.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8848
                        ]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8849
                    ] ifFalse:[
13394
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
  8850
                        (sender notNil
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8851
                        and:[((sender selector ? '') startsWith:'valueWith')
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8852
                        and:[sender receiver isMethod]]) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8853
                            method := sender receiver.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8854
                        ]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8855
                    ]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8856
                ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8857
                method notNil ifTrue:[
13350
ef1d308f50df class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13339
diff changeset
  8858
                    contextInspector fieldListLabel:(method selector "whoString").
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8859
                    Error handle:[:ex |
11890
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  8860
"/ not covered by Error, anyway
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  8861
"/                        ex signal isControlInterrupt ifTrue:[
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  8862
"/                            ex proceed.
16c5daa5083a added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11887
diff changeset
  8863
"/                        ].
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8864
                        code := 'error while asking method for its source'.
12687
1d78c217e701 use #creator instead of #signal
Claus Gittinger <cg@exept.de>
parents: 12671
diff changeset
  8865
                        code := code , Character cr , ex creator printString.
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8866
                        code := code , Character cr , 'in: ' , ex suspendedContext printString.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8867
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8868
                        canAccept := false.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8869
                        ex return.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8870
                    ] do:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8871
                        self sensor shiftDown ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8872
                            code := method decompiledSource
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8873
                        ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8874
                            code := method source.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8875
                        ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8876
                    ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8877
                    code isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8878
                        method sourceFilename notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8879
                            codeView contents:(resources
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8880
                                                       string:'** no sourcefile: %1 **'
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8881
                                                       with:method sourceFilename).
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8882
                            codeView flash.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8883
                            codeSet := true.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8884
                        ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8885
                            [
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8886
                                |src|
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8887
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8888
                                src := String streamContents:[:s | Decompiler decompile:method to:s].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8889
                                codeView contents:src.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8890
                                codeSet := true.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8891
                            ] on: Error do:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8892
                                errMsg := '** no source **'
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8893
                            ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8894
                        ]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8895
                    ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8896
                ] ifFalse:[
12862
86e6e1dd9874 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12840
diff changeset
  8897
                    contextInspector fieldListLabel:'Context'.
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8898
                    homeContext isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8899
                        errMsg := '** sorry; cannot show code of all optimized blocks (yet) **'.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8900
                    ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8901
                        errMsg := '** no method - no source **'.
13488
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  8902
                        canDefine := false. "/ true.
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8903
                    ]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8904
                ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8905
                errMsg notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8906
                   self showError:errMsg.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8907
                   codeSet := true.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8908
                ]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8909
            ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8910
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8911
            code isNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8912
                "/ canAccept := false.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8913
                codeSet ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8914
                    codeView contents:nil.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8915
                ]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8916
            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8917
                lineNrInMethod notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8918
                    lineNrInMethod == 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8919
                        (method notNil and:[method isJavaMethod]) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8920
                            lineNrInMethod := method lineNumber
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8921
                        ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8922
                        "/ guess lineNumber from sent-messages selector
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8923
                        "/ kludge to fix lineNr-display of shared subclassResponsibility methods.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8924
                        lineNrInMethod == 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8925
                            |conIdx sentContext messages|
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8926
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8927
                            conIdx := contextArray identityIndexOf:con.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8928
                            conIdx > 1 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8929
                                sentContext := contextArray at:conIdx-1.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8930
                                sentContext isBlockContext ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8931
                                    (method notNil and:[code notNil]) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8932
                                        messages := method messagesSent.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8933
                                        messages size == 1 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8934
                                            sentContext selector == messages first ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8935
                                                lineNrInMethod := code asStringCollection findFirst:[:l | l includesString:sentContext selector].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8936
                                            ]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8937
                                        ]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8938
                                    ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8939
                                ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8940
                            ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8941
                        ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8942
                    ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8943
                ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8944
                codeView isCodeView2 ifTrue:[
10649
3f480fd28a48 changed: #updateForContext:
Claus Gittinger <cg@exept.de>
parents: 10628
diff changeset
  8945
                    codeView model setValue: code.
3f480fd28a48 changed: #updateForContext:
Claus Gittinger <cg@exept.de>
parents: 10628
diff changeset
  8946
                    codeView model changed.
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8947
                    codeView methodHolder value: method.
10752
77650773a9ea Fixed class holder for CodeView2
vrany
parents: 10649
diff changeset
  8948
                    codeView classHolder value: ((method respondsTo: #mclass) ifTrue:[method mclass] ifFalse:[rec class])
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8949
                ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8950
14356
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8951
                    UserPreferences current syntaxColoring ifTrue:[
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8952
                        implementorClass isNil ifTrue:[
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8953
                            (con isBlockContext
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8954
                            and:[con home isNil
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8955
                            and:[con guessedHome notNil]])
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8956
                            ifTrue:[
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8957
                                implementorClass := con guessedHome mclass
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8958
                            ]
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8959
                        ].
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8960
                        implementorClass notNil ifTrue:[
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8961
                            (highlighter := implementorClass syntaxHighlighterClass) notNil ifTrue:[
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8962
                                code size < 100000 ifTrue:[
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8963
                                    Error handle:[:ex |
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8964
                                    ] do:[
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8965
                                        code := highlighter formatMethodSource:code in:implementorClass.
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8966
                                    ]
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8967
                                ]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8968
                            ]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8969
                        ]
14356
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8970
                    ].
1555
756ab2711237 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1537
diff changeset
  8971
6178
2944e95c6eda faster updateFromContext (avoid Text)
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
  8972
"/                code ~= (codeView contents) ifTrue:[
14356
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8973
                    cannotAcceptDueToOutdatedClass ifTrue:[
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8974
                        codeView setContents:(('Obsolete code (outdated due to class change). Use Browser.' colorizeAllWith:Color red),Character cr,Character cr,code asString).
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8975
                    ] ifFalse:[
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8976
                        codeView setContents:code.
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  8977
                    ].
6178
2944e95c6eda faster updateFromContext (avoid Text)
Claus Gittinger <cg@exept.de>
parents: 6172
diff changeset
  8978
"/                ].
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8979
                ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8980
                (lineNrInMethod notNil
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8981
                and:[lineNrInMethod ~~ 0
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8982
                and:[lineNrInMethod <= codeView list size]]) ifTrue:[
7000
3302ab5a819e cleanup
Claus Gittinger <cg@exept.de>
parents: 6971
diff changeset
  8983
lineNrInMethod == 255 ifFalse:[
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8984
                    (lineNrInMethod == 255
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8985
                    and:[method notNil
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8986
                    and:[method hasCode not]]) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8987
                        "/ means: do not really know in interpreted methods
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8988
                        codeView selectFromLine:255 col:1 toLine:codeView list size + 1 col:0.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8989
                    ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8990
                        codeView selectLine:lineNrInMethod.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8991
                    ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8992
                    codeView makeSelectionVisible
7000
3302ab5a819e cleanup
Claus Gittinger <cg@exept.de>
parents: 6971
diff changeset
  8993
].
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8994
                ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8995
                    codeView unselect.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8996
                    codeView scrollToTop
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8997
                ]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8998
            ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  8999
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9000
            codeView acceptEnabled:canAccept.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9001
            canAccept ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9002
                codeView acceptAction:[:code | self codeAccept:code asString]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9003
            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9004
                codeView acceptAction:[:code | self beep]
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9005
            ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9006
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9007
            receiverInspector inspect:rec.
13350
ef1d308f50df class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13339
diff changeset
  9008
            receiverInspector fieldListLabel:("'Receiver: ',"rec classNameWithArticle).
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9009
            receiverInspector tryToSelectKeyNamed:lastSelectionInReceiverInspector.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9010
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9011
            "
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9012
             the one below is wrong: currently, the
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9013
             evaluator cannot handle passed contexts.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9014
             Once it does, pass con as in:-arg
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9015
            "
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9016
            (rec isJavaObject
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9017
            and:[method isNil or:[method isJavaMethod not]]) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9018
                "/ although a java object, use the smalltalk parser here for doIts.
14356
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  9019
                evaluatorClass := Parser.
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  9020
                codeView commentStrings:#( '//' ( '/*' '*/' ) ).
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9021
            ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9022
                (method notNil and:[method mclass notNil]) ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9023
                    evaluatorClass := method mclass evaluatorClass.
14356
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  9024
                    codeView commentStrings:method mclass programmingLanguage commentStrings.
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9025
                ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9026
                    evaluatorClass := rec class evaluatorClass.
14356
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  9027
                    codeView commentStrings:rec class programmingLanguage commentStrings.
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9028
                ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9029
            ].
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9030
12915
8c1d79091fa4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12899
diff changeset
  9031
            codeView 
8c1d79091fa4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12899
diff changeset
  9032
                doItAction:
8c1d79091fa4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12899
diff changeset
  9033
                    [:theCode |
8c1d79091fa4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12899
diff changeset
  9034
                         evaluatorClass
8c1d79091fa4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12899
diff changeset
  9035
                             evaluate:theCode
13394
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
  9036
                             in:actualContext "/ (selectedContext ? actualContext)
12915
8c1d79091fa4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12899
diff changeset
  9037
                             receiver:rec
8c1d79091fa4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12899
diff changeset
  9038
                             notifying:codeView
8c1d79091fa4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12899
diff changeset
  9039
                             logged:true
8c1d79091fa4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12899
diff changeset
  9040
                             ifFail:nil
8c1d79091fa4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12899
diff changeset
  9041
                    ];
8c1d79091fa4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12899
diff changeset
  9042
                editedMethodOrClass:(method ? rec class).
8c1d79091fa4 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12899
diff changeset
  9043
14356
8cd9e4ceedab class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14332
diff changeset
  9044
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9045
            self setCurrentMethod:method.
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9046
11610
356cfb510fd0 changed:12 methods
Claus Gittinger <cg@exept.de>
parents: 11604
diff changeset
  9047
            selectedContext := homeContext ? con.
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9048
            actualContext := con
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9049
        ].
4122
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9050
    ] ifFalse:[
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9051
        codeView contents:nil.
4122
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9052
    ].
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9053
    codeView modified:false.
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9054
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9055
    con isContext ifFalse:[
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9056
        sendButton disable.
4122
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9057
    ] ifTrue:[
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9058
        sendButton enable.
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  9059
    ].
12529
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  9060
    self updateContextInfoFor:con.
10205
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  9061
Claus Gittinger <cg@exept.de>
parents: 10203
diff changeset
  9062
    "clear out locals to prevent keeping around unneeded contexts
4122
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9063
     (due to the block held in codeView).
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9064
     (not really needed, since stuff gets collected away sooner or later ...
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9065
      ... but this makes it a bit sooner)
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9066
    "
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9067
    con := nil.
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9068
    homeContext := nil.
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9069
13488
82ef098c106e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13464
diff changeset
  9070
    (canDefine or:[self canDefineForCallee:callee]) ifTrue:[
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9071
        defineButton beVisible.
4122
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9072
    ] ifFalse:[
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9073
        defineButton beInvisible.
4122
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9074
    ].
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9075
12529
2fae1a014b9e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12437
diff changeset
  9076
    "/ enable/disable some menu items
4122
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9077
    self updateMenuItems
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9078
6849
e95621a873be try to decompile if no source
Claus Gittinger <cg@exept.de>
parents: 6821
diff changeset
  9079
    "Created: / 14-08-1997 / 20:15:00 / cg"
10752
77650773a9ea Fixed class holder for CodeView2
vrany
parents: 10649
diff changeset
  9080
    "Modified: / 05-10-2011 / 11:55:14 / Jan Vrany <jan.vrany@fit.cvut.cz>"
13394
f196d8ddec24 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 13388
diff changeset
  9081
    "Modified: / 28-08-2013 / 15:13:02 / cg"
4122
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9082
! !
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9083
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9084
!DebugView::IgnoredHaltOrBreakpoint methodsFor:'accessing'!
8170
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9085
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9086
ignoreCount:something
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9087
    ignoreCount := something.
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9088
!
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9089
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9090
ignoreEndTime:something
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9091
    ignoreEndTime := something.
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9092
!
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9093
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9094
ignoreForProcess:aProcess
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9095
    ignoredProcesses isNil ifTrue:[
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9096
        ignoredProcesses := WeakIdentitySet new.
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9097
    ].
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9098
    ignoredProcesses add:aProcess
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9099
!
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9100
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9101
ignoreForReceiverClass:aClass
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9102
    ignoredReceiverClasses isNil ifTrue:[
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9103
        ignoredReceiverClasses := WeakIdentitySet new.
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9104
    ].
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9105
    ignoredReceiverClasses add:aClass
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9106
!
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9107
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9108
ignoreIfCalledFromMethod:aMethod
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9109
    ignoredSendingClassAndSelectors isNil ifTrue:[
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9110
         ignoredSendingClassAndSelectors := OrderedCollection new.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9111
    ].
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9112
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9113
    "/ remember the method's name, not the method.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9114
    "/ so it can be recompiled and we still detect ignores
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9115
    ignoredSendingClassAndSelectors add:{aMethod mclass name . aMethod selector }
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9116
!
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9117
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  9118
ignoreUntilShiftKeyPressed:aBoolean
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  9119
    ignoreUntilShiftKeyPressed := aBoolean.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  9120
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  9121
    "Created: / 27-01-2012 / 11:35:23 / cg"
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9122
! !
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9123
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9124
!DebugView::IgnoredHaltOrBreakpoint methodsFor:'misc'!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9125
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9126
decrementIgnoreCount
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9127
    ignoreCount notNil ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9128
        ignoreCount > 0 ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9129
            ignoreCount := ignoreCount - 1
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9130
        ]
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9131
    ]
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9132
! !
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9133
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9134
!DebugView::IgnoredHaltOrBreakpoint methodsFor:'printing'!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9135
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9136
printConditionOn:aStream
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9137
    ignoredSendingClassAndSelectors notEmptyOrNil ifTrue:[
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9138
        aStream nextPutAll:(' if called from %1 >> %2'
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9139
                                bindWith:ignoredSendingClassAndSelectors first first
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9140
                                with:ignoredSendingClassAndSelectors first second).
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9141
        ^ self.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9142
    ].
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9143
    ignoredProcesses notEmptyOrNil ifTrue:[
12941
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9144
        aStream nextPutAll:(' in %1 processes (%2)'
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9145
                                bindWith:ignoredProcesses size
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9146
                                with:((ignoredProcesses collect:[:each | each name] as:OrderedCollection) asStringWith:', ')).
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9147
        ^ self.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9148
    ].
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9149
    ignoredReceiverClasses notNil ifTrue:[
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9150
        aStream nextPutAll:(' for %1 classes (%2)'
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9151
                            bindWith:ignoredReceiverClasses size
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9152
                            with:((ignoredReceiverClasses collect:[:each | each name] as:OrderedCollection) asStringWith:', ')).
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9153
        ^ self.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9154
    ].
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9155
    ignoreUntilShiftKeyPressed == true ifTrue:[
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9156
        aStream nextPutAll:' until shiftKey pressed'.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9157
        ^ self.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9158
    ].
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9159
    ignoreEndTime notNil ifTrue:[
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9160
        aStream nextPutAll:' until '.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9161
        ignoreEndTime printOn:aStream.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9162
        ^ self.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9163
    ].
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9164
    (ignoreCount notNil) ifTrue:[
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9165
        (ignoreCount > 0) ifTrue:[
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9166
            aStream nextPutAll:' for '.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9167
            ignoreCount printOn:aStream.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9168
            ^ self.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9169
        ].
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9170
        (ignoreCount < 0) ifTrue:[
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9171
            aStream nextPutAll:' forEver'.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9172
            ^ self.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9173
        ].
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9174
        aStream nextPutAll:' no longer'.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9175
    ].
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9176
! !
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9177
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9178
!DebugView::IgnoredHaltOrBreakpoint methodsFor:'queries'!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9179
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9180
haltIgnoredInfoString
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9181
    "some string describing why and how this halt is ignored;
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9182
     nil if not ignored"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9183
12941
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9184
    ^ String streamContents:[:s |
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9185
        s nextPutAll:'ignored '.
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9186
        self printConditionOn:s
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9187
    ].
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9188
13764
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9189
"/    ignoreCount notNil ifTrue:[
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9190
"/        ignoreCount > 0 ifTrue:[
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9191
"/            ^ '%1 more calls ignored' bindWith:ignoreCount
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9192
"/        ].
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9193
"/        ^ nil
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9194
"/    ].
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9195
"/    ignoreEndTime notNil ifTrue:[
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9196
"/        (ignoreEndTime > Timestamp now) ifTrue:[
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9197
"/            ^ 'ignored until %1' bindWith:ignoreEndTime
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9198
"/        ].
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9199
"/        ^ nil
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9200
"/    ].
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9201
"/    ignoreUntilShiftKeyPressed == true ifTrue:[
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9202
"/        Screen current shiftDown ifFalse:[
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9203
"/            ^ 'ignored until shiftKey is pressed'
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9204
"/        ].
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9205
"/        ^ nil
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9206
"/    ].
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9207
"/    ignoredProcesses notNil ifTrue:[
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9208
"/        ^ 'ignored in some processes'
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9209
"/    ].
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9210
"/    ignoredReceiverClasses notNil ifTrue:[
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9211
"/        ^ 'ignored for some receiver classes'
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9212
"/    ].
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9213
"/
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9214
"/    ^ 'ignored until reenabled'
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9215
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9216
    "Modified: / 27-01-2012 / 11:35:48 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9217
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9218
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9219
isActive
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9220
    "true if this ignore-entry is still active"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9221
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9222
    ignoreEndTime notNil ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9223
        ^ ignoreEndTime > Timestamp now
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9224
    ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9225
    ignoreCount notNil ifTrue:[
12562
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
  9226
        ^ ignoreCount == -1 or:[ ignoreCount > 0 ]
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
  9227
    ].
12941
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9228
    ignoredProcesses notNil ifTrue:[
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9229
        ignoredProcesses := ignoredProcesses reject:[:p | p notNil and:[p isDead]].
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9230
        ignoredProcesses isEmpty ifTrue:[
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9231
            ignoredProcesses := nil.
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9232
            ^ false
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9233
        ].
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9234
    ].
12562
e05279313989 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12555
diff changeset
  9235
    ^ true
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9236
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9237
    "Created: / 06-03-2012 / 12:39:46 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9238
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9239
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9240
isForBreakpointWithParameter
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9241
    ^ false
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9242
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9243
    "Modified: / 27-01-2012 / 11:36:01 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9244
    "Created: / 06-03-2012 / 12:47:02 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9245
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9246
11367
bd0402b6421a changed: #isBreakpointToBeIgnoredForParameter:modifyEntryCount:
Claus Gittinger <cg@exept.de>
parents: 11366
diff changeset
  9247
isForBreakpointWithParameter:paramArg
bd0402b6421a changed: #isBreakpointToBeIgnoredForParameter:modifyEntryCount:
Claus Gittinger <cg@exept.de>
parents: 11366
diff changeset
  9248
    ^ false
bd0402b6421a changed: #isBreakpointToBeIgnoredForParameter:modifyEntryCount:
Claus Gittinger <cg@exept.de>
parents: 11366
diff changeset
  9249
bd0402b6421a changed: #isBreakpointToBeIgnoredForParameter:modifyEntryCount:
Claus Gittinger <cg@exept.de>
parents: 11366
diff changeset
  9250
    "Modified: / 27-01-2012 / 11:36:01 / cg"
bd0402b6421a changed: #isBreakpointToBeIgnoredForParameter:modifyEntryCount:
Claus Gittinger <cg@exept.de>
parents: 11366
diff changeset
  9251
    "Created: / 06-03-2012 / 14:36:28 / cg"
bd0402b6421a changed: #isBreakpointToBeIgnoredForParameter:modifyEntryCount:
Claus Gittinger <cg@exept.de>
parents: 11366
diff changeset
  9252
!
bd0402b6421a changed: #isBreakpointToBeIgnoredForParameter:modifyEntryCount:
Claus Gittinger <cg@exept.de>
parents: 11366
diff changeset
  9253
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9254
isHaltIgnored
12941
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9255
    "true if this halt should be ignored (sometimes)"
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9256
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9257
    ignoreUntilShiftKeyPressed == true ifTrue:[
13764
225df800cafd Replace references to Diplay with "Screen current" - where appropriate
Stefan Vogel <sv@exept.de>
parents: 13666
diff changeset
  9258
        ^ Screen current shiftDown not
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9259
    ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9260
    ignoreCount notNil ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9261
        ^ ignoreCount > 0
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9262
    ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9263
    ignoreEndTime notNil ifTrue:[
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9264
        ^ ignoreEndTime > Timestamp now
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9265
    ].
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9266
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9267
    ^ true
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9268
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9269
    "Modified: / 27-01-2012 / 11:36:01 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9270
! !
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9271
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9272
!DebugView::IgnoredHalt methodsFor:'accessing'!
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  9273
8170
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9274
method
9094
51cf41fd65a2 added: #removeInactiveIgnores
Claus Gittinger <cg@exept.de>
parents: 9093
diff changeset
  9275
    |m|
51cf41fd65a2 added: #removeInactiveIgnores
Claus Gittinger <cg@exept.de>
parents: 9093
diff changeset
  9276
9922
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  9277
    weakMethodHolder == #all ifTrue:[^ weakMethodHolder ].
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  9278
9094
51cf41fd65a2 added: #removeInactiveIgnores
Claus Gittinger <cg@exept.de>
parents: 9093
diff changeset
  9279
    m := weakMethodHolder at:1.
9796
f806d9db4e94 ignoring halts changed
Claus Gittinger <cg@exept.de>
parents: 9750
diff changeset
  9280
"/ wait until really gone (it could still be on the call stack
f806d9db4e94 ignoring halts changed
Claus Gittinger <cg@exept.de>
parents: 9750
diff changeset
  9281
"/
f806d9db4e94 ignoring halts changed
Claus Gittinger <cg@exept.de>
parents: 9750
diff changeset
  9282
"/    m notNil ifTrue:[
f806d9db4e94 ignoring halts changed
Claus Gittinger <cg@exept.de>
parents: 9750
diff changeset
  9283
"/        m mclass isNil ifTrue:[
f806d9db4e94 ignoring halts changed
Claus Gittinger <cg@exept.de>
parents: 9750
diff changeset
  9284
"/            "/ no longer valid
f806d9db4e94 ignoring halts changed
Claus Gittinger <cg@exept.de>
parents: 9750
diff changeset
  9285
"/            weakMethodHolder at:1 put:nil.
f806d9db4e94 ignoring halts changed
Claus Gittinger <cg@exept.de>
parents: 9750
diff changeset
  9286
"/            ^ nil
f806d9db4e94 ignoring halts changed
Claus Gittinger <cg@exept.de>
parents: 9750
diff changeset
  9287
"/        ].
f806d9db4e94 ignoring halts changed
Claus Gittinger <cg@exept.de>
parents: 9750
diff changeset
  9288
"/    ].
9590
41587c52f59c fixed ignoring halts for breakPoints
Claus Gittinger <cg@exept.de>
parents: 9586
diff changeset
  9289
    ^ m
41587c52f59c fixed ignoring halts for breakPoints
Claus Gittinger <cg@exept.de>
parents: 9586
diff changeset
  9290
9922
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  9291
    "Modified: / 08-05-2011 / 10:28:10 / cg"
8170
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9292
!
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9293
9093
afeec57f277e generate a change notification when ignore-halts changes
Claus Gittinger <cg@exept.de>
parents: 9078
diff changeset
  9294
method:methodArg lineNumber:lineNumberArg
9590
41587c52f59c fixed ignoring halts for breakPoints
Claus Gittinger <cg@exept.de>
parents: 9586
diff changeset
  9295
    "/ self assert:(methodArg mclass notNil).
9094
51cf41fd65a2 added: #removeInactiveIgnores
Claus Gittinger <cg@exept.de>
parents: 9093
diff changeset
  9296
9922
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  9297
    methodArg == #all ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  9298
        weakMethodHolder := methodArg
9922
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  9299
    ] ifFalse:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  9300
        weakMethodHolder := WeakArray with:methodArg.
9922
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  9301
    ].
8170
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9302
    lineNumber := lineNumberArg.
9590
41587c52f59c fixed ignoring halts for breakPoints
Claus Gittinger <cg@exept.de>
parents: 9586
diff changeset
  9303
9922
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  9304
    "Modified: / 08-05-2011 / 10:28:41 / cg"
8170
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9305
! !
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9306
9093
afeec57f277e generate a change notification when ignore-halts changes
Claus Gittinger <cg@exept.de>
parents: 9078
diff changeset
  9307
!DebugView::IgnoredHalt methodsFor:'printing'!
afeec57f277e generate a change notification when ignore-halts changes
Claus Gittinger <cg@exept.de>
parents: 9078
diff changeset
  9308
afeec57f277e generate a change notification when ignore-halts changes
Claus Gittinger <cg@exept.de>
parents: 9078
diff changeset
  9309
printOn:aStream
9922
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  9310
    |method|
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  9311
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  9312
    (method := self method) isNil ifTrue:[
11210
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  9313
        aStream nextPutAll:'an obsolete IgnoredHalt'.
83e08cc8ce48 added:5 methods
Claus Gittinger <cg@exept.de>
parents: 11209
diff changeset
  9314
        ^ self
9093
afeec57f277e generate a change notification when ignore-halts changes
Claus Gittinger <cg@exept.de>
parents: 9078
diff changeset
  9315
    ].
9590
41587c52f59c fixed ignoring halts for breakPoints
Claus Gittinger <cg@exept.de>
parents: 9586
diff changeset
  9316
9093
afeec57f277e generate a change notification when ignore-halts changes
Claus Gittinger <cg@exept.de>
parents: 9078
diff changeset
  9317
    aStream nextPutAll:'Ignore '.
11704
36941d3a2a03 changed: #codeAspect
Claus Gittinger <cg@exept.de>
parents: 11697
diff changeset
  9318
    method isSymbol ifTrue:[
36941d3a2a03 changed: #codeAspect
Claus Gittinger <cg@exept.de>
parents: 11697
diff changeset
  9319
        method printOn:aStream.
36941d3a2a03 changed: #codeAspect
Claus Gittinger <cg@exept.de>
parents: 11697
diff changeset
  9320
    ] ifFalse:[
36941d3a2a03 changed: #codeAspect
Claus Gittinger <cg@exept.de>
parents: 11697
diff changeset
  9321
        method whoString printOn:aStream.
36941d3a2a03 changed: #codeAspect
Claus Gittinger <cg@exept.de>
parents: 11697
diff changeset
  9322
    ].
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9323
    self printConditionOn:aStream.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9324
11704
36941d3a2a03 changed: #codeAspect
Claus Gittinger <cg@exept.de>
parents: 11697
diff changeset
  9325
    "Modified: / 27-07-2012 / 23:04:42 / cg"
9093
afeec57f277e generate a change notification when ignore-halts changes
Claus Gittinger <cg@exept.de>
parents: 9078
diff changeset
  9326
! !
afeec57f277e generate a change notification when ignore-halts changes
Claus Gittinger <cg@exept.de>
parents: 9078
diff changeset
  9327
8170
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9328
!DebugView::IgnoredHalt methodsFor:'queries'!
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9329
9094
51cf41fd65a2 added: #removeInactiveIgnores
Claus Gittinger <cg@exept.de>
parents: 9093
diff changeset
  9330
isActive
51cf41fd65a2 added: #removeInactiveIgnores
Claus Gittinger <cg@exept.de>
parents: 9093
diff changeset
  9331
    "true if this ignore-entry is still active"
51cf41fd65a2 added: #removeInactiveIgnores
Claus Gittinger <cg@exept.de>
parents: 9093
diff changeset
  9332
12941
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9333
    self method isNil ifTrue:[self breakPoint:#cg. ^ false ].    "/ method no longer valid
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9334
    ^ super isActive
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9335
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9336
    "Modified: / 06-03-2012 / 12:40:20 / cg"
9094
51cf41fd65a2 added: #removeInactiveIgnores
Claus Gittinger <cg@exept.de>
parents: 9093
diff changeset
  9337
!
51cf41fd65a2 added: #removeInactiveIgnores
Claus Gittinger <cg@exept.de>
parents: 9093
diff changeset
  9338
8170
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9339
isForMethod:aMethod line:line
9094
51cf41fd65a2 added: #removeInactiveIgnores
Claus Gittinger <cg@exept.de>
parents: 9093
diff changeset
  9340
    "/ check in this order - method has a flushing side-effect, which is useful here...
9922
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  9341
    weakMethodHolder == #all ifTrue:[^ true].
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  9342
9094
51cf41fd65a2 added: #removeInactiveIgnores
Claus Gittinger <cg@exept.de>
parents: 9093
diff changeset
  9343
    ^ (aMethod = self method) and:[ line = lineNumber ].
9922
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  9344
Claus Gittinger <cg@exept.de>
parents: 9796
diff changeset
  9345
    "Modified: / 08-05-2011 / 10:27:31 / cg"
8170
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9346
!
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9347
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9348
isHaltIgnoredInMethod:aMethod line:line
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9349
    ^ self isHaltIgnoredInMethod:aMethod line:line context:nil
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9350
!
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9351
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9352
isHaltIgnoredInMethod:aMethod line:line context:context
9095
68d06ebf349b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9094
diff changeset
  9353
    "/ Transcript show:'?same as ign '; show:(weakMethodHolder at:1); show:' at '; showCR:lineNumber.
9093
afeec57f277e generate a change notification when ignore-halts changes
Claus Gittinger <cg@exept.de>
parents: 9078
diff changeset
  9354
13059
8542618fd970 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12977
diff changeset
  9355
"/    Transcript showCR:'-----------------------------'.
8542618fd970 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12977
diff changeset
  9356
"/    Transcript showCR:aMethod.
8542618fd970 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12977
diff changeset
  9357
"/    Transcript showCR:line.
8542618fd970 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12977
diff changeset
  9358
"/    Transcript showCR:context.
8542618fd970 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12977
diff changeset
  9359
9094
51cf41fd65a2 added: #removeInactiveIgnores
Claus Gittinger <cg@exept.de>
parents: 9093
diff changeset
  9360
    (self isForMethod:aMethod line:line) ifFalse:[^ false].
9095
68d06ebf349b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9094
diff changeset
  9361
    "/ Transcript show:'is same; ignored: '; showCR:self isHaltIgnored.
8170
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9362
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9363
    context notNil ifTrue:[
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9364
        ignoredReceiverClasses notNil ifTrue:[
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9365
            ^ ignoredReceiverClasses includes:(context receiver class)
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9366
        ].
12941
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9367
    ].
13059
8542618fd970 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12977
diff changeset
  9368
8542618fd970 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12977
diff changeset
  9369
"/    Transcript showCR:ignoredProcesses.
8542618fd970 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12977
diff changeset
  9370
"/    Transcript showCR:Processor activeProcess.
12941
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9371
    ignoredProcesses notNil ifTrue:[
9605021cbfb8 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12937
diff changeset
  9372
        ^ ignoredProcesses includes:(Processor activeProcess)
12937
cf8330cc265e class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12929
diff changeset
  9373
    ].
14608
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9374
    ignoredSendingClassAndSelectors notNil ifTrue:[
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9375
        context withAllSendersDo:[:each |
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9376
            |m className selector cls|
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9377
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9378
            (m := each method) notNil ifTrue:[
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9379
                cls := m mclass.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9380
                cls notNil ifTrue:[
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9381
                    className := cls name.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9382
                    selector := m selector.
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9383
                    (ignoredSendingClassAndSelectors contains:[:entry | entry first = className and:[entry second = selector]])
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9384
                        ifTrue:[^ true].
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9385
                ].
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9386
            ]
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9387
        ]
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9388
    ].
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9389
948821582e7f class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14559
diff changeset
  9390
    ^ self isHaltIgnored  "/ unconditionally
8170
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9391
! !
f958ad430417 halt ignore
Claus Gittinger <cg@exept.de>
parents: 8161
diff changeset
  9392
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9393
!DebugView::IgnoredBreakpoint methodsFor:'accessing'!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9394
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9395
parameter
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9396
    ^ parameter
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9397
!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9398
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9399
parameter:something
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9400
    parameter := something.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9401
! !
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9402
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9403
!DebugView::IgnoredBreakpoint methodsFor:'printing'!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9404
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9405
printOn:aStream
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9406
    aStream nextPutAll:'Ignore breakpoint:#', parameter.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9407
    self printConditionOn:aStream.
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9408
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9409
    "Created: / 06-03-2012 / 12:42:10 / cg"
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9410
! !
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9411
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9412
!DebugView::IgnoredBreakpoint methodsFor:'queries'!
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9413
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9414
isForBreakpointWithParameter
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9415
    ^ true
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9416
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9417
    "Created: / 06-03-2012 / 12:54:35 / cg"
11367
bd0402b6421a changed: #isBreakpointToBeIgnoredForParameter:modifyEntryCount:
Claus Gittinger <cg@exept.de>
parents: 11366
diff changeset
  9418
!
bd0402b6421a changed: #isBreakpointToBeIgnoredForParameter:modifyEntryCount:
Claus Gittinger <cg@exept.de>
parents: 11366
diff changeset
  9419
bd0402b6421a changed: #isBreakpointToBeIgnoredForParameter:modifyEntryCount:
Claus Gittinger <cg@exept.de>
parents: 11366
diff changeset
  9420
isForBreakpointWithParameter:paramArg
bd0402b6421a changed: #isBreakpointToBeIgnoredForParameter:modifyEntryCount:
Claus Gittinger <cg@exept.de>
parents: 11366
diff changeset
  9421
    ^ paramArg = parameter
bd0402b6421a changed: #isBreakpointToBeIgnoredForParameter:modifyEntryCount:
Claus Gittinger <cg@exept.de>
parents: 11366
diff changeset
  9422
bd0402b6421a changed: #isBreakpointToBeIgnoredForParameter:modifyEntryCount:
Claus Gittinger <cg@exept.de>
parents: 11366
diff changeset
  9423
    "Created: / 06-03-2012 / 14:36:21 / cg"
11366
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9424
! !
d57e42f65841 allow for code breakpoints (breakpoint:#param) to
Claus Gittinger <cg@exept.de>
parents: 11364
diff changeset
  9425
4122
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9426
!DebugView class methodsFor:'documentation'!
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9427
11304
d142697b6c1e changed: #browseImplementingClass
Claus Gittinger <cg@exept.de>
parents: 11303
diff changeset
  9428
version
14680
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  9429
    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.664 2014-07-26 07:55:23 cg Exp $'
11304
d142697b6c1e changed: #browseImplementingClass
Claus Gittinger <cg@exept.de>
parents: 11303
diff changeset
  9430
!
d142697b6c1e changed: #browseImplementingClass
Claus Gittinger <cg@exept.de>
parents: 11303
diff changeset
  9431
8952
7742c63ff6f5 catch halts in: #showSelection:
Claus Gittinger <cg@exept.de>
parents: 8745
diff changeset
  9432
version_CVS
14680
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  9433
    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.664 2014-07-26 07:55:23 cg Exp $'
10628
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9434
!
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9435
Claus Gittinger <cg@exept.de>
parents: 10289
diff changeset
  9436
version_SVN
14680
858e67cc7b81 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 14676
diff changeset
  9437
    ^ '$Id: DebugView.st,v 1.664 2014-07-26 07:55:23 cg Exp $'
4122
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9438
! !
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9439
12106
0dd284890b62 class: DebugView
Claus Gittinger <cg@exept.de>
parents: 12080
diff changeset
  9440
4122
Claus Gittinger <cg@exept.de>
parents: 4121
diff changeset
  9441
DebugView initialize!