Smalltalk.st
author Claus Gittinger <cg@exept.de>
Mon, 11 Nov 2002 10:29:09 +0100
changeset 6842 a5110421e4ab
parent 6841 37bc69fc9240
child 6848 2f3d9ad58176
permissions -rw-r--r--
more for standAlone start
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     1
"
5
67342904af11 *** empty log message ***
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1988 by Claus Gittinger
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
     3
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    13
"{ Package: 'stx:libbasic' }"
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    14
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    15
Object subclass:#Smalltalk
5039
2a571c36433e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5038
diff changeset
    16
	instanceVariableNames:''
2a571c36433e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5038
diff changeset
    17
	classVariableNames:'StartBlocks ImageStartBlocks ExitBlocks CachedClasses SystemPath
2a571c36433e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5038
diff changeset
    18
		StartupClass StartupSelector StartupArguments CommandLine
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
    19
		CommandName CommandLineArguments CachedAbbreviations SilentLoading
6841
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
    20
		Initializing StandAlone HeadlessOperation DebuggingStandAlone LogDoits LoadBinaries
5039
2a571c36433e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5038
diff changeset
    21
		RealSystemPath ResourcePath SourcePath BitmapPath BinaryPath
2a571c36433e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5038
diff changeset
    22
		FileInPath PackagePath BinaryDirName ResourceDirName
2a571c36433e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5038
diff changeset
    23
		SourceDirName BitmapDirName PackageDirName FileInDirName
2a571c36433e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5038
diff changeset
    24
		ChangeFileName ImageStartTime ImageRestartTime DemoMode
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
    25
		SaveEmergencyImage SpecialObjectArray CallbackSignal
5112
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
    26
		KnownPackages'
5039
2a571c36433e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5038
diff changeset
    27
	poolDictionaries:''
2a571c36433e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5038
diff changeset
    28
	category:'System-Support'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    29
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    30
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
    31
!Smalltalk class methodsFor:'documentation'!
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    32
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    33
copyright
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    34
"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    35
 COPYRIGHT (c) 1988 by Claus Gittinger
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    36
	      All Rights Reserved
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    37
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    38
 This software is furnished under a license and may be used
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    39
 only in accordance with the terms of that license and with the
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    40
 inclusion of the above copyright notice.   This software may not
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    41
 be provided or otherwise made available to, or used by, any
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    42
 other person.  No title to or ownership of the software is
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    43
 hereby transferred.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    44
"
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
    45
!
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
    46
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    47
documentation
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    48
"
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    49
    This is one of the central classes in the system;
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    50
    it provides all system-startup, shutdown and maintenance support.
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
    51
    Also global variables are (conceptionally) kept here.
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    52
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    53
    As you will notice, this is NOT a Dictionary
3062
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
    54
    - my implementation of globals is totally different
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
    55
      due to the need to be able to access globals from c-code as well,
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
    56
      I do not use associations for globals, but instead keep the
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
    57
      name<->value relations in the VM and access globals via utility
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
    58
      functions found there.
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
    59
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    60
    However, it provides the known enumeration protocol.
3062
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
    61
    It may change to become a subclass of collection at some time,
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
    62
    to inherit more collection stuff ...
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    63
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
    64
1286
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1222
diff changeset
    65
    [Instance variables:]
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    66
					none - all handling is done in the VM
1286
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1222
diff changeset
    67
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1222
diff changeset
    68
    [Class variables:]
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1222
diff changeset
    69
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    70
	StartBlocks     <Collection>    blocks to be executed in a separate process after
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    71
					everything has been initialized. These blocks will
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    72
					be deleted after execution and therefore not be
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    73
					executed after an image restart. Initial processes
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    74
					(such as the Launcher) are usually started here.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    75
					These blocks are added by smalltalk.rc/private.rc etc.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    76
					via #addStartBlock during early initialization.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    77
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    78
	ImageStartBlocks 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    79
			<Collection>    blocks to be executed in a separate process after
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    80
					everything has been initialized. These blocks will be
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    81
					executed after an image restart.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    82
					These blocks are usually added by smalltalk_r.rc etc.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    83
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    84
	ExitBlocks      <Collection>    blocks to evaluate before system is
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    85
					left. Not currently used (GNU-ST compatibility).
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    86
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    87
	SystemPath      <Collection>    path to search for system files (sources, bitmaps etc)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    88
					Set to a default here, but typically changed from some
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    89
					startup.rc file
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    90
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    91
	PackagePath     <Collection>    path to search for package.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    92
					This is going to replace the above systemPath, and a classes
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    93
					resources will eventually searched in its package directory.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    94
					This list defines the path, where packages are searched for,
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    95
					initially this is something like /opt/smalltalk/packages.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    96
					Set to a default here, but typically changed from some
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    97
					startup.rc file
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    98
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
    99
	StartupClass    <Class>         class and selector, where the system starts up
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   100
	StartupSelector <Symbol>        (right after VM initialization)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   101
	StartupArguments <Array>        If an image is saved while those being nonNil, 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   102
					the image will come up there.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   103
					Allows for customized images to be
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   104
					generated from a standard ST/X.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   105
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   106
	CommandLine          <String>   Unix (OS-) command line
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   107
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   108
	CommandName          <String>   the command (i.e. argv[0])
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   109
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   110
	CommandLineArguments <Array>    Unix (OS-) command line arguments broken into words
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   111
					CommandName has been stripped off.
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   112
					(initially set by the VM)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   113
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   114
	SilentLoading   <Boolean>       suppresses messages during fileIn and in compiler
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   115
					(can be set to true from a customized main.c)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   116
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   117
	Initializing    <Boolean>       true while (re-)initializing
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   118
					Controls the behavior of certain error
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   119
					reporters (for example: suppress dialogBoxes)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   120
					while the system is not yet fit for full operation.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   121
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   122
	StandAlone      <Boolean>       true, if this is a standalone app;
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   123
					if true the process scheduler watches for
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   124
					which processes are still running, and 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   125
					exits ST/X, when the last non-background
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   126
					and non-system process exits.
3062
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
   127
                                        
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   128
	HeadlessOperation               if true, a non-existing Display connection
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   129
			<Boolean>       will NOT lead to an error-exit during startup.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   130
					Default is false.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   131
					Can be set in an application-specific startup script. 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   132
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   133
	LogDoits        <Boolean>       if true, doits are also logged in the changes
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   134
					file. Default is false, since the changes file
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   135
					may become huge if every tiny doIt is saved there ...
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   136
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   137
	LoadBinaries    <Boolean>       if true, we attempt to load classes rom a binary
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   138
					file, if present. If false, this is always suppressed.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   139
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   140
	SaveEmergencyImage <Boolean>    if true (the default), an emergency image
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   141
					is saved, if the main Display looses its
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   142
					connection. This is useful if you have a
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   143
					flaky display connection (serial line)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   144
					and want to have your stuff saved automatically
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   145
					in case of a broken connection.
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
   146
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   147
    strictly private classVariables (helpers):
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   148
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   149
	CachedClasses   <Collection>    known classes (cached for faster class enumeration)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   150
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   151
	CachedAbbreviations
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   152
			<Dictionary>    className to filename mappings
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   153
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   154
	RealSystemPath  <Collection>    cached collection of directories along the path
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   155
					which really exist. Caching avoids long checks
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   156
					for existing directories on broken NFS volumes.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   157
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   158
	SourcePath      <Collection>    cached names of really existing directories
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   159
	BitmapPath                      These are remembered, since in NFS systems,
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   160
	ResourcePath                    the time to lookup files may become long
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   161
	BinaryPath                      (especially, if some directories are on machines
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   162
	FileInPath                      which are not up ...). 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   163
					Therefore, the set of really
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   164
					existing directories is cached when the SystemPath
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   165
					is walked the first time.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   166
					A consequence is that you have to invoke
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   167
					flushSystemPath, when you create any of those
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   168
					directories while running
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   169
					(and want the running ST/X to look there)
3062
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
   170
1286
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1222
diff changeset
   171
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1222
diff changeset
   172
    [author:]
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   173
	Claus Gittinger
3062
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
   174
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
   175
    [see also:]
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   176
	ObjectMemory
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
   177
"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   178
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   179
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   180
!Smalltalk class methodsFor:'initialization'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   181
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   182
initGlobalsFromEnvironment
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   183
    "setup globals from the shell-environment"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   184
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   185
    |envString i langString terrString|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   186
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
   187
    StandAlone isNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   188
	StandAlone := false.
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
   189
    ].
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
   190
    HeadlessOperation isNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   191
	HeadlessOperation := false.
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
   192
    ].
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
   193
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   194
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   195
     extract Language and LanguageTerritory from LANG variable.
5846
a972d0e7e06b Parsing of de_DE
Stefan Vogel <sv@exept.de>
parents: 5841
diff changeset
   196
     valid are for example:
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   197
			    en_en / en
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   198
			    en_us
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   199
			    en_gb
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   200
			    de_de / de
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   201
			    de_at       (for Austria)
5846
a972d0e7e06b Parsing of de_DE
Stefan Vogel <sv@exept.de>
parents: 5841
diff changeset
   202
    "
a972d0e7e06b Parsing of de_DE
Stefan Vogel <sv@exept.de>
parents: 5841
diff changeset
   203
a972d0e7e06b Parsing of de_DE
Stefan Vogel <sv@exept.de>
parents: 5841
diff changeset
   204
    Language := #en.
994
6163ae7aaf9b territory defaults to #us (instead of #usa)
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
   205
    LanguageTerritory := #us.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   206
5846
a972d0e7e06b Parsing of de_DE
Stefan Vogel <sv@exept.de>
parents: 5841
diff changeset
   207
a972d0e7e06b Parsing of de_DE
Stefan Vogel <sv@exept.de>
parents: 5841
diff changeset
   208
    "Format of LANG is: language[_territory][.codeset][@modifier]
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   209
	language        ISO-639  Language code
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   210
	territory       ISO-3166 Contry code"
5846
a972d0e7e06b Parsing of de_DE
Stefan Vogel <sv@exept.de>
parents: 5841
diff changeset
   211
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   212
    envString := OperatingSystem getEnvironment:'LANG'.
3991
7b53bc45bf91 (isNil or:[isEmpty ]) -> (size == 0)
Claus Gittinger <cg@exept.de>
parents: 3988
diff changeset
   213
    envString size > 0 ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   214
	i := envString indexOf:$@.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   215
	(i ~~ 0) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   216
	    envString := envString copyTo:(i - 1).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   217
	    LanguageModifier := (envString copyFrom:(i + 1)) asLowercase asSymbol.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   218
	] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   219
	    LanguageModifier := nil.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   220
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   221
	i := envString indexOf:$..
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   222
	(i ~~ 0) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   223
	    envString := envString copyTo:(i - 1).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   224
	    LanguageCodeset := (envString copyFrom:(i + 1)) asLowercase asSymbol
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   225
	] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   226
	    LanguageCodeset := #'iso8859-1'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   227
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   228
	i := envString indexOf:$_.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   229
	(i == 0) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   230
	    langString := envString.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   231
	    terrString := envString
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   232
	] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   233
	    langString := envString copyTo:(i - 1).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   234
	    terrString := envString copyFrom:(i + 1)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   235
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   236
	Language := langString asLowercase asSymbol.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   237
	LanguageTerritory := terrString asLowercase asSymbol
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   238
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   239
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   240
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   241
     Smalltalk initGlobalsFromEnvironment
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   242
    "
994
6163ae7aaf9b territory defaults to #us (instead of #usa)
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
   243
6163ae7aaf9b territory defaults to #us (instead of #usa)
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
   244
    "Modified: 22.2.1996 / 16:59:12 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   245
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   246
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   247
initInterrupts
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   248
    "initialize interrupts"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   249
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   250
    OperatingSystem enableUserInterrupts.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   251
    OperatingSystem enableHardSignalInterrupts.
6390
41d5c47c33f0 Catch sigPWR and sigHUP on restart
Stefan Vogel <sv@exept.de>
parents: 6366
diff changeset
   252
    OperatingSystem enableCrashSignalInterrupts.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   253
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   254
    ObjectMemory userInterruptHandler:self.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   255
    ObjectMemory signalInterruptHandler:self.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   256
    ObjectMemory recursionInterruptHandler:self.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   257
963
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   258
    "
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   259
     Smalltalk initInterrupts
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   260
    "
2873
5bc8c81c4a34 Catch fpExeceptionInterrupt after image restart.
Stefan Vogel <sv@exept.de>
parents: 2844
diff changeset
   261
5bc8c81c4a34 Catch fpExeceptionInterrupt after image restart.
Stefan Vogel <sv@exept.de>
parents: 2844
diff changeset
   262
    "Modified: 20.8.1997 / 09:35:49 / stefan"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   263
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   264
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   265
initStandardStreams
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   266
    "initialize some well-known streams"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   267
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   268
    Stdout := NonPositionableExternalStream forStdout.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   269
    Stderr := NonPositionableExternalStream forStderr.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   270
    Stdin := NonPositionableExternalStream forStdin.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   271
    Printer := PrinterStream.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   272
    Transcript := Stderr
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   273
963
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   274
    "
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   275
     Smalltalk initStandardStreams
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   276
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   277
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   278
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   279
initStandardTools
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   280
    "predefine some tools which we will need later
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   281
     - if the view-classes exist,
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   282
       they will redefine Inspector and Debugger for graphical interfaces"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   283
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   284
    "redefine debug-tools, if view-classes exist"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   285
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   286
    Display notNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   287
	InspectorView notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   288
	    Inspector := InspectorView
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   289
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   290
	DebugView notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   291
	    Debugger := DebugView
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   292
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   293
	Display initialize
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   294
    ]
963
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   295
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   296
    "
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   297
     Smalltalk initStandardTools
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   298
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   299
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   300
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   301
initSystemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   302
    "setup path where system files are searched for.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   303
     the default path is set to:
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   304
	    .
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   305
	    $HOME                    (if defined)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   306
	    $HOME/.smalltalk         (if defined & existing)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   307
	    $SMALLTALK_LIBDIR        (if defined & existing)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   308
	    $STX_LIBDIR              (if defined & existing)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   309
	    $STX_TOPDIR              (if defined & existing)
4001
fa75465bd263 made systemPath setup OS-specific
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   310
fa75465bd263 made systemPath setup OS-specific
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   311
     unix:
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   312
	    /opt/smalltalk           (if existing)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   313
	    /opt/smalltalk/release   (if existing)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   314
	    /usr/local/lib/smalltalk (if existing)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   315
	    /usr/lib/smalltalk       (if existing)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   316
	    /lib/smalltalk           (if existing)
4001
fa75465bd263 made systemPath setup OS-specific
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   317
fa75465bd263 made systemPath setup OS-specific
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   318
     win32:
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   319
	    \smalltalk                (if existing)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   320
	    \programs\smalltalk       (if existing)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   321
	    \programs\exept\smalltalk (if existing)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   322
	    registry info             (if present)
4001
fa75465bd263 made systemPath setup OS-specific
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   323
fa75465bd263 made systemPath setup OS-specific
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   324
     vms:
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   325
	    $stx:lib                 (if existing)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   326
	    $stx:root                (if existing)
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   327
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   328
     of course, it is possible to add entries from the 'smalltalk.rc'
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   329
     startup file; add expressions such as:
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   330
	    Smalltalk systemPath addFirst:'/foo/bar/baz'.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   331
	or: 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   332
	    Smalltalk systemPath addLast:'/fee/foe/foo'.
4001
fa75465bd263 made systemPath setup OS-specific
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   333
fa75465bd263 made systemPath setup OS-specific
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   334
     However, smalltalk.rc itself must be found along the above path.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   335
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   336
2928
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
   337
    ChangeFileName := 'changes'.
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
   338
    OperatingSystem isVMSlike ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   339
	BitmapDirName := 'bitmaps.dir'.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   340
	BinaryDirName := 'binary.dir'.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   341
	SourceDirName := 'source.dir'.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   342
	ResourceDirName := 'resources.dir'.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   343
	FileInDirName := 'filein.dir'.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   344
	PackageDirName := 'packages.dir'.
2928
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
   345
    ] ifFalse:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   346
	BitmapDirName := 'bitmaps'.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   347
	BinaryDirName := 'binary'.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   348
	SourceDirName := 'source'.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   349
	ResourceDirName := 'resources'.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   350
	FileInDirName := 'fileIn'.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   351
	PackageDirName := 'packages'.
2928
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
   352
    ].
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
   353
680
6f5794a26d2d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 657
diff changeset
   354
    SystemPath isNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   355
	SystemPath := OperatingSystem defaultSystemPath.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   356
	self flushPathCaches
5139
135e98726986 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5138
diff changeset
   357
    ].
135e98726986 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5138
diff changeset
   358
5144
607e6fe053b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
   359
    PackagePath isNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   360
	PackagePath := OperatingSystem defaultPackagePath.
5144
607e6fe053b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
   361
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   362
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   363
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   364
     Smalltalk initSystemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   365
     Smalltalk systemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   366
    "
5139
135e98726986 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5138
diff changeset
   367
5145
23bca61caa40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5144
diff changeset
   368
    "Modified: / 24.12.1999 / 00:23:35 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   369
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   370
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   371
initUserPreferences
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   372
    "setup other stuff"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   373
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   374
    LogDoits := false.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   375
    LoadBinaries := false.
3062
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
   376
    SaveEmergencyImage := true.
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
   377
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
   378
    "Modified: / 24.10.1997 / 18:22:47 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   379
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   380
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   381
initializeModules
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   382
    "perform module specific initialization and
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   383
     send #initialize to all classes.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   384
     Notice: this is not called when an image is restarted"
4963
308de981ea7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4959
diff changeset
   385
308de981ea7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4959
diff changeset
   386
    " TODO:
308de981ea7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4959
diff changeset
   387
     change VM/stc to invoke #Smalltalk initializeClass:aClass
308de981ea7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4959
diff changeset
   388
     (instead of directly sending #initialize)
308de981ea7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4959
diff changeset
   389
     This will allow us to wrap an exception handler around classes
308de981ea7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4959
diff changeset
   390
     #initialize methods."
308de981ea7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4959
diff changeset
   391
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   392
%{
1688
8a42db1eea60 removed all COMMA_CON / CON_COMMA uses
Claus Gittinger <cg@exept.de>
parents: 1682
diff changeset
   393
    __init_registered_modules__(3);
4963
308de981ea7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4959
diff changeset
   394
1481
90a28fd060bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1480
diff changeset
   395
    @global(DemoMode) = __getDemoMode() ? true : false;
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   396
    RETURN (self);
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   397
%}.
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   398
    ^ self primitiveFailed
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   399
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   400
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   401
325
claus
parents: 324
diff changeset
   402
initializeSystem
24
20cfbafcd0a3 *** empty log message ***
claus
parents: 13
diff changeset
   403
    "initialize all other classes; setup dispatcher processes etc.
3499
5f8715a97ff5 switching to OS-subclasses
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   404
     This one is the very first entry into the smalltalk world,
5f8715a97ff5 switching to OS-subclasses
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   405
     right after startup, ususally immediately followed by Smalltalk>>start.
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   406
     Notice: 
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   407
	this is not called when an image is restarted; in this
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   408
	case the show starts in Smalltalk>>restart."
211
58bb873aa83c *** empty log message ***
claus
parents: 202
diff changeset
   409
6841
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
   410
    |idx|
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
   411
3499
5f8715a97ff5 switching to OS-subclasses
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   412
    Initializing := true.
6841
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
   413
3499
5f8715a97ff5 switching to OS-subclasses
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   414
    AbstractOperatingSystem initializeConcreteClass.
5f8715a97ff5 switching to OS-subclasses
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   415
5400
af8fdc4d3e02 kludge (for rel5)
Claus Gittinger <cg@exept.de>
parents: 5373
diff changeset
   416
    CommandLineArguments isNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   417
	CommandLineArguments := #('stx').
5400
af8fdc4d3e02 kludge (for rel5)
Claus Gittinger <cg@exept.de>
parents: 5373
diff changeset
   418
    ].
4006
c7ad38c52eb9 must set CommandLineArguments earlier (to be available in initializeSystem)
Claus Gittinger <cg@exept.de>
parents: 4001
diff changeset
   419
    CommandLine := CommandLineArguments copy.
c7ad38c52eb9 must set CommandLineArguments earlier (to be available in initializeSystem)
Claus Gittinger <cg@exept.de>
parents: 4001
diff changeset
   420
    CommandLineArguments := CommandLineArguments asOrderedCollection.
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   421
    CommandName := CommandLineArguments removeFirst. "/ the command
4006
c7ad38c52eb9 must set CommandLineArguments earlier (to be available in initializeSystem)
Claus Gittinger <cg@exept.de>
parents: 4001
diff changeset
   422
4028
b46539f16af5 added --silentStartup argument
Claus Gittinger <cg@exept.de>
parents: 4026
diff changeset
   423
    SilentLoading := (CommandLineArguments includes:'--silentStartup').
348
claus
parents: 345
diff changeset
   424
6841
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
   425
    DebuggingStandAlone := false.
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
   426
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
   427
    StandAlone ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   428
	InfoPrinting := false.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   429
	ObjectMemory infoPrinting:false.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   430
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   431
	idx := CommandLineArguments indexOf:'-debug'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   432
	idx ~~ 0 ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   433
	    CommandLineArguments removeAtIndex:idx.
6841
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
   434
	    DebuggingStandAlone := true.
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   435
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   436
	DebuggingStandAlone ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   437
	    Debugger := MiniDebugger.
6841
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
   438
	].
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
   439
    ] ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   440
	"/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   441
	"/ define low-level debugging tools - graphical classes are not prepared yet
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   442
	"/ to handle things. 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   443
	"/ This will bring us into the MiniDebugger when an error occurs during startup.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   444
	"/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   445
	Inspector := MiniInspector.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   446
	Debugger := MiniDebugger.
6841
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
   447
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   448
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   449
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   450
    "/ start catching SIGSEGV and SIGBUS
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   451
    "/
713
32540afb8ffc setup SIGSEGV/SIGBUS handling early - to catch those during startup
Claus Gittinger <cg@exept.de>
parents: 706
diff changeset
   452
    OperatingSystem enableHardSignalInterrupts.
32540afb8ffc setup SIGSEGV/SIGBUS handling early - to catch those during startup
Claus Gittinger <cg@exept.de>
parents: 706
diff changeset
   453
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   454
    self initGlobalsFromEnvironment.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   455
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   456
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   457
    "/ sorry - there are some, which MUST be initialized before ..
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   458
    "/ reason: if any error happens during init, we need Signals, Stdout etc. to be there
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   459
    "/
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   460
    Object initialize.
423
claus
parents: 421
diff changeset
   461
    Signal initialize.
2907
1666bf27f351 VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
   462
    Filename initialize.
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   463
    ObjectMemory initialize.
2504
ece15ffbcb69 Initialize OperatingSystem early (needed for some signals).
Stefan Vogel <sv@exept.de>
parents: 2485
diff changeset
   464
    OperatingSystem initialize.
596
ecb1d732dade require Stream to be initialized before ExternalStream is
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   465
    Stream initialize.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   466
    ExternalStream initialize.
211
58bb873aa83c *** empty log message ***
claus
parents: 202
diff changeset
   467
58bb873aa83c *** empty log message ***
claus
parents: 202
diff changeset
   468
    self initStandardStreams.    "/ setup Stdin, Stdout etc.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   469
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   470
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   471
    "/ sorry, path must be set before ...
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   472
    "/ reason: some classes need it during initialize (they might need resources, bitmaps etc)
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   473
    "/
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   474
    self initSystemPath.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   475
a27a279701f8 Initial revision
claus
parents:
diff changeset
   476
    Compiler := ByteCodeCompiler.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   477
    Compiler isNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   478
	"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   479
	 ByteCodeCompiler is not in the system (i.e. has not been linked in)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   480
	 this allows at least immediate evaluations for runtime systems without compiler
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   481
	 NOTICE: a parser is always needed, otherwise we cannot read resource files etc.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   482
	"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   483
	Compiler := Parser
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   484
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   485
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   486
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   487
    "/ another one, to be initialized before others
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   488
    "/
2077
6b5dc412dd15 must initialize Processor before doing modulInits
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   489
    ProcessorScheduler initialize.
6b5dc412dd15 must initialize Processor before doing modulInits
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   490
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   491
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   492
    "/ now, finally, initialize all other classes
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   493
    "/
325
claus
parents: 324
diff changeset
   494
    self initializeModules.
claus
parents: 324
diff changeset
   495
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   496
    ImageStartTime := AbsoluteTime now.
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   497
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
   498
    self initInterrupts.
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   499
    self initUserPreferences.
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   500
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   501
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   502
    "/ give classes a chance to perform 2nd-level initialization
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   503
    "/ now, we are certain, that all other classes have been initialized
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   504
    "/ (especially: streams and signals can now be used)
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   505
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   506
    ObjectMemory changed:#initialized.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   507
2504
ece15ffbcb69 Initialize OperatingSystem early (needed for some signals).
Stefan Vogel <sv@exept.de>
parents: 2485
diff changeset
   508
    "Modified: 8.1.1997 / 19:58:12 / stefan"
2907
1666bf27f351 VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
   509
    "Modified: 7.9.1997 / 23:34:44 / cg"
325
claus
parents: 324
diff changeset
   510
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   511
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   512
isInitialized
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   513
    "this returns true, if the system is properly initialized;
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   514
     i.e. false during startup. Especially, the whole viewing stuff is
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   515
     not working correctly until initialized."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   516
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   517
    ^ Initializing not
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   518
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   519
477
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
   520
reinitStandardStreams
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
   521
    "reinitialize some well-known streams.
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
   522
     Tis must be done very early during startup, to allow for
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
   523
     debug and trace messages to be output
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
   524
     (otherwise, the file-descriptors are invalid)"
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
   525
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
   526
    Stdout reOpen. Stderr reOpen. Stdin reOpen.
161
ed36169f354d *** empty log message ***
claus
parents: 159
diff changeset
   527
! !
ed36169f354d *** empty log message ***
claus
parents: 159
diff changeset
   528
5186
ed0c5597034f category renamining
Claus Gittinger <cg@exept.de>
parents: 5176
diff changeset
   529
!Smalltalk class methodsFor:'Compatibility - Squeak'!
4584
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   530
4872
97d6aa9db3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4870
diff changeset
   531
beep
97d6aa9db3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4870
diff changeset
   532
    Screen current beep
97d6aa9db3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4870
diff changeset
   533
!
97d6aa9db3e9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4870
diff changeset
   534
4599
a42fb790a1c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4584
diff changeset
   535
garbageCollect
a42fb790a1c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4584
diff changeset
   536
   ObjectMemory garbageCollect
a42fb790a1c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4584
diff changeset
   537
!
a42fb790a1c5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4584
diff changeset
   538
4584
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   539
garbageCollectMost
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   540
    "collect recently created garbage; return the amount of freeSpace.
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   541
     In ST/X, only the newSpace is collected here, and the sum of
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   542
     newSpace + freeListSpace is returned."
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   543
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   544
    ObjectMemory scavenge.
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   545
    ^ ObjectMemory freeSpace 
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   546
      + (ObjectMemory newSpaceSize - ObjectMemory newSpaceUsed)
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   547
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   548
!
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   549
4870
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   550
isMorphic
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   551
    ^ false
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   552
!
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   553
4584
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   554
registerExternalObject: anObject
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   555
    "Register the given object in the external objects array and return its index.
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   556
     If it is already there, just return its index.
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   557
     ExternalObjects are protected from GC and can be accessed easily from
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   558
     primitive code (via the global Smalltalk:SpecialObjectArray)"
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   559
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   560
    | objects firstEmptyIndex obj sz newObjects |
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   561
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   562
    objects := SpecialObjectArray.
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   563
    objects isNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   564
	objects := Array new:5.
4584
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   565
    ].
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   566
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   567
    "find the first empty slot and look if already registered"
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   568
    firstEmptyIndex := 0.
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   569
    1 to: objects size do: [:i |
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   570
	obj := objects at: i.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   571
	obj == anObject ifTrue: [^ i].  "object already there, just return its index"
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   572
	(obj == nil and: [firstEmptyIndex = 0]) ifTrue: [
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   573
	    firstEmptyIndex := i
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   574
	]
4584
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   575
    ].
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   576
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   577
    "if no empty slots, expand the array"
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   578
    firstEmptyIndex = 0 ifTrue: [
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   579
	sz := objects size.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   580
	newObjects := objects species new: sz + 20.  "grow linearly"
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   581
	newObjects replaceFrom: 1 to: sz with: objects startingAt: 1.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   582
	firstEmptyIndex := sz + 1.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   583
	SpecialObjectArray := newObjects.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   584
	objects := newObjects
4584
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   585
    ].
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   586
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   587
    objects at: firstEmptyIndex put: anObject.
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   588
    ^ firstEmptyIndex
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   589
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   590
!
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   591
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   592
unregisterExternalObject: anObject
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   593
    "Unregister the given object in the external objects array. 
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   594
     Do nothing if it isn't registered."
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   595
5913
a69d4f34f159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5895
diff changeset
   596
    |objects|
a69d4f34f159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5895
diff changeset
   597
a69d4f34f159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5895
diff changeset
   598
    anObject isNil ifTrue:[^ self].
4584
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   599
    objects := SpecialObjectArray.
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   600
    1 to: objects size do: [:i |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   601
	(objects at: i) == anObject ifTrue: [
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   602
	    objects at: i put: nil
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   603
	]
5913
a69d4f34f159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5895
diff changeset
   604
    ].
4584
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   605
! !
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   606
6722
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
   607
!Smalltalk class methodsFor:'Compatibility - V''Age'!
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
   608
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
   609
allClassesImplementing:aSelector
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
   610
    ^ self allClasses select:[:cls | cls implements:aSelector].
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
   611
! !
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
   612
6094
79ebf84b51bd first attempt in supporting vw5.4 definitions
Claus Gittinger <cg@exept.de>
parents: 6080
diff changeset
   613
!Smalltalk class methodsFor:'Compatibility - VW5.4'!
79ebf84b51bd first attempt in supporting vw5.4 definitions
Claus Gittinger <cg@exept.de>
parents: 6080
diff changeset
   614
79ebf84b51bd first attempt in supporting vw5.4 definitions
Claus Gittinger <cg@exept.de>
parents: 6080
diff changeset
   615
defineClass:nameSymbol superclass:superclass indexedType:indexed private:private instanceVariableNames:instVars classInstanceVariableNames:classInstVars imports:imports category:category attributes:annotations
79ebf84b51bd first attempt in supporting vw5.4 definitions
Claus Gittinger <cg@exept.de>
parents: 6080
diff changeset
   616
    |newClass|
79ebf84b51bd first attempt in supporting vw5.4 definitions
Claus Gittinger <cg@exept.de>
parents: 6080
diff changeset
   617
79ebf84b51bd first attempt in supporting vw5.4 definitions
Claus Gittinger <cg@exept.de>
parents: 6080
diff changeset
   618
    indexed == #none ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   619
	newClass := superclass 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   620
	    subclass:nameSymbol 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   621
	    instanceVariableNames:instVars
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   622
	    classVariableNames:'' 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   623
	    poolDictionaries:'' 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   624
	    category:category 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   625
	    inEnvironment:self.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   626
	classInstVars size > 0 ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   627
	    newClass class instanceVariableNames:classInstVars.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   628
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   629
	^ newClass
6094
79ebf84b51bd first attempt in supporting vw5.4 definitions
Claus Gittinger <cg@exept.de>
parents: 6080
diff changeset
   630
    ].
6782
fb9e9bf6793a Comments
Stefan Vogel <sv@exept.de>
parents: 6734
diff changeset
   631
    self halt:'not yet supported'.
6094
79ebf84b51bd first attempt in supporting vw5.4 definitions
Claus Gittinger <cg@exept.de>
parents: 6080
diff changeset
   632
! !
79ebf84b51bd first attempt in supporting vw5.4 definitions
Claus Gittinger <cg@exept.de>
parents: 6080
diff changeset
   633
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   634
!Smalltalk class methodsFor:'accessing'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   635
3083
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   636
associationAt:aKey
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   637
    "return a key-value association for aKey.
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   638
     Since ST/X's Smalltalk as no real dictionary, this is
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   639
     simulated here."
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   640
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   641
    |val|
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   642
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   643
    val := self at:aKey ifAbsent:nil.
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   644
    val isNil ifTrue:[^ nil].
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   645
    ^ Association key:aKey value:val
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   646
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   647
    "Created: / 1.11.1997 / 13:27:20 / cg"
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   648
!
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   649
3610
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   650
associationAt:aKey ifAbsent:exceptionBlock
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   651
    "return a key-value association for aKey, or the value
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   652
     from exceptionBlock, if no such key is present.
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   653
     Since ST/X's Smalltalk as no real dictionary, this is
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   654
     simulated here."
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   655
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   656
    |val|
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   657
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   658
    val := self at:aKey ifAbsent:nil.
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   659
    val isNil ifTrue:[^ exceptionBlock value].
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   660
    ^ Association key:aKey value:val
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   661
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   662
    "Created: / 18.6.1998 / 17:05:24 / cg"
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   663
!
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   664
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   665
at:aKey
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   666
    "retrieve the value stored under aKey, a symbol. 
1956
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   667
     Return nil if not present 
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   668
     (this will be changed to trigger an error - better use #at:ifAbsent:)"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   669
6782
fb9e9bf6793a Comments
Stefan Vogel <sv@exept.de>
parents: 6734
diff changeset
   670
    aKey class == String ifTrue:[self halt:'expected symbol'].
6080
15ea3cbf6003 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6074
diff changeset
   671
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   672
%{  /* NOCONTEXT */
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   673
    RETURN ( __GLOBAL_GET(aKey) );
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
   674
%}.
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   675
    ^ self primitiveFailed
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   676
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   677
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   678
at:aKey ifAbsent:aBlock
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   679
    "retrieve the value stored at aKey.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   680
     If there is nothing stored under this key, return the value of
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   681
     the evaluation of aBlock."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   682
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   683
    (self includesKey:aKey) ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   684
	^ self at:aKey
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   685
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   686
    ^ aBlock value
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   687
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   688
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   689
     Smalltalk at:#fooBar                       <- returns nil
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   690
     Smalltalk at:#fooBar ifAbsent:['sorry']    <- no error
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   691
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   692
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   693
4870
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   694
at:aKey ifPresent:aBlock
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   695
    "try to retrieve the value stored at aKey.
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   696
     If there is nothing stored under this key, do nothing.
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   697
     Otherwise, evaluate aBlock, passing the retrieved value as argument."
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   698
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   699
    (self includesKey:aKey) ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   700
	^ aBlock value:(self at:aKey)
4870
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   701
    ].
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   702
    ^ nil
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   703
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   704
    "
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   705
     Smalltalk at:#fooBar ifPresent:[:what | Transcript showCR:what].
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   706
     Smalltalk at:#Object ifPresent:[:what | Transcript showCR:what].
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   707
    "
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   708
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   709
!
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   710
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   711
at:aKey put:aValue
1222
b77fbb5457fb commentary
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   712
    "store the argument aValue under aKey, a symbol.
b77fbb5457fb commentary
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   713
     Return aValue (sigh)."
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   714
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   715
    |oldValue|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   716
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   717
%{
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   718
    oldValue = __GLOBAL_SET(aKey, aValue, (OBJ *)0);
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   719
%}.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   720
    CachedClasses notNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   721
	oldValue isBehavior ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   722
	    oldValue name == aKey ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   723
		CachedClasses remove:oldValue ifAbsent:[]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   724
	    ]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   725
	].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   726
	aValue isBehavior ifTrue:[
1956
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   727
"/            aValue isMeta ifTrue:[
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   728
"/                "/ this should not happen
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   729
"/                ('SMALLTALK: store a Metaclass: ' , aValue name , ' as ' , aKey) infoPrintCR.
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   730
"/            ].
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   731
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   732
	    aValue name == aKey ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   733
		CachedClasses add:aValue
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   734
	    ] ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   735
		CachedClasses := nil
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   736
	    ]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   737
	].
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   738
    ].
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   739
    ^ aValue.
