ContextInspectorView.st
author claus
Tue, 28 Feb 1995 22:57:00 +0100
changeset 73 e332d9c71624
parent 57 36e13831b62d
child 98 e6fac698d6d9
permissions -rw-r--r--
*** empty log message ***

"
 COPYRIGHT (c) 1993 by Claus Gittinger
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"

'From Smalltalk/X, Version:2.10.4 on 28-feb-1995 at 2:11:55 am'!

InspectorView subclass:#ContextInspectorView
	 instanceVariableNames:'inspectedContext values names showingTemporaries'
	 classVariableNames:''
	 poolDictionaries:''
	 category:'Interface-Inspector'
!

ContextInspectorView comment:'
COPYRIGHT (c) 1993 by Claus Gittinger
	      All Rights Reserved

$Header: /cvs/stx/stx/libtool/ContextInspectorView.st,v 1.9 1995-02-28 21:55:45 claus Exp $
'!

!ContextInspectorView class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1993 by Claus Gittinger
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
!

version
"
$Header: /cvs/stx/stx/libtool/ContextInspectorView.st,v 1.9 1995-02-28 21:55:45 claus Exp $
"
!

documentation
"
    a modified Inspector for Contexts (used in Debugger)
"
! !

!ContextInspectorView methodsFor:'private'!

setDoitActionIn:aWorkspace for:aContext
    aWorkspace doItAction:[:theCode |
	Compiler evaluate:theCode
		       in:aContext
		 receiver:nil
		notifying:aWorkspace
		   logged:true 
		   ifFail:nil
    ]
!

valueAtLine:lineNr
    "helper - return the value of the selected entry"

    ^ values at:lineNr.


!

fieldList
    ^ names
! !

!ContextInspectorView methodsFor:'accessing'!

inspect:con
    "set the context to be inspected"

    |aList homeContext method homeNames rec sel implementorClass 
     argNames varNames tmpNames m|

    hasMore := false.
    inspectedObject := nil.
    inspectedContext := con.

    con isNil ifTrue:[
	names := nil.
	values := nil.
	listView list:nil. 
	^ self
    ].

"/    realized ifFalse:[^ self].

    homeContext := con methodHome.

    homeContext isNil ifTrue:[
	"its a cheap blocks context"
	rec := con receiver.
	sel := con selector.
	homeNames := OrderedCollection new.
    ] ifFalse:[
	rec := homeContext receiver.
	sel := homeContext selector.

	implementorClass := homeContext methodClass.
	implementorClass notNil ifTrue:[
	    method := implementorClass compiledMethodAt:sel.
	    method notNil ifTrue:[
		method isWrapped ifTrue:[
		    m := method originalMethod.
		    m notNil ifTrue:[
			method := m.
		    ]
		].
	    ].
	    method notNil ifTrue:[
		method source notNil ifTrue:[
		    homeNames := method methodArgAndVarNames.
		]
	    ]
	].

	"
	 create dummy names for method vars (if there is no source available)
	"
	homeNames isNil ifTrue:[
	    homeNames := OrderedCollection new.
	    1 to:homeContext numArgs do:[:index |
		homeNames add:('mArg' , index printString)
	    ].
	    1 to:homeContext nvars do:[:index |
		homeNames add:('mVar' , index printString)
	    ].
	    showingTemporaries ifTrue:[
		1 to:homeContext ntemp do:[:index |
		    homeNames add:('mTmp' , index printString)
		]
	    ]
	].
    ].

    "
     stupid: should find the block via the contexts
     method-home and put real names in here
    "
    con isBlockContext ifTrue:[
	names := OrderedCollection new.

	argNames := (1 to:(con numArgs)) collect:[:i | 'arg' , i printString].
	names addAll:argNames.
	varNames := (1 to:(con nvars)) collect:[:i | 'var' , i printString].
	names addAll:varNames.

	showingTemporaries ifTrue:[
	    tmpNames := (1 to:(con ntemp)) collect:[:i | 'tmp' , i printString].
	    names addAll:tmpNames.
	].

	names addAll:homeNames.

	values := Array withAll:(con argsAndVars).
	(showingTemporaries and:[con ntemp ~~ 0]) ifTrue:[
	    values := values , con temporaries
	].
	homeContext notNil ifTrue:[
	    values := values , homeContext argsAndVars.
	    (showingTemporaries and:[homeContext ntemp ~~ 0])ifTrue:[
		values := values , homeContext temporaries
	    ].
	].

    ] ifFalse:[
	names := homeNames.
	values := homeContext argsAndVars
    ].

    listView list:names. 

    workspace contents:nil.
    self setDoitActionIn:workspace for:con.
!

release
    "release inspected object"

    inspectedContext := nil.
    names := values := nil.
    super release
! !

!ContextInspectorView methodsFor:'user actions'!

showSelection:lineNr
    "user clicked on an entry - show value in workspace"

    workspace replace:(values at:lineNr) displayString.
    selectedLine := lineNr


!

showTemporaries
    showingTemporaries := true.
    self inspect:inspectedContext
!

doAccept:theText
    |value|

    selectedLine notNil ifTrue:[
	value := Compiler evaluate:theText
			  receiver:inspectedObject 
			 notifying:workspace.

	"yes, you can do that with a context"
	inspectedContext at:selectedLine put:value.
    ].
!

hideTemporaries
    showingTemporaries := false.
    self inspect:inspectedContext
! !

!ContextInspectorView methodsFor:'initialization'!

initialize
    super initialize.
    showingTemporaries := false.

!

fieldMenu
    |labels selectors|

    showingTemporaries ifFalse:[
	labels := #(
		     'inspect'
		     'basicInspect'
		     '-'
		     'show temporaries'
		   ).
	selectors := #(
		     doInspect
		     doBasicInspect
		     nil
		     showTemporaries
		   )
    ] ifTrue:[
	labels := #(
		     'inspect'
		     'basicInspect'
		     '-'
		     'hide temporaries'
		   ).
	selectors := #(
		     doInspect
		     doBasicInspect
		     nil
		     hideTemporaries
		   )
    ].

    ^ PopUpMenu
	  labels:(resources array:labels)
	  selectors:selectors
! !