1955
276d4ce9b40e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1945
diff changeset
   740
"/
276d4ce9b40e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1945
diff changeset
   741
"/%{  /* NOCONTEXT */
276d4ce9b40e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1945
diff changeset
   742
"/    (void) __GLOBAL_SET(aKey, aValue, (OBJ *)0);
276d4ce9b40e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1945
diff changeset
   743
"/%}.
276d4ce9b40e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1945
diff changeset
   744
"/    CachedClasses := nil.
276d4ce9b40e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1945
diff changeset
   745
"/    ^ aValue
1222
b77fbb5457fb commentary
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   746
b77fbb5457fb commentary
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   747
    "Modified: 19.4.1996 / 11:31:49 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   748
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   749
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   750
includesKey:aKey
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   751
    "return true, if the key is known"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   752
6231
274fc37dab07 dont halt in #includesKey:
Claus Gittinger <cg@exept.de>
parents: 6217
diff changeset
   753
    "/ for debugging - this is a common mistake,
274fc37dab07 dont halt in #includesKey:
Claus Gittinger <cg@exept.de>
parents: 6217
diff changeset
   754
    "/ to try to access a class by nameString, instead
274fc37dab07 dont halt in #includesKey:
Claus Gittinger <cg@exept.de>
parents: 6217
diff changeset
   755
    "/ of by symbol.
274fc37dab07 dont halt in #includesKey:
Claus Gittinger <cg@exept.de>
parents: 6217
diff changeset
   756
274fc37dab07 dont halt in #includesKey:
Claus Gittinger <cg@exept.de>
parents: 6217
diff changeset
   757
    "/ aKey class == String ifTrue:[self halt].
4391
d6832c898c39 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4356
diff changeset
   758
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   759
%{  /* NOCONTEXT */
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   760
    RETURN ( __GLOBAL_KEYKNOWN(aKey) );
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   761
%}.
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   762
    ^ self primitiveFailed
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   763
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   764
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   765
keyAtValue:anObject
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   766
    "return the symbol under which anObject is stored - or nil"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   767
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   768
    self keysDo:[:aKey |
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   769
	(self at:aKey) == anObject ifTrue:[^ aKey]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   770
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   771
    ^ nil
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   772
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   773
    "Smalltalk keyAtValue:Object"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   774
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   775
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   776
keys
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   777
    "return a collection with all keys in the Smalltalk dictionary"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   778
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   779
    |keys|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   780
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   781
    keys := IdentitySet new.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   782
    self keysDo:[:k | keys add:k].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   783
    ^ keys
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   784
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   785
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   786
removeKey:aKey
878
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
   787
    "remove the association stored under the key-argument from the globals dictionary.
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
   788
     WARNING: 
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   789
	this is somewhat dangerous: conceptionally, the association is removed,
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   790
	to which machine & byte compiled code refers if it accesses a global.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   791
	If there are still global accesses in some literalArray or from machine-compiled code,
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   792
	it continues to reference the globals value via that obsolete association and gets a nil
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   793
	value.  (which is correct)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   794
	However, if that global is later reintroduced, a new association will be created and
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   795
	the new global now referenced via the new association.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   796
	The old accesses will still see nil, although the globals value is actually non-nil
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   797
	(this is questionable).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   798
	To avoid this problem, the #removeClass: method never removed the key."
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   799
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   800
    CachedClasses := nil.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   801
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   802
%{  /* NOCONTEXT */
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   803
    RETURN ( __GLOBAL_REMOVE(aKey) );
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   804
%}.
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   805
    ^ self primitiveFailed
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   806
2705
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   807
!
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   808
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   809
values
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   810
    "return a collection with all values in the Smalltalk dictionary"
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   811
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   812
    |values|
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   813
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   814
    values := OrderedCollection new.
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   815
    self do:[:v | values add:v].
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   816
    ^ values
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   817
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   818
    "Created: 20.6.1997 / 16:58:28 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   819
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   820
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   821
!Smalltalk class methodsFor:'binary storage'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   822
2476
50a974f6386d renamed addGlobals.
Claus Gittinger <cg@exept.de>
parents: 2465
diff changeset
   823
addGlobalsForBinaryStorageTo:globalDictionary
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   824
    |pools|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   825
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   826
    pools := Set new.
2465
1dfcacbbd376 ignore nil values when adding globals (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   827
879
add0438a73b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 878
diff changeset
   828
    self keysAndValuesDo:[:key :value |
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   829
	(key includes:$:) ifFalse:[       "/ skip classVars
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   830
	    (value ~~ self 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   831
	    and:[value notNil]) ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   832
		value isClass ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   833
		    value addGlobalsForBinaryStorageTo:globalDictionary.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   834
		    pools addAll:value sharedPools
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   835
		] ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   836
		    globalDictionary at:(key->value) put:self
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   837
		].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   838
		value notNil ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   839
		    globalDictionary at:value put:self
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   840
		]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   841
	    ]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   842
	]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   843
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   844
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   845
    pools do:[:poolDictionary|
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   846
	poolDictionary addGlobalsForBinaryStorageTo:globalDictionary
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   847
    ]
2465
1dfcacbbd376 ignore nil values when adding globals (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   848
1dfcacbbd376 ignore nil values when adding globals (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   849
    "Modified: 19.3.1997 / 18:15:25 / cg"
2476
50a974f6386d renamed addGlobals.
Claus Gittinger <cg@exept.de>
parents: 2465
diff changeset
   850
    "Created: 21.3.1997 / 15:40:31 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   851
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   852
879
add0438a73b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 878
diff changeset
   853
storeBinaryDefinitionOf:anObject on:stream manager:manager
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   854
    |string|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   855
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   856
    anObject class == Association ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   857
	string := 'Smalltalk associationAt: ', anObject key storeString
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   858
    ] ifFalse: [
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   859
	string := 'Smalltalk at: ', (self keyAtValue: anObject) storeString
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   860
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   861
    stream nextNumber:2 put:string size.
2465
1dfcacbbd376 ignore nil values when adding globals (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   862
    stream nextPutBytes:(string size) from:string startingAt:1.
1dfcacbbd376 ignore nil values when adding globals (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   863
"/    string do:[:char | stream nextPut:char asciiValue]
1dfcacbbd376 ignore nil values when adding globals (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   864
1dfcacbbd376 ignore nil values when adding globals (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   865
    "Modified: 19.3.1997 / 18:49:14 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   866
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   867
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   868
!Smalltalk class methodsFor:'browsing'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   869
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   870
browseAllCallsOn:aSelectorSymbol
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   871
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   872
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   873
    "startup a browser for all methods sending a particular message"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   874
6020
555c690e6616 UserPreference access
Claus Gittinger <cg@exept.de>
parents: 5940
diff changeset
   875
    UserPreferences systemBrowserClass browseAllCallsOn:aSelectorSymbol
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   876
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   877
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   878
     Smalltalk browseAllCallsOn:#at:put: 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   879
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   880
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   881
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   882
browseAllSelect:aBlock
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   883
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   884
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   885
    "startup a browser for all methods for which aBlock returns true"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   886
6020
555c690e6616 UserPreference access
Claus Gittinger <cg@exept.de>
parents: 5940
diff changeset
   887
    UserPreferences systemBrowserClass browseAllSelect:aBlock
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   888
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   889
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   890
     Smalltalk browseAllSelect:[:m | m literals isNil]
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   891
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   892
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   893
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   894
browseChanges
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   895
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   896
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   897
    "startup a changes browser"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   898
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   899
    ChangesBrowser notNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   900
	ChangesBrowser open
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   901
    ] ifFalse:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   902
	self warn:'no ChangesBrowser built in'
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   903
    ]
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   904
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   905
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   906
     Smalltalk browseChanges
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   907
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   908
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   909
6819
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   910
browseImplementorsMatching:aSelectorSymbolOrMatchPattern
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   911
    "{ Pragma: +optSpace }"
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   912
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   913
    "startup a browser for all methods implementing a message matching"
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   914
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   915
    UserPreferences systemBrowserClass browseImplementorsMatching:aSelectorSymbolOrMatchPattern
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   916
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   917
    "
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   918
     Smalltalk browseImplementorsOf:#'at:put:' 
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   919
     Smalltalk browseImplementorsMatching:#'at:*' 
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   920
    "
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   921
!
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   922
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   923
browseImplementorsOf:aSelectorSymbol
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   924
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   925
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   926
    "startup a browser for all methods implementing a particular message"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   927
6020
555c690e6616 UserPreference access
Claus Gittinger <cg@exept.de>
parents: 5940
diff changeset
   928
    UserPreferences systemBrowserClass browseImplementorsOf:aSelectorSymbol
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   929
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   930
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   931
     Smalltalk browseImplementorsOf:#at:put: 
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   932
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   933
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   934
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   935
!Smalltalk class methodsFor:'class management'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   936
5253
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
   937
changeCategoryOf:aClass to:newCategory
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
   938
    "change a classes category, add a change record,
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
   939
     send change notifications"
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
   940
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
   941
    |ns|
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
   942
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
   943
    aClass category ~= newCategory ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   944
	aClass category:(newCategory withoutSeparators asSymbol). 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   945
	Project addChangeRecordForClass:aClass.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   946
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   947
	"notify change of category"
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   948
	ns := aClass environment ? self.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   949
	ns changed:#organization.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   950
	ns ~~ self ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   951
	    self changed:#organization.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
   952
	]
5253
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
   953
    ].
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
   954
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
   955
    "
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
   956
     Smalltalk changeCategoryOf:NewApplication to:#myApplications
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
   957
    "
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
   958
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
   959
    "Modified: / 11.2.2000 / 11:36:27 / cg"
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
   960
!
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
   961
5306
806182135518 VW5i compatibility defineNameSpace: added
Claus Gittinger <cg@exept.de>
parents: 5285
diff changeset
   962
defineNameSpace: name private: private imports: imports category: category attributes: annotations
5328
319b8e3ee60e renamed Namespace to NameSpace
Claus Gittinger <cg@exept.de>
parents: 5327
diff changeset
   963
    NameSpace name:name
5306
806182135518 VW5i compatibility defineNameSpace: added
Claus Gittinger <cg@exept.de>
parents: 5285
diff changeset
   964
806182135518 VW5i compatibility defineNameSpace: added
Claus Gittinger <cg@exept.de>
parents: 5285
diff changeset
   965
!
806182135518 VW5i compatibility defineNameSpace: added
Claus Gittinger <cg@exept.de>
parents: 5285
diff changeset
   966
5892
df4661be9da2 added individual cachedClass-flush
Claus Gittinger <cg@exept.de>
parents: 5881
diff changeset
   967
flushCachedClass:aClass
5895
a01dd99a9985 Check for nil CachedClasses
Stefan Vogel <sv@exept.de>
parents: 5892
diff changeset
   968
    CachedClasses notNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   969
	CachedClasses remove:aClass ifAbsent:[]
5895
a01dd99a9985 Check for nil CachedClasses
Stefan Vogel <sv@exept.de>
parents: 5892
diff changeset
   970
    ]
5892
df4661be9da2 added individual cachedClass-flush
Claus Gittinger <cg@exept.de>
parents: 5881
diff changeset
   971
!
df4661be9da2 added individual cachedClass-flush
Claus Gittinger <cg@exept.de>
parents: 5881
diff changeset
   972
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   973
flushCachedClasses
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   974
    CachedClasses := nil
5580
374e843aa424 allBehaviorsDo now enumerates both classes and metaclasses
Claus Gittinger <cg@exept.de>
parents: 5579
diff changeset
   975
374e843aa424 allBehaviorsDo now enumerates both classes and metaclasses
Claus Gittinger <cg@exept.de>
parents: 5579
diff changeset
   976
    "
374e843aa424 allBehaviorsDo now enumerates both classes and metaclasses
Claus Gittinger <cg@exept.de>
parents: 5579
diff changeset
   977
     Smalltalk flushCachedClasses
374e843aa424 allBehaviorsDo now enumerates both classes and metaclasses
Claus Gittinger <cg@exept.de>
parents: 5579
diff changeset
   978
    "
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   979
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   980
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   981
removeClass:aClass
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   982
    "remove the argument, aClass from the smalltalk dictionary;
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   983
     we have to flush the caches since these methods are now void.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   984
     Also, class variables of aClass are removed."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   985
4781
631eb425ea4e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
   986
    |sym cSym names oldName oldNameSym actualName wrongName ns ons|
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   987
4099
f6984fc5cb6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
   988
    aClass isNil ifTrue:[^ self].
4781
631eb425ea4e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
   989
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   990
    oldName := aClass name.
4781
631eb425ea4e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
   991
    sym := oldNameSym := oldName asSymbol.
631eb425ea4e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
   992
    ((self at:oldNameSym) == aClass) ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   993
	"check other name ..."
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   994
	(self includes:aClass) ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   995
	    'Smalltalk [warning]: no such class: ' errorPrint. oldName errorPrintCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   996
	    ^ self
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   997
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   998
	"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   999
	 the class has changed its name - without telling me ...
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1000
	 what should be done in this case ?
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1001
	"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1002
	'Smalltalk [warning]: class ' errorPrint. oldName errorPrint.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1003
	' has changed its name' errorPrintCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1004
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1005
	"/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1006
	"/ might be an alias (i.e. removing a compatibility name)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1007
	"/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1008
	actualName := self keyAtValue:aClass.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1009
	('Smalltalk [info]: ' , oldName , ' is actually stored as ' , actualName , '.') infoPrintCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1010
	sym := actualName asSymbol.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1011
	oldName := actualName asString.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1012
	wrongName := true.
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1013
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1014
4781
631eb425ea4e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
  1015
    ns := aClass nameSpace.
631eb425ea4e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
  1016
    aClass topOwningClass notNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1017
	ons := aClass topOwningClass nameSpace
4781
631eb425ea4e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
  1018
    ].
631eb425ea4e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
  1019
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1020
    self at:sym put:nil.    "nil it out for compiled accesses"
878
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
  1021
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
  1022
    "/
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
  1023
    "/ see comment in removeKey: on why we dont remove it here
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
  1024
    "/
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
  1025
    "/ self removeKey:sym.     "/ remove key - this actually fails, if there are
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1026
			       "/ still compiled code references."
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1027
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1028
    "remove private classes"
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1029
2485
9f4a11a4521f new #privateClasses semantic
Claus Gittinger <cg@exept.de>
parents: 2476
diff changeset
  1030
    aClass privateClassesSorted do:[:somePrivateClass |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1031
	aClass privateClassesAt:(somePrivateClass nameWithoutPrefix) asSymbol put:nil.
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1032
    ].
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1033
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1034
    "remove class variables"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1035
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1036
    names := aClass classVariableString asCollectionOfWords.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1037
    names do:[:name |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1038
	cSym := (sym , ':' , name) asSymbol.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1039
	self at:cSym asSymbol put:nil.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1040
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1041
	"/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1042
	"/ see comment in removeKey: on why we dont remove it here
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1043
	"/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1044
	"/ self removeKey:cSym
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1045
    ].
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1046
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1047
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1048
"/    actually could get along with less flushing
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1049
"/    (entries for aClass and subclasses only)
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1050
"/    but we have to delay this, until we have the set of subclasses
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1051
"/    at hand - for now, searching for all subclasses is way more
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1052
"/    expensive then cache flushing.
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1053
"/
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1054
"/    aClass allSubclassesDo:[:aSubclass |
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1055
"/        ObjectMemory flushInlineCachesForClass:aSubclass.
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1056
"/        ObjectMemory flushMethodCacheFor:aSubclass
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1057
"/    ].
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1058
"/    ObjectMemory flushInlineCachesForClass:aClass.
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1059
"/    ObjectMemory flushMethodCacheFor:aClass
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1060
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1061
    ObjectMemory flushInlineCaches.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1062
    ObjectMemory flushMethodCache.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1063
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1064
    aClass addChangeRecordForClassRemove:oldName.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1065
    self changed:#classRemove with:aClass.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1066
1655
fb6ee1b55ec4 use *-categories
Claus Gittinger <cg@exept.de>
parents: 1650
diff changeset
  1067
    aClass category:#'* removed *'.
fb6ee1b55ec4 use *-categories
Claus Gittinger <cg@exept.de>
parents: 1650
diff changeset
  1068
5326
8950253bef78 flush subclass info when removing classes
ca
parents: 5322
diff changeset
  1069
    self flushCachedClasses.
8950253bef78 flush subclass info when removing classes
ca
parents: 5322
diff changeset
  1070
    Class flushSubclassInfo.
8950253bef78 flush subclass info when removing classes
ca
parents: 5322
diff changeset
  1071
3627
452f2e1ff1b4 removeClass - care for aliases.
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  1072
    wrongName == true ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1073
	"/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1074
	"/ an alias (i.e. removing a compatibility name)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1075
	"/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1076
	"/ check if there are more refs to it ...
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1077
	[self includes:aClass] whileTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1078
	    actualName := self keyAtValue:aClass.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1079
	    ('Smalltalk [info]: ' , aClass name , ' is also registered under the name ' , actualName
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1080
			  , ' - remove that binding too.') infoPrintCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1081
	    self at:actualName put:nil.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1082
	].
4724
44793fe70787 recompile ns classes after a class remove
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  1083
    ].
44793fe70787 recompile ns classes after a class remove
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  1084
4781
631eb425ea4e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
  1085
    ns ~~ Smalltalk ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1086
	ons notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1087
	    ClassBuilder
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1088
		recompileGlobalAccessorsTo:oldNameSym
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1089
		in:ons
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1090
		except:nil
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1091
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1092
	(ns notNil and:[ns ~~ ons]) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1093
	    ClassBuilder
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1094
		recompileGlobalAccessorsTo:oldNameSym
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1095
		in:ns
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1096
		except:nil
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1097
	].
3627
452f2e1ff1b4 removeClass - care for aliases.
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  1098
    ].
452f2e1ff1b4 removeClass - care for aliases.
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  1099
452f2e1ff1b4 removeClass - care for aliases.
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  1100
    "Modified: / 20.6.1998 / 13:26:10 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1101
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1102
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1103
renameClass:aClass to:newName
1525
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1104
    "rename aClass to newName. Most of the work is in
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1105
     renaming the classVariables (create & copy over values)
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1106
     and patching the classes methods to access the new variables."
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1107
2270
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1108
    |oldName oldSym newSym names oldCVSym newCVSym value oldNameToNewName
3698
8bce45214d24 fixed renaming of a private class (must recompile owner)
Claus Gittinger <cg@exept.de>
parents: 3678
diff changeset
  1109
     oldNameSpace newNameSpace oldBaseName newBaseName privateClasses
5610
af0d91fe32fc rename fixed (if it implies a nameSpace or ownership change)
Claus Gittinger <cg@exept.de>
parents: 5601
diff changeset
  1110
     oldBaseNameWithoutPrefix newBaseNameWithoutPrefix i1 i2 nm ns subns
af0d91fe32fc rename fixed (if it implies a nameSpace or ownership change)
Claus Gittinger <cg@exept.de>
parents: 5601
diff changeset
  1111
     oldMetaclass newMetaclass|
af0d91fe32fc rename fixed (if it implies a nameSpace or ownership change)
Claus Gittinger <cg@exept.de>
parents: 5601
diff changeset
  1112
af0d91fe32fc rename fixed (if it implies a nameSpace or ownership change)
Claus Gittinger <cg@exept.de>
parents: 5601
diff changeset
  1113
    "/ check for all intermediate namespaces / owning classes
5253
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1114
    i1 := 1.
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1115
    i2 := 1.
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1116
    ns := self.
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1117
    [i2 ~~ 0] whileTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1118
	i2 := newName indexOfSubCollection:'::' startingAt:i1.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1119
	i2 ~~ 0 ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1120
	    nm := newName copyFrom:i1 to:i2-1.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1121
	    ns isNameSpace ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1122
		subns := ns at:nm asSymbol ifAbsent:nil.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1123
		subns isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1124
		    self error:'Nonexisting namespace: ',nm.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1125
		    ^ nil.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1126
		].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1127
	    ] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1128
		subns := ns privateClassesAt:nm asSymbol.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1129
		subns isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1130
		    self error:'Cannot create a namespace below a class'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1131
		]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1132
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1133
	    ns := subns.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1134
	    i1 := i2 + 2.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1135
	].
5253
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1136
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1137
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1138
    oldName := aClass name.
6734
dd9fa2d81cb9 use #topNameSpace
Claus Gittinger <cg@exept.de>
parents: 6722
diff changeset
  1139
    oldNameSpace := aClass topNameSpace.
2319
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
  1140
    oldBaseName := aClass nameWithoutNameSpacePrefix.
3698
8bce45214d24 fixed renaming of a private class (must recompile owner)
Claus Gittinger <cg@exept.de>
parents: 3678
diff changeset
  1141
    oldBaseNameWithoutPrefix := aClass nameWithoutPrefix.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1142
    oldSym := oldName asSymbol.
2485
9f4a11a4521f new #privateClasses semantic
Claus Gittinger <cg@exept.de>
parents: 2476
diff changeset
  1143
    privateClasses := aClass privateClassesSorted.
2270
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1144
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1145
    ((self at:oldSym) ~~ aClass) ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1146
	'Smalltalk [warning]: rename failed - name is different from key' errorPrintCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1147
	^ self
2270
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1148
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1149
1525
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1150
    "/ rename the class
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1151
1847
6e567214b167 care for className being a symbol, when renaming classes
Claus Gittinger <cg@exept.de>
parents: 1758
diff changeset
  1152
    newSym := newName asSymbol.
6e567214b167 care for className being a symbol, when renaming classes
Claus Gittinger <cg@exept.de>
parents: 1758
diff changeset
  1153
    aClass setName:newSym.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1154
1525
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1155
    "/ store it in Smalltalk
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1156
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1157
    self at:oldSym put:nil.
1525
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1158
5610
af0d91fe32fc rename fixed (if it implies a nameSpace or ownership change)
Claus Gittinger <cg@exept.de>
parents: 5601
diff changeset
  1159
    "/ change the owning class
af0d91fe32fc rename fixed (if it implies a nameSpace or ownership change)
Claus Gittinger <cg@exept.de>
parents: 5601
diff changeset
  1160
    ns isNameSpace ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1161
	aClass isPrivate ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1162
	    aClass class setOwningClass:ns.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1163
	] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1164
	    oldMetaclass := aClass class.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1165
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1166
	    "/ sigh - must make a PrivateMetaclass from Metaclass
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1167
	    newMetaclass := PrivateMetaclass new.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1168
	    newMetaclass flags:(oldMetaclass flags).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1169
	    newMetaclass setSuperclass:(oldMetaclass superclass).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1170
	    newMetaclass instSize:(oldMetaclass instSize).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1171
	    newMetaclass setInstanceVariableString:(oldMetaclass instanceVariableString).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1172
	    newMetaclass setMethodDictionary:(oldMetaclass methodDictionary).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1173
	    newMetaclass setSoleInstance:aClass.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1174
	    newMetaclass setOwningClass:ns.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1175
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1176
	    aClass changeClassTo:newMetaclass.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1177
	    ObjectMemory flushCaches.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1178
	]
5610
af0d91fe32fc rename fixed (if it implies a nameSpace or ownership change)
Claus Gittinger <cg@exept.de>
parents: 5601
diff changeset
  1179
    ] ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1180
	aClass isPrivate ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1181
	    aClass class setOwningClass:nil.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1182
	]        
5610
af0d91fe32fc rename fixed (if it implies a nameSpace or ownership change)
Claus Gittinger <cg@exept.de>
parents: 5601
diff changeset
  1183
    ].
af0d91fe32fc rename fixed (if it implies a nameSpace or ownership change)
Claus Gittinger <cg@exept.de>
parents: 5601
diff changeset
  1184
878
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
  1185
    "/
1525
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1186
    "/ see comment in #removeKey: on why we dont remove it it here
878
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
  1187
    "/
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
  1188
    "/ self removeKey:oldSym.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1189
    self at:newSym put:aClass.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1190
1525
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1191
    "/ create new class variables and copy over values
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1192
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1193
    oldNameToNewName := IdentityDictionary new.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1194
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1195
    names := aClass classVariableString asCollectionOfWords.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1196
    names do:[:name |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1197
	oldCVSym := (oldSym , ':' , name) asSymbol.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1198
	value := self at:oldCVSym.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1199
	self at:oldCVSym put:nil.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1200
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1201
	"/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1202
	"/ see comment in #removeKey: on why we dont remove it it here
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1203
	"/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1204
	"/ self removeKey:cSym.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1205
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1206
	newCVSym := (newSym , ':' , name) asSymbol.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1207
	self at:newCVSym put:value.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1208
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1209
	oldNameToNewName at:oldCVSym put:newCVSym.
1525
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1210
    ].
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1211
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1212
    "/ patch methods literal arrays from oldCVname to newCVname
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1213
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1214
    oldNameToNewName keysAndValuesDo:[:oldNameSym :newNameSym |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1215
	aClass withAllSubclasses do:[:aSubClass |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1216
	    Transcript showCR:'changing global accesses from ''' , oldNameSym , ''' into ''' , newNameSym , ''' in class: ''' , aSubClass name , ''' ...'.        
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1217
	    aSubClass instAndClassSelectorsAndMethodsDo:[:sel :aMethod |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1218
		aMethod changeLiteral:oldNameSym to:newNameSym
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1219
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1220
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1221
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1222
	"/ and also in privateClasses ? ...
2270
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1223
2485
9f4a11a4521f new #privateClasses semantic
Claus Gittinger <cg@exept.de>
parents: 2476
diff changeset
  1224
"/        privateClasses size > 0 ifTrue:[
2270
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1225
"/            privateClasses do:[:aPrivateClass |
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1226
"/                aPrivateClass withAllSubclasses do:[:aSubClass |
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1227
"/                    aSubClass class methodDictionary do:[:aMethod |
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1228
"/                        aMethod changeLiteral:oldNameSym to:newNameSym
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1229
"/                    ].
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1230
"/                    aSubClass methodDictionary do:[:aMethod |
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1231
"/                        aMethod changeLiteral:oldNameSym to:newNameSym
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1232
"/                    ]
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1233
"/                ].
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1234
"/            ]
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1235
"/        ]
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1236
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1237
2270
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1238
    aClass addChangeRecordForClassRename:oldSym to:newSym.
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1239
5333
d80386e06d21 rename into other namespace did not work
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1240
    "/ clear the namespace (for namespace query to work)
d80386e06d21 rename into other namespace did not work
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1241
    aClass setEnvironment:nil.
6734
dd9fa2d81cb9 use #topNameSpace
Claus Gittinger <cg@exept.de>
parents: 6722
diff changeset
  1242
    newNameSpace := aClass topNameSpace.
2405
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1243
2485
9f4a11a4521f new #privateClasses semantic
Claus Gittinger <cg@exept.de>
parents: 2476
diff changeset
  1244
    privateClasses size > 0 ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1245
	"/ must rename privateClasses as well
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1246
	Class withoutUpdatingChangesDo:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1247
	    privateClasses do:[:aPrivateClass |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1248
		self renameClass:aPrivateClass
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1249
		     to:(newSym , '::' , aPrivateClass nameWithoutPrefix).
5916
4364f9ae4254 when renaming a class, no changeRecrd for its private-class renames
Claus Gittinger <cg@exept.de>
parents: 5913
diff changeset
  1250
            
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1251
		Transcript showCR:'recompiling methods in ''' , newNameSpace name , ''' accessing ''' , oldName , '::' , aPrivateClass nameWithoutPrefix , ''' ...'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1252
		ClassBuilder
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1253
		    recompileGlobalAccessorsTo:(oldName , '::' , aPrivateClass nameWithoutPrefix) asSymbol 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1254
		    in:newNameSpace 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1255
		    except:nil.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1256
	    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1257
	]
2405
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1258
    ].
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1259
2319
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
  1260
    oldNameSpace ~~ newNameSpace ifTrue:[
5246
2ca7b20c4108 create namespaces as requried, when renaming a class
Claus Gittinger <cg@exept.de>
parents: 5214
diff changeset
  1261
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1262
	"/ all those referencing the class from the old nameSpace
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1263
	"/ must be recompiled ...
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1264
	"/ (to now access the global from smalltalk)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1265
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1266
	oldNameSpace ~~ Smalltalk ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1267
	    Transcript showCR:'recompiling methods in ''' , oldNameSpace name , ''' accessing ''' , oldName , ''' ...'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1268
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1269
	    ClassBuilder
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1270
		recompileGlobalAccessorsTo:oldName asSymbol 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1271
		in:oldNameSpace 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1272
		except:nil.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1273
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1274
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1275
	"/ all referencing the class in the new namespace
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1276
	"/ as well; to now access the new class.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1277
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1278
	(newNameSpace notNil and:[newNameSpace ~~ Smalltalk]) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1279
	    Transcript showCR:'recompiling methods in ''' , newNameSpace name , ''' accessing ''' , oldBaseName , ''' ...'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1280
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1281
	    ClassBuilder
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1282
		recompileGlobalAccessorsTo:oldBaseName asSymbol 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1283
		in:newNameSpace 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1284
		except:nil.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1285
	].
3698
8bce45214d24 fixed renaming of a private class (must recompile owner)
Claus Gittinger <cg@exept.de>
parents: 3678
diff changeset
  1286
    ] ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1287
	"/ all references to a global with my new name in my owning class
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1288
	"/ must now be redirected to myself.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1289
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1290
	aClass isPrivate ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1291
	    newBaseName := aClass nameWithoutNameSpacePrefix.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1292
	    newBaseNameWithoutPrefix := aClass nameWithoutPrefix.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1293
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1294
	    Transcript showCR:'recompiling methods accessing ''' , oldBaseNameWithoutPrefix , ''' in: ''' , aClass owningClass name , ''' ...'.        
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1295
	    aClass owningClass recompileMethodsAccessingGlobal:oldBaseNameWithoutPrefix.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1296
	    aClass owningClass class recompileMethodsAccessingGlobal:oldBaseNameWithoutPrefix.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1297
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1298
	    Transcript showCR:'recompiling methods accessing ''' , oldBaseName , ''' in: ''' , aClass owningClass name , ''' ...'.        
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1299
	    aClass owningClass recompileMethodsAccessingGlobal:oldBaseName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1300
	    aClass owningClass class recompileMethodsAccessingGlobal:oldBaseName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1301
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1302
	    Transcript showCR:'recompiling methods accessing ''' , newBaseNameWithoutPrefix , ''' in: ''' , aClass owningClass name , ''' ...'.        
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1303
	    aClass owningClass recompileMethodsAccessingGlobal:newBaseNameWithoutPrefix.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1304
	    aClass owningClass class recompileMethodsAccessingGlobal:newBaseNameWithoutPrefix.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1305
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1306
	    Transcript showCR:'recompiling methods accessing ''' , newBaseName , ''' in: ''' , aClass owningClass name , ''' ...'.        
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1307
	    aClass owningClass recompileMethodsAccessingGlobal:newBaseName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1308
	    aClass owningClass class recompileMethodsAccessingGlobal:newBaseName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1309
	]
4040
b27f87d9772d must send a change-notifiction, when renaming a class.
Claus Gittinger <cg@exept.de>
parents: 4028
diff changeset
  1310
    ].
b27f87d9772d must send a change-notifiction, when renaming a class.
Claus Gittinger <cg@exept.de>
parents: 4028
diff changeset
  1311
b27f87d9772d must send a change-notifiction, when renaming a class.
Claus Gittinger <cg@exept.de>
parents: 4028
diff changeset
  1312
    aClass changed:#definition.
b27f87d9772d must send a change-notifiction, when renaming a class.
Claus Gittinger <cg@exept.de>
parents: 4028
diff changeset
  1313
    "/ because of the change of my superclasses name ...
b27f87d9772d must send a change-notifiction, when renaming a class.
Claus Gittinger <cg@exept.de>
parents: 4028
diff changeset
  1314
    aClass allSubclassesDo:[:subClass |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1315
	subClass changed:#definition.
4040
b27f87d9772d must send a change-notifiction, when renaming a class.
Claus Gittinger <cg@exept.de>
parents: 4028
diff changeset
  1316
    ].
5613
b534e427f028 change message when renaming a class
Claus Gittinger <cg@exept.de>
parents: 5611
diff changeset
  1317
    self changed:#definition.
b534e427f028 change message when renaming a class
Claus Gittinger <cg@exept.de>
parents: 5611
diff changeset
  1318
    Smalltalk changed:#classRename with:(Array with:aClass with:oldName).
3698
8bce45214d24 fixed renaming of a private class (must recompile owner)
Claus Gittinger <cg@exept.de>
parents: 3678
diff changeset
  1319
8bce45214d24 fixed renaming of a private class (must recompile owner)
Claus Gittinger <cg@exept.de>
parents: 3678
diff changeset
  1320
    "Created: / 29.10.1995 / 19:58:32 / cg"
8bce45214d24 fixed renaming of a private class (must recompile owner)
Claus Gittinger <cg@exept.de>
parents: 3678
diff changeset
  1321
    "Modified: / 18.6.1996 / 14:20:50 / stefan"
5253
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1322
    "Modified: / 11.2.2000 / 01:12:38 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1323
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1324
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1325
!Smalltalk class methodsFor:'copying'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1326
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1327
deepCopy
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1328
    "redefined to return self - there is only one Smalltalk dictionary"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1329
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1330
    ^ self
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1331
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1332
    "Modified: 18.5.1996 / 12:13:33 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1333
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1334
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1335
deepCopyUsing:aDictionary
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1336
    "redefined to return self - there is only one Smalltalk dictionary"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1337
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1338
    ^ self
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1339
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1340
    "Modified: 18.5.1996 / 12:13:36 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1341
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1342
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1343
shallowCopy
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1344
    "redefined to return self - there is only one Smalltalk dictionary"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1345
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1346
    ^ self
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1347
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1348
    "Modified: 18.5.1996 / 12:13:39 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1349
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1350
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1351
simpleDeepCopy
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1352
    "redefined to return self - there is only one Smalltalk dictionary"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1353
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1354
    ^ self
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1355
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1356
    "Modified: 18.5.1996 / 12:13:42 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1357
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1358
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1359
!Smalltalk class methodsFor:'debugging ST/X'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1360
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1361
debugBreakPoint
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1362
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1363
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1364
    "call the dummy debug function, on which a breakpoint
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1365
     can be put in adb, sdb, dbx or gdb.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1366
     WARNING: this method is for debugging only
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1367
	      it will be removed without notice."
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1368
%{
2212
be31fd0cea4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2176
diff changeset
  1369
    __PATCHUPCONTEXTS(__context);
808
1919838112d1 renamed debugBreakPoint -> __debugBreakPoint__
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
  1370
    __debugBreakPoint__();
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1371
    RETURN(self);
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1372
%}.
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1373
    ^ self primitiveFailed
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1374
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1375
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1376
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1377
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1378
exitWithCoreDump
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1379
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1380
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1381
    "abort program and dump core"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1382
4096
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1383
    OperatingSystem exitWithCoreDump
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1384
    "/ never returns
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1385
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1386
    "Be careful evaluating this
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1387
     Smalltalk exitWithCoreDump
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1388
    "
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1389
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1390
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1391
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1392
fatalAbort
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1393
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1394
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1395
    "report a fatal-error, print a stack backtrace and exit with core dump.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1396
     (You may turn off the stack print with debugPrinting:false)"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1397
%{
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1398
    __fatal0(__context, "fatalAbort");
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1399
    /* NEVER RETURNS */
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1400
%}.
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1401
    ^ self primitiveFailed
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1402
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1403
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1404
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1405
fatalAbort:aMessage
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1406
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1407
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1408
    "report a fatal-error; print a stack backtrace and exit with core dump
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1409
     (You may turn off the stack print with debugPrinting:false)"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1410
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1411
%{
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1412
    char *msg;
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1413
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1414
    if (__isString(aMessage))
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1415
	msg = (char *) __stringVal(aMessage);
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1416
    else
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1417
	msg = "fatalAbort";
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1418
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1419
    __fatal0(__context, msg);
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1420
    /* NEVER RETURNS */
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1421
%}.
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1422
    ^ self primitiveFailed
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1423
5441
e88302747bbd rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5427
diff changeset
  1424
!
e88302747bbd rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5427
diff changeset
  1425
e88302747bbd rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5427
diff changeset
  1426
vmInstructionTrace:aBoolean
e88302747bbd rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5427
diff changeset
  1427
e88302747bbd rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5427
diff changeset
  1428
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1429
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1430
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1431
!Smalltalk class methodsFor:'enumerating'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1432
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1433
allBehaviorsDo:aBlock
5580
374e843aa424 allBehaviorsDo now enumerates both classes and metaclasses
Claus Gittinger <cg@exept.de>
parents: 5579
diff changeset
  1434
    "evaluate the argument, aBlock for all classes and metaclasses in the system"
374e843aa424 allBehaviorsDo now enumerates both classes and metaclasses
Claus Gittinger <cg@exept.de>
parents: 5579
diff changeset
  1435
374e843aa424 allBehaviorsDo now enumerates both classes and metaclasses
Claus Gittinger <cg@exept.de>
parents: 5579
diff changeset
  1436
    self allClassesAndMetaclassesDo:aBlock
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1437
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1438
    "
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1439
     Smalltalk allBehaviorsDo:[:aClass | aClass name printCR]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1440
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1441
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1442
6217
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1443
allClassCategories
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1444
    "return a set of all class categories in the system"
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1445
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1446
    |allCategories|
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1447
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1448
    allCategories := Set new.
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1449
    Smalltalk allClassesDo:[:cls |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1450
	allCategories add:cls category.
6217
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1451
    ].
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1452
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1453
    allCategories := allCategories asOrderedCollection.
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1454
    allCategories sort.
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1455
    ^ allCategories
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1456
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1457
    "
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1458
     Smalltalk allClassCategories
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1459
    "
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1460
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1461
    "Created: / 17.11.2001 / 12:13:09 / cg"
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1462
!
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1463
5579
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1464
allClassesAndMetaclassesDo:aBlock
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1465
    "evaluate the argument, aBlock for all classes and metaclasses in the system."
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1466
5940
804fb27727a6 oops - allClassesAndMetaclassesDo: evaluated block twice for
Claus Gittinger <cg@exept.de>
parents: 5916
diff changeset
  1467
    |already|
804fb27727a6 oops - allClassesAndMetaclassesDo: evaluated block twice for
Claus Gittinger <cg@exept.de>
parents: 5916
diff changeset
  1468
804fb27727a6 oops - allClassesAndMetaclassesDo: evaluated block twice for
Claus Gittinger <cg@exept.de>
parents: 5916
diff changeset
  1469
    already := IdentitySet new.
804fb27727a6 oops - allClassesAndMetaclassesDo: evaluated block twice for
Claus Gittinger <cg@exept.de>
parents: 5916
diff changeset
  1470
    self allClassesDo:[:eachClass | |cls|
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1471
	cls := eachClass theNonMetaclass.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1472
	(already includes:cls) ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1473
	    aBlock value:cls.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1474
	    already add:cls.    
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1475
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1476
	cls := cls class.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1477
	(already includes:cls) ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1478
	    aBlock value:cls.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1479
	    already add:cls.    
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1480
	].
5579
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1481
    ].
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1482
!
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1483
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1484
allClassesDo:aBlock
5580
374e843aa424 allBehaviorsDo now enumerates both classes and metaclasses
Claus Gittinger <cg@exept.de>
parents: 5579
diff changeset
  1485
    "evaluate the argument, aBlock for all classes in the system."
374e843aa424 allBehaviorsDo now enumerates both classes and metaclasses
Claus Gittinger <cg@exept.de>
parents: 5579
diff changeset
  1486
5765
152a485288d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5760
diff changeset
  1487
    self allClasses do:aBlock
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1488
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1489
    "
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1490
     Smalltalk allClassesDo:[:aClass | aClass name printCR]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1491
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1492
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1493
1299
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1494
allClassesInCategory:aCategory
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1495
    "return a collection of for all classes in aCategory;
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1496
     The order of the classes is not defined."
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1497
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1498
    |coll|
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1499
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1500
    coll := OrderedCollection new.
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1501
    self allClassesInCategory:aCategory do:[:aClass |
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1502
	coll add:aClass
1299
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1503
    ].
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1504
    ^ coll
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1505
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1506
    "
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1507
     Smalltalk allClassesInCategory:'Views-Basic'
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1508
    "
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1509
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1510
    "Modified: 25.4.1996 / 18:06:13 / cg"
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1511
!
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1512
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1513
allClassesInCategory:aCategory do:aBlock
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1514
    "evaluate the argument, aBlock for all classes in the aCategory;
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1515
     The order of the classes is not defined."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1516
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1517
    aCategory notNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1518
	self allClassesDo:[:aClass |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1519
	    aClass isMeta ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1520
		(aClass category = aCategory) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1521
		    aBlock value:aClass
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1522
		]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1523
	    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1524
	]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1525
    ]
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1526
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1527
    "
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1528
     Smalltalk allClassesInCategory:'Views-Basic' do:[:aClass | aClass name printCR]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1529
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1530
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1531
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1532
allClassesInCategory:aCategory inOrderDo:aBlock
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1533
    "evaluate the argument, aBlock for all classes in aCategory;
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1534
     superclasses come first - then subclasses"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1535
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1536
    |classes|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1537
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1538
    aCategory notNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1539
	classes := OrderedCollection new.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1540
	self allClassesInCategory:aCategory do:[:aClass |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1541
	    classes add:aClass
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1542
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1543
	classes topologicalSort:[:a :b | b isSubclassOf:a].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1544
	classes do:aBlock
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1545
    ]
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1546
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1547
    "
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1548
     Smalltalk allClassesInCategory:'Views-Basic' inOrderDo:[:aClass | aClass name printCR]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1549
    "
6217
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1550
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1551
    "Modified: / 17.11.2001 / 12:18:15 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1552
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1553
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1554
allClassesInOrderDo:aBlock
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1555
    "evaluate the argument, aBlock for all classes in the system;
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1556
     Evaluation order is by inheritance: superclasses come first."
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1557
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1558
    |already|
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1559
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1560
    already := IdentitySet new.
5580
374e843aa424 allBehaviorsDo now enumerates both classes and metaclasses
Claus Gittinger <cg@exept.de>
parents: 5579
diff changeset
  1561
    self allClassesDo:[:aClass |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1562
	(already includes:aClass) ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1563
	    aClass allSuperclasses reverseDo:[:cls |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1564
		(already includes:aClass) ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1565
		    already add:cls.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1566
		    aBlock value:cls.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1567
		].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1568
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1569
	    already add:aClass.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1570
	    aBlock value:aClass.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1571
	]
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1572
    ].
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1573
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1574
    "
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1575
     Smalltalk allClassesInOrderDo:[:aClass | aClass name printCR]
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1576
    "
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1577
!
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1578
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1579
allKeysDo:aBlock
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1580
    "evaluate the argument, aBlock for all keys in the Smalltalk dictionary"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1581
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1582
    ^ self keysDo:aBlock
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1583
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1584
6722
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1585
allMethodCategories
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1586
    "return a set of all method categories in the system"
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1587
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1588
    |allCategories|
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1589
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1590
    allCategories := Set new.
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1591
    Smalltalk allClassesDo:[:cls |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1592
	allCategories addAll:cls allCategories.
6722
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1593
    ].
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1594
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1595
    allCategories := allCategories asOrderedCollection.
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1596
    allCategories sort.
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1597
    ^ allCategories
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1598
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1599
    "
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1600
     Smalltalk allMethodCategories
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1601
    "
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1602
!
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1603
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1604
associationsDo:aBlock
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1605
    "evaluate the argument, aBlock for all key/value pairs 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1606
     in the Smalltalk dictionary"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1607
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1608
    self keysDo:[:aKey |
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1609
	aBlock value:(aKey -> (self at:aKey))
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1610
    ]
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1611
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1612
    "Smalltalk associationsDo:[:assoc | assoc printCR]"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1613
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1614
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1615
basicKeys
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1616
    "for rel > 5 only"
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1617
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1618
    self primitiveFailed
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1619
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1620
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1621
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1622
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1623
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1624
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1625
!
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1626
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1627
do:aBlock
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1628
    "evaluate the argument, aBlock for all values in the Smalltalk dictionary"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1629
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1630
    |work|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1631
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1632
%{  /* NOREGISTER - work may not be placed into a register here */
1688
8a42db1eea60 removed all COMMA_CON / CON_COMMA uses
Claus Gittinger <cg@exept.de>
parents: 1682
diff changeset
  1633
    __GLOBALS_DO(&aBlock, &work);
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1634
    RETURN (self);
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1635
%}.
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1636
    self keysDo:[:aKey |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1637
	aBlock value:(self at:aKey)
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1638
    ]
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1639
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1640
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1641
keysAndValuesDo:aBlock
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1642
    "evaluate the two-arg block, aBlock for all keys and values"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1643
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1644
    self keysDo:[:aKey |
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1645
	aBlock value:aKey value:(self at:aKey)
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1646
    ]
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1647
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1648
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1649
keysDo:aBlock
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1650
    "evaluate the argument, aBlock for all keys in the Smalltalk dictionary"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1651
    |work|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1652
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1653
%{  /* NOREGISTER - work may not be placed into a register here */
1688
8a42db1eea60 removed all COMMA_CON / CON_COMMA uses
Claus Gittinger <cg@exept.de>
parents: 1682
diff changeset
  1654
    __GLOBALKEYS_DO(&aBlock, &work);
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1655
    RETURN (self);
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1656
%}.
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1657
    self basicKeys do:[:aKey |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1658
	aBlock value:aKey
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1659
    ]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1660
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1661
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1662
!Smalltalk class methodsFor:'inspecting'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1663
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1664
inspectorClass
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1665
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1666
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1667
    "redefined to launch a DictionaryInspector
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1668
     (instead of the default Inspector)."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1669
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1670
    ^ DictionaryInspectorView
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1671
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1672
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1673
!Smalltalk class methodsFor:'message control'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1674
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1675
silentLoading
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1676
    "returns the Silentloading class variable."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1677
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1678
     ^ SilentLoading
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1679
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1680
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1681
silentLoading:aBoolean
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1682
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1683
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1684
    "allows access to the Silentloading class variable, which controls
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1685
     messages from all kinds of system onto the transcript.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1686
     You can save a snapshot with this flag set to true, which makes
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1687
     the image come up silent. Can also be set, to read in files unlogged."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1688
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1689
    |prev|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1690
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1691
    prev := SilentLoading.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1692
    SilentLoading := aBoolean.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1693
    ^ prev
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1694
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1695
4957
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  1696
!Smalltalk class methodsFor:'misc accessing'!
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  1697
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  1698
beHeadless:aBoolean
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  1699
    "set/clear the headlessOperation flag."
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  1700
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  1701
    HeadlessOperation := aBoolean
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  1702
!
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  1703
6564
27b31d65dc07 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 6559
diff changeset
  1704
standAloneApp:aBoolean
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  1705
    "set/clear the StandAlone flag."
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  1706
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  1707
    StandAlone := aBoolean
4957
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  1708
! !
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  1709
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1710
!Smalltalk class methodsFor:'misc stuff'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1711
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1712
addExitBlock:aBlock
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1713
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1714
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1715
    "add a block to be executed when Smalltalk finishes.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1716
     This feature is currently not used anywhere - but could be useful for
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1717
     cleanup in stand alone applications."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1718
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1719
    ExitBlocks isNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1720
	ExitBlocks := OrderedCollection with:aBlock
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1721
    ] ifFalse:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1722
	ExitBlocks add:aBlock
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1723
    ]
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1724
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1725
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1726
addImageStartBlock:aBlock
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1727
    "{ Pragma: +optSpace }"
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1728
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1729
    "add a blocks to be executed in a separate process after
2681
0de96fb520ac commentary
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  1730
     everything has been initialized. 
0de96fb520ac commentary
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  1731
     These blocks will be executed after an image restart."
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1732
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1733
    ImageStartBlocks isNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1734
	ImageStartBlocks := OrderedCollection with:aBlock
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1735
    ] ifFalse:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1736
	ImageStartBlocks add:aBlock
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1737
    ]
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1738
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1739
    "Created: 9.9.1996 / 16:48:20 / stefan"
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1740
!
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1741
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1742
addStartBlock:aBlock
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1743
    "{ Pragma: +optSpace }"
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1744
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1745
    "add a blocks to be executed in a separate process after
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1746
     everything has been initialized. These blocks will
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1747
     be deleted after execution and therefore not be
2681
0de96fb520ac commentary
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  1748
     executed after an image restart. 
0de96fb520ac commentary
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  1749
     Initial processes are usually started here (see smalltalk.rc / private.rc)."
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1750
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1751
    StartBlocks isNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1752
	StartBlocks := OrderedCollection with:aBlock
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1753
    ] ifFalse:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1754
	StartBlocks add:aBlock
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1755
    ]
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1756
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1757
    "Created: 9.9.1996 / 16:46:53 / stefan"
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1758
!
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1759
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1760
exit
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1761
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1762
3976
bfba94385ed0 added #aboutToExit notification
Claus Gittinger <cg@exept.de>
parents: 3971
diff changeset
  1763
    "finish the Smalltalk system"
bfba94385ed0 added #aboutToExit notification
Claus Gittinger <cg@exept.de>
parents: 3971
diff changeset
  1764
bfba94385ed0 added #aboutToExit notification
Claus Gittinger <cg@exept.de>
parents: 3971
diff changeset
  1765
    ObjectMemory changed:#aboutToExit.  "/ for ST/X backward compatibility
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1766
    ObjectMemory changed:#aboutToQuit.  "/ for ST-80 compatibility
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1767
    ExitBlocks notNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1768
	ExitBlocks do:[:aBlock |
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1769
	    aBlock value
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1770
	]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1771
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1772
    OperatingSystem exit
4096
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1773
    "/ never returns
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1774
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1775
    "Be careful evaluating this
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1776
     Smalltalk exit
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1777
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1778
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1779
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1780
sleep:aDelay
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1781
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1782
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1783
    "wait for aDelay seconds.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1784
     OBSOLETE: this is historical leftover and will be removed"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1785
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1786
    OperatingSystem sleep:aDelay
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1787
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1788
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1789
!Smalltalk class methodsFor:'queries'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1790
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1791
allClasses
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1792
    "return an unordered collection of all classes in the system.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1793
     Only globally anchored classes are returned 
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1794
     (i.e. anonymous ones have to be aquired by Behavior allSubInstances)"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1795
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1796
    |classes|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1797
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1798
    "/ you may wonder, what this while is for, here ...
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1799
    "/ the reason is that if we modify the class hierarchy in
4067
732848627915 comment
Claus Gittinger <cg@exept.de>
parents: 4048
diff changeset
  1800
    "/ another view (background fileIn), while building up the
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1801
    "/ cachedClasses set, this may be flushed (invalidated) by the
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1802
    "/ other process in the meanwhile.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1803
    "/ If that happens, we restart the set-building here
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1804
    "/
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1805
    [(classes := CachedClasses) isNil] whileTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1806
	CachedClasses := classes := IdentitySet new:800. 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1807
	self keysAndValuesDo:[:sym :anObject |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1808
	    anObject notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1809
		anObject isBehavior ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1810
		    "/ sigh - would like to skip over aliases
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1811
		    "/ but this cannot be done simply by comparing
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1812
		    "/ the classes name against the store-key
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1813
		    "/ i.e. cannot do:
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1814
		    "/      anObject name == sym ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1815
		    "/          classes add:anObject
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1816
		    "/      ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1817
		    "/ because that would lead to ignore all java
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1818
		    "/ classes, which are stored under a different
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1819
		    "/ key.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1820
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1821
		    (anObject name == sym
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1822
		    or:[anObject isJavaClass]) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1823
			classes add:anObject
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1824
		    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1825
		]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1826
	    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1827
	]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1828
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1829
    ^ classes
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1830
4618
f5a0e70205c9 oops - do not check for classes name = key (java stuff)
Claus Gittinger <cg@exept.de>
parents: 4607
diff changeset
  1831
    "CachedClasses := nil.
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1832
     Smalltalk allClasses
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1833
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1834
    to get the list sorted by name:
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1835
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1836
     Smalltalk allClasses asSortedCollection:[:a :b | a name < b name]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1837
    "
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1838
5278
ae041ee44fd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5269
diff changeset
  1839
    "Modified: / 23.2.2000 / 10:49:46 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1840
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1841
5579
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1842
allClassesAndMetaclasses
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1843
    "return an unordered collection of all classes with their metaclasses in the system."
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1844
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1845
    |classes|
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1846
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1847
    classes := IdentitySet new.
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1848
    self allClassesDo:[:eachClass |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1849
	classes add:(eachClass theNonMetaclass).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1850
	classes add:(eachClass theMetaclass).
5579
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1851
    ].
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1852
    ^ classes
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1853
!
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1854
4642
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1855
allClassesWithAllPrivateClasses
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1856
    "return an unordered collection of all classes in the Smalltalk namespace.
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1857
     Only globally anchored classes are returned 
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1858
     (i.e. anonymous ones have to be aquired by Behavior allSubInstances)"
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1859
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1860
    ^ self allClasses select:[:aClass | 
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1861
	    |owner|
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1862
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1863
	    (aClass isNameSpace not      
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1864
	    or:[aClass == Smalltalk])
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1865
	    and:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1866
		owner := aClass topOwningClass.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1867
		(owner ? aClass) nameSpace == Smalltalk
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1868
	    ]
4642
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1869
      ]
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1870
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1871
    "
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1872
     Smalltalk allClassesWithAllPrivateClasses
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1873
    "
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1874
!
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1875
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1876
cellAt:aName
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1877
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1878
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1879
    "return the address of a global cell
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1880
     - used internally for compiler only"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1881
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1882
%{  /* NOCONTEXT */
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1883
    RETURN ( __GLOBAL_GETCELL(aName) );
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1884
%}.
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1885
    ^ self primitiveFailed
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1886
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1887
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1888
6539
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1889
classCategoryCompletion:aPartialCategory
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1890
    "given a partial class category name, return an array consisting of
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1891
     2 entries: 1st: collection consisting of matching categories
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1892
		2nd: the longest match"
6539
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1893
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1894
    |matches best lcName|
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1895
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1896
    matches := IdentitySet new.
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1897
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1898
    "/ search for exact match
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1899
    self allClassesDo:[:aClass |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1900
	|category|
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1901
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1902
	category := aClass category.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1903
	(category notNil and:[category startsWith:aPartialCategory]) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1904
	    matches add:category
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1905
	]
6539
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1906
    ].
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1907
    matches isEmpty ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1908
	"/ search for case-ignoring match
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1909
	lcName := aPartialCategory asLowercase.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1910
	self allClassesDo:[:aClass |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1911
	    |category|
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1912
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1913
	    category := aClass category.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1914
	    (category asLowercase startsWith:lcName) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1915
		matches add:category
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1916
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1917
	].
6539
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1918
    ].
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1919
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1920
    matches isEmpty ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1921
	^ Array with:aPartialCategory with:(Array with:aPartialCategory)
6539
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1922
    ].
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1923
    matches size == 1 ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1924
	^ Array with:matches first with:(matches asArray)
6539
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1925
    ].
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1926
    matches := matches asSortedCollection.
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1927
    best := matches longestCommonPrefix.
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1928
    ^ Array with:best with:matches asArray
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1929
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1930
    "
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1931
     Smalltalk classCategoryCompletion:'Sys'    
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1932
     Smalltalk classCategoryCompletion:'System'              
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1933
     Smalltalk classCategoryCompletion:'System-BinaryStorage' 
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1934
    "
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1935
!
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1936
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1937
classNamed:aString
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1938
    "return the class with name aString, or nil if absent.
1480
df0bea6285f8 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1939
     To get to the metaClass, append ' class' to the string."
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1940
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1941
    |cls sym meta|
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1942
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1943
    "be careful, to not invent new symbols ..."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1944
    sym := aString asSymbolIfInterned.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1945
    sym notNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1946
	cls := self at:sym ifAbsent:[].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1947
	cls isBehavior ifTrue:[^ cls]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1948
    ].
1480
df0bea6285f8 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1949
    (aString endsWith:' class') ifTrue:[
df0bea6285f8 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1950
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1951
	meta := self classNamed:(aString copyWithoutLast:6).
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1952
	meta notNil ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1953
	    ^ meta class
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  1954
	].
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1955
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1956
    ^ nil
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1957
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1958
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1959
     Smalltalk classNamed:'Object'    
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1960
     Smalltalk classNamed:'fooBar' 
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1961
     Smalltalk classNamed:'true'    
1480
df0bea6285f8 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1962
     Smalltalk classNamed:'Object class'    
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1963
     Smalltalk classNamed:'Metaclass'    
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1964
     Smalltalk classNamed:'Array'    
1480
df0bea6285f8 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1965
     Smalltalk classNamed:'Array class'    
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1966
    "
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1967
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1968
    "Created: 24.11.1995 / 17:30:22 / cg"
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1969
    "Modified: 24.11.1995 / 17:31:29 / cg"
1480
df0bea6285f8 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1970
    "Modified: 19.6.1996 / 14:22:21 / stefan"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1971
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1972
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1973
classNames
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1974
    "return a collection of all classNames in the system"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1975
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1976
    ^ self allClasses collect:[:aClass | aClass name]
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1977
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1978
    "
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1979
     Smalltalk classNames
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1980
    "
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1981
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1982
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1983
classnameCompletion:aPartialClassName
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1984
    "given a partial classname, return an array consisting of
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1985
     2 entries: 1st: collection consisting of matching names
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1986
		2nd: the best (longest) match"
6403
2b81e1bc42ea better classNameCompletion (namespaces)
Claus Gittinger <cg@exept.de>
parents: 6390
diff changeset
  1987
6472
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  1988
    ^ self
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1989
	classnameCompletion:aPartialClassName inEnvironment:self
6472
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  1990
!
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  1991
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  1992
classnameCompletion:aPartialClassName inEnvironment:anEnvironment
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  1993
    "given a partial classname, return an array consisting of
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  1994
     2 entries: 1st: collection consisting of matching names
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  1995
		2nd: the best (longest) match"
6472
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  1996
6438
9df1edfc0b54 class-name completion (ith namespace-prefix)
Claus Gittinger <cg@exept.de>
parents: 6421
diff changeset
  1997
    |searchName matches ignCaseMatches best isMatchString cls nsPrefix |
9df1edfc0b54 class-name completion (ith namespace-prefix)
Claus Gittinger <cg@exept.de>
parents: 6421
diff changeset
  1998
9df1edfc0b54 class-name completion (ith namespace-prefix)
Claus Gittinger <cg@exept.de>
parents: 6421
diff changeset
  1999
    aPartialClassName isEmpty ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2000
	^ Array with:aPartialClassName with:#()
6438
9df1edfc0b54 class-name completion (ith namespace-prefix)
Claus Gittinger <cg@exept.de>
parents: 6421
diff changeset
  2001
    ].
9df1edfc0b54 class-name completion (ith namespace-prefix)
Claus Gittinger <cg@exept.de>
parents: 6421
diff changeset
  2002
9df1edfc0b54 class-name completion (ith namespace-prefix)
Claus Gittinger <cg@exept.de>
parents: 6421
diff changeset
  2003
    (aPartialClassName startsWith:'Smalltalk::') ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2004
	nsPrefix := 'Smalltalk::'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2005
	searchName := aPartialClassName copyFrom:'Smalltalk::' size + 1
6438
9df1edfc0b54 class-name completion (ith namespace-prefix)
Claus Gittinger <cg@exept.de>
parents: 6421
diff changeset
  2006
    ] ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2007
	nsPrefix := ''.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2008
	searchName := aPartialClassName.
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2009
    ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2010
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2011
    (searchName at:1) isLowercase ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2012
	searchName := searchName copy asUppercaseFirst
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2013
    ].
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2014
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2015
    isMatchString := searchName includesMatchCharacters.
1451
90f7841aba25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  2016
    matches := OrderedCollection new.
2523
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  2017
    ignCaseMatches := OrderedCollection new.
6472
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2018
    anEnvironment allClassesDo:[:aClass |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2019
	|className addIt|
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2020
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2021
	className := aClass name.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2022
	aClass isMeta ifFalse:[
1451
90f7841aba25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  2023
        
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2024
	    isMatchString ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2025
		addIt := searchName match:className
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2026
	    ] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2027
		addIt := className startsWith:searchName
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2028
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2029
	    addIt ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2030
		matches add:(nsPrefix , aClass name)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2031
	    ] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2032
		"/ try ignoring case
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2033
		isMatchString ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2034
		    addIt := searchName match:className ignoreCase:true
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2035
		] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2036
		    addIt := className asLowercase startsWith:searchName asLowercase
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2037
		].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2038
		addIt ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2039
		    ignCaseMatches add:(nsPrefix , aClass name)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2040
		]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2041
	    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2042
	]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2043
    ].
1451
90f7841aba25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  2044
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2045
    matches isEmpty ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2046
	matches := ignCaseMatches
6403
2b81e1bc42ea better classNameCompletion (namespaces)
Claus Gittinger <cg@exept.de>
parents: 6390
diff changeset
  2047
    ].
2523
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  2048
    matches isEmpty ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2049
	^ Array with:searchName with:(Array with:searchName)
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2050
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2051
    matches size == 1 ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2052
	best := matches first.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2053
	^ Array with:best with:(matches asArray)
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2054
    ].
1451
90f7841aba25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  2055
    matches := matches asSortedCollection.
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2056
    isMatchString ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2057
	best := searchName.
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2058
    ] ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2059
	best := matches longestCommonPrefix.
6403
2b81e1bc42ea better classNameCompletion (namespaces)
Claus Gittinger <cg@exept.de>
parents: 6390
diff changeset
  2060
    ].
2b81e1bc42ea better classNameCompletion (namespaces)
Claus Gittinger <cg@exept.de>
parents: 6390
diff changeset
  2061
6472
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2062
    cls := anEnvironment classNamed:best.
6403
2b81e1bc42ea better classNameCompletion (namespaces)
Claus Gittinger <cg@exept.de>
parents: 6390
diff changeset
  2063
    (cls isBehavior and:[cls isNameSpace]) ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2064
	(matches conform:[:each | each = best
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2065
				 or:[each startsWith:(best , '::')]])
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2066
	ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2067
	    best := best , '::'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2068
	].
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2069
    ].
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2070
    ^ Array with:best with:matches asArray
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2071
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2072
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2073
     Smalltalk classnameCompletion:'Arr' 
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2074
     Smalltalk classnameCompletion:'Arra' 
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2075
     Smalltalk classnameCompletion:'arra' 
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2076
     Smalltalk classnameCompletion:'*rray' 
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2077
    "
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2078
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2079
    "Created: 24.11.1995 / 17:24:45 / cg"
2523
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  2080
    "Modified: 3.4.1997 / 18:25:01 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2081
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2082
2004
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  2083
defaultNameSpace
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  2084
    "return the default namespace, where new classes are installed,
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  2085
     if NO special nameSpace handler is present"
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  2086
2029
55ddf4c547ab ask the current project for the defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 2004
diff changeset
  2087
    |p|
55ddf4c547ab ask the current project for the defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 2004
diff changeset
  2088
55ddf4c547ab ask the current project for the defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 2004
diff changeset
  2089
    (Project notNil and:[(p := Project current) notNil]) ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  2090
	^ p defaultNameSpace
2029
55ddf4c547ab ask the current project for the defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 2004
diff changeset
  2091
    ].
55ddf4c547ab ask the current project for the defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 2004
diff changeset
  2092
2004
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  2093
    ^ self
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  2094
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  2095
    "Created: 19.12.1996 / 23:49:25 / cg"
2029
55ddf4c547ab ask the current project for the defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 2004
diff changeset
  2096
    "Modified: 2.1.1997 / 20:01:31 / cg"
2004
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  2097
!
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  2098
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2099
globalnameCompletion:aPartialGlobalName
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2100
    "given a partial globalName, return an array consisting of
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2101
     2 entries: 1st: collection consisting of matching names
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2102
		2nd: the best (longest) match"
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2103
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2104
    |searchName matches ignCaseMatches best isMatchString|
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2105
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2106
    searchName := aPartialGlobalName.
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2107
    searchName isEmpty ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2108
	^ Array with:searchName with:#()
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2109
    ].
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2110
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2111
    (searchName at:1) isLowercase ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2112
	searchName := searchName copy asUppercaseFirst
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2113
    ].
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2114
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2115
    isMatchString := searchName includesMatchCharacters.
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2116
    matches := OrderedCollection new.
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2117
    ignCaseMatches := OrderedCollection new.
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2118
    self keysDo:[:aGlobalName |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2119
	| addIt|
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2120
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2121
	isMatchString ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2122
	    addIt := searchName match:aGlobalName
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2123
	] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2124
	    addIt := aGlobalName startsWith:searchName
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2125
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2126
	addIt ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2127
	    matches add:aGlobalName
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2128
	] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2129
	    "/ try ignoring case
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2130
	    isMatchString ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2131
		addIt := searchName match:aGlobalName ignoreCase:true
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2132
	    ] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2133
		addIt := aGlobalName asLowercase startsWith:searchName asLowercase
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2134
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2135
	    addIt ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2136
		ignCaseMatches add:aGlobalName
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2137
	    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2138
	]
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2139
    ].
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2140
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2141
    matches isEmpty ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2142
	matches := ignCaseMatches
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2143
    ].
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2144
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2145
    matches isEmpty ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2146
	^ Array with:searchName with:(Array with:searchName)
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2147
    ].
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2148
    matches size == 1 ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2149
	^ Array with:matches first with:(matches asArray)
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2150
    ].
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2151
    matches := matches asSortedCollection.
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2152
    isMatchString ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2153
	best := searchName.
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2154
    ] ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2155
	best := matches longestCommonPrefix.
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2156
    ].
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2157
    ^ Array with:best with:matches asArray
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2158
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2159
    "
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2160
     Smalltalk globalnameCompletion:'Arr' 
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2161
     Smalltalk globalnameCompletion:'Arra' 
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2162
     Smalltalk globalnameCompletion:'arra' 
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2163
     Smalltalk globalnameCompletion:'*rray' 
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2164
    "
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2165
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2166
    "Created: 24.11.1995 / 17:24:45 / cg"
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2167
    "Modified: 3.4.1997 / 18:25:01 / cg"
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2168
!
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2169
6472
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2170
hasNamespaces
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2171
    "can be redefined by dummy namespaces/environments, to suppress
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2172
     the namespace display in a browser (PocketSmalltalk)"
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2173
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2174
    ^ true
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2175
!
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2176
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2177
includes:something
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2178
    "this should come from Collection.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2179
     will change the inheritance - Smalltalk is actually a collection"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2180
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2181
    self do:[:element | element = something ifTrue:[^ true]].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2182
    ^ false
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2183
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2184
5327
5e5602d156fa #isNamespace renamed to #isNameSpace
Claus Gittinger <cg@exept.de>
parents: 5326
diff changeset
  2185
isNameSpace
1706
24629b820adf prepare for private classes
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  2186
    ^ true
24629b820adf prepare for private classes
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  2187
24629b820adf prepare for private classes
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  2188
    "Created: 11.10.1996 / 18:10:43 / cg"
24629b820adf prepare for private classes
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  2189
!
24629b820adf prepare for private classes
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  2190
5371
6376d1fcf30f use #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5365
diff changeset
  2191
isTopLevelNameSpace
6376d1fcf30f use #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5365
diff changeset
  2192
    ^ true
6376d1fcf30f use #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5365
diff changeset
  2193
!
6376d1fcf30f use #allSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 5365
diff changeset
  2194
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  2195
isTopLevelNamespace
5365
95c615a40176 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
  2196
    "obsolete - use isTopLevelNameSpace"
95c615a40176 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
  2197
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  2198
    ^ true
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  2199
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  2200
    "Created: 11.10.1996 / 18:10:43 / cg"
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  2201
!
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  2202
5505
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2203
methodProtocolCompletion:aPartialProtocolName
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2204
    "given a partial method protocol name, return an array consisting of
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2205
     2 entries: 1st: collection consisting of matching protocols
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2206
		2nd: the longest match"
5505
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2207
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2208
    |matches best lcName|
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2209
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2210
    matches := IdentitySet new.
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2211
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2212
    "/ search for exact match
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2213
    self allClassesDo:[:aClass |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2214
	aClass instAndClassSelectorsAndMethodsDo:[:aSelector :aMethod |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2215
	    |protocol|
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2216
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2217
	    protocol := aMethod category.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2218
	    (protocol notNil and:[protocol startsWith:aPartialProtocolName]) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2219
		matches add:protocol
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2220
	    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2221
	].
5505
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2222
    ].
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2223
    matches isEmpty ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2224
	"/ search for case-ignoring match
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2225
	lcName := aPartialProtocolName asLowercase.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2226
	self allClassesDo:[:aClass |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2227
	    aClass instAndClassSelectorsAndMethodsDo:[:aSelector :aMethod |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2228
		|protocol|
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2229
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2230
		protocol := aMethod category.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2231
		(protocol asLowercase startsWith:lcName) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2232
		    matches add:protocol
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2233
		]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2234
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2235
	].
5505
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2236
    ].
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2237
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2238
    matches isEmpty ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2239
	^ Array with:aPartialProtocolName with:(Array with:aPartialProtocolName)
5505
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2240
    ].
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2241
    matches size == 1 ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2242
	^ Array with:matches first with:(matches asArray)
5505
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2243
    ].
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2244
    matches := matches asSortedCollection.
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2245
    best := matches longestCommonPrefix.
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2246
    ^ Array with:best with:matches asArray
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2247
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2248
    "
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2249
     Smalltalk methodProtocolCompletion:'doc'
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2250
     Smalltalk methodProtocolCompletion:'docu' 
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2251
     Smalltalk methodProtocolCompletion:'documenta' 
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2252
    "
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2253
!
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2254
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2255
numberOfGlobals
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2256
    "return the number of global variables in the system"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2257
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2258
    |tally "{ Class: SmallInteger }" |
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2259
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2260
    tally := 0.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2261
    self do:[:obj | tally := tally + 1].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2262
    ^ tally
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2263
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2264
    "Smalltalk numberOfGlobals"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2265
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2266
3260
10e5199831ee added #referencesAny:
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  2267
referencesAny:aCollection
10e5199831ee added #referencesAny:
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  2268
    "redefined, since the references are only kept in the VM's symbol table"
10e5199831ee added #referencesAny:
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  2269
10e5199831ee added #referencesAny:
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  2270
    self keysAndValuesDo:[:key :val |
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  2271
	aCollection do:[:anObject |
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  2272
	    (key == anObject) ifTrue:[^ true].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  2273
	    (val == anObject ) ifTrue:[^ true].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  2274
	]
3260
10e5199831ee added #referencesAny:
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  2275
    ].
10e5199831ee added #referencesAny:
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  2276
    ^ super referencesAny:aCollection
10e5199831ee added #referencesAny:
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  2277
10e5199831ee added #referencesAny:
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  2278
    "Created: / 2.2.1998 / 16:01:20 / cg"
10e5199831ee added #referencesAny:
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  2279
!
10e5199831ee added #referencesAny:
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  2280
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2281
referencesDerivedInstanceOf:aClass
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2282
    "redefined, since the references are only kept in the VM's symbol table"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2283
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2284
    self keysAndValuesDo:[:key :val |
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  2285
	(key isKindOf:aClass) ifTrue:[^ true].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  2286
	(val isKindOf:aClass) ifTrue:[^ true].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2287
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2288
    ^ super referencesDerivedInstanceOf:aClass
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2289
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2290
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2291
referencesInstanceOf:aClass
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2292
    "redefined, since the references are only kept in the VM's symbol table"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2293
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2294
    self keysAndValuesDo:[:key :val |
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  2295
	(key isMemberOf:aClass) ifTrue:[^ true].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  2296
	(val isMemberOf:aClass) ifTrue:[^ true].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2297
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2298
    ^ super referencesInstanceOf:aClass
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2299
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2300
6074
d91c99700e3b renamed #references: (conflict with RB's #references)
Claus Gittinger <cg@exept.de>
parents: 6033
diff changeset
  2301
referencesObject:anObject
d91c99700e3b renamed #references: (conflict with RB's #references)
Claus Gittinger <cg@exept.de>
parents: 6033
diff changeset
  2302
    "redefined, since the references are only kept in the VM's symbol table"
d91c99700e3b renamed #references: (conflict with RB's #references)
Claus Gittinger <cg@exept.de>
parents: 6033
diff changeset
  2303
d91c99700e3b renamed #references: (conflict with RB's #references)
Claus Gittinger <cg@exept.de>
parents: 6033
diff changeset
  2304
    self keysAndValuesDo:[:key :val |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2305
	(key == anObject) ifTrue:[^ true].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2306
	(val == anObject ) ifTrue:[^ true].
6074
d91c99700e3b renamed #references: (conflict with RB's #references)
Claus Gittinger <cg@exept.de>
parents: 6033
diff changeset
  2307
    ].
d91c99700e3b renamed #references: (conflict with RB's #references)
Claus Gittinger <cg@exept.de>
parents: 6033
diff changeset
  2308
    ^ super referencesObject:anObject
d91c99700e3b renamed #references: (conflict with RB's #references)
Claus Gittinger <cg@exept.de>
parents: 6033
diff changeset
  2309
d91c99700e3b renamed #references: (conflict with RB's #references)
Claus Gittinger <cg@exept.de>
parents: 6033
diff changeset
  2310
    "Modified: / 3.2.1998 / 14:22:46 / cg"
d91c99700e3b renamed #references: (conflict with RB's #references)
Claus Gittinger <cg@exept.de>
parents: 6033
diff changeset
  2311
!
d91c99700e3b renamed #references: (conflict with RB's #references)
Claus Gittinger <cg@exept.de>
parents: 6033
diff changeset
  2312
4354
8e265dcb2536 fixed name resolving with Smalltalk:: as prefix
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  2313
resolveName:nameIn inClass:aClass
3026
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2314
    "resolve aName as if compiled within aClass;
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2315
     i.e. if it has a private class with this name, return it;
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2316
     if aName is known within the classes namespace, return that.
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2317
     Otherwise, return a global with that name.
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2318
     This should be used whereever Smalltalk>>at: used to be used,
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2319
     to resolve a global by name."
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2320
4354
8e265dcb2536 fixed name resolving with Smalltalk:: as prefix
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  2321
    |aName sym cls ns|
8e265dcb2536 fixed name resolving with Smalltalk:: as prefix
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  2322
8e265dcb2536 fixed name resolving with Smalltalk:: as prefix
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  2323
    nameIn isNil ifTrue:[^ nil].
4356
54d1f0b81638 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4355
diff changeset
  2324
    nameIn isBehavior ifTrue:[^ nameIn].       "/ already resolved
4354
8e265dcb2536 fixed name resolving with Smalltalk:: as prefix
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  2325
    aName := nameIn.
8e265dcb2536 fixed name resolving with Smalltalk:: as prefix
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  2326
8e265dcb2536 fixed name resolving with Smalltalk:: as prefix
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  2327
    (aName startsWith:'Smalltalk::') ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  2328
	aName := aName copyFrom:12.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  2329
	^ self at:(aName asSymbol) ifAbsent:nil.
4354
8e265dcb2536 fixed name resolving with Smalltalk:: as prefix
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  2330
    ].
3026
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2331
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2332
    sym := aName asSymbol.
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2333
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2334
    cls := aClass privateClassesAt:sym.
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2335
    cls notNil ifTrue:[^ cls].
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2336
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2337
    ns := aClass nameSpace.
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2338
    (ns notNil and:[ns ~~ Smalltalk]) ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  2339
	ns isNameSpace ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  2340
	    cls := ns at:sym ifAbsent:nil.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  2341
	] ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  2342
	    cls := ns privateClassesAt:sym
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  2343
	].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  2344
	cls notNil ifTrue:[^ cls].
3025
53b114d5be3e added #resolveClassNamed:
ca
parents: 3022
diff changeset
  2345
    ].
3026
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2346
    ^ self at:sym ifAbsent:nil.
4356
54d1f0b81638 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4355
diff changeset
  2347
54d1f0b81638 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4355
diff changeset
  2348
    "Modified: / 9.7.1999 / 01:18:07 / cg"
3025
53b114d5be3e added #resolveClassNamed:
ca
parents: 3022
diff changeset
  2349
!
53b114d5be3e added #resolveClassNamed:
ca
parents: 3022
diff changeset
  2350
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2351
selectorCompletion:aPartialSymbolName
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2352
    "given a partial selector, return an array consisting of
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2353
     2 entries: 1st: collection consisting of matching implemented selectors
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2354
		2nd: the longest match"
3565
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2355
6472
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2356
    ^ self
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2357
	selectorCompletion:aPartialSymbolName inEnvironment:self
6472
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2358
!
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2359
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2360
selectorCompletion:aPartialSymbolName inEnvironment:anEnvironment
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2361
    "given a partial selector, return an array consisting of
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2362
     2 entries: 1st: collection consisting of matching implemented selectors
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2363
		2nd: the longest match"
6472
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2364
3565
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2365
    |matches best lcSym|
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2366
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2367
    matches := IdentitySet new.
3565
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2368
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2369
    "/ search for exact match
6472
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2370
    anEnvironment allClassesDo:[:aClass |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2371
	aClass instAndClassSelectorsAndMethodsDo:[:aSelector :aMethod |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2372
	    (aSelector startsWith:aPartialSymbolName) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2373
		matches add:aSelector
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2374
	    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2375
	].
3565
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2376
    ].
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2377
    matches isEmpty ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2378
	"/ search for case-ignoring match
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2379
	lcSym := aPartialSymbolName asLowercase.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2380
	anEnvironment allClassesDo:[:aClass |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2381
	    aClass instAndClassSelectorsAndMethodsDo:[:aSelector :aMethod |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2382
		(aSelector asLowercase startsWith:lcSym) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2383
		    matches add:aSelector
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2384
		]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2385
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2386
	].
3565
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2387
    ].
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2388
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2389
    matches isEmpty ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2390
	^ Array with:aPartialSymbolName with:(Array with:aPartialSymbolName)
3565
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2391
    ].
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2392
    matches size == 1 ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2393
	^ Array with:matches first with:(matches asArray)
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2394
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2395
    matches := matches asSortedCollection.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2396
    best := matches longestCommonPrefix.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2397
    ^ Array with:best with:matches asArray
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2398
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2399
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2400
     Smalltalk selectorCompletion:'at:p'  
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2401
     Smalltalk selectorCompletion:'nextP' 
3565
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2402
     Smalltalk selectorCompletion:'nextp' 
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2403
    "
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1455
diff changeset
  2404
3565
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2405
    "Modified: / 7.6.1996 / 08:44:33 / stefan"
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2406
    "Modified: / 14.6.1998 / 15:54:03 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2407
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2408
4431
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2409
!Smalltalk class methodsFor:'queries-system'!
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2410
4970
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2411
isDolphinSmalltalk
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2412
    "return false here - this may be useful to write portable
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2413
     applications - add #isDolphinSmalltalk to your dolphin,
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2414
     returning true there."
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2415
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2416
    ^ false
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2417
!
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2418
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2419
isSmalltalkMT
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2420
    "return false here - this may be useful to write portable
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2421
     applications - add #isSmalltalkMT to your smalltalk-MT,
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2422
     returning true there."
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2423
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2424
    ^ false
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2425
!
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2426
4431
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2427
isSmalltalkV
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2428
    "return false here - this may be useful to write portable
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2429
     applications - add #isSmalltalkV to your smalltalkV,
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2430
     returning true there."
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2431
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2432
    ^ false
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2433
!
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2434
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2435
isSmalltalkX
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2436
    "return true here - this may be useful to write portable
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2437
     applications - add #isSmalltalkX to your other smalltalks,
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2438
     returning false there."
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2439
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2440
    ^ true
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2441
!
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2442
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2443
isSqueak
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2444
    "return false here - this may be useful to write portable
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2445
     applications - add #isSqueak to your squeak,
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2446
     returning true there."
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2447
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2448
    ^ false
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2449
!
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2450
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2451
isVisualAge
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2452
    "return false here - this may be useful to write portable
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2453
     applications - add #isVisualAge to your visualAge,
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2454
     returning true there."
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2455
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2456
    ^ false
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2457
!
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2458
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2459
isVisualWorks
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2460
    "return false here - this may be useful to write portable
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2461
     applications - add #isVisualWorks to your visualWorks,
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2462
     returning true there."
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2463
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2464
    ^ false
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2465
! !
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2466
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  2467
!Smalltalk class methodsFor:'startup'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2468
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2469
displayInitializationDone
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2470
    "inform the restart, that the display has been initialized"
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2471
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2472
    CallbackSignal raiseRequest.
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2473
!
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2474
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2475
mainStartup:graphicalMode
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2476
    "common start/restart action, if there is a Display, initialize it
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2477
     and start dispatching; otherwise go into a read-eval-print loop."
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2478
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  2479
    |mainProcess standAloneProcess imageName thisIsARestart|
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2480
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2481
    imageName := ObjectMemory imageName.
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  2482
    thisIsARestart := imageName notNil.
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2483
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2484
    "
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2485
     if there is a display, start its event dispatcher 
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2486
    "
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2487
    Display notNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2488
	Display deviceIOTimeoutErrorSignal handlerBlock:[:ex |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2489
	    SaveEmergencyImage == true ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2490
		'Display [warning]: broken display connection - emergency save in ''crash.img''.' infoPrintCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2491
		ObjectMemory primSnapShotOn:'crash.img'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2492
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2493
	    'Display [warning]: broken display connection - exit.' infoPrintCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2494
	    Smalltalk exit.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2495
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2496
	Display startDispatch.
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2497
    ].
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2498
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2499
    Initializing := false.
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2500
2074
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  2501
    "/ start a process, which evaluates all StartBlocks
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  2502
    "/ this used to be done right here (in this system-process),
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  2503
    "/ but lead to trouble, when it suspended.
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  2504
    "/ Therefore, it is now done by an extra user-process.
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  2505
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  2506
    mainProcess := [
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2507
	StartBlocks notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2508
	    StartBlocks do:[:aBlock|
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2509
		aBlock value
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2510
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2511
	    StartBlocks := nil.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2512
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2513
	ImageStartBlocks notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2514
	    ImageStartBlocks do:[:aBlock|
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2515
		aBlock value
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2516
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2517
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2518
	StandAlone ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2519
	    (SilentLoading == true) ifFalse:[   "i.e. undefined counts as false" 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2520
		thisIsARestart ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2521
		    Transcript cr.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2522
		    Transcript showCR:('Smalltalk restarted from:'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2523
					, imageName
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2524
					, ' (saved '
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2525
					, ObjectMemory imageSaveTime printString
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2526
					, ')' ).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2527
		] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2528
		    Transcript showCR:(self hello).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2529
		    Transcript showCR:(self copyrightString).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2530
		    Transcript cr.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2531
		].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2532
		Transcript cr.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2533
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2534
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2535
	    DemoMode==true ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2536
		Transcript showCR:'*** Restricted use:                              ***'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2537
		Transcript showCR:'*** This program may be used for education only. ***'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2538
		Transcript showCR:'*** Please read the files COPYRIGHT and LICENSE  ***'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2539
		Transcript showCR:'*** for more details.                            ***'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2540
		Transcript cr.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2541
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2542
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2543
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2544
	thisIsARestart ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2545
	    "/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2546
	    "/ the final late notification - users can now assume that
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2547
	    "/ views, forms etc. have been recreated.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2548
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2549
	    ObjectMemory changed:#returnFromSnapshot.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2550
	]
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  2551
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  2552
    ] newProcess.
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  2553
    mainProcess priority:8.
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  2554
    mainProcess name:'start block handler'.
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  2555
    mainProcess beGroupLeader.
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  2556
    mainProcess resume.
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  2557
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  2558
2074
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  2559
    "/ start a process, which evaluates the startupClass>>startupSelector
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  2560
    "/ message.
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  2561
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2562
    (StartupClass notNil and:[StartupSelector notNil]) ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2563
	"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2564
	 allow more customization by reading an image specific rc-file
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2565
	"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2566
	thisIsARestart ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2567
	    (imageName asFilename hasSuffix:'img') ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2568
		imageName := imageName copyWithoutLast:4
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2569
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2570
	    self fileIn:(imageName , '.rc')
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2571
	].
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2572
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2573
"/        Display notNil ifTrue:[
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2574
"/            Display exitOnLastClose:true.
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2575
"/        ].
2086
4a9d8b5cada7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  2576
"/        Processor exitWhenNoMoreUserProcesses:true.
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2577
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2578
	standAloneProcess := [
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2579
	    StartupClass perform:StartupSelector withArguments:StartupArguments.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2580
	    "/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2581
	    "/ non-GUI apps exit after the startup;
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2582
	    "/ assume that GUI apps have created & opened some view ...
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2583
	    "/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2584
	    Display isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2585
		Smalltalk exit.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2586
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2587
	    "/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2588
	    "/ GUI apps exit after the last user process has finished
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2589
	    "/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2590
	    Display exitOnLastClose:true.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2591
	    Processor exitWhenNoMoreUserProcesses:true.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2592
	] newProcess.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2593
	standAloneProcess priority:8.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2594
	standAloneProcess name:'main'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2595
	standAloneProcess beGroupLeader.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2596
	standAloneProcess resume.
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2597
    ].
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2598
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2599
    "
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2600
     if view-classes exist, start dispatching;
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2601
     otherwise go into a read-eval-print loop
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2602
    "
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2603
'Display is:' print. Display printCR.
4957
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  2604
    ((Display notNil and:[graphicalMode]) 
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2605
     or:[standAloneProcess notNil
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2606
     or:[HeadlessOperation]]) ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2607
	Processor dispatchLoop.
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2608
    ] ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2609
	StandAlone ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2610
	    self readEvalPrint
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2611
	]
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2612
    ].
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2613
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2614
    "done - the last process finished"
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2615
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2616
    self exit
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2617
3062
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  2618
    "Created: / 18.7.1996 / 21:07:39 / cg"
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  2619
    "Modified: / 9.9.1996 / 17:42:50 / stefan"
3483
029aabc7f3c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3475
diff changeset
  2620
    "Modified: / 25.5.1998 / 15:02:57 / cg"
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2621
!
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2622
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2623
readEvalPrint
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  2624
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  2625
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2626
    "simple read-eval-print loop for non-graphical Minitalk"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2627
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2628
    |text|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2629
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2630
    'ST- ' print.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2631
    Stdin skipSeparators.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2632
    Stdin atEnd ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2633
	text := Stdin nextChunk.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2634
	[text notNil] whileTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2635
	    AbortSignal handle:[:ex |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2636
		'evaluation aborted' printCR
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2637
	    ] do:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2638
		Compiler isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2639
		    'No evaluator class available (Compiler == nil)' printCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2640
		    ^ self
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2641
		].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2642
		(Compiler evaluate:text) printCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2643
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2644
	    'ST- ' print.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2645
	    text := Stdin nextChunk
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2646
	].
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2647
    ].
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  2648
    '' printCR
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2649
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2650
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2651
restart
24
20cfbafcd0a3 *** empty log message ***
claus
parents: 13
diff changeset
  2652
    "startup after an image has been loaded;
10
claus
parents: 8
diff changeset
  2653
     there are three change-notifications made to dependents of ObjectMemory,
claus
parents: 8
diff changeset
  2654
     which allow a stepwise re-init: #earlyRestart, #restarted and #returnFromSnapshot.
335
claus
parents: 329
diff changeset
  2655
3096
881660d6e997 added #earlySystemInitialization change message (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3092
diff changeset
  2656
     #earlySystemInstallation is sent for ST80 compatibility
881660d6e997 added #earlySystemInitialization change message (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3092
diff changeset
  2657
10
claus
parents: 8
diff changeset
  2658
     #earlyRestart is send first, nothing has been setup yet.
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2659
		   (should be used to flush all device dependent entries)
335
claus
parents: 329
diff changeset
  2660
10
claus
parents: 8
diff changeset
  2661
     #restarted is send right after.
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2662
		   (should be used to recreate external resources (fds, bitmaps etc)
335
claus
parents: 329
diff changeset
  2663
10
claus
parents: 8
diff changeset
  2664
     #returnFromSnapshot is sent last
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2665
		   (should be used to restart processes, reOpen Streams which cannot
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2666
		    be automatically be reopened (i.e. Sockets, Pipes) and so on.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2667
		   (Notice that positionable fileStreams are already reopened and repositioned)
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2668
     "
10
claus
parents: 8
diff changeset
  2669
4503
99718971ba26 Redirect Transcript to Stderr during restart-initialization.
Stefan Vogel <sv@exept.de>
parents: 4490
diff changeset
  2670
    |deb insp transcript idx|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2671
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2672
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2673
    "/ when we arrive here, all objects from our previous life
3971
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3952
diff changeset
  2674
    "/ have been reloaded - however, some may still contain invalid device
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2675
    "/ handles, display information etc.
3971
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3952
diff changeset
  2676
    "/ also, dynamically loaded modules have not yet been reloaded yet.
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3952
diff changeset
  2677
    "/ and the concrete OS, concrete FileName etc. are still refering to
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3952
diff changeset
  2678
    "/ the previous classes.
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2679
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2680
    Initializing := true.
3499
5f8715a97ff5 switching to OS-subclasses
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
  2681
    AbstractOperatingSystem initializeConcreteClass.
5f8715a97ff5 switching to OS-subclasses
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
  2682
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  2683
    ImageRestartTime := AbsoluteTime now.
335
claus
parents: 329
diff changeset
  2684
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2685
    CommandLine := CommandLineArguments copy.
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2686
    CommandLineArguments := CommandLineArguments asOrderedCollection.
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2687
    CommandName := CommandLineArguments removeFirst. "/ the command
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2688
1582
0823160f6b38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  2689
    idx := CommandLineArguments indexOf:'-q'.
0823160f6b38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  2690
    idx ~~ 0 ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2691
	Object infoPrinting:false.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2692
	ObjectMemory infoPrinting:false.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2693
	CommandLineArguments removeAtIndex:idx.
1582
0823160f6b38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  2694
    ].
0823160f6b38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  2695
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2696
    "/
3971
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3952
diff changeset
  2697
    "/ start catching SIGSEGV and SIGBUS
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3952
diff changeset
  2698
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3952
diff changeset
  2699
    OperatingSystem enableHardSignalInterrupts.
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3952
diff changeset
  2700
2907
1666bf27f351 VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
  2701
    "/ reinit Filename
1666bf27f351 VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
  2702
    Filename reinitialize.
1666bf27f351 VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
  2703
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2704
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2705
    "/ flush cached path directories (may have changed in the meanwhile)
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2706
329
claus
parents: 326
diff changeset
  2707
    self flushPathCaches.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2708
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2709
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2710
    "/ reinit the default streams: Stdin, Stdout and Stderr
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2711
    "/ after that, we can write to stderr.
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2712
477
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
  2713
    self reinitStandardStreams.
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
  2714
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2715
    "/
4503
99718971ba26 Redirect Transcript to Stderr during restart-initialization.
Stefan Vogel <sv@exept.de>
parents: 4490
diff changeset
  2716
    "/ redirect Transcript to Stderr during startup    
99718971ba26 Redirect Transcript to Stderr during restart-initialization.
Stefan Vogel <sv@exept.de>
parents: 4490
diff changeset
  2717
99718971ba26 Redirect Transcript to Stderr during restart-initialization.
Stefan Vogel <sv@exept.de>
parents: 4490
diff changeset
  2718
    transcript := Transcript.    
99718971ba26 Redirect Transcript to Stderr during restart-initialization.
Stefan Vogel <sv@exept.de>
parents: 4490
diff changeset
  2719
    Transcript := Stderr.
99718971ba26 Redirect Transcript to Stderr during restart-initialization.
Stefan Vogel <sv@exept.de>
parents: 4490
diff changeset
  2720
99718971ba26 Redirect Transcript to Stderr during restart-initialization.
Stefan Vogel <sv@exept.de>
parents: 4490
diff changeset
  2721
    "/
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2722
    "/ temporary switch back to dumb interface - 
4503
99718971ba26 Redirect Transcript to Stderr during restart-initialization.
Stefan Vogel <sv@exept.de>
parents: 4490
diff changeset
  2723
    "/ to handle errors while view-stuff is not yet reinitialized
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2724
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2725
    insp := Inspector.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2726
    deb := Debugger.
684
3e0b5a8ec381 invalidate display connection during early startup
Claus Gittinger <cg@exept.de>
parents: 680
diff changeset
  2727
    deb notNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2728
	deb reinitialize
684
3e0b5a8ec381 invalidate display connection during early startup
Claus Gittinger <cg@exept.de>
parents: 680
diff changeset
  2729
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2730
    Inspector := MiniInspector.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2731
    Debugger := MiniDebugger.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2732
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2733
    "/ reload any dynamically loaded objects.
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2734
    "/ this must be done before doing anything else below,
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2735
    "/ because the Processor may restart processes which use
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2736
    "/ this code.
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  2737
    "/ Also, a dynamic object might be registered as dependent of
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  2738
    "/ ObjectFileLoader; therefore, must reload before doing any notifications.
335
claus
parents: 329
diff changeset
  2739
1100
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  2740
    ObjectFileLoader notNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2741
	ObjectFileLoader reloadAllRememberedObjectFiles.
1100
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  2742
    ].
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  2743
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2744
    "/
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2745
    "/ invalidate all display connections.
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2746
    "/ This is required to avoid trouble if someone accesses
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2747
    "/ a display during early startup.
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2748
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2749
    Screen notNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2750
	Screen allScreens do:[:aDisplay |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2751
	    aDisplay invalidateConnection
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2752
	].
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2753
    ].
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2754
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  2755
    ObjectMemory changed:#earlySystemInstallation.
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  2756
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2757
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2758
    "/ reinitialize the Processor - restartable processes
4109
3e536657cff6 comment only
Claus Gittinger <cg@exept.de>
parents: 4099
diff changeset
  2759
    "/ are now restarted here (but not yet scheduled).
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2760
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2761
    Processor reinitialize.
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2762
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2763
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2764
    "/ flush device handles & recreate OS resources (if possible)
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2765
    "/ (mostly view/GC/color & font stuff)
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2766
3022
1b6800d56d62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
  2767
    ObjectMemory
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2768
	changed:#earlyRestart; changed:#restarted.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2769
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2770
    "/
3526
78245608c0b8 no need for last change (restarting processes).
Claus Gittinger <cg@exept.de>
parents: 3523
diff changeset
  2771
    "/ start catching SIGINT and SIGQUIT
78245608c0b8 no need for last change (restarting processes).
Claus Gittinger <cg@exept.de>
parents: 3523
diff changeset
  2772
78245608c0b8 no need for last change (restarting processes).
Claus Gittinger <cg@exept.de>
parents: 3523
diff changeset
  2773
    OperatingSystem enableUserInterrupts.
6390
41d5c47c33f0 Catch sigPWR and sigHUP on restart
Stefan Vogel <sv@exept.de>
parents: 6366
diff changeset
  2774
    OperatingSystem enableCrashSignalInterrupts.
3526
78245608c0b8 no need for last change (restarting processes).
Claus Gittinger <cg@exept.de>
parents: 3523
diff changeset
  2775
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2776
    "/ give user a chance to re-customize things
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2777
    "/ reading if smalltalk_r.rc may be suppressed by the
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2778
    "/ -fastStart argument.
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2779
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2780
    idx := CommandLineArguments indexOf:'-faststart'.
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2781
    idx ~~ 0 ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2782
	CommandLineArguments removeAtIndex:idx.
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2783
    ] ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2784
	CallbackSignal := QuerySignal new.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2785
	[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2786
	    Class withoutUpdatingChangesDo:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2787
		(self fileIn:(self commandName , '_r.rc')) ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2788
		    "no _r.rc file where executable is; try default smalltalk_r.rc"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2789
		    self fileIn:'smalltalk_r.rc'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2790
		].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2791
	    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2792
	] on:CallbackSignal do:[:ex|
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2793
	    "/ now, display and view-stuff works;
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2794
	    "/ back to the previous debugging interface
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2795
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2796
	    Inspector := insp.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2797
	    Debugger := deb.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2798
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2799
	    "/ reinstall Transcript, if not changed during restart.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2800
	    "/ if there was no Transcript, go to stderr
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2801
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2802
	    (transcript notNil and:[Transcript == Stderr]) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2803
		Transcript := transcript.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2804
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2805
	    Initializing := false.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2806
	    ex proceed.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2807
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2808
	CallbackSignal := nil.
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2809
    ].
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2810
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2811
    "/ reinitialization (restart) of Display is normally performed
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2812
    "/ in the restart script. If this has not been run for some reason,
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2813
    "/ do in now.
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2814
    Initializing ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2815
	Display notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2816
	    [
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2817
		Display reinitializeFor:Screen defaultDisplayName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2818
	    ] on:Screen deviceOpenErrorSignal do:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2819
		'Smalltalk [error]: Cannot restart connection to: ' errorPrint.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2820
		Screen defaultDisplayName errorPrintCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2821
		Smalltalk exit.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2822
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2823
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2824
	"/ now, display and view-stuff works;
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2825
	"/ back to the previous debugging interface
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2826
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2827
	Inspector := insp.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2828
	Debugger := deb.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2829
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2830
	"/ reinstall Transcript, if not changed during restart.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2831
	"/ if there was no Transcript, go to stderr
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2832
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2833
	(transcript notNil and:[Transcript == Stderr]) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2834
	    Transcript := transcript.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2835
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2836
	Initializing := false.
7
bf6f603119df final release before Dispatcher
claus
parents: 5
diff changeset
  2837
    ].
bf6f603119df final release before Dispatcher
claus
parents: 5
diff changeset
  2838
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2839
    self mainStartup:true
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2840
3526
78245608c0b8 no need for last change (restarting processes).
Claus Gittinger <cg@exept.de>
parents: 3523
diff changeset
  2841
    "Modified: / 7.6.1998 / 02:48:00 / cg"
4503
99718971ba26 Redirect Transcript to Stderr during restart-initialization.
Stefan Vogel <sv@exept.de>
parents: 4490
diff changeset
  2842
    "Modified: / 3.8.1999 / 09:42:21 / stefan"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2843
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2844
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2845
start
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2846
    "main startup, if there is a Display, initialize it
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2847
     and start dispatching; otherwise go into a read-eval-print loop."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2848
6841
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
  2849
    |idx graphicalMode arg|
960
e3b75f50d0cd changes for standAlone operation
Claus Gittinger <cg@exept.de>
parents: 948
diff changeset
  2850
e3b75f50d0cd changes for standAlone operation
Claus Gittinger <cg@exept.de>
parents: 948
diff changeset
  2851
    graphicalMode := true.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2852
    Initializing := true.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2853
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2854
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2855
     while reading patches- and rc-file, do not add things into change-file
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2856
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2857
    Class withoutUpdatingChangesDo:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2858
	|myName defaultRC prevCatchSetting|
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2859
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2860
	"/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2861
	"/ look for any '-q', '-e' or '-f' command line arguments
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2862
	"/ and handle them;
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2863
	"/ read startup and patches file
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2864
	"/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2865
	idx := CommandLineArguments indexOf:'-q'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2866
	idx ~~ 0 ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2867
	    Object infoPrinting:false.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2868
	    ObjectMemory infoPrinting:false.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2869
	    CommandLineArguments removeAtIndex:idx.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2870
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2871
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2872
	StandAlone ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2873
	    "/ look for a '-e filename' argument - this will force evaluation of
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2874
	    "/ filename only, no standard startup
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2875
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2876
	    idx := CommandLineArguments indexOf:'-e'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2877
	    idx ~~ 0 ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2878
		arg := CommandLineArguments at:idx + 1.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2879
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2880
		CommandLineArguments
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2881
		    removeAtIndex:idx+1; removeAtIndex:idx.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2882
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2883
		arg = '-' ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2884
		    self fileInStream:Stdin
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2885
			   lazy:nil
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2886
			   silent:nil
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2887
			   logged:false
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2888
			   addPath:nil
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2889
		] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2890
		    self fileIn:arg.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2891
		].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2892
		self exit
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2893
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2894
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2895
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2896
	"/ look for a '-f filename' argument - this will force evaluation of
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2897
	"/ filename instead of smalltalk.rc
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2898
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2899
	idx := CommandLineArguments indexOf:'-f'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2900
	idx ~~ 0 ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2901
	    myName := (CommandLineArguments at:idx + 1).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2902
	    CommandLineArguments
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2903
		removeAtIndex:idx+1; removeAtIndex:idx.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2904
	    CommandLine at:1 put:myName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2905
	    (self secureFileIn:myName) ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2906
		('Smalltalk [error]: startup file ', myName, ' not found.') errorPrintCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2907
		self exit.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2908
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2909
	] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2910
	    "/ look for <command>.rc
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2911
	    "/ if not found, read smalltalk.rc (or stxapp.rc for standAlone operation)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2912
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2913
	    myName := self commandName asFilename withSuffix:'rc'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2914
	    (self secureFileIn:myName) ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2915
		StandAlone ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2916
		    defaultRC := 'smalltalk.rc'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2917
		] ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2918
		    defaultRC := 'stxapp.rc'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2919
		].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2920
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2921
		(self secureFileIn:defaultRC) ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2922
		    StandAlone ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2923
			'Smalltalk [warning]: no startup rc-file found. Going into line-by-line interpreter.' infoPrintCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2924
			graphicalMode := false.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2925
		    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2926
		]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2927
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2928
	].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2929
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2930
6841
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
  2931
    StandAlone ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2932
	"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2933
	 enable the graphical debugger/inspector 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2934
	 (they could have been (re)defined as autoloaded in the patches file)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2935
	"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2936
	self initStandardTools.
963
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  2937
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2938
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2939
    (Display isNil or:[HeadlessOperation]) ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2940
	graphicalMode := false.
2074
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  2941
    ].
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  2942
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2943
    self mainStartup:graphicalMode
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2944
5146
bfe5096a2d06 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5145
diff changeset
  2945
    "Modified: / 24.12.1999 / 00:26:54 / cg"
1097
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2946
! !
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2947
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  2948
!Smalltalk class methodsFor:'startup queries'!
1097
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2949
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2950
commandLine
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2951
    "return the full command line arguments (with which ST/X was started)"
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2952
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2953
    ^ CommandLine
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2954
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2955
    "Created: 19.7.1996 / 11:09:06 / cg"
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2956
!
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2957
6806
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  2958
commandLineArgumentNamed:aString
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2959
    "extract a named argument from the command line arguments."
6806
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  2960
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  2961
    |args index|
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  2962
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  2963
    args := self commandLineArguments.
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  2964
    index := args indexOf:aString.
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  2965
    (index between:1 and:(args size - 1)) ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2966
	^ args at:index+1
6806
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  2967
    ].
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  2968
    ^ nil.
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  2969
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  2970
    "
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  2971
     self commandLineArgumentNamed:'-display'
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  2972
    "
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  2973
!
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  2974
1097
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2975
commandLineArguments
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2976
    "return the user command line arguments;
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2977
     This is a collection of strings (separated command line words),
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2978
     from which the internal startup arguments have already been removed.
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2979
     I.e. if started with: 'smalltalk -I -f xxx foo bar baz',
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2980
     the commandLineArguments will be #('foo' 'bar' 'baz').
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2981
     In contrast, the value returned by #commandLine will be the full set of words."
1097
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2982
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2983
    ^ CommandLineArguments
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2984
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2985
    "Modified: 19.7.1996 / 11:11:03 / cg"
1097
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2986
!
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2987
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2988
commandName
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2989
    "return the excutables name - this is normally 'smalltalk', but
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2990
     can be something else for standAlone apps."
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2991
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2992
    ^ CommandName.
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2993
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2994
    "Modified: 19.7.1996 / 11:11:16 / cg"
1097
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2995
!
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2996
4957
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  2997
isHeadless
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  2998
    "return true, if this is a headless application
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  2999
     i.e. no default Display connection is required/used"
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  3000
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  3001
    ^ HeadlessOperation
4957
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  3002
!
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  3003
1097
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  3004
isStandAloneApp
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  3005
    "return true, if this is a standAlone application
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  3006
     (in contrast to a full smalltalk system)."
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  3007
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  3008
    ^ StandAlone
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3009
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3010
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3011
startupArguments
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3012
    "return the arguments passed to StartupClass"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3013
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3014
    ^ StartupArguments
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3015
!
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3016
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3017
startupClass
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3018
    "return the class, that will get the start message when smalltalk
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3019
     starts and its non-nil. Usually this is nil, but saving an image 
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3020
     with a non-nil StartupClass allows stand-alone applications"
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3021
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3022
    ^ StartupClass
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3023
!
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3024
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3025
startupClass:aClass selector:aSymbol arguments:anArrayOrNil
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  3026
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  3027
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3028
    "set the class, selector and arguments to be performed when smalltalk
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3029
     starts. Setting those before saving a snapshot, will make the saved
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3030
     image come up executing your application (instead of the normal mainloop)"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3031
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3032
    StartupClass := aClass.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3033
    StartupSelector := aSymbol.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3034
    StartupArguments := anArrayOrNil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3035
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3036
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3037
startupSelector
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3038
    "return the selector, that will be sent to StartupClass"
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3039
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3040
    ^ StartupSelector
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3041
! !
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3042
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  3043
!Smalltalk class methodsFor:'system environment'!
1069
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3044
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3045
language
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3046
    "return the language setting"
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3047
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3048
    ^ Language
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3049
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3050
    "
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3051
     Smalltalk language
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3052
    "
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3053
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3054
    "Modified: 26.4.1996 / 17:10:05 / cg"
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3055
!
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3056
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3057
language:aLanguageSymbol
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3058
    "set the language"
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3059
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3060
    Language := aLanguageSymbol.
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3061
    self changed:#Language
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3062
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3063
    "
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3064
     Smalltalk language:#de
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3065
    "
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3066
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3067
    "Modified: 26.4.1996 / 17:13:34 / cg"
1069
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3068
!
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3069
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3070
languageTerritory
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3071
    "return the language territory setting"
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3072
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3073
    ^ LanguageTerritory
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3074
!
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3075
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3076
languageTerritory:aTerritorySymbol
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3077
    "set the language territory"
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3078
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3079
    LanguageTerritory := aTerritorySymbol.
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3080
    self changed:#LanguageTerritory
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3081
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3082
    "
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3083
     Time now
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3084
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3085
     Smalltalk languageTerritory:#us.
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3086
     Time now
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3087
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3088
     Smalltalk languageTerritory:#de.
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3089
     Time now    
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3090
    "
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3091
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3092
    "Modified: 26.4.1996 / 17:12:39 / cg"
1069
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3093
! !
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3094
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  3095
!Smalltalk class methodsFor:'system management'!
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3096
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3097
compressSources
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  3098
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  3099
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3100
    "compress the sources file, and remove all method source strings
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3101
     from the system and replace them by refs to a string in the source file.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3102
     This is a bit different in ST/X than in other smalltalks,
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3103
     since we use per-class sourcefiles for the compiled classes,
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3104
     and a mix of in-memory strings and one-for-all sourceFile for
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3105
     incremental compiled methods.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3106
     Therefore, only those sources which are not coming from compiled
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3107
     methods are put into the 'st.src' file - all others are untouched.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3108
     This is being automated - so dont care for now."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3109
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3110
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3111
     first, find all methods which contain either a string-ref
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3112
     or an external string in the 'st.src' file
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3113
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3114
    |newStream table source pos fileName|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3115
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3116
    newStream := 'src.tmp' asFilename writeStream.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3117
    newStream isNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3118
	self error:'cannot create new temporary source file' mayProceed:true.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3119
	^ self
457
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  3120
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3121
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3122
    table := IdentityDictionary new:100.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3123
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3124
    Method allSubInstancesDo:[:aMethod |
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3125
	source := nil.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3126
	aMethod sourcePosition notNil ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3127
	    aMethod sourceFilename = 'st.src' ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3128
		source := aMethod source.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3129
	    ]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3130
	] ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3131
	    source := aMethod source
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3132
	].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3133
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3134
	source notNil ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3135
	    pos := newStream position.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3136
	    newStream nextChunkPut:source.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3137
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3138
	    "
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3139
	     dont change the methods info - maybe some write error
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3140
	     occurs later, in that case we abort and leave everything
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3141
	     untouched.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3142
	    "
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3143
	    table at:aMethod put:pos
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3144
	]
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3145
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3146
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3147
    newStream close.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3148
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3149
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3150
     now, rename the new source file,
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3151
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3152
    fileName := (ObjectMemory nameForSources).
1693
1dbf6a20c15e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  3153
    'src.tmp' asFilename renameTo:fileName.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3154
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3155
    "good - now go over all changed methods, and change their
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3156
     source reference"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3157
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3158
    table keysAndValuesDo:[:aMethod :pos |
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3159
	aMethod localSourceFilename:fileName position:pos.
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  3160
"/        aMethod printCR.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3161
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3162
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3163
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3164
     Smalltalk compressSources
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3165
    "
1693
1dbf6a20c15e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  3166
2176
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  3167
    "Modified: 16.1.1997 / 01:25:58 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3168
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3169
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3170
generateSingleSourceFile
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3171
    "{ Pragma: +optSpace }"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3172
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3173
    "generate the sources file, and remove all method source strings
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3174
     from the system and replace them by refs to a string in the source file.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3175
     This makes the image independent from the per-class source files
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3176
     and makes transportation of endUser applications easier, since
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3177
     only 3 files (executable, image and sourceFile) need to be 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3178
     transported."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3179
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3180
    |newStream table source pos fileName|
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3181
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3182
    newStream := 'src.tmp' asFilename writeStream.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3183
    newStream isNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3184
	self error:'cannot create new temporary source file' mayProceed:true.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3185
	^ self
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3186
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3187
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3188
    table := IdentityDictionary new:100.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3189
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3190
    Method allSubInstancesDo:[:aMethod |
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3191
	source := aMethod source.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3192
	source notNil ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3193
	    pos := newStream position.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3194
	    newStream nextChunkPut:source.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3195
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3196
	    "
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3197
	     dont change the methods info - maybe some write error
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3198
	     occurs later, in that case we abort and leave everything
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3199
	     untouched.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3200
	    "
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3201
	    table at:aMethod put:pos
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3202
	]
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3203
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3204
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3205
    newStream close.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3206
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3207
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3208
     now, rename the new source file,
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3209
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3210
    fileName := (ObjectMemory nameForSources).
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3211
    'src.tmp' asFilename renameTo:fileName.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3212
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3213
    "good - now go over all changed methods, and change their
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3214
     source reference"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3215
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3216
    table keysAndValuesDo:[:aMethod :pos |
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3217
	aMethod localSourceFilename:fileName position:pos.
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3218
"/        aMethod printCR.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3219
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3220
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3221
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3222
     Smalltalk generateSingleSourceFile
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3223
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3224
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3225
    "Modified: 16.1.1997 / 01:25:58 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3226
    "Created: 17.10.1997 / 13:00:56 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3227
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3228
3915
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3229
installAutoloadedClassNamed:clsName category:cat package:package revision:revisionOrNil
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  3230
    "create & install an autoload stub for a class named: clsName,
3915
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3231
     to be loaded from package.
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3232
     If revisionOrNil is non-nil, set it up to load exactly that revision
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3233
     (otherwise, the newest revision will be loaded"
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3234
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3235
    |clsSym cls|
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3236
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3237
    clsSym := clsName asSymbol.
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3238
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3239
    "/ install if not already compiled-in
5716
e61f52147dc2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
  3240
    (cls := self at:clsSym) isNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3241
	Autoload subclass:clsSym
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3242
	    instanceVariableNames:''
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3243
	    classVariableNames:''
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3244
	    poolDictionaries:''
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3245
	    category:cat
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3246
	    inEnvironment:Smalltalk.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3247
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3248
	cls := self at:clsSym.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3249
	cls isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3250
	    ('Smalltalk [warning]: failed to install ' , clsName , ' as autoloaded.') infoPrintCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3251
	] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3252
	    cls package:package asSymbol.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3253
	    revisionOrNil notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3254
		cls setBinaryRevision:revisionOrNil
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3255
	    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3256
	]    
5716
e61f52147dc2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
  3257
    ] ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3258
	"/ class already present - however, check for same category/package
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3259
	package ~= cls package ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3260
	    cls package:package asSymbol.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3261
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3262
	cat ~= cls category ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3263
	    cls category:cat.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3264
	].
5716
e61f52147dc2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5687
diff changeset
  3265
    ].
3915
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3266
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3267
    "Created: / 5.11.1998 / 15:10:25 / cg"
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3268
!
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3269
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3270
installAutoloadedClasses
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3271
    "read the standard abbreviation file; install all classes found there as
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3272
     autoloaded. This takes some time ..."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3273
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  3274
    |dirsConsulted p|
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3275
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3276
    "/ new scheme: look for a directory called 'packages'
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3277
    "/ and enumerate its abbrev.stc files...
5067
335c866e150c walk packagePath when reading abbrevs & autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5065
diff changeset
  3278
    dirsConsulted := Set new.
5162
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3279
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3280
"/ no longer - only consult the packagePath ...
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3281
"/    f := Smalltalk getSystemFileName:'packages'.
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3282
"/    f notNil ifTrue:[
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3283
"/        f := f asFilename.
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3284
"/        f isDirectory ifTrue:[
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3285
"/            ('Smalltalk [info]: installing autoloaded classes found under ''' , f pathName ,'''') infoPrintCR.
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3286
"/            self 
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3287
"/                recursiveInstallAutoloadedClassesFrom:f 
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3288
"/                rememberIn:dirsConsulted 
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3289
"/                maxLevels:5 
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3290
"/                noAutoload:false
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3291
"/                packageTop:f.
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3292
"/        ].
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3293
"/    ].
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3294
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3295
    "/ along the package-path
5788
db9dcc37532c care for empty packagePath
Claus Gittinger <cg@exept.de>
parents: 5787
diff changeset
  3296
    (p := self packagePath) do:[:aPath |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3297
	(dirsConsulted includes:aPath) ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3298
	    ('Smalltalk [info]: installing autoloaded classes found under ''' , aPath ,'''') infoPrintCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3299
	    self 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3300
		recursiveInstallAutoloadedClassesFrom:aPath 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3301
		rememberIn:dirsConsulted 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3302
		maxLevels:5 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3303
		noAutoload:false
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3304
		packageTop:aPath.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3305
	]
5788
db9dcc37532c care for empty packagePath
Claus Gittinger <cg@exept.de>
parents: 5787
diff changeset
  3306
    ].
db9dcc37532c care for empty packagePath
Claus Gittinger <cg@exept.de>
parents: 5787
diff changeset
  3307
    p size == 0 ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3308
	('Smalltalk [info]: installing autoloaded classes found under ''../../..''') infoPrintCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3309
	self 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3310
	    recursiveInstallAutoloadedClassesFrom:'../../..' 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3311
	    rememberIn:dirsConsulted 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3312
	    maxLevels:5 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3313
	    noAutoload:false
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3314
	    packageTop:'../../..'.
5788
db9dcc37532c care for empty packagePath
Claus Gittinger <cg@exept.de>
parents: 5787
diff changeset
  3315
    ].
db9dcc37532c care for empty packagePath
Claus Gittinger <cg@exept.de>
parents: 5787
diff changeset
  3316
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3317
    "/ old scheme: look for a single file called 'abbrev.stc' in the
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3318
    "/ include directory. This will vanish.
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3319
5096
9a513c6d8f63 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5095
diff changeset
  3320
"/    ('Smalltalk [info]: installing autoloaded classes from ''include/abbrev.stc''') infoPrintCR.
9a513c6d8f63 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5095
diff changeset
  3321
"/    self installAutoloadedClassesFrom:'include/abbrev.stc'
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3322
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3323
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3324
     Smalltalk installAutoloadedClasses
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3325
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3326
5096
9a513c6d8f63 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5095
diff changeset
  3327
    "Created: / 14.2.1997 / 17:32:57 / cg"
9a513c6d8f63 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5095
diff changeset
  3328
    "Modified: / 13.12.1999 / 11:56:50 / cg"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3329
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3330
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3331
installAutoloadedClassesFrom:anAbbrevFilePath
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3332
    "read the given abbreviation file; install all classes found there as
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3333
     autoloaded. This takes some time ..."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3334
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3335
    |f s|
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3336
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3337
    f := self getSystemFileName:anAbbrevFilePath.
6714
f4ab666995e0 Search packagePath for autoloaded classes
Stefan Vogel <sv@exept.de>
parents: 6711
diff changeset
  3338
    f isNil ifTrue:[f := self getPackageFileName:anAbbrevFilePath].
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3339
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3340
    f notNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3341
	f := f asFilename.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3342
	f isDirectory ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3343
	    f := f construct:'abbrev.stc'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3344
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3345
	s := f readStream.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3346
	s notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3347
	    self installAutoloadedClassesFromStream:s.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3348
	    s close.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3349
	].
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3350
    ]
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3351
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3352
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3353
     Smalltalk installAutoloadedClassesFrom:'include/abbrev.stc'
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3354
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3355
3915
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3356
    "Modified: / 5.11.1998 / 15:10:51 / cg"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3357
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3358
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3359
installAutoloadedClassesFromStream:anAbbrevFileStream
5112
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  3360
    "read the given abbreviation file; 
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  3361
     install all classes found there as autoloaded, and also update the
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  3362
     abbreviation (className-to-fileName mapping) table.
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  3363
     This takes some time ..."
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3364
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  3365
    |s2 l clsName abbrev package cat cls words w abbrevs oldAbbrev nameKey|
5109
9da015b8ae46 update abbrevs on the fly when installing autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5108
diff changeset
  3366
9da015b8ae46 update abbrevs on the fly when installing autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5108
diff changeset
  3367
    "/ on the fly, update the abbreviations
9da015b8ae46 update abbrevs on the fly when installing autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5108
diff changeset
  3368
    CachedAbbreviations isNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3369
	CachedAbbreviations := IdentityDictionary new.
5109
9da015b8ae46 update abbrevs on the fly when installing autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5108
diff changeset
  3370
    ].
9da015b8ae46 update abbrevs on the fly when installing autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5108
diff changeset
  3371
    abbrevs := CachedAbbreviations.
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3372
5112
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  3373
    KnownPackages isNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3374
	KnownPackages := Set new.
5112
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  3375
    ].
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  3376
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3377
    "/ yes, create any required nameSpace, without asking user.
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3378
    Class createNameSpaceQuerySignal answer:true do:[
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3379
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3380
	[anAbbrevFileStream atEnd] whileFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3381
	    l := anAbbrevFileStream nextLine withoutSeparators.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3382
	    l notEmpty ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3383
		"/ must do it manually, caring for quoted strings.
4685
d145298696b7 more package loading support
Claus Gittinger <cg@exept.de>
parents: 4642
diff changeset
  3384
"/                words := line asCollectionOfWords.
d145298696b7 more package loading support
Claus Gittinger <cg@exept.de>
parents: 4642
diff changeset
  3385
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3386
		words := OrderedCollection new.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3387
		s2 := l readStream.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3388
		[s2 atEnd] whileFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3389
		    s2 skipSeparators.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3390
		    s2 peek == $' ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3391
			s2 next.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3392
			w := s2 upTo:$'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3393
			s2 skipSeparators.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3394
		    ] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3395
			w := s2 upToSeparator
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3396
		    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3397
		    words add:w
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3398
		].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3399
		words size < 3 ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3400
		    'Smalltalk [warning]: bad abbrev entry' errorPrint.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3401
		    anAbbrevFileStream isFileStream ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3402
			' (in ''' errorPrint. 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3403
			anAbbrevFileStream pathName errorPrint.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3404
			''')' errorPrint
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3405
		    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3406
		    ': ' errorPrint. l errorPrintCR
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3407
		] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3408
		    clsName := (words at:1) asSymbol.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3409
		    abbrev := (words at:2).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3410
		    package := (words at:3) asSymbol.
5117
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3411
"/                KnownPackages add:package.
5112
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  3412
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3413
		    cat := words at:4 ifAbsent:nil.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3414
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3415
		    (cat size == 0) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3416
			cat := 'autoloaded'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3417
		    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3418
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3419
		    "/ on the fly, update the abbreviations
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3420
		    clsName ~= abbrev ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3421
			nameKey := clsName asSymbol.    
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3422
			oldAbbrev := abbrevs at:nameKey ifAbsent:nil.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3423
			(oldAbbrev notNil and:[oldAbbrev ~= abbrev]) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3424
			    StandAlone ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3425
				('Smalltalk [warning]: conflict for: ' , clsName , ' in ' , (anAbbrevFileStream pathName)) infoPrintCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3426
				('Smalltalk [warning]: (' , oldAbbrev , ' <-> ' , abbrev , ')') infoPrintCR
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3427
			    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3428
			    abbrevs at:nameKey put:abbrev.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3429
			] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3430
			    cls := self classNamed:abbrev.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3431
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3432
			    cls notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3433
				cls name ~= clsName ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3434
				    "/ ok, there is a class named after this abbrev ...
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3435
				    "/ this is only a conflict, if the other class has no
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3436
				    "/ abbreviation (or the same).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3437
				    (abbrevs at:(cls name asSymbol) ifAbsent:cls name) = abbrev ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3438
					cls isNameSpace ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3439
					    package = cls package ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3440
						StandAlone ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3441
						    ('Smalltalk [warning]: conflict for: ' , cls name , ' in ' , (anAbbrevFileStream pathName)) infoPrintCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3442
						    ('Smalltalk [warning]: (' , clsName , ' -> ' , abbrev , ')') infoPrintCR
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3443
						]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3444
					    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3445
					]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3446
				    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3447
				]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3448
			    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3449
			    abbrevs at:clsName asSymbol put:abbrev.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3450
			]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3451
		    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3452
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3453
		    "/ '  autoloaded: ' print. clsName print. ' in ' print. cat printCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3454
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3455
		    self installAutoloadedClassNamed:clsName category:cat package:package revision:nil.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3456
		]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3457
	    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3458
	]
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3459
    ]
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3460
!
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3461
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3462
loadBinaries
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3463
    "return true, if binaries should be loaded into the system,
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3464
     false if this should be suppressed. The default is false (for now)."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3465
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3466
    ^ LoadBinaries
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3467
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3468
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3469
loadBinaries:aBoolean
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3470
    "{ Pragma: +optSpace }"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3471
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3472
    "turn on/off loading of binary objects"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3473
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3474
    aBoolean ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3475
	(ObjectFileLoader notNil and:[ObjectFileLoader canLoadObjectFiles]) ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3476
	    LoadBinaries := true.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3477
	    ^ self
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3478
	].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3479
	'Smalltalk [info]: this system does not support binary loading' infoPrintCR.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3480
    ].
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3481
    LoadBinaries := false
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3482
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3483
    "Modified: 10.1.1997 / 15:11:00 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3484
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3485
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3486
logDoits
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3487
    "return true if doits should go into the changes file
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3488
     as well as changes - by default, this is off, since
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3489
     it can blow up the changes file enormously ...
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3490
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3491
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3492
    ^ LogDoits
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3493
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3494
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3495
     LogDoits := false
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3496
     LogDoits := true
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3497
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3498
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3499
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3500
logDoits:aBoolean
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3501
    "{ Pragma: +optSpace }"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3502
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3503
    "turn on/off logging of doits in the changes file.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3504
     By default, this is off, since it can blow up the 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3505
     changes file enormously ...
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3506
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3507
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3508
    LogDoits := aBoolean
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3509
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3510
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3511
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3512
makeBytecodeMethods
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3513
    "{ Pragma: +optSpace }"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3514
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3515
    "walk over all methods and make each a bytecode method
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3516
     iff it does not contain primitive C code.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3517
     Experimental and not yet used."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3518
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3519
    Method allSubInstancesDo:[:aMethod |
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3520
	|newMethod|
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3521
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3522
	aMethod hasPrimitiveCode ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3523
	    newMethod := aMethod asByteCodeMethod.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3524
	    newMethod ~~ aMethod ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3525
		aMethod becomeSameAs:newMethod
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3526
	    ]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3527
	].
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3528
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3529
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3530
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3531
     Smalltalk makeBytecodeMethods
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3532
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3533
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3534
    "Modified: 16.1.1997 / 01:25:58 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3535
    "Created: 17.10.1997 / 13:52:19 / cg"
3062
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3536
!
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3537
5117
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3538
recursiveInstallAutoloadedClassesFrom:aDirectory rememberIn:dirsConsulted maxLevels:maxLevels noAutoload:noAutoloadIn packageTop:packageTopPath
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3539
    "read all abbrev.stc files from and under aDirectory
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3540
     and install autoloaded classes.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3541
     If a file called NOAUTOLOAD is found, no classes there and below are installed as autoloaded
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3542
     (however, the directories are searched for packages)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3543
     If a file called NOPACKAGES is found, no further searching is done in that directory or below."
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3544
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  3545
    |abbrevStream dir noAutoloadHere dirName pkgName|
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3546
5075
c9e585ae97d4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5074
diff changeset
  3547
    maxLevels == 0 ifTrue:[
5077
8360a3057ac5 checkin from browser
ca
parents: 5075
diff changeset
  3548
"/        'Smalltalk [warning]: max directory nesting reached.' infoPrintCR.
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3549
	^ self
5075
c9e585ae97d4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5074
diff changeset
  3550
    ].
5074
7c7c3ebe6492 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5069
diff changeset
  3551
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3552
    dir := aDirectory asFilename.
6188
38ebb7cd179b in addition to a NOAUTOLOAD file (which suppresses),
penk
parents: 6187
diff changeset
  3553
5110
283e7eb8c359 remember where we have been when searching for abbrev.stc-files.
Claus Gittinger <cg@exept.de>
parents: 5109
diff changeset
  3554
    (dirsConsulted includes:dir pathName) ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3555
	^ self
5110
283e7eb8c359 remember where we have been when searching for abbrev.stc-files.
Claus Gittinger <cg@exept.de>
parents: 5109
diff changeset
  3556
    ].
283e7eb8c359 remember where we have been when searching for abbrev.stc-files.
Claus Gittinger <cg@exept.de>
parents: 5109
diff changeset
  3557
    dirsConsulted add:dir pathName.
283e7eb8c359 remember where we have been when searching for abbrev.stc-files.
Claus Gittinger <cg@exept.de>
parents: 5109
diff changeset
  3558
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3559
    (dir construct:'NOPACKAGES') exists ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3560
	^ self.
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3561
    ].
6188
38ebb7cd179b in addition to a NOAUTOLOAD file (which suppresses),
penk
parents: 6187
diff changeset
  3562
    noAutoloadHere := noAutoloadIn.
38ebb7cd179b in addition to a NOAUTOLOAD file (which suppresses),
penk
parents: 6187
diff changeset
  3563
    noAutoloadHere ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3564
	(dir construct:'NOAUTOLOAD') exists ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3565
	    noAutoloadHere := true.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3566
	].
6188
38ebb7cd179b in addition to a NOAUTOLOAD file (which suppresses),
penk
parents: 6187
diff changeset
  3567
    ] ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3568
	(dir construct:'AUTOLOAD') exists ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3569
	    noAutoloadHere := false.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3570
	].
5108
15f99321b0dc allow for package dirs to be skipped
ca
parents: 5096
diff changeset
  3571
    ].
5117
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3572
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3573
    ((dir construct:'loadAll') exists
6188
38ebb7cd179b in addition to a NOAUTOLOAD file (which suppresses),
penk
parents: 6187
diff changeset
  3574
    or:[(dir construct:'abbrev.stc') exists
38ebb7cd179b in addition to a NOAUTOLOAD file (which suppresses),
penk
parents: 6187
diff changeset
  3575
    or:[(dir construct:(dir baseName , '.prj')) exists]]) ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3576
	KnownPackages isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3577
	    KnownPackages := Set new.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3578
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3579
	dirName := dir pathName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3580
	pkgName := dirName copyFrom:(packageTopPath asFilename pathName) size + 1 + 1.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3581
	KnownPackages add:pkgName
5117
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3582
    ].
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3583
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3584
    "/
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3585
    "/ suppress installation as autoloaded in this and everything
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3586
    "/ below; however, still traverse the directories to find packages ...
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3587
    "/
6188
38ebb7cd179b in addition to a NOAUTOLOAD file (which suppresses),
penk
parents: 6187
diff changeset
  3588
    noAutoloadHere ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3589
	abbrevStream := (dir construct:'abbrev.stc') asFilename readStream.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3590
	abbrevStream notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3591
	    "/ abbrevStream pathName printCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3592
	    self installAutoloadedClassesFromStream:abbrevStream.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3593
	    abbrevStream close.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3594
	].
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3595
    ].
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3596
5831
54ab1abf7e0b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5811
diff changeset
  3597
    (dir directoryContents ? #()) do:[:aFilename |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3598
	|f|
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3599
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3600
	(#(
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3601
	    'doc'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3602
	    'CVS'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3603
	    'bitmaps'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3604
	    'resources'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3605
	    'source'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3606
	) includes:aFilename) ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3607
	    ((dir baseName ~= 'stx')
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3608
	    or:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3609
		(#(
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3610
		    'configurations'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3611
		    'include'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3612
		    'rules'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3613
		    'stc'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3614
		    'support'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3615
		) includes:aFilename) not]) 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3616
	    ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3617
		f := dir construct:aFilename.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3618
		f isDirectory ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3619
		     self 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3620
			recursiveInstallAutoloadedClassesFrom:f 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3621
			rememberIn:dirsConsulted    
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3622
			maxLevels:maxLevels-1
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3623
			noAutoload:noAutoloadHere
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3624
			packageTop:packageTopPath.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3625
		]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3626
	    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3627
	].
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3628
    ].
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3629
5117
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3630
    "
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3631
     Smalltalk installAutoloadedClasses
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3632
    "
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3633
!
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3634
6033
be1b7877b425 + #replaceReferencesTo:with:
Claus Gittinger <cg@exept.de>
parents: 6031
diff changeset
  3635
replaceReferencesTo:anObject with:newRef
be1b7877b425 + #replaceReferencesTo:with:
Claus Gittinger <cg@exept.de>
parents: 6031
diff changeset
  3636
    |toAdd|
be1b7877b425 + #replaceReferencesTo:with:
Claus Gittinger <cg@exept.de>
parents: 6031
diff changeset
  3637
be1b7877b425 + #replaceReferencesTo:with:
Claus Gittinger <cg@exept.de>
parents: 6031
diff changeset
  3638
    toAdd := OrderedCollection new.
be1b7877b425 + #replaceReferencesTo:with:
Claus Gittinger <cg@exept.de>
parents: 6031
diff changeset
  3639
    self keysAndValuesDo:[:key :val |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3640
	(key == anObject) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3641
	    self halt:'not implemented'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3642
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3643
	(val == anObject ) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3644
	    toAdd add:(key -> newRef)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3645
	].
6033
be1b7877b425 + #replaceReferencesTo:with:
Claus Gittinger <cg@exept.de>
parents: 6031
diff changeset
  3646
    ].
be1b7877b425 + #replaceReferencesTo:with:
Claus Gittinger <cg@exept.de>
parents: 6031
diff changeset
  3647
    toAdd do:[:each |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3648
	self at:(each key) put:(each value)
6033
be1b7877b425 + #replaceReferencesTo:with:
Claus Gittinger <cg@exept.de>
parents: 6031
diff changeset
  3649
    ].
be1b7877b425 + #replaceReferencesTo:with:
Claus Gittinger <cg@exept.de>
parents: 6031
diff changeset
  3650
!
be1b7877b425 + #replaceReferencesTo:with:
Claus Gittinger <cg@exept.de>
parents: 6031
diff changeset
  3651
3062
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3652
saveEmergencyImage:aBoolean
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3653
    "set/clear the flag which controls if ST/X should save an
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3654
     emergency image in case of a broken display connection.
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3655
     The default is true.
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3656
     This may be useful, if you work with an unsecure display
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3657
     (serial line), and want to have a chance of proceeding after
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3658
     a crash. In multiheaded applications, this only affects 
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3659
     crashes of the master Display connection (the initial connection);
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3660
     errors on other displays are reported to the views and treated
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3661
     like window destroy from the windowManager."
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3662
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3663
    SaveEmergencyImage := aBoolean
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3664
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3665
    "Modified: / 24.10.1997 / 18:22:26 / cg"
3083
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
  3666
!
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
  3667
3626
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3668
systemOrganization
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3669
    "for partial ST80 compatibility;
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3670
     In ST80, Smalltalk organization returns a systemOrganizer, which
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3671
     keeps track of class-categories, while all classes return a classOrganizer
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3672
     from #organization, which keeps track of method categories of that class.
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3673
     Since in ST/X, Smallalk is a class, there is now a conflict.
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3674
     To make a workaround possible, use #systemOrganization when porting
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3675
     VW apps to ST/X to get the class-categories.
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3676
     Read the documentation in SystemOrganizer for more info."
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3677
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3678
    ^ SystemOrganizer for:nil
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3679
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3680
    "Created: / 20.6.1998 / 12:24:02 / cg"
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3681
    "Modified: / 20.6.1998 / 12:41:34 / cg"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3682
! !
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3683
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3684
!Smalltalk class methodsFor:'system management-fileIn'!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3685
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3686
fileIn:aFileName
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3687
    "read in the named file - look for it in some standard places;
4712
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  3688
     return true if ok, false if failed.
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  3689
     This method can load almost anything which makes sense:
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3690
	.st    - source files
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3691
	.cls   - binary smalltalk bytecode files
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3692
	.so    - binary compiled machine code class libraries
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3693
	[.class - java bytecode -- soon to come]"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3694
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3695
    ^ self fileIn:aFileName lazy:nil silent:nil logged:false 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3696
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3697
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3698
     Smalltalk fileIn:'source/TicTacToe.st'
4712
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  3699
     Smalltalk fileIn:'binary/TicTacToe.cls'
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  3700
     Smalltalk fileIn:'binary/TicTacToe.so'
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3701
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3702
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3703
    "Created: 28.10.1995 / 17:06:28 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3704
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3705
5687
6245a55e90d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5657
diff changeset
  3706
fileIn:aFileName inPackage:aPackageID
6245a55e90d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5657
diff changeset
  3707
    "read in the named file in a packages directory."
6245a55e90d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5657
diff changeset
  3708
6245a55e90d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5657
diff changeset
  3709
    |dir|
6245a55e90d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5657
diff changeset
  3710
6245a55e90d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5657
diff changeset
  3711
    dir := self getPackageDirectoryForPackage:aPackageID.
6096
64e9b08f4bc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6094
diff changeset
  3712
    dir isNil ifTrue:[^ false].
64e9b08f4bc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6094
diff changeset
  3713
64e9b08f4bc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6094
diff changeset
  3714
    dir := dir asFilename.
64e9b08f4bc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6094
diff changeset
  3715
    ^ (self fileIn:(dir construct:aFileName))
64e9b08f4bc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6094
diff changeset
  3716
      or:[ self fileIn:((dir construct:'source') construct:aFileName) ]
5687
6245a55e90d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5657
diff changeset
  3717
!
6245a55e90d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5657
diff changeset
  3718
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3719
fileIn:aFileName lazy:lazy
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3720
    "read in the named file - look for it in some standard places;
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3721
     return true if ok, false if failed.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3722
     If lazy is true, no code is generated for methods, instead stubs
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3723
     are created which compile themself when first executed. This allows
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3724
     for much faster fileIn (but slows down the first execution later).
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3725
     Since no syntax checks are done when doing lazy fileIn, use this only for
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3726
     code which is known to be syntactically correct."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3727
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3728
    ^ self fileIn:aFileName lazy:lazy silent:nil logged:false 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3729
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3730
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3731
     Smalltalk fileIn:'source/TicTacToe.st' lazy:true
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3732
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3733
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3734
    "Created: 28.10.1995 / 17:06:36 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3735
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3736
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3737
fileIn:aFileName lazy:lazy silent:silent
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3738
    "read in the named file - look for it in some standard places;
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3739
     return true if ok, false if failed.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3740
     If lazy is true, no code is generated for methods, instead stubs
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3741
     are created which compile themself when first executed. This allows
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3742
     for much faster fileIn (but slows down the first execution later).
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3743
     Since no syntax checks are done when doing lazy fileIn, use this only for
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3744
     code which is known to be syntactically correct.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3745
     If silent is true, no compiler messages are output to the transcript.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3746
     Giving nil for silent/lazy will use the current settings."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3747
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3748
    ^ self fileIn:aFileName lazy:lazy silent:silent logged:false
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3749
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3750
    "Created: 28.10.1995 / 17:06:41 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3751
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3752
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3753
fileIn:aFileNameOrString lazy:lazy silent:silent logged:logged
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3754
    "read in the named file - look for it in some standard places;
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3755
     return true if ok, false if failed.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3756
     If lazy is true, no code is generated for methods, instead stubs
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3757
     are created which compile themself when first executed. This allows
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3758
     for much faster fileIn (but slows down the first execution later).
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3759
     Since no syntax checks are done when doing lazy fileIn, use this only for
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3760
     code which is known to be syntactically correct.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3761
     If silent is true, no compiler messages are output to the transcript.
4712
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  3762
     Giving nil for silent/lazy will use the current settings.
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  3763
     This method can load almost anything which makes sense:
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3764
	.st    - source files
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3765
	.cls   - binary smalltalk bytecode files
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3766
	.so    - binary compiled machine code class libraries
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3767
	[.class - java bytecode -- soon to come]"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3768
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3769
    |fileNameString aStream path morePath bos|
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3770
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3771
    fileNameString := aFileNameOrString asString.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3772
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3773
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3774
     an object or shared object ?
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3775
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3776
    (ObjectFileLoader notNil
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3777
    and:[ObjectFileLoader hasValidBinaryExtension:fileNameString]) ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3778
	"/ LoadBinaries ifFalse:[^ false].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3779
	path := self getBinaryFileName:fileNameString.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3780
	path isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3781
	    path := self getSystemFileName:fileNameString.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3782
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3783
	path isNil ifTrue:[^ false].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3784
	^ (ObjectFileLoader loadObjectFile:path) notNil
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3785
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3786
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3787
    (fileNameString asFilename hasSuffix:'cls') ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3788
	BinaryObjectStorage notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3789
	    aStream := self systemFileStreamFor:fileNameString.
3952
05c36f8e87b4 fixed fileIn of byteCode (.cls) files
Claus Gittinger <cg@exept.de>
parents: 3915
diff changeset
  3790
"/            path := self getBinaryFileName:fileNameString.
05c36f8e87b4 fixed fileIn of byteCode (.cls) files
Claus Gittinger <cg@exept.de>
parents: 3915
diff changeset
  3791
"/            path isNil ifTrue:[^ false].
05c36f8e87b4 fixed fileIn of byteCode (.cls) files
Claus Gittinger <cg@exept.de>
parents: 3915
diff changeset
  3792
"/            aStream := path asFilename readStream.
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3793
	    aStream notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3794
		aStream binary.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3795
		bos := BinaryObjectStorage onOld:aStream.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3796
		bos next.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3797
		bos close.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3798
		^ true
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3799
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3800
	    ^ false
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3801
	]
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3802
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3803
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3804
    (fileNameString startsWith:'source/') ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3805
	aStream := self sourceFileStreamFor:(fileNameString copyFrom:8)
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3806
    ] ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3807
	(fileNameString startsWith:'fileIn/') ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3808
	    aStream := self fileInFileStreamFor:(fileNameString copyFrom:8)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3809
	] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3810
	    aStream := self systemFileStreamFor:fileNameString.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3811
	    aStream isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3812
		OperatingSystem isUNIXlike ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3813
		    (fileNameString startsWith:'/') ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3814
			aStream := self systemFileStreamFor:('lib/' , fileNameString).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3815
		    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3816
		]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3817
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3818
	    (aStream notNil and:[fileNameString includes:$/]) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3819
		"/ temporarily prepend the files directory
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3820
		"/ to the searchPath.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3821
		"/ This allows fileIn-driver files to refer to local
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3822
		"/ files via a relative path, and drivers to fileIn other
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3823
		"/ drivers ...
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3824
		morePath := aStream pathName asFilename directoryName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3825
	    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3826
	]
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3827
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3828
    aStream isNil ifTrue:[^ false].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3829
    ^ self fileInStream:aStream lazy:lazy silent:silent logged:logged addPath:morePath
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3830
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3831
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3832
     Smalltalk fileIn:'source/TicTacToe.st' lazy:true silent:true
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3833
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3834
3952
05c36f8e87b4 fixed fileIn of byteCode (.cls) files
Claus Gittinger <cg@exept.de>
parents: 3915
diff changeset
  3835
    "Modified: / 16.2.1999 / 10:03:26 / cg"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3836
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3837
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3838
fileIn:aFileName logged:logged
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3839
    "read in the named file - look for it in some standard places;
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3840
     return true if ok, false if failed.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3841
     The argument logged controls, if the changefile is to be updated."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3842
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3843
    ^ self fileIn:aFileName lazy:nil silent:nil logged:logged 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3844
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3845
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3846
     Smalltalk fileIn:'source/TicTacToe.st' logged:false
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3847
    "
457
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  3848
!
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  3849
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3850
fileInChanges
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3851
    "read in the last changes file - bringing the system to the state it
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3852
     had when left the last time.
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3853
     WARNING: this method is rubbish: it should only read things after the
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3854
	      last '**snapshot**' - entry 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3855
	      (instead of the complete changes file)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3856
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3857
    "
400
claus
parents: 396
diff changeset
  3858
     do NOT update the changes file now ...
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3859
    "
2928
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  3860
    self fileIn:ChangeFileName logged:false
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3861
77
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  3862
    "
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  3863
     Smalltalk fileInChanges 
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  3864
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3865
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3866
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3867
fileInClass:aClassName
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3868
    "find a source/object file for aClassName and -if found - load it.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3869
     search is in some standard places trying driver-file (.ld), object-file (.o) and 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3870
     finally source file (.st) in that order.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3871
     The file is first searched for using the class name, then the abbreviated name."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3872
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3873
    ^ self 
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3874
	fileInClass:aClassName 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3875
	package:nil
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3876
	initialize:true 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3877
	lazy:false 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3878
	silent:nil
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3879
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3880
    "Modified: / 9.1.1998 / 14:41:46 / cg"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3881
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3882
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3883
fileInClass:aClassName fromObject:aFileName
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3884
    "read in the named object file and dynamic-link it into the system
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3885
     - look for it in some standard places.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3886
     Only install the named class from this object file.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3887
     Return true if ok, false if failed."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3888
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3889
    |path ok|
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3890
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3891
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3892
     check if the dynamic loader class is in
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3893
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3894
    (LoadBinaries not or:[ObjectFileLoader isNil]) ifTrue:[^ false].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3895
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3896
    (path := self getBinaryFileName:aFileName) isNil ifTrue:[^ false].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3897
    ok := (ObjectFileLoader loadClass:aClassName fromObjectFile:path) notNil.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3898
    ok ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3899
	SilentLoading ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3900
	    Transcript show:'  loaded ' , aClassName , ' from ' ; showCR:aFileName.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3901
	]
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3902
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3903
    ^ ok
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3904
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3905
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3906
     Smalltalk fileInClass:'AbstractPath' fromObject:'../../goodies/Paths/AbstrPath.so' 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3907
     Smalltalk fileInClass:'ClockView' fromObject:'../../libwidg3/libwidg3.so' 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3908
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3909
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3910
    "Modified: 10.9.1996 / 20:43:52 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3911
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3912
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3913
fileInClass:aClassName initialize:doInit
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3914
    "find a source/object file for aClassName and -if found - load it.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3915
     search is in some standard places trying driver-file (.ld), object-file (.o) and 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3916
     finally source file (.st) in that order.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3917
     The file is first searched for using the class name, then the abbreviated name."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3918
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3919
    ^ self 
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3920
	fileInClass:aClassName 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3921
	package:nil
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3922
	initialize:doInit 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3923
	lazy:false 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3924
	silent:nil
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3925
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3926
    "Modified: / 9.1.1998 / 14:42:02 / cg"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3927
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3928
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3929
fileInClass:aClassName initialize:doInit lazy:loadLazy
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3930
    "find a source/object file for aClassName and -if found - load it.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3931
     search is in some standard places trying driver-file (.ld), object-file (.o) and 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3932
     finally source file (.st) in that order.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3933
     The file is first searched for using the class name, then the abbreviated name."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3934
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3935
     ^ self 
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3936
	fileInClass:aClassName 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3937
	package:nil
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3938
	initialize:doInit 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3939
	lazy:loadLazy 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3940
	silent:nil
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3941
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3942
    "Modified: / 9.1.1998 / 14:42:19 / cg"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3943
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3944
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3945
fileInClass:aClassName initialize:doInit lazy:loadLazy silent:beSilent 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3946
    "find a source/object file for aClassName and -if found - load it.
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3947
     Search is in some standard places, trying driver-file (.ld), object-file (.so / .o) and 
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3948
     finally source file (.st), in that order.
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3949
     The file is first searched for using the class name, then the abbreviated name.
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3950
     The argument doInit controlls if the class should be sent a #initialize after the
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3951
     load; loadLazy tells if it should be loaded lazyly. beSilent tells if the compiler
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3952
     should not send notes to the transcript; it can be true, false or nil, where
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3953
     nil uses the value from SilentLoading."
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3954
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3955
    ^ self
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3956
	fileInClass:aClassName 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3957
	package:nil
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3958
	initialize:doInit 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3959
	lazy:loadLazy 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3960
	silent:beSilent
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3961
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3962
    "Modified: / 9.1.1998 / 14:42:28 / cg"
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3963
!
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3964
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3965
fileInClass:aClassName package:package initialize:doInit lazy:loadLazy silent:beSilent 
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  3966
    "find a source/object file for aClassName and -if found - load it.
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3967
     This is the workhorse for autoloading.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3968
     Search is in some standard places, trying driver-file (.ld), object-file (.so / .o) and 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3969
     finally source file (.st), in that order.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3970
     The file is first searched for using the class name, then the abbreviated name.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3971
     The argument doInit controlls if the class should be sent a #initialize after the
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3972
     load; loadLazy tells if it should be loaded lazyly. beSilent tells if the compiler
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3973
     should not send notes to the transcript; it can be true, false or nil, where
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3974
     nil uses the value from SilentLoading."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3975
4277
74196836e8df oops - care for module-prefix when filing in
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  3976
    |shortName longName libName newClass ok wasLazy wasSilent sharedLibExtension inStream mgr fn
6421
58dca33cf0fc #valueNowOrOnUnwindDo: -> #ensure:
Claus Gittinger <cg@exept.de>
parents: 6403
diff changeset
  3977
     packageDir packageFile bos|
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3978
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3979
    wasLazy := Compiler compileLazy:loadLazy.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3980
    beSilent notNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3981
	wasSilent := self silentLoading:beSilent.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3982
    ].
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3983
4026
96712578b0da care for namespace/prefix in className when filing in.
Claus Gittinger <cg@exept.de>
parents: 4006
diff changeset
  3984
    longName := aClassName copyReplaceAll:$: with:$_.
96712578b0da care for namespace/prefix in className when filing in.
Claus Gittinger <cg@exept.de>
parents: 4006
diff changeset
  3985
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3986
    [
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3987
	Class withoutUpdatingChangesDo:
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3988
	[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3989
	    |zarFn zar entry|
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3990
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3991
	    ok := false.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3992
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3993
	    shortName := self fileNameForClass:aClassName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3994
	    package notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3995
		packageDir := package asString.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3996
		packageDir := packageDir copyReplaceAll:$: with:$/.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3997
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3998
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3999
	    Class packageQuerySignal answer:package
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4000
	    do:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4001
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4002
		"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4003
		 first, look for a loader-driver file (in fileIn/xxx.ld)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4004
		"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4005
		(ok := self fileIn:('fileIn/' , shortName , '.ld') lazy:loadLazy silent:beSilent)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4006
		ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4007
		    "
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4008
		     try abbreviated driver-file (in fileIn/xxx.ld)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4009
		    "
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4010
		    shortName ~= aClassName ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4011
			ok := self fileIn:('fileIn/' , longName , '.ld') lazy:loadLazy silent:beSilent
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4012
		    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4013
		    ok ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4014
			"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4015
			 then, if dynamic linking is available, 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4016
			"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4017
			(LoadBinaries and:[ObjectFileLoader notNil]) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4018
			    sharedLibExtension := ObjectFileLoader sharedLibraryExtension.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4019
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4020
			    "
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4021
			     first look for a class packages shared binary in binary/xxx.o
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4022
			    "
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4023
			    libName := self libraryFileNameOfClass:aClassName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4024
			    libName notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4025
				(ok := self fileInClass:aClassName fromObject:(libName, sharedLibExtension))
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4026
				ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4027
				    sharedLibExtension ~= '.o' ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4028
					ok := self fileInClass:aClassName fromObject:(libName, '.o')
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4029
				    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4030
				].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4031
			    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4032
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4033
			    "
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4034
			     then, look for a shared binary in binary/xxx.o
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4035
			    "
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4036
			    ok ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4037
				(ok := self fileInClass:aClassName fromObject:(shortName, sharedLibExtension))
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4038
				ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4039
				    sharedLibExtension ~= '.o' ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4040
					ok := self fileInClass:aClassName fromObject:(shortName, '.o')
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4041
				    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4042
				    ok ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4043
					shortName ~= aClassName ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4044
					    (ok := self fileInClass:aClassName fromObject:(longName, sharedLibExtension))
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4045
					    ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4046
						sharedLibExtension ~= '.o' ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4047
						    ok := self fileInClass:aClassName fromObject:(longName, '.o')
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4048
						]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4049
					    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4050
					].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4051
				    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4052
				].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4053
			    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4054
			].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4055
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4056
			"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4057
			 if that did not work, look for a compiled-bytecode file ...
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4058
			"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4059
			ok ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4060
			    (ok := self fileIn:(shortName , '.cls') lazy:loadLazy silent:beSilent)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4061
			    ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4062
				shortName ~= aClassName ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4063
				    ok := self fileIn:(longName , '.cls') lazy:loadLazy silent:beSilent
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4064
				]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4065
			    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4066
			].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4067
			"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4068
			 if that did not work, and the classes package is known,
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4069
			 look for an st-cls file 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4070
			 in a package subdir of the source-directory ...
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4071
			"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4072
			ok ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4073
			    (packageDir notNil and:[BinaryObjectStorage notNil]) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4074
				packageFile := self getPackageFileName:(packageDir , '/classes/' , shortName , '.cls').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4075
				packageFile isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4076
				    packageFile := (packageDir , '/classes/' , shortName , '.cls').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4077
				].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4078
				(ok := self fileIn:packageFile lazy:loadLazy silent:beSilent)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4079
				ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4080
				    shortName ~= aClassName ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4081
					packageFile := self getPackageFileName:(packageDir , '/classes/' , longName , '.cls').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4082
					packageFile isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4083
					    packageFile := (packageDir , '/classes/' , longName , '.cls').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4084
					].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4085
					ok := self fileIn:packageFile lazy:loadLazy silent:beSilent
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4086
				    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4087
				].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4088
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4089
				zarFn := self getPackageFileName:(packageDir , '/classes.zip').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4090
				zarFn notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4091
				    zar := ZipArchive oldFileNamed:zarFn.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4092
				    zar notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4093
					entry := zar extract:(shortName , '.cls').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4094
					(entry isNil and:[shortName ~= longName]) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4095
					    entry := zar extract:(longName , '.cls').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4096
					].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4097
					entry notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4098
					    bos := BinaryObjectStorage onOld:(entry asByteArray readStream).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4099
					    bos next.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4100
					    bos close.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4101
					    ok := true
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4102
					].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4103
				    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4104
				]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4105
			    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4106
			].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4107
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4108
			"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4109
			 if that did not work, look for an st-source file ...
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4110
			"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4111
			ok ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4112
			    fn := shortName , '.st'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4113
			    (ok := self fileIn:fn lazy:loadLazy silent:beSilent)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4114
			    ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4115
				shortName ~= longName ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4116
				    fn := longName , '.st'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4117
				    ok := self fileIn:fn lazy:loadLazy silent:beSilent
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4118
				].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4119
				ok ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4120
				    "
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4121
				     ... and in the standard source-directory
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4122
				    "
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4123
				    fn := 'source/' , shortName , '.st'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4124
				    (ok := self fileIn:fn lazy:loadLazy silent:beSilent)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4125
				    ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4126
					shortName ~= longName ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4127
					    fn := 'source/' , longName , '.st'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4128
					    ok := self fileIn:fn lazy:loadLazy silent:beSilent
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4129
					]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4130
				    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4131
				]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4132
			    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4133
			    "
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4134
			     if that did not work, and the classes package is known,
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4135
			     look for an st-source file 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4136
			     in a package subdir of the source-directory ...
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4137
			    "
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4138
			    ok ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4139
				packageDir notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4140
				    packageFile := self getPackageFileName:(packageDir , '/source/' , shortName , '.st').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4141
				    packageFile isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4142
					packageFile := (packageDir , '/source/' , shortName , '.st').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4143
				    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4144
				    (ok := self fileIn:packageFile lazy:loadLazy silent:beSilent)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4145
				    ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4146
					shortName ~= aClassName ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4147
					    packageFile := self getPackageFileName:(packageDir , '/source/' , longName , '.st').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4148
					    packageFile isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4149
						packageFile := (packageDir , '/source/' , longName , '.st').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4150
					    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4151
					    ok := self fileIn:packageFile lazy:loadLazy silent:beSilent
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4152
					].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4153
					ok ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4154
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4155
					    packageFile := self getPackageFileName:(packageDir , '/' , shortName , '.st').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4156
					    packageFile isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4157
						packageFile := (packageDir , '/' , shortName , '.st').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4158
					    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4159
					    (ok := self fileIn:packageFile lazy:loadLazy silent:beSilent)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4160
					    ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4161
						shortName ~= aClassName ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4162
						    packageFile := self getPackageFileName:(packageDir , '/' , longName , '.st').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4163
						    packageFile isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4164
							packageFile := (packageDir , '/' , longName , '.st').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4165
						    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4166
						    ok := self fileIn:packageFile lazy:loadLazy silent:beSilent
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4167
						].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4168
						ok ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4169
						    "
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4170
						     ... and in the standard source-directory
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4171
						    "
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4172
						    fn := 'source/' , packageDir , '/' , shortName , '.st'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4173
						    (ok := self fileIn:fn lazy:loadLazy silent:beSilent)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4174
						    ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4175
							shortName ~= aClassName ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4176
							    fn := 'source/' , packageDir , '/' , longName , '.st'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4177
							    ok := self fileIn:fn lazy:loadLazy silent:beSilent
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4178
							]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4179
						    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4180
						]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4181
					    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4182
					].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4183
				    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4184
				]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4185
			    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4186
			    "
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4187
			     if that did not work, and the classes package is known,
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4188
			     look for a zipArchive containing a class entry.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4189
			    "
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4190
			    ok ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4191
				packageDir notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4192
				    zarFn := self getPackageFileName:(packageDir , '/source.zip').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4193
				    zarFn isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4194
					zarFn := packageDir asFilename withSuffix:'zip'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4195
					zarFn := self getSourceFileName:zarFn.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4196
				    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4197
				    zarFn notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4198
					zar := ZipArchive oldFileNamed:zarFn.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4199
					zar notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4200
					    entry := zar extract:(shortName , '.st').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4201
					    (entry isNil and:[shortName ~= longName]) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4202
						entry := zar extract:(longName , '.st').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4203
					    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4204
					    entry notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4205
						ok := self 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4206
							fileInStream:(entry asString readStream)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4207
							lazy:loadLazy 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4208
							silent:beSilent 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4209
							logged:false
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4210
							addPath:nil
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4211
					    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4212
					]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4213
				    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4214
				]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4215
			    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4216
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4217
			    "
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4218
			     if that did not work, 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4219
			     look for a zipArchive containing a class entry.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4220
			    "
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4221
			    ok ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4222
				zarFn := self getSourceFileName:'source.zip'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4223
				zarFn notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4224
				    zar := ZipArchive oldFileNamed:zarFn.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4225
				    zar notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4226
					entry := zar extract:(shortName , '.st').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4227
					(entry isNil and:[shortName ~= longName]) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4228
					    entry := zar extract:(longName , '.st').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4229
					].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4230
					entry notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4231
					    ok := self 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4232
						    fileInStream:(entry asString readStream)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4233
						    lazy:loadLazy 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4234
						    silent:beSilent 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4235
						    logged:false
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4236
						    addPath:nil
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4237
					].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4238
				    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4239
				]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4240
			    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4241
			    ok ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4242
				"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4243
				 new: if there is a sourceCodeManager, ask it for the classes sourceCode
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4244
				"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4245
				(mgr := Smalltalk at:#SourceCodeManager) notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4246
				    inStream := mgr getMostRecentSourceStreamForClassNamed:aClassName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4247
				    inStream notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4248
					fn := nil.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4249
					ok := self fileInStream:inStream lazy:loadLazy silent:beSilent logged:false addPath:nil. 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4250
				    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4251
				].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4252
			    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4253
			].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4254
		    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4255
		]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4256
	    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4257
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4258
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4259
	ok ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4260
	    newClass := self at:(aClassName asSymbol).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4261
	    newClass notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4262
		fn notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4263
		    newClass classFilename isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4264
			newClass setClassFilename:fn
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4265
		    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4266
		].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4267
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4268
		doInit ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4269
		    newClass initialize
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4270
		]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4271
	    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4272
	].
6421
58dca33cf0fc #valueNowOrOnUnwindDo: -> #ensure:
Claus Gittinger <cg@exept.de>
parents: 6403
diff changeset
  4273
    ] ensure:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4274
	Compiler compileLazy:wasLazy. 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4275
	wasSilent notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4276
	    self silentLoading:wasSilent
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4277
	]
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4278
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4279
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4280
    ^ newClass
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4281
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4282
    "Created: / 9.1.1998 / 14:40:32 / cg"
4277
74196836e8df oops - care for module-prefix when filing in
Claus Gittinger <cg@exept.de>
parents: 4150
diff changeset
  4283
    "Modified: / 5.6.1999 / 14:53:01 / cg"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4284
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4285
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4286
fileInClassLibrary:aClassLibraryName
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4287
    "find an object file containing a binary class library in some standard places
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4288
     and load it. This install all of its contained classes.
4712
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4289
     Return true if ok, false if not.
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4290
     Notice: the argument may not have an extension (by purpose);
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4291
	     the sharedLib extension (.dll / .so / .sl) is added here, to
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4292
	     make the caller independent of the underlying operatingSystem."
4712
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4293
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4294
    |path fn|
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4295
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4296
    ObjectFileLoader isNil ifTrue:[^ false].
4712
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4297
6837
505a9c83c1a0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6836
diff changeset
  4298
    fn := aClassLibraryName asFilename withSuffix:(ObjectFileLoader sharedLibrarySuffix).
6836
11fd536a8e02 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6819
diff changeset
  4299
    fn := fn pathName.
4712
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4300
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4301
    path := self getBinaryFileName:fn.
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4302
    path isNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4303
	path := self getSystemFileName:fn.
4712
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4304
    ].
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4305
    path isNil ifTrue:[^ false].
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4306
4714
5da464c01bfd Fix #fileInClassLibrary:
Stefan Vogel <sv@exept.de>
parents: 4712
diff changeset
  4307
    ^ (ObjectFileLoader loadObjectFile:path) notNil
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4308
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4309
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4310
     Smalltalk fileInClassLibrary:'libtable'
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4311
     Smalltalk fileInClassLibrary:'binary/libwidg3'
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4312
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4313
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4314
    "Modified: 8.1.1997 / 17:58:56 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4315
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4316
6025
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4317
fileInClassLibrary:aClassLibraryName inPackage:packageID
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4318
    "find an object file containing a binary class library in some standard places
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4319
     and load it. This install all of its contained classes.
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4320
     Return true if ok, false if not.
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4321
     Notice: the argument may not have an extension (by purpose);
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4322
	     the sharedLib extension (.dll / .so / .sl) is added here, to
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4323
	     make the caller independent of the underlying operatingSystem."
6025
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4324
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4325
    |path fn|
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4326
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4327
    ObjectFileLoader isNil ifTrue:[^ false].
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4328
6837
505a9c83c1a0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6836
diff changeset
  4329
    fn := aClassLibraryName asFilename withSuffix:(ObjectFileLoader sharedLibrarySuffix).
505a9c83c1a0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6836
diff changeset
  4330
    fn := fn pathName.
6025
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4331
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4332
    path := self getPackageDirectoryForPackage:packageID.
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4333
    path isNil ifTrue:[^ false].
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4334
    path := path asFilename construct:fn.
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4335
    path exists ifFalse:[^ false].
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4336
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4337
    ^ (ObjectFileLoader loadObjectFile:path pathName) notNil
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4338
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4339
    "
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4340
     Smalltalk fileInClassLibrary:'libtable'
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4341
     Smalltalk fileInClassLibrary:'binary/libwidg3'
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4342
     Smalltalk fileInClassLibrary:'refactoryBrowser' inPackage:'stx:goodies/refactoryBrowser'
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4343
    "
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4344
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4345
    "Modified: 8.1.1997 / 17:58:56 / cg"
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4346
!
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4347
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  4348
fileInStream:aStream lazy:lazy silent:silent logged:logged addPath:morePath
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4349
    "read sourceCode from aStream;
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4350
     return true if ok, false if failed.
878
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
  4351
     If lazy is true, no code is generated for methods, instead stubs
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4352
     are created which compile themself when first executed. This allows
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4353
     for much faster fileIn (but slows down the first execution later).
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4354
     Since no syntax checks are done when doing lazy fileIn, use this only for
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4355
     code which is known to be syntactically correct.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4356
     If silent is true, no compiler messages are output to the transcript.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4357
     Giving nil for silent/lazy will use the current settings.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4358
     If morePath is nonNil, it is prepended to the systemPath temporarily during the
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4359
     fileIn. This allows for st-expressions to refer to more files (i.e. fileIn more)
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4360
     using a relative path."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4361
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4362
    |wasLazy wasSilent oldSystemPath oldRealPath|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4363
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4364
    aStream isNil ifTrue:[^ false].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4365
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4366
    lazy notNil ifTrue:[wasLazy := Compiler compileLazy:lazy].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4367
    silent notNil ifTrue:[wasSilent := self silentLoading:silent].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4368
    [
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4369
	Class updateChangeFileQuerySignal answer:logged do:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4370
	    Class updateChangeListQuerySignal answer:logged do:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4371
		oldSystemPath := SystemPath copy.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4372
		morePath notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4373
		    SystemPath addFirst:morePath.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4374
		    oldRealPath := RealSystemPath.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4375
		    RealSystemPath := nil.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4376
		].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4377
		aStream fileIn
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4378
	    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4379
	]
6421
58dca33cf0fc #valueNowOrOnUnwindDo: -> #ensure:
Claus Gittinger <cg@exept.de>
parents: 6403
diff changeset
  4380
    ] ensure:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4381
	morePath notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4382
	    SystemPath := oldSystemPath.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4383
	    RealSystemPath := oldRealPath.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4384
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4385
	lazy notNil ifTrue:[Compiler compileLazy:wasLazy]. 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4386
	silent notNil ifTrue:[self silentLoading:wasSilent].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4387
	aStream close
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4388
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4389
    ^ true
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4390
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4391
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4392
     Smalltalk fileInStream:('source/TicTacToe.st' asFilename readStream) lazy:true silent:true
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4393
    "
1896
71760df55ce5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  4394
71760df55ce5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  4395
    "Modified: 5.11.1996 / 20:03:35 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4396
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4397
5881
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4398
isClassLibraryLoaded:name
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4399
    "return true, if a particular class library is already loaded"
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4400
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4401
    ObjectMemory 
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4402
	binaryModuleInfo 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4403
	    do:[:entry | 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4404
		   entry type == #classLibrary ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4405
		       entry libraryName = name ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4406
			  ^ true        "/ already loaded
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4407
		       ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4408
		   ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4409
	       ].
5881
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4410
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4411
    ^ false
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4412
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4413
    "
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4414
     Smalltalk isClassLibraryLoaded:'libbasic'
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4415
     Smalltalk isClassLibraryLoaded:'libwidg3'
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4416
    "
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4417
!
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4418
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4419
loadClassLibraryIfAbsent:name
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4420
    "dynamically load a classLibrary, if not already loaded
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4421
     and the system supports dynamic loading.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4422
     Return true, if the library is loaded, false if not.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4423
     This entry is called without system specific filename
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4424
     extensions - it is portable among different architectures
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4425
     as long as corresponding files (x.so / x.dll / x.sl / x.o) 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4426
     are be present ..."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4427
5881
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4428
    (self isClassLibraryLoaded:name) ifTrue:[ ^ true ].  "/ already loaded
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4429
    ^ self fileInClassLibrary:name
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4430
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4431
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4432
     Smalltalk loadClassLibraryIfAbsent:'libbasic'
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4433
     Smalltalk loadClassLibraryIfAbsent:'libwidg3'
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4434
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4435
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4436
    "Modified: 31.10.1996 / 16:57:24 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4437
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4438
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4439
secureFileIn:aFileName
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4440
    "read in the named file, looking for it at standard places.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4441
     Catch any error during fileIn. Return true if ok, false if failed"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4442
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4443
    |retVal|
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4444
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4445
    retVal := false.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4446
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4447
    (SignalSet with:AbortSignal with:Process terminateSignal)
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4448
	handle:[:ex |
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4449
	    ex return
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4450
	] do:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4451
	    retVal := self fileIn:aFileName
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4452
	].
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4453
    ^ retVal
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4454
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4455
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4456
silentFileIn:aFilename
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4457
    "same as fileIn:, but do not output 'compiled...'-messages on Transcript.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4458
     Main use is during startup."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4459
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4460
    |wasSilent|
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4461
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4462
    wasSilent := self silentLoading:true.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4463
    [
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4464
	self fileIn:aFilename
6421
58dca33cf0fc #valueNowOrOnUnwindDo: -> #ensure:
Claus Gittinger <cg@exept.de>
parents: 6403
diff changeset
  4465
    ] ensure:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4466
	self silentLoading:wasSilent
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4467
    ]
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4468
! !
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4469
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4470
!Smalltalk class methodsFor:'system management-files'!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4471
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4472
bitmapFileStreamFor:aFileName
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4473
    "search aFileName in some standard places;
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4474
     return a readonly fileStream or nil if not found.
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4475
     Searches in subdirectories named 'bitmaps' in the SystemPath.
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4476
     Notice: this does not look in the package-specific bitmaps directories."
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4477
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4478
    |aString|
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4479
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4480
    aString := self getBitmapFileName:aFileName.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4481
    aString notNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4482
	^ aString asFilename readStream
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4483
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4484
    ^ nil
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4485
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4486
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4487
bitmapFromFileNamed:aFileName forClass:aClass
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4488
    "search aFileName in some standard places:
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4489
     first in the redefinable bitmaps path, 
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4490
     then in the classes own package directory if existing.
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4491
     Return an image or nil."
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4492
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4493
    ^ self imageFromFileNamed:aFileName inPackage:(aClass package)
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4494
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4495
    "
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4496
     Smalltalk bitmapFromFileNamed:'SmalltalkX.xbm' forClass:View
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4497
    "
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4498
!
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4499
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4500
bitmapFromFileNamed:aFileName inPackage:aPackage
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4501
    "search aFileName in some standard places:
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4502
     first in the redefinable bitmaps path, 
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4503
     then in the package directory if existing.
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4504
     Return an image or nil."
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4505
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4506
    ^ self imageFromFileNamed:aFileName inPackage:aPackage
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4507
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4508
    "
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4509
     Smalltalk bitmapFromFileNamed:'SmalltalkX.xbm' inPackage:'stx:libview'
5041
2886a5a4d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5040
diff changeset
  4510
     Smalltalk bitmapFromFileNamed:'SmalltalkX.xbm' inPackage:'stx:libtool'
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4511
    "
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4512
!
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4513
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4514
classNameForFile:aFileName
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4515
    "return the className which corresponds to an abbreviated fileName,
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4516
     or nil if no special translation applies. The given filename arg may
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4517
     include a '.st' suffix (but no other)."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4518
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4519
    |fn|
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4520
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4521
    (aFileName asFilename hasSuffix:'st') ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4522
	fn := aFileName copyWithoutLast:3
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4523
    ] ifFalse:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4524
	fn := aFileName
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4525
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4526
    ^ self filenameAbbreviations keyAtEqualValue:fn ifAbsent:[fn].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4527
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4528
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4529
     Smalltalk classNameForFile:'DrawObj'  
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4530
     Smalltalk classNameForFile:'DrawObj.st' 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4531
     Smalltalk classNameForFile:'ArrColl.st' 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4532
     Smalltalk classNameForFile:'ArrColl.chg' 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4533
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4534
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4535
    "Modified: 11.12.1995 / 14:51:10 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4536
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4537
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4538
constructPathFor:aDirectoryName
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4539
    "search for aDirectory in SystemPath; 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4540
     return a collection of pathes which include that directory."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4541
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4542
    ^ self realSystemPath select:[:dirName |
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4543
	|fullPath|
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4544
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4545
	fullPath := dirName asFilename construct:aDirectoryName.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4546
	"/ fullPath exists and:[fullPath isDirectory and:[fullPath isReadable]]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4547
	fullPath isDirectory and:[fullPath isReadable]
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4548
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4549
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4550
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4551
fileInFileStreamFor:aFileName
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4552
    "search aFileName in some standard places;
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4553
     return a readonly fileStream or nil if not found.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4554
     Searches in subdirectories named 'fileIn' in SystemPath"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4555
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4556
    |aString|
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4557
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4558
    aString := self getFileInFileName:aFileName.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4559
    aString notNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4560
	^ aString asFilename readStream
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4561
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4562
    ^ nil
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4563
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4564
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  4565
fileNameForClass:aClassOrClassName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4566
    "return a good filename for aClassOrClassName -
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4567
     using the abbreviation file if there is one"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4568
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  4569
    |fileName abbrev cls fullClassName shortClassName|
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4570
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4571
    aClassOrClassName isBehavior ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4572
	cls := aClassOrClassName theNonMetaclass.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4573
	fullClassName := cls name.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4574
	shortClassName := cls nameWithoutPrefix.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4575
    ] ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4576
	fullClassName := shortClassName := aClassOrClassName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4577
	shortClassName := shortClassName copyFrom:(shortClassName lastIndexOf:$:)+1.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4578
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4579
4748
10a336922e56 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4746
diff changeset
  4580
    fileName := fullClassName asSymbol.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4581
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4582
    "look for abbreviation"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4583
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4584
    abbrev := self filenameAbbreviations at:fileName ifAbsent:[nil].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4585
    abbrev notNil ifTrue:[^ abbrev].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4586
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4587
    "no abbreviation found - if its a short name, take it"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4588
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4589
    OperatingSystem maxFileNameLength < (fileName size + 3) ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4590
	"this will only be triggered on sys5.3/DOS type systems"
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4591
	('Smalltalk [info]: cant find short for ' , fileName , ' in abbreviation file') infoPrintCR.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4592
    ].
4748
10a336922e56 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4746
diff changeset
  4593
10a336922e56 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4746
diff changeset
  4594
    fileName := shortClassName asSymbol.
10a336922e56 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4746
diff changeset
  4595
    ^ fileName asString
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4596
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4597
     Smalltalk fileNameForClass:SmallInteger    
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4598
     Smalltalk fileNameForClass:'SmallInteger'    
3678
606bf9fca8f2 infoPrint.
Claus Gittinger <cg@exept.de>
parents: 3627
diff changeset
  4599
     Smalltalk fileNameForClass:'UnixOperatingSystem' 
4746
062aa9dc0f3d fixed fileName guessing
Claus Gittinger <cg@exept.de>
parents: 4741
diff changeset
  4600
     Smalltalk fileNameForClass:'Launcher'        
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4601
     Smalltalk fileNameForClass:'SomeUnknownClass' 
4746
062aa9dc0f3d fixed fileName guessing
Claus Gittinger <cg@exept.de>
parents: 4741
diff changeset
  4602
     Smalltalk fileNameForClass:OSI::FTAMOperation 
062aa9dc0f3d fixed fileName guessing
Claus Gittinger <cg@exept.de>
parents: 4741
diff changeset
  4603
     Smalltalk fileNameForClass:'OSI::Foobar' 
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4604
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4605
6151
e36a9b339582 isMeta/soleInstance -> theMetaclass / theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 6121
diff changeset
  4606
    "Modified: / 5.11.2001 / 16:49:17 / cg"
457
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  4607
!
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  4608
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  4609
filenameAbbreviations
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  4610
    "return a dictionary containing the classname-to-filename
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4611
     mappings. (needed for sys5.3 users, where filenames are limited
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4612
     to 14 chars)"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4613
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4614
    CachedAbbreviations isNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4615
	self readAbbreviations
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4616
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4617
    ^ CachedAbbreviations
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4618
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4619
    "flush with:
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4620
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4621
     CachedAbbreviations := nil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4622
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4623
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4624
     Smalltalk filenameAbbreviations
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4625
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4626
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4627
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  4628
flushPathCaches
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  4629
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  4630
2378
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4631
    "forget pathCaches - these are collections containing valid directory names,
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4632
     where system files (resource, bitmaps etc.) are found.
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4633
     A flush is only required, if a new system directory has been created while
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4634
     the system is active, and those files should override the others
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4635
     (for example, if you created a private resource directory)"
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4636
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4637
    RealSystemPath := ResourcePath := SourcePath := 
5052
31a76937dec2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5051
diff changeset
  4638
    BitmapPath := BinaryPath := FileInPath := nil
2378
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4639
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4640
    "
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4641
     Smalltalk flushPathCaches
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4642
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4643
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4644
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  4645
getBinaryFileName:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4646
    "search aFileName in some standard places 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4647
     (subdirectories named 'binary' in SystemPath);
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4648
     return the absolute filename or nil if none is found."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4649
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  4650
    BinaryPath isNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4651
	BinaryPath := self constructPathFor:BinaryDirName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4652
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4653
2928
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  4654
    ^ self searchPath:BinaryPath for:aFileName in:BinaryDirName
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  4655
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  4656
    "Modified: 18.7.1996 / 15:53:49 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  4657
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  4658
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  4659
getBitmapFileName:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4660
    "search aFileName in some standard places 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4661
     (subdirectories named 'bitmaps' in SystemPath);
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4662
     return the absolute filename or nil if none is found."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4663
2974
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4664
    |f|
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4665
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4666
    BitmapPath isNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4667
	BitmapPath := self constructPathFor:BitmapDirName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4668
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4669
2974
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4670
    "/ first, try a bitmaps subdir along the path.
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4671
    f := self searchPath:BitmapPath for:aFileName in:BitmapDirName.
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4672
    f isNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4673
	"/ then, try it itself along the path.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4674
	f := self searchPath:self realSystemPath for:aFileName in:nil
2974
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4675
    ].
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4676
    ^ f
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4677
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4678
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4679
     Smalltalk getBitmapFileName:'SBrowser.xbm'
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4680
    "
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  4681
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  4682
    "Modified: 18.7.1996 / 15:53:55 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4683
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4684
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  4685
getFileInFileName:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4686
    "search aFileName in some standard places 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4687
     (subdirectories named 'fileIn' in SystemPath);
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4688
     return the absolute filename or nil if none is found."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4689
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  4690
    FileInPath isNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4691
	FileInPath := self constructPathFor:FileInDirName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4692
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4693
2928
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  4694
    ^ self searchPath:FileInPath for:aFileName in:FileInDirName
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  4695
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  4696
    "Modified: 18.7.1996 / 15:53:59 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4697
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4698
5550
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4699
getPackageDirectoryForPackage:aPackageID
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4700
    "search for a particular package; return its directory, or nil"
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4701
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4702
    |packageDir|
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4703
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4704
    packageDir := aPackageID copyReplaceAll:$: with:$/.
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4705
    self packagePath do:[:aPath |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4706
	|dir|
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4707
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4708
	dir := aPath asFilename construct:packageDir.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4709
	(dir exists and:[dir isDirectory]) ifTrue:[^ dir].
5550
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4710
    ].
5785
872483483444 oops - getPackageDirectoryForPackage now cares for the case
Claus Gittinger <cg@exept.de>
parents: 5781
diff changeset
  4711
872483483444 oops - getPackageDirectoryForPackage now cares for the case
Claus Gittinger <cg@exept.de>
parents: 5781
diff changeset
  4712
    "/ not found - special case for the stx package ...
872483483444 oops - getPackageDirectoryForPackage now cares for the case
Claus Gittinger <cg@exept.de>
parents: 5781
diff changeset
  4713
    (aPackageID upTo:$:) = 'stx' ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4714
	packageDir :=  aPackageID copyFrom:(aPackageID indexOf:$:) + 1.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4715
	packageDir := '../../' ,  packageDir.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4716
	packageDir := packageDir asFilename.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4717
	(packageDir exists and:[packageDir isDirectory]) ifTrue:[^ packageDir].
5785
872483483444 oops - getPackageDirectoryForPackage now cares for the case
Claus Gittinger <cg@exept.de>
parents: 5781
diff changeset
  4718
    ].
5550
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4719
    ^ nil
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4720
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4721
    "
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4722
     Smalltalk getPackageDirectoryForPackage:(Array package)
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4723
     Smalltalk getPackageDirectoryForPackage:'stx:goodies/bitmaps'
5785
872483483444 oops - getPackageDirectoryForPackage now cares for the case
Claus Gittinger <cg@exept.de>
parents: 5781
diff changeset
  4724
     Smalltalk getPackageDirectoryForPackage:'stx:libview'
5550
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4725
    "
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4726
!
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4727
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4728
getPackageFileName:aFileName
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4729
    "search aFileName in some standard places 
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  4730
     (packagePath and subdirectories named 'packages' in SystemPath);
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4731
     return the absolute filename or nil if none is found."
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4732
5052
31a76937dec2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5051
diff changeset
  4733
    |f|
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4734
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  4735
    "/ search along packagePath ...
5052
31a76937dec2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5051
diff changeset
  4736
    f := self searchPath:self packagePath for:aFileName in:nil.
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  4737
    f isNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4738
	"/ search under packages-directory along systemPath ...
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4739
	f := self searchPath:self realSystemPath for:aFileName in:PackageDirName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4740
	"/ kludge - allow for stx-directory to be named differently
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4741
	f isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4742
	    (aFileName startsWith:'stx') ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4743
		(aFileName startsWith:'stx' , Filename separator) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4744
		    f := '../..' asFilename construct:(aFileName copyFrom:5).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4745
		    f exists ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4746
			^ f pathName
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4747
		    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4748
		]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4749
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4750
	].
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  4751
    ].
5878
b89d789e1705 always return a string from #getPackageFileName
Claus Gittinger <cg@exept.de>
parents: 5860
diff changeset
  4752
    (f notNil and:[(f := f asFilename) exists]) ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4753
	^ f pathName
5878
b89d789e1705 always return a string from #getPackageFileName
Claus Gittinger <cg@exept.de>
parents: 5860
diff changeset
  4754
    ].
b89d789e1705 always return a string from #getPackageFileName
Claus Gittinger <cg@exept.de>
parents: 5860
diff changeset
  4755
    ^ nil
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4756
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4757
    "
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  4758
     Smalltalk getPackageFileName:'stx/libview/resources/normal.style'  
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  4759
     Smalltalk getPackageFileName:'stx/libview/source.zip'    
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4760
    "
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4761
!
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4762
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  4763
getResourceFileName:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4764
    "search aFileName in some standard places 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4765
     (subdirectories named 'resource' in SystemPath);
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4766
     return the absolute filename or nil if none is found."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4767
2974
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4768
    |f|
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4769
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4770
    ResourcePath isNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4771
	ResourcePath := self constructPathFor:ResourceDirName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4772
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4773
2974
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4774
    "/ first, try a resource subdir along the path.
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4775
    f := self searchPath:ResourcePath for:aFileName in:ResourceDirName.
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4776
    f isNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4777
	"/ then, try it itself along the path.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4778
	f := self searchPath:self realSystemPath for:aFileName in:nil
2974
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4779
    ].
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4780
    ^ f
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4781
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4782
    "
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4783
     Smalltalk getResourceFileName:'SystemBrowser.rs'
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4784
    "
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  4785
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  4786
    "Modified: 18.7.1996 / 15:54:03 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4787
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4788
5053
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  4789
getResourceFileName:aFileName forClass:aClassOrNil
5043
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  4790
    "search aFileName in some standard places 
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  4791
     (subdirectories named 'resource' in SystemPath);
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  4792
     and in aClasses package directory.
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  4793
     Return the absolute filename or nil if none is found."
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  4794
5065
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4795
    |pkgOrNil|
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4796
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4797
    aClassOrNil notNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4798
	pkgOrNil := aClassOrNil package.
5065
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4799
    ].
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4800
    ^ self getResourceFileName:aFileName forPackage:pkgOrNil.
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4801
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4802
    "
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4803
     Smalltalk getResourceFileName:'SystemBrowser.rs' forClass:SystemBrowser
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4804
    "
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4805
!
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4806
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4807
getResourceFileName:aFileName forPackage:aPackageIDOrNil
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4808
    "search aFileName in some standard places 
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4809
     (subdirectories named 'resource' in SystemPath);
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4810
     and in a packages directory.
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4811
     Return the absolute filename or nil if none is found."
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4812
5080
b600259b45b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5079
diff changeset
  4813
    |f dir packageDir|
5043
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  4814
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  4815
    f := self getResourceFileName:aFileName.
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  4816
    f notNil ifTrue:[^ f].
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  4817
5065
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4818
    aPackageIDOrNil notNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4819
	packageDir := aPackageIDOrNil copyReplaceAll:$: with:$/.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4820
	self packagePath do:[:aPath |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4821
	    |pD|
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4822
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4823
	    pD := aPath asFilename construct:packageDir.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4824
	    pD exists ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4825
		f := pD construct:aFileName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4826
		f exists ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4827
		    ^ f pathName
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4828
		].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4829
		f := (pD construct:'resources') construct:aFileName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4830
		f exists ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4831
		    ^ f pathName
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4832
		].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4833
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4834
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4835
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4836
	dir := Smalltalk getPackageDirectoryForPackage:(aPackageIDOrNil ? 'stx:libview').
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4837
	dir notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4838
	    f := (dir asFilename construct:'resources') construct:aFileName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4839
	    f exists ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4840
		^ f pathName
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4841
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4842
	    f := (dir asFilename construct:'styles') construct:aFileName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4843
	    f exists ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4844
		^ f pathName
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4845
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4846
	].
5043
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  4847
    ].
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  4848
    ^ nil
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  4849
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  4850
    "
5065
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  4851
     Smalltalk getResourceFileName:'SystemBrowser.rs' forPackage:'stx:libtool'
5080
b600259b45b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5079
diff changeset
  4852
     Smalltalk getResourceFileName:'normal.style' forPackage:'stx:libview'
5043
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  4853
    "
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  4854
!
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  4855
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  4856
getSourceFileName:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4857
    "search aFileName in some standard places 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4858
     (subdirectories named 'source' in SystemPath);
736
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  4859
     return the absolute filename or nil if none is found.
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  4860
     This is used to find a sourceFile for a methods source,
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  4861
     if no sourceCodeManager is available."
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4862
2959
ef8cc5a5a19f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2933
diff changeset
  4863
    |f|
ef8cc5a5a19f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2933
diff changeset
  4864
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4865
    SourcePath isNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4866
	SourcePath := self constructPathFor:SourceDirName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4867
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4868
2959
ef8cc5a5a19f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2933
diff changeset
  4869
    "/ first, try a source subdir along the path.
4770
9a6dcf673683 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4761
diff changeset
  4870
    SourcePath notNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4871
	f := self searchPath:SourcePath for:aFileName in:SourceDirName.
4770
9a6dcf673683 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4761
diff changeset
  4872
    ].
2959
ef8cc5a5a19f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2933
diff changeset
  4873
    f isNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4874
	"/ then, try it itself along the path.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4875
	f := self searchPath:self realSystemPath for:aFileName in:nil
2959
ef8cc5a5a19f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2933
diff changeset
  4876
    ].
ef8cc5a5a19f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2933
diff changeset
  4877
    ^ f
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  4878
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  4879
    "
736
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  4880
     Smalltalk getSourceFileName:'Smalltalk.st'  
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  4881
     Smalltalk getSourceFileName:'ArrColl.st' 
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  4882
    "
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  4883
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  4884
    "Modified: 18.7.1996 / 15:54:07 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4885
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4886
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  4887
getSystemFileName:aFileNameOrString
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  4888
    "search aFileNameOrString in some standard places;
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4889
     return the absolute filename or nil if none is found.
4150
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  4890
     see comment in Smalltalk>>initSystemPath.
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  4891
     This should be used to access resources such as bitmaps, doc-files,
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  4892
     and other help files.
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  4893
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4894
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4895
    "credits for this method go to Markus ...."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4896
2933
8b65cb642d91 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2928
diff changeset
  4897
    |fn nameString|
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  4898
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  4899
    fn := aFileNameOrString asFilename.
2933
8b65cb642d91 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2928
diff changeset
  4900
    nameString := fn name.
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  4901
    fn isAbsolute ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4902
	"dont use path for absolute file names"
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4903
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4904
	^ nameString
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  4905
    ].
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  4906
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4907
    self realSystemPath do:[:dirName |
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4908
	|realName|
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4909
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4910
	realName := dirName asFilename construct:nameString.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4911
	"/
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4912
	"/ here, we also return true if its a directory
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4913
	"/ (Even if unreadable). 
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4914
	"/ It could be that the file itself is still readable.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4915
	"/
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4916
	(realName isDirectory or:[realName isReadable]) ifTrue: [
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4917
	    ^ realName name
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  4918
	]
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  4919
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4920
    ^ nil
4150
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  4921
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  4922
    "
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  4923
     Smalltalk getSystemFileName:'doc/online/english/TOP.html'
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  4924
     Smalltalk getSystemFileName:'bitmaps/SBrowser.xbm'
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  4925
     Smalltalk getSystemFileName:'bitmaps/foo'  
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  4926
     Smalltalk getSystemFileName:'resources/View.rs'  
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  4927
     Smalltalk getSystemFileName:'resources/iris.style'  
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  4928
    "
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  4929
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  4930
    "Modified: / 6.5.1999 / 10:40:37 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4931
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4932
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4933
imageFromFileNamed:aFileName forClass:aClass
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4934
    "search aFileName in some standard places:
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4935
     first in the redefinable bitmaps path, then in the classes
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4936
     own package directory if existing.
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4937
     Return an image or nil."
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4938
5113
b3d3be7d95b9 icon search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  4939
    |package nm img|
b3d3be7d95b9 icon search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  4940
b3d3be7d95b9 icon search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  4941
    package := aClass package.
b3d3be7d95b9 icon search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  4942
    img := self imageFromFileNamed:aFileName inPackage:package.
b3d3be7d95b9 icon search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  4943
    img isNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4944
	package ~= 'stx:goodies' ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4945
	    "/ try under the goodies package ...
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4946
	    img := Smalltalk imageFromFileNamed:aFileName inPackage:'stx:goodies'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4947
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4948
	img isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4949
	    (aFileName startsWith:'bitmaps') ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4950
		nm := 'bitmaps/' , aFileName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4951
		img := Smalltalk imageFromFileNamed:nm forClass:self.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4952
		img isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4953
		    img := Smalltalk imageFromFileNamed:nm inPackage:'stx:goodies'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4954
		]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4955
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4956
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4957
	    img isNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4958
		img := Smalltalk imageFromFileNamed:aFileName inPackage:'stx:goodies'.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4959
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4960
	]
5113
b3d3be7d95b9 icon search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  4961
    ].
b3d3be7d95b9 icon search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  4962
    ^ img
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4963
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4964
    "
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4965
     Smalltalk imageFromFileNamed:'SmalltalkX.xbm' forClass:View
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4966
    "
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4967
!
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4968
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4969
imageFromFileNamed:aFileName inPackage:aPackage
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4970
    "search aFileName in some standard places:
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4971
     first in the redefinable bitmaps path, then in the 
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4972
     package directory if existing.
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4973
     Return an image or nil."
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4974
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4975
    |i f dir|
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4976
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4977
    i := Image fromFile:aFileName resolution:100.
5860
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  4978
    i notNil ifTrue:[^ i].
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  4979
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  4980
    f := self getBitmapFileName:aFileName.
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  4981
    f notNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4982
	i := Image fromFile:f.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4983
	i notNil ifTrue:[^ i].
5860
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  4984
    ].
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  4985
    dir := self projectDirectoryForPackage:aPackage.
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  4986
    dir isNil ifTrue:[^ nil].
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  4987
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  4988
    ((f := aFileName) startsWith:'bitmaps/') ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4989
	i := Image fromFile:(dir asFilename construct:f).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4990
	i notNil ifTrue:[^ i].
5860
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  4991
    
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  4992
	f := 'bitmaps/' , aFileName.
5860
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  4993
    ].
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  4994
    ^ Image fromFile:(dir asFilename construct:f).
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4995
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4996
    "
5587
4c4d67ad0e51 avoid obsoleteMessage warning (Filename ,)
Claus Gittinger <cg@exept.de>
parents: 5580
diff changeset
  4997
     Smalltalk imageFromFileNamed:'SmalltalkX.xbm' inPackage:'stx:libview' 
4c4d67ad0e51 avoid obsoleteMessage warning (Filename ,)
Claus Gittinger <cg@exept.de>
parents: 5580
diff changeset
  4998
     Smalltalk imageFromFileNamed:'SmalltalkX.xbm' inPackage:'stx:libtool' 
4c4d67ad0e51 avoid obsoleteMessage warning (Filename ,)
Claus Gittinger <cg@exept.de>
parents: 5580
diff changeset
  4999
     Smalltalk imageFromFileNamed:'bitmaps/gifImages/garfield.gif' inPackage:'stx:goodies' 
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5000
    "
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5001
!
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5002
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5003
libraryFileNameOfClass:aClassOrClassName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5004
    "for a given class, return the name of a classLibrary which contains
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5005
     binary code for it.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5006
     Read the libinfo file 'liblist.stc' (which is created during the compilation process)
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5007
     for an entry for aClassOrClassName.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5008
     Search for the className in the first col, and return the value found in
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5009
     the 2nd col.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5010
     Return nil if no entry is found.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5011
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5012
     A nil returns means that this class is either built-in or not present
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5013
     in a package-class library (i.e. either as separate .o or separate .st file).
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5014
     Otherwise, the returned name is the classLibrary object of that class.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5015
     The classes code can be loaded from that file if binary loading is supported."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5016
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5017
    |aStream line words n aClassName|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5018
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5019
    aClassOrClassName isBehavior ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5020
	aClassName := aClassOrClassName name
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5021
    ] ifFalse:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5022
	aClassName := aClassOrClassName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5023
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5024
    aClassName := aClassName asString.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5025
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5026
    #('include/liblist.stc')    "/ filenames
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5027
    with:#(2)                   "/ column
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5028
    do:[:fileName :col |
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5029
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5030
	aStream := self systemFileStreamFor:fileName.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5031
	aStream notNil ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5032
	    [aStream atEnd] whileFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5033
		line := aStream nextLine.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5034
		line notNil ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5035
		    (line startsWith:'#') ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5036
			words := line asCollectionOfWords.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5037
			(n := words size) > 1 ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5038
			    (words at:1) = aClassName ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5039
				n >= col ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5040
				    aStream close.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5041
				    ^ (words at:col) withoutSeparators
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5042
				]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5043
			    ]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5044
			]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5045
		    ]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5046
		]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5047
	    ].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5048
	    aStream close
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5049
	].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5050
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5051
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5052
    ^ nil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5053
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5054
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5055
     Smalltalk libraryFileNameOfClass:'ClockView' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5056
     Smalltalk libraryFileNameOfClass:'Bag' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5057
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5058
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5059
    "Modified: 6.11.1995 / 15:41:39 / cg"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5060
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5061
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5062
packagePath
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5063
    "return a collection of additional directorynames, where smalltalk
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5064
     looks for package directories.
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5065
     Notice, that directories named 'packages' under the systemPath are
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5066
     always consulted - even if not in the packagePath"
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5067
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5068
    ^ PackagePath
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5069
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5070
    "
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5071
     Smalltalk packagePath
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5072
     Smalltalk packagePath addLast:'/opt/smalltalk'
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5073
     Smalltalk packagePath addFirst:'/usr/local/otherPackages'
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5074
    "
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5075
!
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5076
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5077
packagePath:aPath
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5078
    "set the packagePath;
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5079
     a collection of additional directorynames, where smalltalk
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5080
     looks for package directories.
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5081
     Notice, that directories named 'packages' under the systemPath are
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5082
     always consulted - even if not in the packagePath"
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5083
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5084
    PackagePath := aPath asOrderedCollection
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5085
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5086
    "
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5087
     Smalltalk packagePath:#( '.' '/opt/smalltalk' '/usr/local/otherPackages')
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5088
    "
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5089
!
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5090
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5091
projectDirectoryForClass:aClass
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5092
    "given a class, return the path to its package directory;
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5093
     nil if not found."
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5094
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5095
    |pkg|
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5096
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5097
    pkg := aClass package.
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5098
    pkg isNil ifTrue:[^ nil].
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5099
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5100
    ^ self projectDirectoryForPackage:pkg.
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5101
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5102
    "
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5103
     Smalltalk projectDirectoryForClass:Array 
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5104
     Smalltalk projectDirectoryForClass:View
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5105
    "
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5106
!
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5107
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5108
projectDirectoryForPackage:aPackage
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5109
    "given a packageID, return the path to its package directory;
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5110
     nil if not found."
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5111
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  5112
    |prj prjDir|
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5113
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5114
    "/ there might be a package specific resource directory ...
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5115
    "/ in the directory, from which the project was loaded
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5116
    prj := Project projectWithId:aPackage.
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5117
    prj notNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5118
	prjDir := prj directory.
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5119
    ].
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5120
    (prjDir notNil and:[prjDir asFilename exists]) ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5121
	prjDir := Smalltalk getPackageFileName:(aPackage copyReplaceAll:$: with:$/).
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5122
    ].
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5123
    ^ prjDir
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5124
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5125
    "
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5126
     Smalltalk projectDirectoryForPackage:'stx:libbasic'   
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5127
     Smalltalk projectDirectoryForPackage:'exept:smartcard'
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5128
    "
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5129
!
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5130
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5131
readAbbreviations
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5132
    "read classname to filename mappings from include/abbrev.stc.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5133
     sigh - all for those poor sys5.3 or MSDOS people with short filenames ..."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5134
5067
335c866e150c walk packagePath when reading abbrevs & autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5065
diff changeset
  5135
    |aStream f dirsConsulted|
4420
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5136
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5137
    CachedAbbreviations := IdentityDictionary new.
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5138
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5139
    "/ new scheme: look for a directory called 'packages'
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5140
    "/ and enumerate its abbrev.stc files...
5067
335c866e150c walk packagePath when reading abbrevs & autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5065
diff changeset
  5141
    dirsConsulted := Set new.
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5142
    f := Smalltalk getSystemFileName:'packages'.
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5143
    f notNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5144
	f := f asFilename.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5145
	f isDirectory ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5146
	    ('Smalltalk [info]: reading all class abbreviations found under ''' , f pathName ,'''') infoPrintCR.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5147
	    self recursiveReadAllAbbreviationsFrom:f.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5148
	    dirsConsulted add:f pathName.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5149
	].
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5150
    ].
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5151
5067
335c866e150c walk packagePath when reading abbrevs & autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5065
diff changeset
  5152
    "/ and along the package-path
335c866e150c walk packagePath when reading abbrevs & autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5065
diff changeset
  5153
    self packagePath do:[:aPath |
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5154
	(dirsConsulted includes:aPath) ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5155
	    ('Smalltalk [info]: reading all class abbreviations found under ''' , aPath ,'''') infoPrintCR.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5156
	    self recursiveReadAllAbbreviationsFrom:aPath.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5157
	    dirsConsulted add:aPath
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5158
	]
5067
335c866e150c walk packagePath when reading abbrevs & autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5065
diff changeset
  5159
    ].
335c866e150c walk packagePath when reading abbrevs & autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5065
diff changeset
  5160
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5161
    "/ old scheme: look for a single file called 'abbrev.stc' in the
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5162
    "/ include directory. This will vanish.
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5163
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5164
    aStream := self systemFileStreamFor:'include/abbrev.stc'.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5165
    aStream notNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5166
	('Smalltalk [info]: reading additional abbreviations from ''' , aStream pathName ,'''') infoPrintCR.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5167
	self readAbbreviationsFromStream:aStream.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5168
	aStream close.
5262
8db0fd70802f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5261
diff changeset
  5169
"/    ] ifFalse:[
8db0fd70802f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5261
diff changeset
  5170
"/        ('Smalltalk [warning]: no global''include/abbrev.stc'' file found') infoPrintCR
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5171
    ].
4420
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5172
    ^ CachedAbbreviations
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5173
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5174
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5175
     Smalltalk readAbbreviations
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5176
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5177
5091
a145df1cd0e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  5178
    "Modified: / 10.12.1999 / 17:48:53 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5179
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5180
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5181
readAbbreviationsFromStream:aStream
4420
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5182
    "read classname to filename mappings from aStream.
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5183
     sigh - all for those poor sys5.3 or MSDOS people with short filenames ..."
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5184
5095
9bbf3cf594e5 no warning for same-abbrev, if packages differ.
Claus Gittinger <cg@exept.de>
parents: 5093
diff changeset
  5185
    |abbrevs line words nm abbrev pkg key oldAbbrev cls s w|
4420
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5186
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5187
    abbrevs := CachedAbbreviations.
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5188
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5189
    [aStream atEnd] whileFalse:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5190
	line := aStream nextLine.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5191
	line notNil ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5192
	    (line startsWith:'#') ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5193
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5194
		"/ must do it manually, caring for quoted strings.
4685
d145298696b7 more package loading support
Claus Gittinger <cg@exept.de>
parents: 4642
diff changeset
  5195
"/                words := line asCollectionOfWords.
d145298696b7 more package loading support
Claus Gittinger <cg@exept.de>
parents: 4642
diff changeset
  5196
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5197
		words := OrderedCollection new.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5198
		s := line readStream.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5199
		[s atEnd] whileFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5200
		    s skipSeparators.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5201
		    s peek == $' ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5202
			s next.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5203
			w := s upTo:$'.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5204
			s skipSeparators.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5205
		    ] ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5206
			w := s upToSeparator
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5207
		    ].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5208
		    words add:w
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5209
		].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5210
		words size >= 3 ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5211
		    nm := (words at:1) withoutSeparators.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5212
		    abbrev := (words at:2) withoutSeparators.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5213
		    pkg := (words at:3) withoutSeparators.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5214
		    nm ~= abbrev ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5215
			key := nm asSymbol.    
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5216
			oldAbbrev := abbrevs at:key ifAbsent:nil.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5217
			oldAbbrev notNil ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5218
			    oldAbbrev ~= abbrev ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5219
				StandAlone ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5220
				    ('Smalltalk [warning]: conflict for: ' , nm , ' in ' , (aStream pathName)) infoPrintCR.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5221
				    ('Smalltalk [warning]: (' , oldAbbrev , ' <-> ' , abbrev , ')') infoPrintCR
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5222
				]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5223
			    ].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5224
			] ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5225
			    cls := self classNamed:abbrev.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5226
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5227
			    cls notNil ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5228
				cls name ~= nm ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5229
				    "/ ok, there is a class named after this abbrev ...
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5230
				    "/ this is only a conflict, if the other class has no
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5231
				    "/ abbreviation (or the same).
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5232
				    (abbrevs at:(cls name asSymbol) ifAbsent:cls name) = abbrev ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5233
					cls isNameSpace ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5234
					    pkg = cls package ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5235
						StandAlone ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5236
						    ('Smalltalk [warning]: conflict for: ' , cls name , ' in ' , (aStream pathName)) infoPrintCR.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5237
						    ('Smalltalk [warning]: (' , nm , ' -> ' , abbrev , ')') infoPrintCR
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5238
						]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5239
					    ]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5240
					]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5241
				    ]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5242
				]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5243
			    ].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5244
			    abbrevs at:nm asSymbol put:abbrev.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5245
			]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5246
		    ]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5247
		] ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5248
		    ('Smalltalk [warning]: malformed line in ' , (aStream pathName)) infoPrintCR.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5249
		]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5250
	    ]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5251
	]
4420
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5252
    ].
5091
a145df1cd0e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  5253
5095
9bbf3cf594e5 no warning for same-abbrev, if packages differ.
Claus Gittinger <cg@exept.de>
parents: 5093
diff changeset
  5254
    "Modified: / 13.12.1999 / 11:54:17 / cg"
4420
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5255
!
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5256
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5257
realSystemPath
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5258
    "return the realSystemPath - thats the directorynames from
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5259
     SystemPath which exist and are readable"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5260
5044
dc829a004785 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5043
diff changeset
  5261
    |nP|
dc829a004785 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5043
diff changeset
  5262
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5263
    RealSystemPath isNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5264
	OperatingSystem isVMSlike ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5265
	    "/ temporary kludge: since we cannot currently
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5266
	    "/ check for existance of a name like 'volume:',
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5267
	    "/ leave those in the Path without a check.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5268
	    RealSystemPath := SystemPath select:[:dirName |
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5269
		|f|
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5270
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5271
		f := dirName asFilename.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5272
		f isVolumeOnly ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5273
		    true
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5274
		] ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5275
		    (f isDirectory) and:[f isReadable]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5276
		]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5277
	    ]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5278
	] ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5279
	    RealSystemPath := SystemPath select:[:dirName |
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5280
		|f|
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5281
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5282
		f := dirName asFilename.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5283
		(f isDirectory) and:[f isReadable]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5284
	    ].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5285
	    RealSystemPath := RealSystemPath collect:[:dirName |
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5286
		    |f|
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5287
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5288
		    f := dirName asFilename pathName.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5289
	    ].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5290
	    "/ remove duplicates (but keep order)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5291
	    nP := OrderedCollection new.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5292
	    RealSystemPath do:[:p |
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5293
		(nP includes:p) ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5294
		    nP add:p
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5295
		]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5296
	    ].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5297
	    RealSystemPath := nP.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5298
	].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5299
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5300
    ^ RealSystemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5301
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5302
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5303
recursiveReadAllAbbreviationsFrom:aDirectory
4957
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  5304
    self recursiveReadAllAbbreviationsFrom:aDirectory maxLevels:5
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  5305
!
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  5306
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  5307
recursiveReadAllAbbreviationsFrom:aDirectory maxLevels:maxLevels
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5308
    "read all abbreviations from and under aDirectory."
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5309
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5310
    |abbrevStream dir|
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5311
5075
c9e585ae97d4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5074
diff changeset
  5312
    maxLevels == 0 ifTrue:[
5077
8360a3057ac5 checkin from browser
ca
parents: 5075
diff changeset
  5313
"/        'Smalltalk [warning]: max directory nesting reached.' infoPrintCR.
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5314
	^ self
5075
c9e585ae97d4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5074
diff changeset
  5315
    ].
4957
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  5316
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5317
    dir := aDirectory asFilename.
5057
390bbf7d37bf care for empty directories
Claus Gittinger <cg@exept.de>
parents: 5053
diff changeset
  5318
    dir exists ifFalse:[^ self].
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5319
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5320
    abbrevStream := (dir construct:'abbrev.stc') asFilename readStream.
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5321
    abbrevStream notNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5322
	self readAbbreviationsFromStream:abbrevStream.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5323
	abbrevStream close.
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5324
    ].
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5325
5057
390bbf7d37bf care for empty directories
Claus Gittinger <cg@exept.de>
parents: 5053
diff changeset
  5326
    (dir directoryContents ? #()) do:[:aFilename |
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5327
	|f|
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5328
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5329
	(#(
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5330
	    'doc'
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5331
	    'CVS'
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5332
	    'bitmaps'
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5333
	    'resources'
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5334
	    'source'
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5335
	) includes:aFilename) ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5336
	    f := dir construct:aFilename.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5337
	    f isDirectory ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5338
		self recursiveReadAllAbbreviationsFrom:f maxLevels:maxLevels-1
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5339
	    ]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5340
	].
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5341
    ].
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5342
!
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5343
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5344
resourceFileStreamFor:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5345
    "search aFileName in some standard places;
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5346
     return a readonly fileStream or nil if not found.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5347
     Searches in subdirectories named 'resource' in SystemPath"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5348
5053
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  5349
    ^ self resourceFileStreamFor:aFileName forClass:nil
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  5350
!
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  5351
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  5352
resourceFileStreamFor:aFileName forClass:aClassOrNil
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  5353
    "search aFileName in some standard places and in the classes
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  5354
     package-resource directory.
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  5355
     Return a readonly fileStream or nil if not found.
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  5356
     Searches in subdirectories named 'resource' in SystemPath"
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  5357
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5358
    |aString|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5359
5053
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  5360
    aString := self getResourceFileName:aFileName forClass:aClassOrNil.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5361
    aString notNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5362
	^ aString asFilename readStream
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5363
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5364
    ^ nil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5365
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5366
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5367
searchPath:aPath for:aFileName in:aDirName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5368
    "search aPath for a subdirectory named aDirectory with a file
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5369
     named aFileName"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5370
2928
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  5371
    |f|
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  5372
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  5373
    ((f := aFileName asFilename) isAbsolute 
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  5374
    or:[f isExplicitRelative]) ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5375
	"/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5376
	"/ dont use path for absolute or explicit .-relative file names
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5377
	"/
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5378
	^ aFileName
5786
354c5cb654d1 resource access (if stx is not the TOP-dirs name)
Claus Gittinger <cg@exept.de>
parents: 5785
diff changeset
  5379
    ].
354c5cb654d1 resource access (if stx is not the TOP-dirs name)
Claus Gittinger <cg@exept.de>
parents: 5785
diff changeset
  5380
354c5cb654d1 resource access (if stx is not the TOP-dirs name)
Claus Gittinger <cg@exept.de>
parents: 5785
diff changeset
  5381
    aPath notNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5382
	aPath do:[:dirName |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5383
	    |realName dir|
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5384
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5385
	    dir := dirName asFilename.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5386
	    aDirName notNil ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5387
		realName := (dir construct:aDirName) construct:aFileName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5388
	    ] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5389
		realName := dir construct:aFileName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5390
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5391
	    (realName isReadable) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5392
		^ realName name
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5393
	    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5394
	].
5786
354c5cb654d1 resource access (if stx is not the TOP-dirs name)
Claus Gittinger <cg@exept.de>
parents: 5785
diff changeset
  5395
    ].
354c5cb654d1 resource access (if stx is not the TOP-dirs name)
Claus Gittinger <cg@exept.de>
parents: 5785
diff changeset
  5396
354c5cb654d1 resource access (if stx is not the TOP-dirs name)
Claus Gittinger <cg@exept.de>
parents: 5785
diff changeset
  5397
    ^ nil.
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  5398
4129
15c7aac46056 #isReadable is ok as check - no need for #exists
Claus Gittinger <cg@exept.de>
parents: 4113
diff changeset
  5399
    "Modified: / 29.4.1999 / 15:06:43 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5400
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5401
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5402
sourceDirectoryNameOfClass:aClassOrClassName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5403
    "for a given class, return the pathname relative to TOP of the classes source code.
728
50cf1c907c28 again search liblist for a classes source directory
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
  5404
     Read the files 'abbrev.stc' and 'liblist.stc' (which are created during the compilation process)
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5405
     for an entry for aClassOrClassName.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5406
     Search for the className in the first col, and return the value found in
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5407
     the 3rd col.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5408
     Return nil if no entry is found."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5409
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5410
    |aStream line words n aClassName|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5411
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5412
    aClassOrClassName isBehavior ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5413
	aClassName := aClassOrClassName name
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5414
    ] ifFalse:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5415
	aClassName := aClassOrClassName
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5416
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5417
    aClassName := aClassName asString.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5418
728
50cf1c907c28 again search liblist for a classes source directory
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
  5419
    #('include/abbrev.stc' 'include/liblist.stc')    "/ filenames
50cf1c907c28 again search liblist for a classes source directory
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
  5420
    with:#(3 2)                   "/ column
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5421
    do:[:fileName :col |
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5422
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5423
	aStream := self systemFileStreamFor:fileName.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5424
	aStream notNil ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5425
	    [aStream atEnd] whileFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5426
		line := aStream nextLine.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5427
		line notNil ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5428
		    (line startsWith:'#') ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5429
			words := line asCollectionOfWords.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5430
			(n := words size) > 1 ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5431
			    (words at:1) = aClassName ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5432
				n >= col ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5433
				    aStream close.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5434
				    ^ (words at:col) withoutSeparators
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5435
				]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5436
			    ]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5437
			]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5438
		    ]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5439
		]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5440
	    ].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5441
	    aStream close
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5442
	].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5443
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5444
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5445
    ^ nil
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5446
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5447
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5448
     Smalltalk sourceDirectoryNameOfClass:'ClockView' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5449
     Smalltalk sourceDirectoryNameOfClass:'Bag' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5450
     Smalltalk sourceDirectoryNameOfClass:'GLWireCubeDemoView' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5451
     Smalltalk sourceDirectoryNameOfClass:'SomeNonExistingClass' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5452
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5453
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5454
    "Created: 6.11.1995 / 15:43:30 / cg"
728
50cf1c907c28 again search liblist for a classes source directory
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
  5455
    "Modified: 9.12.1995 / 23:54:14 / cg"
2033
c94698170f36 Close unused streams.
Stefan Vogel <sv@exept.de>
parents: 2029
diff changeset
  5456
    "Modified: 3.1.1997 / 11:26:44 / stefan"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5457
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5458
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5459
sourceFileStreamFor:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5460
    "search aFileName in some standard places;
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5461
     return a readonly fileStream or nil if not found.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5462
     Searches in subdirectories named 'source' in SystemPath"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5463
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5464
    |aString|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5465
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5466
    aString := self getSourceFileName:aFileName.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5467
    aString notNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5468
	^ aString asFilename readStream
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5469
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5470
    ^ nil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5471
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5472
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5473
systemFileStreamFor:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5474
    "search aFileName in some standard places;
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5475
     return a readonly fileStream or nil if not found.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5476
     see comment in Smalltalk>>initSystemPath"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5477
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5478
    |aString|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5479
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5480
    aString := self getSystemFileName:aFileName.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5481
    aString notNil ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5482
	^ aString asFilename readStream
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5483
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5484
    ^ nil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5485
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5486
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5487
systemPath
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5488
    "return a collection of directorynames, where smalltalk
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5489
     looks for system files 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5490
     (usually in subdirs such as resources, bitmaps, source etc.)
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5491
     see comment in Smalltalk>>initSystemPath."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5492
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5493
    ^ SystemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5494
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5495
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5496
     Smalltalk systemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5497
     Smalltalk systemPath addLast:'someOtherDirectoryPath'
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5498
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5499
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5500
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5501
systemPath:aPath
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5502
    "set the collection of directorynames, where smalltalk
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5503
     looks for system files 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5504
     (usually in subdirs such as resources, bitmaps, source etc.)
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5505
     see comment in Smalltalk>>initSystemPath."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5506
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5507
    SystemPath := aPath.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5508
    self flushPathCaches
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5509
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5510
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5511
     Smalltalk systemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5512
     Smalltalk systemPath:(Smalltalk systemPath copy addLast:'someOtherDirectoryPath')
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5513
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5514
! !
2
claus
parents: 1
diff changeset
  5515
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5516
!Smalltalk class methodsFor:'system management-packages'!
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5517
5112
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  5518
knownPackages
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  5519
    ^ KnownPackages ? #()
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  5520
!
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  5521
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5522
loadPackage:aPackageIdOrPackage
4741
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5523
    "make certain, that some particular package is loaded into the system.
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5524
     Experimental."
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5525
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5526
    (aPackageIdOrPackage isSymbol 
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5527
    or:[aPackageIdOrPackage isString]) ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5528
	^ self loadPackageWithId:aPackageIdOrPackage asAutoloaded:false
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5529
    ].
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5530
    self halt:'not yet implementd'.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5531
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5532
    "
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5533
     Smalltalk loadPackage:'stx:libbasic'  
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5534
     Smalltalk loadPackage:'stx:goodies/persistency'
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5535
     Smalltalk loadPackage:'cg:cparser'
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5536
     Smalltalk loadPackage:'cg:rose'
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5537
    "
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5538
!
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5539
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5540
loadPackage:packageId fromAllSourceFilesInDirectory:aDirectory
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5541
    "load all source files found in aDirectory and treat them like
4741
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5542
     a package. Allows for initial import of alien ST-code as a new package.
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5543
     Experimental."
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5544
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5545
    |p t new anyFail|
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5546
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5547
    "/ problem: dependencies.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5548
    "/ solution: repeat twice, so that superclasses are present the second time
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5549
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5550
    Class packageQuerySignal answer:packageId asSymbol do:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5551
	|any|
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5552
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5553
	2 timesRepeat:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5554
	    anyFail := false.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5555
	    aDirectory directoryContents do:[:file |
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5556
		|fn|
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5557
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5558
		fn := aDirectory construct:file.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5559
		(fn hasSuffix:'st') ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5560
		    Metaclass confirmationQuerySignal answer:false do:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5561
			(self fileIn:fn) ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5562
			    anyFail := true
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5563
			] ifTrue:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5564
			    any := true.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5565
			]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5566
		    ]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5567
		]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5568
	    ].
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5569
	    any ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5570
		^ false "/ no file found
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5571
	    ]
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5572
	].
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5573
    ].
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5574
                
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5575
    new := (p := Project projectWithId:packageId) isNil.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5576
    new ifTrue:[ p := Project new].
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5577
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5578
    p name:packageId.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5579
    p directory:aDirectory.
4726
5c5e1c7f8933 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4724
diff changeset
  5580
    p package:packageId.
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5581
    t := packageId asCollectionOfSubstringsSeparatedByAny:'/\:'.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5582
    p repositoryModule:(t first).
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5583
    p repositoryDirectory:(packageId copyFrom:t first size + 2).
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5584
    p isLoaded:true.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5585
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5586
    new ifTrue:[Project addLoadedProject:p].
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5587
    ^ anyFail not
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5588
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5589
!
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5590
4723
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5591
loadPackage:packageId fromClassLibrary:aFilename
4741
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5592
    "load a package from a compiled classLib.
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5593
     Experimental."
4723
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5594
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5595
    |p t new|
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5596
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5597
    (self fileIn:aFilename) ifFalse:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5598
	(self fileInClassLibrary:aFilename) ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5599
	    self warn:'Failed to load the package ', packageId printString.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5600
	    ^ false.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5601
	]
4723
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5602
    ].
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5603
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5604
    new := (p := Project projectWithId:packageId) isNil.
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5605
    new ifTrue:[ p := Project new].
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5606
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5607
    p name:packageId.
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5608
    p directory:aFilename directory.
4726
5c5e1c7f8933 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4724
diff changeset
  5609
    p package:packageId.
4723
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5610
    t := packageId asCollectionOfSubstringsSeparatedByAny:'/\:'.
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5611
    p repositoryModule:(t first).
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5612
    p repositoryDirectory:(packageId copyFrom:t first size + 2).
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5613
    p isLoaded:true.
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5614
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5615
    new ifTrue:[Project addLoadedProject:p].
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5616
    ^ true
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5617
!
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5618
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5619
loadPackage:packageId fromLoadAllFile:aFilename
4741
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5620
    "load a package from a loadAll - loader script.
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5621
     Experimental."
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5622
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5623
    |p t new|
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5624
4846
6fbaeb342ec6 do not open confirmers when loading a package
Claus Gittinger <cg@exept.de>
parents: 4781
diff changeset
  5625
    Metaclass confirmationQuerySignal answer:false
6fbaeb342ec6 do not open confirmers when loading a package
Claus Gittinger <cg@exept.de>
parents: 4781
diff changeset
  5626
    do:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5627
	(self fileIn:aFilename) ifFalse:[
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5628
	    self warn:'Failed to load the package ', packageId printString.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5629
	    ^ false.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  5630
	]
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5631
    ].
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5632
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5633
    new := (p := Project projectWithId:packageId) isNil.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5634
    new ifTrue:[ p := Project new].
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5635
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5636
    p name:packageId.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5637
    p directory:aFilename directory.
4726
5c5e1c7f8933 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4724
diff changeset
  5638
    p package:packageId.
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5639
    t := packageId asCollectionOfSubstringsSeparatedByAny:'/\:'.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5640
    p repositoryModule:(t first).
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5641
    p repositoryDirectory:(packageId copyFrom:t first size + 2).
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5642
    p isLoaded:true.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5643
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5644
    new ifTrue:[Project addLoadedProject:p].
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5645
    ^ true
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5646
!
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5647
4722
854b7a5427b0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4720
diff changeset
  5648
loadPackage:aPackageId fromProjectFile:f asAutoloaded:doLoadAsAutoloaded
4741
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5649
    "load a package from a .prj spec.
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5650
     Experimental."
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5651
4756
76982048a91a first try to load package from prj file.
Claus Gittinger <cg@exept.de>
parents: 4748
diff changeset
  5652
5601
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5653
    "/ not yet implemented ...
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5654
    ^ false.
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5655
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  5656
"/    |prj fn|
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  5657
"/
5601
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5658
"/        prj := Project new loadFromProjectFile:f asFilename pathName.
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5659
"/    "/ no - also allow for applications to be loaded this way
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5660
"/    "/    prj type == #library ifFalse:[ ^ false].
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5661
"/    self halt.
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5662
"/        "/ load all prerequisites ...
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5663
"/        prj prerequisites do:[:aRequiredPackage |
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5664
"/            self halt.
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5665
"/        ].
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5666
"/
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5667
"/        "/ see if there is a class library ...
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5668
"/        fn := prj directory asFilename construct:(prj name , ObjectFileLoader sharedLibraryExtension).
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5669
"/        fn exists ifTrue:[
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5670
"/            "/ load that classLibrary ...
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5671
"/            self fileIn:fn pathName.
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5672
"/        ].
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5673
"/
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5674
"/        "/ now, for all other classes, file-them in
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5675
"/        "/ or declare as autoloaded ...
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5676
"/
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5677
"/        prj classes do:[:aClassOrName | |ns|
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5678
"/            aClassOrName isBehavior ifFalse:[
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5679
"/                ((self includesKey:aClassOrName) not  
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5680
"/                and:[(ns := prj defaultNameSpace) isNil
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5681
"/                    or:[ns == self
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5682
"/                    or:[(ns includesKey:aClassOrName) not]]]) 
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5683
"/                ifTrue:[
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5684
"/                    "/ must load a corresponding source or cls-file
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5685
"/    self halt.
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5686
"/                ]
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5687
"/            ]
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5688
"/        ].
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5689
"/        prj isLoaded:true.
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5690
"/        prj directory:f asFilename directoryName.
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5691
"/        Project addLoadedProject:prj.
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5692
"/        ^ true
4756
76982048a91a first try to load package from prj file.
Claus Gittinger <cg@exept.de>
parents: 4748
diff changeset
  5693
76982048a91a first try to load package from prj file.
Claus Gittinger <cg@exept.de>
parents: 4748
diff changeset
  5694
"
76982048a91a first try to load package from prj file.
Claus Gittinger <cg@exept.de>
parents: 4748
diff changeset
  5695
 Smalltalk loadPackage:'exept:osi/asn1'
76982048a91a first try to load package from prj file.
Claus Gittinger <cg@exept.de>
parents: 4748
diff changeset
  5696
 Smalltalk 
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5697
	loadPackage:'exept:osi/asn1'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5698
	fromProjectFile:'../../../exept/osi/asn1/asn1.prj'
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5699
	asAutoloaded:false
4756
76982048a91a first try to load package from prj file.
Claus Gittinger <cg@exept.de>
parents: 4748
diff changeset
  5700
"
4722
854b7a5427b0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4720
diff changeset
  5701
!
854b7a5427b0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4720
diff changeset
  5702
854b7a5427b0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4720
diff changeset
  5703
loadPackage:aPackageId fromZIPArchive:f asAutoloaded:doLoadAsAutoloaded
4741
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5704
    "load a package from a .zip delivery file.
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5705
     Experimental."
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5706
5601
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5707
    "/ not yet implemented ...
4722
854b7a5427b0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4720
diff changeset
  5708
    ^ false
854b7a5427b0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4720
diff changeset
  5709
!
854b7a5427b0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4720
diff changeset
  5710
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5711
loadPackageWithId:aPackageId
4741
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5712
    "make certain, that some particular package is loaded into the system.
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5713
     Experimental."
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5714
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5715
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5716
    ^ self loadPackageWithId:aPackageId asAutoloaded:false
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5717
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5718
    "
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5719
     Smalltalk loadPackageWithId:'stx:libbasic'  
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5720
     Smalltalk loadPackageWithId:'stx:goodies/persistency'
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5721
     Smalltalk loadPackageWithId:'cg:cparser'
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5722
     Smalltalk loadPackageWithId:'cg:rose'
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5723
     Smalltalk loadPackageWithId:'detemobil:smc'
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5724
    "
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5725
!
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5726
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5727
loadPackageWithId:aPackageId asAutoloaded:doLoadAsAutoloaded
4741
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5728
    "make certain, that some particular package is loaded into the system.
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5729
     Experimental."
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5730
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5731
    |pkg packageDirName packageBaseName packageDir|
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5732
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5733
    pkg := Project projectWithId:aPackageId.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5734
    (pkg notNil and:[pkg isLoaded]) ifTrue:[ 
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5735
	"/ ('Smalltalk [info]: Package ' , aPackageId , ' already loaded.') infoPrintCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5736
	(doLoadAsAutoloaded 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5737
	or:[pkg areAllClassesLoaded]) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5738
	    ^ true
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5739
	].
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5740
    ].
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5741
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5742
    "/ ok; not yet loaded.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5743
    "/ try to locate the package; try the following:
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5744
    "/    $(packagePath)/<packageDir>/...
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5745
    "/    $(SYSPATH)/packages/<packageDir>
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5746
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5747
    packageDirName := aPackageId copyReplaceAll:$: with:$/.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5748
    packageBaseName := packageDirName asFilename baseName.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5749
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5750
    packageDir := self getPackageFileName:packageDirName.
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5751
    packageDir isNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5752
	"/ for convenience: try ../../.. as well 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5753
	"/ (when executing in thedevelopment environment)
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5754
	packageDir := '../../..' asFilename construct:packageDirName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5755
	packageDir exists ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5756
	    packageDir := packageDir pathName
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5757
	] ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5758
	    ('Smalltalk [warning]: cannot find packageDirectory: ' , packageDirName) errorPrintCR.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5759
	    ^ false
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5760
	]
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5761
    ].
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5762
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5763
    ^ self
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5764
	loadPackageWithId:aPackageId 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5765
	name:packageBaseName 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5766
	fromDirectory:packageDir 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5767
	asAutoloaded:doLoadAsAutoloaded
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5768
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5769
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5770
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5771
    "
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5772
     Smalltalk loadPackageWithId:'stx:libbasic'  
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5773
     Smalltalk loadPackageWithId:'stx:goodies/persistency'
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5774
     Smalltalk loadPackageWithId:'exept:ctypes'
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5775
    "
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5776
!
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5777
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5778
loadPackageWithId:aPackageId name:packageName fromDirectory:packageDirOrString asAutoloaded:doLoadAsAutoloaded
6243
341b9337c3b5 handle silentLoading setting in laodPackage
tm
parents: 6231
diff changeset
  5779
    |f s packageDir shLibName|
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5780
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5781
    packageDir := packageDirOrString asFilename.
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5782
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5783
    "/ .prj ?
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5784
    f := (packageDir construct:packageName) withSuffix:'prj'.
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5785
    f exists ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5786
	(self loadPackage:aPackageId fromProjectFile:f asAutoloaded:doLoadAsAutoloaded) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5787
	    SilentLoading ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5788
		Transcript showCR:('Smalltalk [info]: loaded package: ' , aPackageId , ' from project file: ' , f pathName).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5789
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5790
	    ^ true
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5791
	]
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5792
    ].
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5793
    "/ loadAll ?
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5794
    f := packageDir construct:'loadAll'.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5795
    f exists ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5796
	(self loadPackage:aPackageId fromLoadAllFile:f) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5797
	    SilentLoading ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5798
		Transcript showCR:('loaded package: ' , aPackageId , ' from loadAll file: ' , f pathName).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5799
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5800
	    ^ true
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5801
	]
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5802
    ].
5807
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5803
    "/ .zip ?
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5804
    f := (packageDir construct:packageName) withSuffix:'zip'.
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5805
    f exists ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5806
	(self loadPackage:aPackageId fromZIPArchive:f asAutoloaded:doLoadAsAutoloaded) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5807
	    SilentLoading ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5808
		Transcript showCR:('loaded package: ' , aPackageId , ' from zip file: ' , f pathName).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5809
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5810
	    ^ true
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5811
	]
5807
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5812
    ].
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5813
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5814
    shLibName := packageName , ObjectFileLoader sharedLibraryExtension.
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5815
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5816
    "/ .so ?
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5817
    f := packageDir construct:shLibName.
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5818
    f exists ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5819
	(self loadPackage:aPackageId fromClassLibrary:f) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5820
	    SilentLoading ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5821
		Transcript showCR:('loaded package: ' , aPackageId , ' from binary classLib file: ' , f pathName).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5822
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5823
	    ^ true
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5824
	]
5807
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5825
    ].
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5826
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5827
    "/ abbrev.stc ?
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5828
    f := packageDir construct:'abbrev.stc'.
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5829
    f exists ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5830
	Smalltalk installAutoloadedClassesFrom:f pathName.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5831
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5832
	doLoadAsAutoloaded ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5833
	    "/ force autoloading...
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5834
	    s := f readStream.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5835
	    s contents do:[:eachLine |
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5836
		|s className cls|
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5837
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5838
		s := eachLine readStream.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5839
		s skipSpaces.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5840
		className := s upTo:Character space.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5841
		cls := Smalltalk classNamed:className.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5842
		cls autoload
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5843
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5844
	    s close.
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5845
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5846
	SilentLoading ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5847
	    Transcript showCR:('loaded package: ' , aPackageId , ' from abbrev file: ' , f pathName).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5848
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5849
	^ true
5807
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5850
    ].
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5851
5175
c3e71ead8e06 when loading a package, and a .so file could not be found
Claus Gittinger <cg@exept.de>
parents: 5168
diff changeset
  5852
    "/ lib/loadAll ?  (will vanish)
5807
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5853
    f := (packageDir construct:'lib') construct:'loadAll'.
4722
854b7a5427b0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4720
diff changeset
  5854
    f exists ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5855
	(self loadPackage:aPackageId fromLoadAllFile:f) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5856
	    SilentLoading ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5857
		Transcript showCR:('loaded package: ' , aPackageId , ' from loadAll file: ' , f pathName).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5858
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5859
	    ^ true
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5860
	]
4722
854b7a5427b0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4720
diff changeset
  5861
    ].
5807
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5862
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5863
    "/ /lib/.so ? (will vanish)
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5864
    f := (packageDir construct:'lib') construct:shLibName.
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5865
    f exists ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5866
	(self loadPackage:aPackageId fromClassLibrary:f) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5867
	    SilentLoading ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5868
		Transcript showCR:('loaded package: ' , aPackageId , ' from binary classLib file: ' , f pathName).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5869
	    ].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5870
	    ^ true
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5871
	]
4722
854b7a5427b0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4720
diff changeset
  5872
    ].
5807
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5873
5175
c3e71ead8e06 when loading a package, and a .so file could not be found
Claus Gittinger <cg@exept.de>
parents: 5168
diff changeset
  5874
    "/ any .so ?  -> load the first one found (maybe not a good idea)
c3e71ead8e06 when loading a package, and a .so file could not be found
Claus Gittinger <cg@exept.de>
parents: 5168
diff changeset
  5875
    packageDir directoryContentsAsFilenamesDo:[:aFilename |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5876
	(aFilename hasSuffix:ObjectFileLoader sharedLibrarySuffix) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5877
	    (self loadPackage:aPackageId fromClassLibrary:aFilename) ifTrue:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5878
		SilentLoading ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5879
		    Transcript showCR:('loaded package: ' , aPackageId , ' from binary classLib file: ' , aFilename pathName).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5880
		].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5881
		^ true
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5882
	    ]
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5883
	]
5175
c3e71ead8e06 when loading a package, and a .so file could not be found
Claus Gittinger <cg@exept.de>
parents: 5168
diff changeset
  5884
    ].
5807
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  5885
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5886
    "/ source files
4737
7f66c4dc7c17 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4726
diff changeset
  5887
    (self loadPackage:aPackageId fromAllSourceFilesInDirectory:packageDir) ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5888
	SilentLoading ifFalse:[
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5889
	    Transcript showCR:('loaded package: ' , aPackageId , ' from source files in:' , packageDir pathName).
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5890
	].
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5891
	^ true
4737
7f66c4dc7c17 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4726
diff changeset
  5892
    ].
7f66c4dc7c17 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4726
diff changeset
  5893
    ^ false
7f66c4dc7c17 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4726
diff changeset
  5894
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5895
    "
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5896
     Smalltalk loadPackageWithId:'stx:libbasic'  
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5897
     Smalltalk loadPackageWithId:'stx:goodies/persistency'
4722
854b7a5427b0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4720
diff changeset
  5898
     Smalltalk loadPackageWithId:'exept:ctypes'
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5899
    "
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5900
! !
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5901
6711
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5902
!Smalltalk class methodsFor:'system management-undeclared variables'!
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5903
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5904
clearUndeclaredVariables
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5905
    "remove all undeclared variables"
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5906
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5907
    (Smalltalk at:#Undeclared) do:[:eachKey |
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  5908
	Smalltalk removeKey:(self undeclaredPrefix , eachKey) asSymbol.
6711
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5909
    ].
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5910
    (Smalltalk at:#Undeclared) removeAll.
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5911
    Smalltalk removeKey:#Undeclared.
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5912
!
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5913
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5914
undeclaredPrefix
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5915
    "the prefix used for undeclared variables"
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5916
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5917
    ^ 'Undeclared:::'
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5918
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5919
    "Created: / 31.10.1997 / 01:13:10 / cg"
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5920
! !
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  5921
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  5922
!Smalltalk class methodsFor:'time-versions'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  5923
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5924
configuration
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5925
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  5926
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  5927
    "for developers only: return the configuration, with which
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  5928
     this smalltalk was compiled."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  5929
567
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  5930
%{  /* NOCONTEXT */
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  5931
    extern char *__getConfigurationString();
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  5932
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  5933
    RETURN (__MKSTRING(__getConfigurationString() COMMA_SND));
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  5934
%}.
5445
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  5935
    ^ 'unknownOS/unknownCONF:unknownPACK'
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  5936
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  5937
    "
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  5938
     Smalltalk configuration 
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  5939
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  5940
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  5941
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5942
copyrightString
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5943
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  5944
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  5945
    "return a copyright string"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  5946
567
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  5947
%{  /* NOCONTEXT */
829
fc386319f41c removed external function defs (soon no longer allowed)
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  5948
#ifndef __getCopyrightString
fc386319f41c removed external function defs (soon no longer allowed)
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  5949
    extern OBJ __getCopyrightString();
568
f5754db15abf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
  5950
#endif
f5754db15abf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
  5951
829
fc386319f41c removed external function defs (soon no longer allowed)
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  5952
    RETURN (__getCopyrightString());
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  5953
%}.
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  5954
    ^ self primitiveFailed
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  5955
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  5956
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  5957
     Smalltalk copyrightString
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  5958
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  5959
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  5960
6585
66a360076f56 dialect detection
Claus Gittinger <cg@exept.de>
parents: 6580
diff changeset
  5961
dialectName
66a360076f56 dialect detection
Claus Gittinger <cg@exept.de>
parents: 6580
diff changeset
  5962
    ^ 'SmalltalkX'
66a360076f56 dialect detection
Claus Gittinger <cg@exept.de>
parents: 6580
diff changeset
  5963
66a360076f56 dialect detection
Claus Gittinger <cg@exept.de>
parents: 6580
diff changeset
  5964
    "
66a360076f56 dialect detection
Claus Gittinger <cg@exept.de>
parents: 6580
diff changeset
  5965
     Smalltalk dialectName
66a360076f56 dialect detection
Claus Gittinger <cg@exept.de>
parents: 6580
diff changeset
  5966
    "
66a360076f56 dialect detection
Claus Gittinger <cg@exept.de>
parents: 6580
diff changeset
  5967
!
66a360076f56 dialect detection
Claus Gittinger <cg@exept.de>
parents: 6580
diff changeset
  5968
66a360076f56 dialect detection
Claus Gittinger <cg@exept.de>
parents: 6580
diff changeset
  5969
dialectReleaseVersion
66a360076f56 dialect detection
Claus Gittinger <cg@exept.de>
parents: 6580
diff changeset
  5970
    ^ self versionString
66a360076f56 dialect detection
Claus Gittinger <cg@exept.de>
parents: 6580
diff changeset
  5971
66a360076f56 dialect detection
Claus Gittinger <cg@exept.de>
parents: 6580
diff changeset
  5972
    "
66a360076f56 dialect detection
Claus Gittinger <cg@exept.de>
parents: 6580
diff changeset
  5973
     Smalltalk dialectReleaseVersion
66a360076f56 dialect detection
Claus Gittinger <cg@exept.de>
parents: 6580
diff changeset
  5974
    "
66a360076f56 dialect detection
Claus Gittinger <cg@exept.de>
parents: 6580
diff changeset
  5975
!
66a360076f56 dialect detection
Claus Gittinger <cg@exept.de>
parents: 6580
diff changeset
  5976
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5977
distributorString
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  5978
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  5979
567
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  5980
    "return a string describing the distributor of this software"
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  5981
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  5982
%{  /* NOCONTEXT */
829
fc386319f41c removed external function defs (soon no longer allowed)
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  5983
#ifndef __getDistributorString
fc386319f41c removed external function defs (soon no longer allowed)
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  5984
    extern OBJ __getDistributorString();
568
f5754db15abf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
  5985
#endif
f5754db15abf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
  5986
829
fc386319f41c removed external function defs (soon no longer allowed)
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  5987
    RETURN (__getDistributorString());
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  5988
%}.
5445
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  5989
    ^ 'eXept Software AG, Germany'
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  5990
567
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  5991
    "
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  5992
     Smalltalk distributorString
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  5993
    "
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  5994
!
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  5995
1645
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  5996
expirationTime
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  5997
    "{ Pragma: +optSpace }"
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  5998
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  5999
    "for developers only: return the time when the system will expire.
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6000
     after this time it will not run any longer.
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6001
     It returns nil, if no expiration time has been set (system runs forever :-))"
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6002
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6003
    |exp|
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6004
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6005
%{  
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6006
    extern unsigned int __getExpirationTime();
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6007
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6008
    exp = __MKUINT(__getExpirationTime());
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6009
%}.
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6010
    exp == 0 ifTrue:[
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  6011
	^ nil
1645
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6012
    ].
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6013
    ^ AbsoluteTime new fromOSTime:(exp * 1000). "OSTime is ms since 1970"
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6014
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6015
    "
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6016
     Smalltalk expirationTime
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6017
    "
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6018
!
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6019
3062
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6020
fullVersionString
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6021
    "{ Pragma: +optSpace }"
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6022
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6023
    "return a full version string"
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6024
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6025
    ^ 'Smalltalk/X release ' , self versionString , ' of ' , self versionDate 
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6026
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6027
    "
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6028
     Smalltalk fullVersionString
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6029
    "
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6030
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6031
    "Created: / 27.10.1997 / 17:03:09 / cg"
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6032
    "Modified: / 27.10.1997 / 17:04:02 / cg"
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6033
!
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6034
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6035
hello
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6036
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  6037
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6038
    "return a greeting string"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6039
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6040
    "stupid: this should come from a resource file ...
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6041
     but I dont use it here, to allow mini-systems without
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6042
     Resource-stuff."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6043
6187
d4788adb7a8e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6186
diff changeset
  6044
    |proto lang|
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6045
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6046
    lang := Language.
5641
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6047
    (lang == #de) ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  6048
	proto := 'Willkommen bei %1 (Version %2 vom %3)'
5641
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6049
    ] ifFalse:[ (lang == #fr) ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  6050
	proto := 'Salut, Bienvenue à %1 (version %2 de %3)'
5641
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6051
    ] ifFalse:[ (lang == #it) ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  6052
	proto := 'Ciao, benvenuto al %1 (versione %2 di %3)'
5641
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6053
    ] ifFalse:[ (lang == #es) ifTrue:[
5657
5dd08c2a4930 hpux lex/bison does not like 8-bit characters (in string consts)
Claus Gittinger <cg@exept.de>
parents: 5653
diff changeset
  6054
"/        proto := 'Hola, bienvenida a %1 (versión %2 de %3)'
5641
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6055
    ] ifFalse:[ (lang == #es) ifTrue:[
5657
5dd08c2a4930 hpux lex/bison does not like 8-bit characters (in string consts)
Claus Gittinger <cg@exept.de>
parents: 5653
diff changeset
  6056
"/        proto := 'Oi, benvindo a %1 (versão %2 de %3)'
5641
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6057
    ] ifFalse:[ (lang == #no) ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  6058
	proto := 'Hei, verdenmottakelse til %1 (versjon %2 av %3)'
5641
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6059
    ]]]]]].
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6060
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6061
    "/ ... more needed here ...
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6062
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6063
    proto isNil ifTrue:[
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  6064
	proto := 'Hello World - here is %1 version %2 of %3'.
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6065
    ].
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6066
6187
d4788adb7a8e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6186
diff changeset
  6067
    ^ proto bindWith:('SmallTalk/X' allBold)
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  6068
		with:(self versionString) 
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  6069
		with:(self versionDate)
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6070
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6071
    "
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6072
     Smalltalk language:#us.   
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6073
     Smalltalk hello     
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6074
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6075
     Smalltalk language:#de.   
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6076
     Smalltalk hello  
1412
7c0326f67a03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1410
diff changeset
  6077
5641
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6078
     Smalltalk language:#no.   
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6079
     Smalltalk hello  
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6080
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1419
diff changeset
  6081
     Transcript showCR:(Smalltalk hello)
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1419
diff changeset
  6082
     Stdout showCR:(Smalltalk hello)
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6083
    "
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6084
1412
7c0326f67a03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1410
diff changeset
  6085
    "Modified: 18.5.1996 / 14:25:13 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6086
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6087
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6088
imageRestartTime
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6089
    "return a timestamp for the moment when this image was restarted.
1069
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  6090
     If we do not execute from an image (i.e. fresh start), return nil."
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6091
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6092
    ^ ImageRestartTime
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6093
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6094
    "
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6095
     Smalltalk imageStartTime
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6096
     Smalltalk imageRestartTime
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6097
    "
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6098
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6099
    "Created: 13.12.1995 / 17:44:20 / cg"
1069
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  6100
    "Modified: 6.3.1996 / 11:56:35 / cg"
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6101
!
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6102
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6103
imageSaveTime
3988
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6104
    "{ Pragma: +optSpace }"
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6105
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6106
    "return a timestamp for the moment when this image was saved"
1100
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  6107
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  6108
    ^ ObjectMemory imageSaveTime
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  6109
!
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  6110
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6111
imageStartTime
3988
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6112
    "{ Pragma: +optSpace }"
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6113
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6114
    "return a timestamp for the moment when this system started the first time
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6115
     (i.e. the first initial start without an image)"
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6116
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6117
    ^ ImageStartTime
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6118
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6119
    "
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6120
     Smalltalk imageStartTime
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6121
     Smalltalk imageRestartTime
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6122
    "
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6123
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6124
    "Created: 13.12.1995 / 17:44:14 / cg"
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6125
    "Modified: 13.12.1995 / 17:45:47 / cg"
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6126
!
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6127
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6128
majorVersionNr
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6129
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  6130
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6131
    "return the major version number.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6132
     This is only incremented for very fundamental changes,
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6133
     which make old object files totally incompatible
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6134
     (for example, if the layout/representation of fundamental
3382
0f4a79609ee1 bumped rev.
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6135
      classes changes).
0f4a79609ee1 bumped rev.
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6136
3988
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6137
     ST/X revision Naming is:
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  6138
	<major>.<minor>.<revision>.<release>"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6139
5322
411b6c0f7250 renamed sone structures;
Claus Gittinger <cg@exept.de>
parents: 5318
diff changeset
  6140
    ^ 4
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6141
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6142
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6143
     Smalltalk majorVersionNr
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6144
    "
1941
51332fe23542 bumped version to 3 (I guess, nameSpaces are a major step)
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  6145
51332fe23542 bumped version to 3 (I guess, nameSpaces are a major step)
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  6146
    "Modified: 8.11.1996 / 19:59:21 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6147
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6148
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6149
minorVersionNr
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6150
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  6151
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6152
    "return the minor version number.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6153
     This is incremented for changes which make some old object
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6154
     files incompatible, or the protocol changes such that some
3988
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6155
     classes need rework.
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6156
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6157
     ST/X revision Naming is:
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  6158
	<major>.<minor>.<revision>.<release>"
3988
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6159
5322
411b6c0f7250 renamed sone structures;
Claus Gittinger <cg@exept.de>
parents: 5318
diff changeset
  6160
    ^ 1
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6161
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6162
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6163
     Smalltalk minorVersionNr
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6164
    "
1941
51332fe23542 bumped version to 3 (I guess, nameSpaces are a major step)
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  6165
3092
2b522323d8d1 bumped vsn
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
  6166
    "Modified: / 3.11.1997 / 14:49:48 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6167
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6168
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6169
releaseIdentification
1552
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6170
    "{ Pragma: +optSpace }"
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6171
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6172
    "for developers only: return the release 
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6173
     (to further identify the version in case of errors)"
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6174
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6175
%{  /* NOCONTEXT */
1553
983c16ee1aab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
  6176
    extern OBJ __getRel();
983c16ee1aab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
  6177
983c16ee1aab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
  6178
    RETURN (__getRel());
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  6179
%}.
5445
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  6180
    ^ 'ST/X_experimental'
1552
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6181
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6182
    "
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6183
     Smalltalk releaseIdentification
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6184
    "
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6185
!
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6186
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6187
releaseNr
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6188
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  6189
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6190
    "return the revision number.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6191
     Incremented for releases which fix bugs/add features but did not find
3988
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6192
     their way to the outside world.
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6193
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6194
     ST/X revision Naming is:
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  6195
	<major>.<minor>.<revision>.<release>"
4334
ecb1b3fe1a73 bumped version
Claus Gittinger <cg@exept.de>
parents: 4333
diff changeset
  6196
6524
78d93a44d0e9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6490
diff changeset
  6197
    ^ 2
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6198
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6199
    " 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6200
     Smalltalk releaseNr 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6201
    "
732
29a49feab799 release bump - that seems to be a good one
Claus Gittinger <cg@exept.de>
parents: 728
diff changeset
  6202
29a49feab799 release bump - that seems to be a good one
Claus Gittinger <cg@exept.de>
parents: 728
diff changeset
  6203
    "Created: 10.12.1995 / 01:42:19 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6204
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6205
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6206
revisionNr
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6207
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  6208
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6209
    "return the revision number.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6210
     Incremented for releases which fix bugs/add features
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6211
     and represent a stable workable version which got published
3988
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6212
     to the outside world.
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6213
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6214
     ST/X revision Naming is:
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  6215
	<major>.<minor>.<revision>.<release>"
6031
b52a3bb1c9ff revision bumped
Claus Gittinger <cg@exept.de>
parents: 6025
diff changeset
  6216
6715
d562bc3b4e03 release
Claus Gittinger <cg@exept.de>
parents: 6714
diff changeset
  6217
    ^ 5
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6218
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6219
    " 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6220
     Smalltalk revisionNr
6715
d562bc3b4e03 release
Claus Gittinger <cg@exept.de>
parents: 6714
diff changeset
  6221
     Smalltalk hello  
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6222
    "
1941
51332fe23542 bumped version to 3 (I guess, nameSpaces are a major step)
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  6223
3624
a464c7554f6f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3611
diff changeset
  6224
    "Modified: / 19.6.1998 / 04:29:10 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6225
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6226
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6227
timeStamp
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6228
    "return a string useful for timestamping a file.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6229
     The returned string is padded with spaces for a constant
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6230
     length (to avoid changing a files size in fileOut with unchanged
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6231
     class)."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6232
5373
7fd5260cd1d8 splitted timeStamp
Claus Gittinger <cg@exept.de>
parents: 5371
diff changeset
  6233
    ^ ('''' , self timeStampString , '''') paddedTo:80 with:(Character space)
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6234
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6235
3611
f55f117dfd4a added #timeStamp: (ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  6236
timeStamp:aStream
f55f117dfd4a added #timeStamp: (ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  6237
    "write a string useful for timestamping a file onto aStream.
f55f117dfd4a added #timeStamp: (ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  6238
     ST80 compatibility"
f55f117dfd4a added #timeStamp: (ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  6239
f55f117dfd4a added #timeStamp: (ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  6240
    aStream nextPutAll:(self timeStamp).
f55f117dfd4a added #timeStamp: (ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  6241
f55f117dfd4a added #timeStamp: (ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  6242
    "Created: / 18.6.1998 / 17:22:58 / cg"
f55f117dfd4a added #timeStamp: (ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  6243
!
f55f117dfd4a added #timeStamp: (ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  6244
5373
7fd5260cd1d8 splitted timeStamp
Claus Gittinger <cg@exept.de>
parents: 5371
diff changeset
  6245
timeStampString
7fd5260cd1d8 splitted timeStamp
Claus Gittinger <cg@exept.de>
parents: 5371
diff changeset
  6246
    "return a string useful for timestamping a file."
7fd5260cd1d8 splitted timeStamp
Claus Gittinger <cg@exept.de>
parents: 5371
diff changeset
  6247
7fd5260cd1d8 splitted timeStamp
Claus Gittinger <cg@exept.de>
parents: 5371
diff changeset
  6248
    ^ ('From Smalltalk/X, Version:' , (Smalltalk versionString) , ' on '
7fd5260cd1d8 splitted timeStamp
Claus Gittinger <cg@exept.de>
parents: 5371
diff changeset
  6249
       , Date today printString , ' at ' , Time now printString
7fd5260cd1d8 splitted timeStamp
Claus Gittinger <cg@exept.de>
parents: 5371
diff changeset
  6250
       )
7fd5260cd1d8 splitted timeStamp
Claus Gittinger <cg@exept.de>
parents: 5371
diff changeset
  6251
!
7fd5260cd1d8 splitted timeStamp
Claus Gittinger <cg@exept.de>
parents: 5371
diff changeset
  6252
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6253
versionDate
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6254
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  6255
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6256
    "return the executables build date - thats the date when the smalltalk
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6257
     executable was built"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6258
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6259
%{  /* NOCONTEXT */
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6260
    extern char *__getBuildDateString();
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6261
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6262
    RETURN (__MKSTRING(__getBuildDateString() COMMA_SND) );
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  6263
%}.
5445
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  6264
    ^ 'today'
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  6265
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  6266
    "
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  6267
     Smalltalk versionDate 
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6268
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6269
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6270
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6271
versionString
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6272
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  6273
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6274
    "return the version string"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6275
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6276
    ^ (self majorVersionNr printString ,
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6277
       '.',
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6278
       self minorVersionNr printString ,
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6279
       '.',
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6280
       self revisionNr printString)
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6281
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6282
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6283
     Smalltalk versionString
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6284
    "
5427
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6285
!
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6286
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6287
vmMajorVersionNr
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6288
    "{ Pragma: +optSpace }"
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6289
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6290
    "return the VMs major version number."
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6291
%{
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6292
    RETURN (__MKSMALLINT(4));
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6293
%}.
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6294
    ^ 4
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6295
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6296
    "
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6297
     Smalltalk vmMajorVersionNr
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6298
    "
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6299
2
claus
parents: 1
diff changeset
  6300
! !
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6301
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  6302
!Smalltalk class methodsFor:'documentation'!
630
b785d23d7c5b version at the end
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
  6303
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6304
version
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  6305
    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.545 2002-11-11 09:29:09 cg Exp $'
630
b785d23d7c5b version at the end
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
  6306
! !