Smalltalk.st
author Claus Gittinger <cg@exept.de>
Fri, 29 Aug 2003 21:16:52 +0200
changeset 7587 89864caa2665
parent 7581 6912a7336e15
child 7607 c8e28e245030
permissions -rw-r--r--
*** empty log message ***
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
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
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
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    16
	instanceVariableNames:''
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    17
	classVariableNames:'StartBlocks ImageStartBlocks ExitBlocks CachedClasses SystemPath
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    18
		StartupClass StartupSelector StartupArguments CommandLine
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    19
		CommandName CommandLineArguments CachedAbbreviations
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    20
		SilentLoading Initializing StandAlone HeadlessOperation
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    21
		DebuggingStandAlone LogDoits LoadBinaries RealSystemPath
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    22
		ResourcePath SourcePath BitmapPath BinaryPath FileInPath
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    23
		PackagePath BinaryDirName ResourceDirName SourceDirName
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    24
		BitmapDirName PackageDirName FileInDirName ChangeFileName
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    25
		ImageStartTime ImageRestartTime DemoMode SaveEmergencyImage
7527
00be4f63fa1d *** empty log message ***
penk
parents: 7526
diff changeset
    26
		SpecialObjectArray CallbackSignal KnownPackages
00be4f63fa1d *** empty log message ***
penk
parents: 7526
diff changeset
    27
		ClassesFailedToInitialize'
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    28
	poolDictionaries:''
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    29
	category:'System-Support'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    30
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    31
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
    32
!Smalltalk class methodsFor:'documentation'!
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    33
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    34
copyright
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    35
"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    36
 COPYRIGHT (c) 1988 by Claus Gittinger
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    37
	      All Rights Reserved
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    38
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    39
 This software is furnished under a license and may be used
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    40
 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
    41
 inclusion of the above copyright notice.   This software may not
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    42
 be provided or otherwise made available to, or used by, any
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    43
 other person.  No title to or ownership of the software is
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    44
 hereby transferred.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    45
"
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
    46
!
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
    47
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    48
documentation
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    49
"
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    50
    This is one of the central classes in the system;
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    51
    it provides all system-startup, shutdown and maintenance support.
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
    52
    Also global variables are (conceptionally) kept here.
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    53
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    54
    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
    55
    - my implementation of globals is totally different
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
    56
      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
    57
      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
    58
      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
    59
      functions found there.
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
    60
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    61
    However, it provides the known enumeration protocol.
3062
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
    62
    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
    63
    to inherit more collection stuff ...
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    64
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
    65
1286
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1222
diff changeset
    66
    [Instance variables:]
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    67
					none - all handling is done in the VM
1286
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1222
diff changeset
    68
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1222
diff changeset
    69
    [Class variables:]
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1222
diff changeset
    70
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    71
	StartBlocks     <Collection>    blocks to be executed in a separate process after
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    72
					everything has been initialized. These blocks will
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    73
					be deleted after execution and therefore not be
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    74
					executed after an image restart. Initial processes
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    75
					(such as the Launcher) are usually started here.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    76
					These blocks are added by smalltalk.rc/private.rc etc.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    77
					via #addStartBlock during early initialization.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    78
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    79
	ImageStartBlocks 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    80
			<Collection>    blocks to be executed in a separate process after
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    81
					everything has been initialized. These blocks will be
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    82
					executed after an image restart.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    83
					These blocks are usually added by smalltalk_r.rc etc.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    84
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    85
	ExitBlocks      <Collection>    blocks to evaluate before system is
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    86
					left. Not currently used (GNU-ST compatibility).
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    87
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    88
	SystemPath      <Collection>    path to search for system files (sources, bitmaps etc)
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    89
					Set to a default here, but typically changed from some
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    90
					startup.rc file
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    91
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    92
	PackagePath     <Collection>    path to search for package.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    93
					This is going to replace the above systemPath, and a classes
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    94
					resources will eventually searched in its package directory.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    95
					This list defines the path, where packages are searched for,
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    96
					initially this is something like /opt/smalltalk/packages.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    97
					Set to a default here, but typically changed from some
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    98
					startup.rc file
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
    99
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   100
	StartupClass    <Class>         class and selector, where the system starts up
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   101
	StartupSelector <Symbol>        (right after VM initialization)
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   102
	StartupArguments <Array>        If an image is saved while those being nonNil, 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   103
					the image will come up there.
6881
14a7a3c779b8 command line args
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
   104
					Allows for customized images to be generated from a standard ST/X.
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   105
					StandAlone programs also set those during initialization.
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   106
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   107
	CommandLine          <String>   Unix (OS-) command line
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   108
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   109
	CommandName          <String>   the command (i.e. argv[0])
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   110
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   111
	CommandLineArguments <Array>    Unix (OS-) command line arguments broken into words
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   112
					CommandName has been stripped off.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   113
					(initially set by the VM)
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   114
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   115
	SilentLoading   <Boolean>       suppresses messages during fileIn and in compiler
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   116
					(can be set to true from a customized main.c)
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   117
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   118
	Initializing    <Boolean>       true while (re-)initializing
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   119
					Controls the behavior of certain error
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   120
					reporters (for example: suppress dialogBoxes)
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   121
					while the system is not yet fit for full operation.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   122
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   123
	StandAlone      <Boolean>       true, if this is a standalone app;
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   124
					if true the process scheduler watches for
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   125
					which processes are still running, and 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   126
					exits ST/X, when the last non-background
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   127
					and non-system process exits.
6881
14a7a3c779b8 command line args
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
   128
					Can be set in an application-specific startup script,
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   129
					or, for standAlone programs, by C-code during initialization.
3062
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
   130
                                        
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   131
	HeadlessOperation               if true, a non-existing Display connection
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   132
			<Boolean>       will NOT lead to an error-exit during startup.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   133
					Default is false.
6881
14a7a3c779b8 command line args
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
   134
					Can be set in an application-specific startup script,
14a7a3c779b8 command line args
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
   135
					or, for standAlone programs, by C-code during initialization.
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   136
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   137
	LogDoits        <Boolean>       if true, doits are also logged in the changes
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   138
					file. Default is false, since the changes file
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   139
					may become huge if every tiny doIt is saved there ...
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   140
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   141
	LoadBinaries    <Boolean>       if true, we attempt to load classes rom a binary
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   142
					file, if present. If false, this is always suppressed.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   143
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   144
	SaveEmergencyImage <Boolean>    if true (the default), an emergency image
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   145
					is saved, if the main Display looses its
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   146
					connection. This is useful if you have a
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   147
					flaky display connection (serial line)
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   148
					and want to have your stuff saved automatically
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   149
					in case of a broken connection.
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
   150
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   151
    strictly private classVariables (helpers):
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   152
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   153
	CachedClasses   <Collection>    known classes (cached for faster class enumeration)
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   154
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   155
	CachedAbbreviations
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   156
			<Dictionary>    className to filename mappings
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   157
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   158
	RealSystemPath  <Collection>    cached collection of directories along the path
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   159
					which really exist. Caching avoids long checks
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   160
					for existing directories on broken NFS volumes.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   161
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   162
	SourcePath      <Collection>    cached names of really existing directories
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   163
	BitmapPath                      These are remembered, since in NFS systems,
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   164
	ResourcePath                    the time to lookup files may become long
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   165
	BinaryPath                      (especially, if some directories are on machines
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   166
	FileInPath                      which are not up ...). 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   167
					Therefore, the set of really
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   168
					existing directories is cached when the SystemPath
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   169
					is walked the first time.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   170
					A consequence is that you have to invoke
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   171
					flushSystemPath, when you create any of those
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   172
					directories while running
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   173
					(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
   174
1286
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1222
diff changeset
   175
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1222
diff changeset
   176
    [author:]
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   177
	Claus Gittinger
3062
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
   178
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
   179
    [see also:]
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   180
	ObjectMemory
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
   181
"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   182
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   183
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   184
!Smalltalk class methodsFor:'initialization'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   185
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   186
initGlobalsFromEnvironment
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   187
    "setup globals from the shell-environment"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   188
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   189
    |envString i langString terrString|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   190
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
   191
    StandAlone isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   192
	StandAlone := false.
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
   193
    ].
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
   194
    HeadlessOperation isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   195
	HeadlessOperation := false.
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
   196
    ].
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
   197
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   198
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   199
     extract Language and LanguageTerritory from LANG variable.
5846
a972d0e7e06b Parsing of de_DE
Stefan Vogel <sv@exept.de>
parents: 5841
diff changeset
   200
     valid are for example:
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   201
			    en_en / en
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   202
			    en_us
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   203
			    en_gb
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   204
			    de_de / de
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   205
			    de_at       (for Austria)
5846
a972d0e7e06b Parsing of de_DE
Stefan Vogel <sv@exept.de>
parents: 5841
diff changeset
   206
    "
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
    Language := #en.
994
6163ae7aaf9b territory defaults to #us (instead of #usa)
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
   209
    LanguageTerritory := #us.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   210
5846
a972d0e7e06b Parsing of de_DE
Stefan Vogel <sv@exept.de>
parents: 5841
diff changeset
   211
a972d0e7e06b Parsing of de_DE
Stefan Vogel <sv@exept.de>
parents: 5841
diff changeset
   212
    "Format of LANG is: language[_territory][.codeset][@modifier]
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   213
	language        ISO-639  Language code
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   214
	territory       ISO-3166 Contry code"
5846
a972d0e7e06b Parsing of de_DE
Stefan Vogel <sv@exept.de>
parents: 5841
diff changeset
   215
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   216
    envString := OperatingSystem getEnvironment:'LANG'.
3991
7b53bc45bf91 (isNil or:[isEmpty ]) -> (size == 0)
Claus Gittinger <cg@exept.de>
parents: 3988
diff changeset
   217
    envString size > 0 ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   218
	i := envString indexOf:$@.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   219
	(i ~~ 0) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   220
	    envString := envString copyTo:(i - 1).
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   221
	    LanguageModifier := (envString copyFrom:(i + 1)) asLowercase asSymbol.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   222
	] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   223
	    LanguageModifier := nil.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   224
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   225
	i := envString indexOf:$..
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   226
	(i ~~ 0) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   227
	    envString := envString copyTo:(i - 1).
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   228
	    LanguageCodeset := (envString copyFrom:(i + 1)) asLowercase asSymbol
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   229
	] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   230
	    LanguageCodeset := #'iso8859-1'.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   231
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   232
	i := envString indexOf:$_.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   233
	(i == 0) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   234
	    langString := envString.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   235
	    terrString := envString
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   236
	] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   237
	    langString := envString copyTo:(i - 1).
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   238
	    terrString := envString copyFrom:(i + 1)
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   239
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   240
	Language := langString asLowercase asSymbol.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   241
	LanguageTerritory := terrString asLowercase asSymbol
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   242
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   243
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   244
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   245
     Smalltalk initGlobalsFromEnvironment
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   246
    "
994
6163ae7aaf9b territory defaults to #us (instead of #usa)
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
   247
6163ae7aaf9b territory defaults to #us (instead of #usa)
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
   248
    "Modified: 22.2.1996 / 16:59:12 / cg"
617
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
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   251
initInterrupts
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   252
    "initialize interrupts"
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
    OperatingSystem enableUserInterrupts.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   255
    OperatingSystem enableHardSignalInterrupts.
6390
41d5c47c33f0 Catch sigPWR and sigHUP on restart
Stefan Vogel <sv@exept.de>
parents: 6366
diff changeset
   256
    OperatingSystem enableCrashSignalInterrupts.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   257
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   258
    ObjectMemory userInterruptHandler:self.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   259
    ObjectMemory signalInterruptHandler:self.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   260
    ObjectMemory recursionInterruptHandler:self.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   261
963
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   262
    "
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   263
     Smalltalk initInterrupts
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   264
    "
2873
5bc8c81c4a34 Catch fpExeceptionInterrupt after image restart.
Stefan Vogel <sv@exept.de>
parents: 2844
diff changeset
   265
5bc8c81c4a34 Catch fpExeceptionInterrupt after image restart.
Stefan Vogel <sv@exept.de>
parents: 2844
diff changeset
   266
    "Modified: 20.8.1997 / 09:35:49 / stefan"
617
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
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   269
initStandardStreams
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   270
    "initialize some well-known streams"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   271
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   272
    Stdout := NonPositionableExternalStream forStdout.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   273
    Stderr := NonPositionableExternalStream forStderr.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   274
    Stdin := NonPositionableExternalStream forStdin.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   275
    Printer := PrinterStream.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   276
    Transcript := Stderr
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   277
963
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   278
    "
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   279
     Smalltalk initStandardStreams
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   280
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   281
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   282
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   283
initStandardTools
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   284
    "predefine some tools which we will need later
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   285
     - if the view-classes exist,
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   286
       they will redefine Inspector and Debugger for graphical interfaces"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   287
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   288
    "redefine debug-tools, if view-classes exist"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   289
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   290
    Display notNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   291
	InspectorView notNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   292
	    Inspector := InspectorView
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   293
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   294
	DebugView notNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   295
	    Debugger := DebugView
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   296
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   297
	Display initialize
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   298
    ]
963
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   299
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   300
    "
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   301
     Smalltalk initStandardTools
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   302
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   303
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   304
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   305
initSystemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   306
    "setup path where system files are searched for.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   307
     the default path is set to:
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   308
	    .
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   309
	    $HOME                    (if defined)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   310
	    $HOME/.smalltalk         (if defined & existing)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   311
	    $SMALLTALK_LIBDIR        (if defined & existing)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   312
	    $STX_LIBDIR              (if defined & existing)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   313
	    $STX_TOPDIR              (if defined & existing)
4001
fa75465bd263 made systemPath setup OS-specific
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   314
fa75465bd263 made systemPath setup OS-specific
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   315
     unix:
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   316
	    /opt/smalltalk           (if existing)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   317
	    /opt/smalltalk/release   (if existing)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   318
	    /usr/local/lib/smalltalk (if existing)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   319
	    /usr/lib/smalltalk       (if existing)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   320
	    /lib/smalltalk           (if existing)
4001
fa75465bd263 made systemPath setup OS-specific
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   321
fa75465bd263 made systemPath setup OS-specific
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   322
     win32:
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   323
	    \smalltalk                (if existing)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   324
	    \programs\smalltalk       (if existing)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   325
	    \programs\exept\smalltalk (if existing)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   326
	    registry info             (if present)
4001
fa75465bd263 made systemPath setup OS-specific
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   327
fa75465bd263 made systemPath setup OS-specific
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   328
     vms:
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   329
	    $stx:lib                 (if existing)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   330
	    $stx:root                (if existing)
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   331
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   332
     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
   333
     startup file; add expressions such as:
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   334
	    Smalltalk systemPath addFirst:'/foo/bar/baz'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   335
	or: 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   336
	    Smalltalk systemPath addLast:'/fee/foe/foo'.
4001
fa75465bd263 made systemPath setup OS-specific
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   337
fa75465bd263 made systemPath setup OS-specific
Claus Gittinger <cg@exept.de>
parents: 3991
diff changeset
   338
     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
   339
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   340
2928
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
   341
    ChangeFileName := 'changes'.
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
   342
    OperatingSystem isVMSlike ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   343
	BitmapDirName := 'bitmaps.dir'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   344
	BinaryDirName := 'binary.dir'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   345
	SourceDirName := 'source.dir'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   346
	ResourceDirName := 'resources.dir'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   347
	FileInDirName := 'filein.dir'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   348
	PackageDirName := 'packages.dir'.
2928
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
   349
    ] ifFalse:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   350
	BitmapDirName := 'bitmaps'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   351
	BinaryDirName := 'binary'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   352
	SourceDirName := 'source'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   353
	ResourceDirName := 'resources'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   354
	FileInDirName := 'fileIn'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   355
	PackageDirName := 'packages'.
2928
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
   356
    ].
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
   357
680
6f5794a26d2d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 657
diff changeset
   358
    SystemPath isNil ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   359
	SystemPath := OperatingSystem defaultSystemPath.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   360
	self flushPathCaches
5139
135e98726986 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5138
diff changeset
   361
    ].
135e98726986 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5138
diff changeset
   362
5144
607e6fe053b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
   363
    PackagePath isNil ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   364
	PackagePath := OperatingSystem defaultPackagePath.
5144
607e6fe053b5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5140
diff changeset
   365
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   366
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   367
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   368
     Smalltalk initSystemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   369
     Smalltalk systemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   370
    "
5139
135e98726986 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5138
diff changeset
   371
5145
23bca61caa40 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5144
diff changeset
   372
    "Modified: / 24.12.1999 / 00:23:35 / cg"
617
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
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   375
initUserPreferences
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   376
    "setup other stuff"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   377
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   378
    LogDoits := false.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   379
    LoadBinaries := false.
6854
0eaf240a93d7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6853
diff changeset
   380
    SaveEmergencyImage := (StandAlone ~~ true).
3062
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
   381
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
   382
    "Modified: / 24.10.1997 / 18:22:47 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   383
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   384
7526
97c36c93e3d9 *** empty log message ***
penk
parents: 7525
diff changeset
   385
initializeClass:aClass
97c36c93e3d9 *** empty log message ***
penk
parents: 7525
diff changeset
   386
    "sent from VM via #initializeModules"
97c36c93e3d9 *** empty log message ***
penk
parents: 7525
diff changeset
   387
7527
00be4f63fa1d *** empty log message ***
penk
parents: 7526
diff changeset
   388
    Error handle:[:ex |
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   389
	ClassesFailedToInitialize isNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   390
	    ClassesFailedToInitialize := IdentitySet new.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   391
	].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   392
	ClassesFailedToInitialize add:aClass.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   393
	('Smalltalk [warning]: error during initialize of ' , aClass name,': ', ex description printString) errorPrintCR.
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   394
	(Smalltalk commandLineArguments includes:'--debug') ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   395
	    ex reject
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   396
	].
7527
00be4f63fa1d *** empty log message ***
penk
parents: 7526
diff changeset
   397
    ] do:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   398
	aClass initialize
7530
f5d25c5b02b2 avoid clobber of SystemPath in case of error during
penk
parents: 7529
diff changeset
   399
    ].
7526
97c36c93e3d9 *** empty log message ***
penk
parents: 7525
diff changeset
   400
!
97c36c93e3d9 *** empty log message ***
penk
parents: 7525
diff changeset
   401
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   402
initializeModules
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   403
    "perform module specific initialization and
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   404
     send #initialize to all classes.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   405
     Notice: this is not called when an image is restarted"
4963
308de981ea7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4959
diff changeset
   406
7527
00be4f63fa1d *** empty log message ***
penk
parents: 7526
diff changeset
   407
    self initializeModulesOnce.
00be4f63fa1d *** empty log message ***
penk
parents: 7526
diff changeset
   408
    ClassesFailedToInitialize size > 0 ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   409
	('Smalltalk [info]: retry initialization of failed class(es)...') infoPrintCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   410
	ClassesFailedToInitialize := nil.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   411
	self initializeModulesOnce.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   412
	ClassesFailedToInitialize size > 0 ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   413
	    ('Smalltalk [error]: class(es) persist to fail during initialize') errorPrintCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   414
	]
7527
00be4f63fa1d *** empty log message ***
penk
parents: 7526
diff changeset
   415
    ].
00be4f63fa1d *** empty log message ***
penk
parents: 7526
diff changeset
   416
!
00be4f63fa1d *** empty log message ***
penk
parents: 7526
diff changeset
   417
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   418
initializeModulesOnce
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   419
    "perform module specific initialization and
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   420
     send #initialize to all classes.
7527
00be4f63fa1d *** empty log message ***
penk
parents: 7526
diff changeset
   421
     Notice: this is not called when an image is restarted"
4963
308de981ea7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4959
diff changeset
   422
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   423
%{
1688
8a42db1eea60 removed all COMMA_CON / CON_COMMA uses
Claus Gittinger <cg@exept.de>
parents: 1682
diff changeset
   424
    __init_registered_modules__(3);
4963
308de981ea7d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4959
diff changeset
   425
1481
90a28fd060bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1480
diff changeset
   426
    @global(DemoMode) = __getDemoMode() ? true : false;
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   427
    RETURN (self);
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   428
%}.
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   429
    ^ self primitiveFailed
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   430
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   431
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   432
initializeSystem
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   433
    "initialize all other classes; setup dispatcher processes etc.
3499
5f8715a97ff5 switching to OS-subclasses
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   434
     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
   435
     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
   436
     Notice: 
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   437
	this is not called when an image is restarted; in this
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   438
	case the show starts in Smalltalk>>restart."
211
58bb873aa83c *** empty log message ***
claus
parents: 202
diff changeset
   439
6841
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
   440
    |idx|
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
   441
3499
5f8715a97ff5 switching to OS-subclasses
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   442
    Initializing := true.
6841
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
   443
3499
5f8715a97ff5 switching to OS-subclasses
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   444
    AbstractOperatingSystem initializeConcreteClass.
5f8715a97ff5 switching to OS-subclasses
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
   445
5400
af8fdc4d3e02 kludge (for rel5)
Claus Gittinger <cg@exept.de>
parents: 5373
diff changeset
   446
    CommandLineArguments isNil ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   447
	CommandLineArguments := #('stx').
5400
af8fdc4d3e02 kludge (for rel5)
Claus Gittinger <cg@exept.de>
parents: 5373
diff changeset
   448
    ].
4006
c7ad38c52eb9 must set CommandLineArguments earlier (to be available in initializeSystem)
Claus Gittinger <cg@exept.de>
parents: 4001
diff changeset
   449
    CommandLine := CommandLineArguments copy.
c7ad38c52eb9 must set CommandLineArguments earlier (to be available in initializeSystem)
Claus Gittinger <cg@exept.de>
parents: 4001
diff changeset
   450
    CommandLineArguments := CommandLineArguments asOrderedCollection.
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
   451
    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
   452
4028
b46539f16af5 added --silentStartup argument
Claus Gittinger <cg@exept.de>
parents: 4026
diff changeset
   453
    SilentLoading := (CommandLineArguments includes:'--silentStartup').
348
claus
parents: 345
diff changeset
   454
6841
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
   455
    DebuggingStandAlone := false.
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
   456
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
   457
    StandAlone ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   458
	InfoPrinting := false.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   459
	ObjectMemory infoPrinting:false.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   460
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   461
	idx := CommandLineArguments indexOf:'--debug'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   462
	idx ~~ 0 ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   463
	    DebuggingStandAlone := true.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   464
	].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   465
	DebuggingStandAlone ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   466
	    Inspector := MiniInspector.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   467
	    Debugger := MiniDebugger.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   468
	].
6841
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
   469
    ] ifFalse:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   470
	"/
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   471
	"/ define low-level debugging tools - graphical classes are not prepared yet
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   472
	"/ to handle things. 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   473
	"/ This will bring us into the MiniDebugger when an error occurs during startup.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   474
	"/
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   475
	Inspector := MiniInspector.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   476
	Debugger := MiniDebugger.
6841
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
   477
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   478
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   479
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   480
    "/ start catching SIGSEGV and SIGBUS
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   481
    "/
713
32540afb8ffc setup SIGSEGV/SIGBUS handling early - to catch those during startup
Claus Gittinger <cg@exept.de>
parents: 706
diff changeset
   482
    OperatingSystem enableHardSignalInterrupts.
32540afb8ffc setup SIGSEGV/SIGBUS handling early - to catch those during startup
Claus Gittinger <cg@exept.de>
parents: 706
diff changeset
   483
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   484
    self initGlobalsFromEnvironment.
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
    "/ 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
   488
    "/ 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
   489
    "/
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   490
    Object initialize.
423
claus
parents: 421
diff changeset
   491
    Signal initialize.
2907
1666bf27f351 VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
   492
    Filename initialize.
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   493
    ObjectMemory initialize.
2504
ece15ffbcb69 Initialize OperatingSystem early (needed for some signals).
Stefan Vogel <sv@exept.de>
parents: 2485
diff changeset
   494
    OperatingSystem initialize.
596
ecb1d732dade require Stream to be initialized before ExternalStream is
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   495
    Stream initialize.
7525
d6eeec4dd9da *** empty log message ***
penk
parents: 7520
diff changeset
   496
    PositionableStream initialize.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   497
    ExternalStream initialize.
211
58bb873aa83c *** empty log message ***
claus
parents: 202
diff changeset
   498
58bb873aa83c *** empty log message ***
claus
parents: 202
diff changeset
   499
    self initStandardStreams.    "/ setup Stdin, Stdout etc.
1
a27a279701f8 Initial revision
claus
parents:
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
    "/ sorry, path must be set before ...
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   503
    "/ 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
   504
    "/
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   505
    self initSystemPath.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   506
a27a279701f8 Initial revision
claus
parents:
diff changeset
   507
    Compiler := ByteCodeCompiler.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   508
    Compiler isNil ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   509
	"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   510
	 ByteCodeCompiler is not in the system (i.e. has not been linked in)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   511
	 this allows at least immediate evaluations for runtime systems without compiler
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   512
	 NOTICE: a parser is always needed, otherwise we cannot read resource files etc.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   513
	"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   514
	Compiler := Parser
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   515
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   516
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   517
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   518
    "/ another one, to be initialized before others
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   519
    "/
2077
6b5dc412dd15 must initialize Processor before doing modulInits
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   520
    ProcessorScheduler initialize.
6b5dc412dd15 must initialize Processor before doing modulInits
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   521
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   522
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   523
    "/ now, finally, initialize all other classes
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   524
    "/
325
claus
parents: 324
diff changeset
   525
    self initializeModules.
claus
parents: 324
diff changeset
   526
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   527
    ImageStartTime := AbsoluteTime now.
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   528
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
   529
    self initInterrupts.
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   530
    self initUserPreferences.
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   531
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   532
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   533
    "/ 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
   534
    "/ 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
   535
    "/ (especially: streams and signals can now be used)
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   536
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   537
    ObjectMemory changed:#initialized.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   538
2504
ece15ffbcb69 Initialize OperatingSystem early (needed for some signals).
Stefan Vogel <sv@exept.de>
parents: 2485
diff changeset
   539
    "Modified: 8.1.1997 / 19:58:12 / stefan"
2907
1666bf27f351 VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
   540
    "Modified: 7.9.1997 / 23:34:44 / cg"
325
claus
parents: 324
diff changeset
   541
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   542
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   543
isInitialized
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   544
    "this returns true, if the system is properly initialized;
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   545
     i.e. false during startup. Especially, the whole viewing stuff is
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   546
     not working correctly until initialized."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   547
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   548
    ^ Initializing not
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   549
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   550
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   551
reinitStandardStreams
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   552
    "reinitialize some well-known streams.
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   553
     Tis must be done very early during startup, to allow for
477
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
   554
     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
   555
     (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
   556
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
   557
    Stdout reOpen. Stderr reOpen. Stdin reOpen.
161
ed36169f354d *** empty log message ***
claus
parents: 159
diff changeset
   558
! !
ed36169f354d *** empty log message ***
claus
parents: 159
diff changeset
   559
7295
9ddb9543e369 category
Claus Gittinger <cg@exept.de>
parents: 7290
diff changeset
   560
!Smalltalk class methodsFor:'Compatibility-Squeak'!
4584
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   561
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   562
beep
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   563
    Screen current beep
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   564
!
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   565
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   566
garbageCollect
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   567
   ObjectMemory garbageCollect
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   568
!
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   569
4584
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   570
garbageCollectMost
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   571
    "collect recently created garbage; return the amount of freeSpace.
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   572
     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
   573
     newSpace + freeListSpace is returned."
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   574
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   575
    ObjectMemory scavenge.
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   576
    ^ ObjectMemory freeSpace 
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   577
      + (ObjectMemory newSpaceSize - ObjectMemory newSpaceUsed)
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   578
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   579
!
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   580
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   581
isMorphic
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   582
    ^ false
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   583
!
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   584
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   585
registerExternalObject: anObject
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   586
    "Register the given object in the external objects array and return its index.
4584
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   587
     If it is already there, just return its index.
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   588
     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
   589
     primitive code (via the global Smalltalk:SpecialObjectArray)"
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
    | objects firstEmptyIndex obj sz newObjects |
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   592
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   593
    objects := SpecialObjectArray.
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   594
    objects isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   595
	objects := Array new:5.
4584
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   596
    ].
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   597
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   598
    "find the first empty slot and look if already registered"
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   599
    firstEmptyIndex := 0.
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   600
    1 to: objects size do: [:i |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   601
	obj := objects at: i.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   602
	obj == anObject ifTrue: [^ i].  "object already there, just return its index"
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   603
	(obj == nil and: [firstEmptyIndex = 0]) ifTrue: [
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   604
	    firstEmptyIndex := i
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   605
	]
4584
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   606
    ].
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   607
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   608
    "if no empty slots, expand the array"
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   609
    firstEmptyIndex = 0 ifTrue: [
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   610
	sz := objects size.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   611
	newObjects := objects species new: sz + 20.  "grow linearly"
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   612
	newObjects replaceFrom: 1 to: sz with: objects startingAt: 1.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   613
	firstEmptyIndex := sz + 1.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   614
	SpecialObjectArray := newObjects.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   615
	objects := newObjects
4584
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   616
    ].
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   617
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   618
    objects at: firstEmptyIndex put: anObject.
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   619
    ^ firstEmptyIndex
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   620
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   621
!
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   622
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   623
unregisterExternalObject: anObject
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   624
    "Unregister the given object in the external objects array. 
4584
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   625
     Do nothing if it isn't registered."
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   626
5913
a69d4f34f159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5895
diff changeset
   627
    |objects|
a69d4f34f159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5895
diff changeset
   628
a69d4f34f159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5895
diff changeset
   629
    anObject isNil ifTrue:[^ self].
4584
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   630
    objects := SpecialObjectArray.
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   631
    1 to: objects size do: [:i |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   632
	(objects at: i) == anObject ifTrue: [
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   633
	    objects at: i put: nil
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   634
	]
5913
a69d4f34f159 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5895
diff changeset
   635
    ].
4584
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   636
! !
789c83e8cae0 some squeak compatibility stuff
Claus Gittinger <cg@exept.de>
parents: 4524
diff changeset
   637
7295
9ddb9543e369 category
Claus Gittinger <cg@exept.de>
parents: 7290
diff changeset
   638
!Smalltalk class methodsFor:'Compatibility-V''Age'!
6722
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
   639
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   640
allClassesImplementing:aSelector
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   641
    ^ self allClasses select:[:cls | cls implements:aSelector].
6722
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
   642
! !
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
   643
7295
9ddb9543e369 category
Claus Gittinger <cg@exept.de>
parents: 7290
diff changeset
   644
!Smalltalk class methodsFor:'Compatibility-VW5.4'!
6094
79ebf84b51bd first attempt in supporting vw5.4 definitions
Claus Gittinger <cg@exept.de>
parents: 6080
diff changeset
   645
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   646
defineClass:nameSymbol superclass:superclass indexedType:indexed private:private instanceVariableNames:instVars classInstanceVariableNames:classInstVars imports:imports category:category attributes:annotations
6094
79ebf84b51bd first attempt in supporting vw5.4 definitions
Claus Gittinger <cg@exept.de>
parents: 6080
diff changeset
   647
    |newClass|
79ebf84b51bd first attempt in supporting vw5.4 definitions
Claus Gittinger <cg@exept.de>
parents: 6080
diff changeset
   648
79ebf84b51bd first attempt in supporting vw5.4 definitions
Claus Gittinger <cg@exept.de>
parents: 6080
diff changeset
   649
    indexed == #none ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   650
	newClass := superclass 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   651
	    subclass:nameSymbol 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   652
	    instanceVariableNames:instVars
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   653
	    classVariableNames:'' 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   654
	    poolDictionaries:'' 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   655
	    category:category 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   656
	    inEnvironment:self.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   657
	classInstVars size > 0 ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   658
	    newClass class instanceVariableNames:classInstVars.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   659
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   660
	^ newClass
6851
91662dfb3e80 Remove debug print.
Stefan Vogel <sv@exept.de>
parents: 6849
diff changeset
   661
    ].
91662dfb3e80 Remove debug print.
Stefan Vogel <sv@exept.de>
parents: 6849
diff changeset
   662
    self shouldImplement.
6094
79ebf84b51bd first attempt in supporting vw5.4 definitions
Claus Gittinger <cg@exept.de>
parents: 6080
diff changeset
   663
! !
79ebf84b51bd first attempt in supporting vw5.4 definitions
Claus Gittinger <cg@exept.de>
parents: 6080
diff changeset
   664
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   665
!Smalltalk class methodsFor:'accessing'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   666
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   667
associationAt:aKey
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   668
    "return a key-value association for aKey.
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   669
     Since ST/X's Smalltalk as no real dictionary, this is
3083
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   670
     simulated here."
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   671
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   672
    |val|
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   673
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   674
    val := self at:aKey ifAbsent:nil.
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   675
    val isNil ifTrue:[^ nil].
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   676
    ^ Association key:aKey value:val
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   677
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   678
    "Created: / 1.11.1997 / 13:27:20 / cg"
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   679
!
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
   680
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   681
associationAt:aKey ifAbsent:exceptionBlock
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   682
    "return a key-value association for aKey, or the value
3610
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   683
     from exceptionBlock, if no such key is present.
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   684
     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
   685
     simulated here."
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   686
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   687
    |val|
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   688
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   689
    val := self at:aKey ifAbsent:nil.
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   690
    val isNil ifTrue:[^ exceptionBlock value].
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   691
    ^ Association key:aKey value:val
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   692
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   693
    "Created: / 18.6.1998 / 17:05:24 / cg"
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   694
!
12f32c1fe72b added #associationAt:ifAbsent: for ST80 compatibility.
Claus Gittinger <cg@exept.de>
parents: 3565
diff changeset
   695
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   696
at:aKey
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   697
    "retrieve the value stored under aKey, a symbol. 
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   698
     Return nil if not present 
1956
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   699
     (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
   700
6851
91662dfb3e80 Remove debug print.
Stefan Vogel <sv@exept.de>
parents: 6849
diff changeset
   701
    aKey class == String ifTrue:[self error:'expected symbol'].
6080
15ea3cbf6003 renamed: #allSelectorsAndMethodsDo: into: #instAndClassSelectorsAndMethodsDo:
Claus Gittinger <cg@exept.de>
parents: 6074
diff changeset
   702
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   703
%{  /* NOCONTEXT */
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   704
    RETURN ( __GLOBAL_GET(aKey) );
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
   705
%}.
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   706
    ^ self primitiveFailed
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   707
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   708
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   709
at:aKey ifAbsent:aBlock
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   710
    "retrieve the value stored at aKey.
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   711
     If there is nothing stored under this key, return the value of
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   712
     the evaluation of aBlock."
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   713
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   714
    (self includesKey:aKey) ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
   715
	^ self at:aKey
453
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
    ^ aBlock value
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   718
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
     Smalltalk at:#fooBar                       <- returns nil
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   721
     Smalltalk at:#fooBar ifAbsent:['sorry']    <- no error
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   722
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   723
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   724
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   725
at:aKey ifPresent:aBlock
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   726
    "try to retrieve the value stored at aKey.
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   727
     If there is nothing stored under this key, do nothing.
4870
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   728
     Otherwise, evaluate aBlock, passing the retrieved value as argument."
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   729
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   730
    (self includesKey:aKey) ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   731
	^ aBlock value:(self at:aKey)
4870
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   732
    ].
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   733
    ^ nil
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   734
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   735
    "
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   736
     Smalltalk at:#fooBar ifPresent:[:what | Transcript showCR:what].
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   737
     Smalltalk at:#Object ifPresent:[:what | Transcript showCR:what].
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   738
    "
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   739
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   740
!
3f6a8c368925 added #at:ifPresent:
Claus Gittinger <cg@exept.de>
parents: 4846
diff changeset
   741
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   742
at:aKey put:aValue
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   743
    "store the argument aValue under aKey, a symbol.
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   744
     Return aValue (sigh)."
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   745
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   746
    |oldValue|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   747
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
    oldValue = __GLOBAL_SET(aKey, aValue, (OBJ *)0);
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   750
%}.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   751
    CachedClasses notNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   752
	oldValue isBehavior ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   753
	    oldValue name == aKey ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   754
		CachedClasses remove:oldValue ifAbsent:[]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   755
	    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   756
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   757
	aValue isBehavior ifTrue:[
1956
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   758
"/            aValue isMeta ifTrue:[
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   759
"/                "/ this should not happen
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   760
"/                ('SMALLTALK: store a Metaclass: ' , aValue name , ' as ' , aKey) infoPrintCR.
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   761
"/            ].
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   762
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   763
	    aValue name == aKey ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   764
		CachedClasses add:aValue
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   765
	    ] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   766
		CachedClasses := nil
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   767
	    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   768
	].
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   769
    ].
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   770
    ^ aValue.
1955
276d4ce9b40e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1945
diff changeset
   771
"/
276d4ce9b40e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1945
diff changeset
   772
"/%{  /* NOCONTEXT */
276d4ce9b40e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1945
diff changeset
   773
"/    (void) __GLOBAL_SET(aKey, aValue, (OBJ *)0);
276d4ce9b40e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1945
diff changeset
   774
"/%}.
276d4ce9b40e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1945
diff changeset
   775
"/    CachedClasses := nil.
276d4ce9b40e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1945
diff changeset
   776
"/    ^ aValue
1222
b77fbb5457fb commentary
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   777
b77fbb5457fb commentary
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   778
    "Modified: 19.4.1996 / 11:31:49 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   779
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   780
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   781
includesKey:aKey
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   782
    "return true, if the key is known"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   783
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   784
    "/ for debugging - this is a common mistake,
6231
274fc37dab07 dont halt in #includesKey:
Claus Gittinger <cg@exept.de>
parents: 6217
diff changeset
   785
    "/ to try to access a class by nameString, instead
274fc37dab07 dont halt in #includesKey:
Claus Gittinger <cg@exept.de>
parents: 6217
diff changeset
   786
    "/ of by symbol.
274fc37dab07 dont halt in #includesKey:
Claus Gittinger <cg@exept.de>
parents: 6217
diff changeset
   787
274fc37dab07 dont halt in #includesKey:
Claus Gittinger <cg@exept.de>
parents: 6217
diff changeset
   788
    "/ aKey class == String ifTrue:[self halt].
4391
d6832c898c39 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4356
diff changeset
   789
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   790
%{  /* NOCONTEXT */
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   791
    RETURN ( __GLOBAL_KEYKNOWN(aKey) );
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   792
%}.
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   793
    ^ self primitiveFailed
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   794
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   795
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   796
keyAtValue:anObject
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   797
    "return the symbol under which anObject is stored - or nil"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   798
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   799
    self keysDo:[:aKey |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   800
	(self at:aKey) == anObject ifTrue:[^ aKey]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   801
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   802
    ^ nil
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   803
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   804
    "Smalltalk keyAtValue:Object"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   805
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   806
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   807
keys
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   808
    "return a collection with all keys in the Smalltalk dictionary"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   809
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   810
    |keys|
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   811
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   812
    keys := IdentitySet new.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   813
    self keysDo:[:k | keys add:k].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   814
    ^ keys
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   815
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   816
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   817
removeKey:aKey
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   818
    "remove the association stored under the key-argument from the globals dictionary.
878
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
   819
     WARNING: 
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   820
	this is somewhat dangerous: conceptionally, the association is removed,
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   821
	to which machine & byte compiled code refers if it accesses a global.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   822
	If there are still global accesses in some literalArray or from machine-compiled code,
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   823
	it continues to reference the globals value via that obsolete association and gets a nil
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   824
	value.  (which is correct)
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   825
	However, if that global is later reintroduced, a new association will be created and
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   826
	the new global now referenced via the new association.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   827
	The old accesses will still see nil, although the globals value is actually non-nil
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   828
	(this is questionable).
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   829
	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
   830
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   831
    CachedClasses := nil.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   832
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   833
%{  /* NOCONTEXT */
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   834
    RETURN ( __GLOBAL_REMOVE(aKey) );
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   835
%}.
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   836
    ^ self primitiveFailed
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
   837
2705
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   838
!
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   839
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   840
values
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   841
    "return a collection with all values in the Smalltalk dictionary"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   842
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   843
    |values|
2705
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   844
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   845
    values := OrderedCollection new.
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   846
    self do:[:v | values add:v].
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   847
    ^ values
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   848
ed04a67da248 added #values for protocol completeness
Claus Gittinger <cg@exept.de>
parents: 2681
diff changeset
   849
    "Created: 20.6.1997 / 16:58:28 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   850
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   851
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   852
!Smalltalk class methodsFor:'binary storage'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   853
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   854
addGlobalsForBinaryStorageTo:globalDictionary
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   855
    |pools|
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   856
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   857
    pools := Set new.
2465
1dfcacbbd376 ignore nil values when adding globals (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   858
879
add0438a73b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 878
diff changeset
   859
    self keysAndValuesDo:[:key :value |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   860
	(key includes:$:) ifFalse:[       "/ skip classVars
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   861
	    (value ~~ self 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   862
	    and:[value notNil]) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   863
		value isClass ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   864
		    value addGlobalsForBinaryStorageTo:globalDictionary.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   865
		    pools addAll:value sharedPools
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   866
		] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   867
		    globalDictionary at:(key->value) put:self
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   868
		].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   869
		value notNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   870
		    globalDictionary at:value put:self
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   871
		]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   872
	    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   873
	]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   874
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   875
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   876
    pools do:[:poolDictionary|
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   877
	poolDictionary addGlobalsForBinaryStorageTo:globalDictionary
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   878
    ]
2465
1dfcacbbd376 ignore nil values when adding globals (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   879
1dfcacbbd376 ignore nil values when adding globals (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   880
    "Modified: 19.3.1997 / 18:15:25 / cg"
2476
50a974f6386d renamed addGlobals.
Claus Gittinger <cg@exept.de>
parents: 2465
diff changeset
   881
    "Created: 21.3.1997 / 15:40:31 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   882
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   883
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   884
storeBinaryDefinitionOf:anObject on:stream manager:manager
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   885
    |string|
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   886
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   887
    anObject class == Association ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   888
	string := 'Smalltalk associationAt: ', anObject key storeString
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   889
    ] ifFalse: [
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   890
	string := 'Smalltalk at: ', (self keyAtValue: anObject) storeString
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   891
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   892
    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
   893
    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
   894
"/    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
   895
1dfcacbbd376 ignore nil values when adding globals (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   896
    "Modified: 19.3.1997 / 18:49:14 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   897
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   898
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   899
!Smalltalk class methodsFor:'browsing'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   900
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   901
browseAllCallsOn:aSelectorSymbol
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   902
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   903
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   904
    "startup a browser for all methods sending a particular message"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   905
6020
555c690e6616 UserPreference access
Claus Gittinger <cg@exept.de>
parents: 5940
diff changeset
   906
    UserPreferences systemBrowserClass browseAllCallsOn:aSelectorSymbol
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   907
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   908
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   909
     Smalltalk browseAllCallsOn:#at:put: 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   910
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   911
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   912
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   913
browseAllSelect:aBlock
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   914
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   915
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   916
    "startup a browser for all methods for which aBlock returns true"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   917
6020
555c690e6616 UserPreference access
Claus Gittinger <cg@exept.de>
parents: 5940
diff changeset
   918
    UserPreferences systemBrowserClass browseAllSelect:aBlock
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   919
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   920
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   921
     Smalltalk browseAllSelect:[:m | m literals isNil]
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   922
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   923
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   924
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   925
browseChanges
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   926
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   927
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   928
    "startup a changes browser"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   929
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   930
    ChangesBrowser notNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   931
	ChangesBrowser open
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   932
    ] ifFalse:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
   933
	self warn:'no ChangesBrowser built in'
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   934
    ]
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   935
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   936
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   937
     Smalltalk browseChanges
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   938
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   939
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   940
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   941
browseClass:aClass
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   942
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   943
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   944
    "startup a browser on aClass"
6970
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   945
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   946
    UserPreferences systemBrowserClass browseClass:aClass
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   947
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   948
    "
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   949
     Smalltalk browseClass:Array 
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   950
    "
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   951
!
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   952
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   953
browseImplementorsMatching:aSelectorSymbolOrMatchPattern
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   954
    "{ Pragma: +optSpace }"
6819
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   955
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   956
    "startup a browser for all methods implementing a message matching"
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   957
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   958
    UserPreferences systemBrowserClass browseImplementorsMatching:aSelectorSymbolOrMatchPattern
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   959
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   960
    "
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   961
     Smalltalk browseImplementorsOf:#'at:put:' 
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   962
     Smalltalk browseImplementorsMatching:#'at:*' 
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   963
    "
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   964
!
6b7885c187d5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6806
diff changeset
   965
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   966
browseImplementorsOf:aSelectorSymbol
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   967
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   968
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   969
    "startup a browser for all methods implementing a particular message"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   970
6020
555c690e6616 UserPreference access
Claus Gittinger <cg@exept.de>
parents: 5940
diff changeset
   971
    UserPreferences systemBrowserClass browseImplementorsOf:aSelectorSymbol
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   972
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   973
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   974
     Smalltalk browseImplementorsOf:#at:put: 
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   975
    "
6970
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   976
!
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   977
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   978
browseInClass:aClass
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   979
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   980
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   981
    "startup a full browser showing aClass"
6970
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   982
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   983
    UserPreferences systemBrowserClass openInClass:aClass
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   984
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   985
    "
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   986
     Smalltalk browseInClass:Array 
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   987
    "
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   988
!
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   989
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   990
browseInClass:aClass selector:selector
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   991
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   992
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
   993
    "startup a full browser showing aClass>>selector"
6970
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   994
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   995
    UserPreferences systemBrowserClass openInClass:aClass selector:selector
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   996
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   997
    "
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   998
     Smalltalk browseInClass:Array selector:#at:
ac358e651731 more browsing
Claus Gittinger <cg@exept.de>
parents: 6929
diff changeset
   999
    "
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1000
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1001
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1002
!Smalltalk class methodsFor:'class management'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1003
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1004
changeCategoryOf:aClass to:newCategory
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1005
    "change a classes category, add a change record,
5253
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1006
     send change notifications"
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1007
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1008
    |ns|
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1009
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1010
    aClass category ~= newCategory ifTrue:[
7581
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1011
        aClass category:(newCategory withoutSeparators asSymbol). 
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1012
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1013
        "notify change of category"
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1014
        ns := aClass environment ? self.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1015
        ns changed:#organization.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1016
        ns ~~ self ifTrue:[
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1017
            self changed:#organization.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1018
        ]
5253
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1019
    ].
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1020
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1021
    "
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1022
     Smalltalk changeCategoryOf:NewApplication to:#myApplications
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1023
    "
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1024
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1025
    "Modified: / 11.2.2000 / 11:36:27 / cg"
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1026
!
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1027
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1028
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
  1029
    NameSpace name:name
5306
806182135518 VW5i compatibility defineNameSpace: added
Claus Gittinger <cg@exept.de>
parents: 5285
diff changeset
  1030
806182135518 VW5i compatibility defineNameSpace: added
Claus Gittinger <cg@exept.de>
parents: 5285
diff changeset
  1031
!
806182135518 VW5i compatibility defineNameSpace: added
Claus Gittinger <cg@exept.de>
parents: 5285
diff changeset
  1032
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1033
flushCachedClass:aClass
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1034
    CachedClasses notNil ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1035
	CachedClasses remove:aClass ifAbsent:[]
5895
a01dd99a9985 Check for nil CachedClasses
Stefan Vogel <sv@exept.de>
parents: 5892
diff changeset
  1036
    ]
5892
df4661be9da2 added individual cachedClass-flush
Claus Gittinger <cg@exept.de>
parents: 5881
diff changeset
  1037
!
df4661be9da2 added individual cachedClass-flush
Claus Gittinger <cg@exept.de>
parents: 5881
diff changeset
  1038
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1039
flushCachedClasses
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1040
    CachedClasses := nil.
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1041
    Class flushSubclassInfo.
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1042
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1043
    "
5580
374e843aa424 allBehaviorsDo now enumerates both classes and metaclasses
Claus Gittinger <cg@exept.de>
parents: 5579
diff changeset
  1044
     Smalltalk flushCachedClasses
374e843aa424 allBehaviorsDo now enumerates both classes and metaclasses
Claus Gittinger <cg@exept.de>
parents: 5579
diff changeset
  1045
    "
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1046
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1047
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1048
removeClass:aClass
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1049
    "remove the argument, aClass from the smalltalk dictionary;
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1050
     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
  1051
     Also, class variables of aClass are removed."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1052
4781
631eb425ea4e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
  1053
    |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
  1054
4099
f6984fc5cb6c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4096
diff changeset
  1055
    aClass isNil ifTrue:[^ self].
4781
631eb425ea4e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
  1056
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1057
    oldName := aClass name.
4781
631eb425ea4e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
  1058
    sym := oldNameSym := oldName asSymbol.
631eb425ea4e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
  1059
    ((self at:oldNameSym) == aClass) ifFalse:[
7581
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1060
        "check other name ..."
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1061
        (self includes:aClass) ifFalse:[
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1062
            'Smalltalk [warning]: no such class: ' errorPrint. oldName errorPrintCR.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1063
            ^ self
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1064
        ].
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1065
        "
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1066
         the class has changed its name - without telling me ...
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1067
         what should be done in this case ?
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1068
        "
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1069
        'Smalltalk [warning]: class ' errorPrint. oldName errorPrint.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1070
        ' has changed its name' errorPrintCR.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1071
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1072
        "/
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1073
        "/ might be an alias (i.e. removing a compatibility name)
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1074
        "/
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1075
        actualName := self keyAtValue:aClass.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1076
        ('Smalltalk [info]: ' , oldName , ' is actually stored as ' , actualName , '.') infoPrintCR.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1077
        sym := actualName asSymbol.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1078
        oldName := actualName asString.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1079
        wrongName := true.
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1080
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1081
4781
631eb425ea4e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
  1082
    ns := aClass nameSpace.
631eb425ea4e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
  1083
    aClass topOwningClass notNil ifTrue:[
7581
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1084
        ons := aClass topOwningClass nameSpace
4781
631eb425ea4e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
  1085
    ].
631eb425ea4e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
  1086
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1087
    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
  1088
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
  1089
    "/
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
  1090
    "/ 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
  1091
    "/
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
  1092
    "/ self removeKey:sym.     "/ remove key - this actually fails, if there are
7581
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1093
                               "/ still compiled code references."
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1094
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1095
    "remove private classes"
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1096
2485
9f4a11a4521f new #privateClasses semantic
Claus Gittinger <cg@exept.de>
parents: 2476
diff changeset
  1097
    aClass privateClassesSorted do:[:somePrivateClass |
7581
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1098
        aClass privateClassesAt:(somePrivateClass nameWithoutPrefix) asSymbol put:nil.
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1099
    ].
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1100
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1101
    "remove class variables"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1102
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1103
    names := aClass classVariableString asCollectionOfWords.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1104
    names do:[:name |
7581
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1105
        cSym := (sym , ':' , name) asSymbol.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1106
        self at:cSym asSymbol put:nil.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1107
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1108
        "/
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1109
        "/ see comment in removeKey: on why we dont remove it here
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1110
        "/
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1111
        "/ self removeKey:cSym
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1112
    ].
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1113
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1114
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1115
"/    actually could get along with less flushing
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1116
"/    (entries for aClass and subclasses only)
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1117
"/    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
  1118
"/    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
  1119
"/    expensive then cache flushing.
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1120
"/
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1121
"/    aClass allSubclassesDo:[:aSubclass |
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1122
"/        ObjectMemory flushInlineCachesForClass:aSubclass.
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1123
"/        ObjectMemory flushMethodCacheFor:aSubclass
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1124
"/    ].
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1125
"/    ObjectMemory flushInlineCachesForClass:aClass.
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1126
"/    ObjectMemory flushMethodCacheFor:aClass
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1127
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1128
    ObjectMemory flushInlineCaches.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1129
    ObjectMemory flushMethodCache.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1130
7181
7382117bf3fa james' package changes
james
parents: 7126
diff changeset
  1131
    aClass addChangeRecordForClassRemove.
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1132
    self changed:#classRemove with:aClass.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1133
7581
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1134
    aClass setCategory:#'* removed *'.
1655
fb6ee1b55ec4 use *-categories
Claus Gittinger <cg@exept.de>
parents: 1650
diff changeset
  1135
5326
8950253bef78 flush subclass info when removing classes
ca
parents: 5322
diff changeset
  1136
    self flushCachedClasses.
8950253bef78 flush subclass info when removing classes
ca
parents: 5322
diff changeset
  1137
    Class flushSubclassInfo.
8950253bef78 flush subclass info when removing classes
ca
parents: 5322
diff changeset
  1138
3627
452f2e1ff1b4 removeClass - care for aliases.
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  1139
    wrongName == true ifTrue:[
7581
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1140
        "/
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1141
        "/ an alias (i.e. removing a compatibility name)
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1142
        "/
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1143
        "/ check if there are more refs to it ...
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1144
        [self includes:aClass] whileTrue:[
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1145
            actualName := self keyAtValue:aClass.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1146
            ('Smalltalk [info]: ' , aClass name , ' is also registered under the name ' , actualName
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1147
                          , ' - remove that binding too.') infoPrintCR.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1148
            self at:actualName put:nil.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1149
        ].
4724
44793fe70787 recompile ns classes after a class remove
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  1150
    ].
44793fe70787 recompile ns classes after a class remove
Claus Gittinger <cg@exept.de>
parents: 4723
diff changeset
  1151
4781
631eb425ea4e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4770
diff changeset
  1152
    ns ~~ Smalltalk ifTrue:[
7581
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1153
        ons notNil ifTrue:[
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1154
            ClassBuilder
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1155
                recompileGlobalAccessorsTo:oldNameSym
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1156
                in:ons
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1157
                except:nil
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1158
        ].
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1159
        (ns notNil and:[ns ~~ ons]) ifTrue:[
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1160
            ClassBuilder
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1161
                recompileGlobalAccessorsTo:oldNameSym
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1162
                in:ns
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1163
                except:nil
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  1164
        ].
3627
452f2e1ff1b4 removeClass - care for aliases.
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  1165
    ].
452f2e1ff1b4 removeClass - care for aliases.
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  1166
452f2e1ff1b4 removeClass - care for aliases.
Claus Gittinger <cg@exept.de>
parents: 3626
diff changeset
  1167
    "Modified: / 20.6.1998 / 13:26:10 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1168
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1169
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1170
renameClass:aClass to:newName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1171
    "rename aClass to newName. Most of the work is in
1525
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1172
     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
  1173
     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
  1174
2270
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1175
    |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
  1176
     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
  1177
     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
  1178
     oldMetaclass newMetaclass|
af0d91fe32fc rename fixed (if it implies a nameSpace or ownership change)
Claus Gittinger <cg@exept.de>
parents: 5601
diff changeset
  1179
af0d91fe32fc rename fixed (if it implies a nameSpace or ownership change)
Claus Gittinger <cg@exept.de>
parents: 5601
diff changeset
  1180
    "/ check for all intermediate namespaces / owning classes
5253
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1181
    i1 := 1.
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1182
    i2 := 1.
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1183
    ns := self.
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1184
    [i2 ~~ 0] whileTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1185
	i2 := newName indexOfSubCollection:'::' startingAt:i1.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1186
	i2 ~~ 0 ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1187
	    nm := newName copyFrom:i1 to:i2-1.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1188
	    ns isNameSpace ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1189
		subns := ns at:nm asSymbol ifAbsent:nil.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1190
		subns isNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1191
		    self error:'Nonexisting namespace: ',nm.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1192
		    ^ nil.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1193
		].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1194
	    ] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1195
		subns := ns privateClassesAt:nm asSymbol.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1196
		subns isNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1197
		    self error:'Cannot create a namespace below a class'
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1198
		]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1199
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1200
	    ns := subns.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1201
	    i1 := i2 + 2.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1202
	].
5253
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1203
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1204
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1205
    oldName := aClass name.
6734
dd9fa2d81cb9 use #topNameSpace
Claus Gittinger <cg@exept.de>
parents: 6722
diff changeset
  1206
    oldNameSpace := aClass topNameSpace.
2319
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
  1207
    oldBaseName := aClass nameWithoutNameSpacePrefix.
3698
8bce45214d24 fixed renaming of a private class (must recompile owner)
Claus Gittinger <cg@exept.de>
parents: 3678
diff changeset
  1208
    oldBaseNameWithoutPrefix := aClass nameWithoutPrefix.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1209
    oldSym := oldName asSymbol.
2485
9f4a11a4521f new #privateClasses semantic
Claus Gittinger <cg@exept.de>
parents: 2476
diff changeset
  1210
    privateClasses := aClass privateClassesSorted.
2270
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1211
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1212
    ((self at:oldSym) ~~ aClass) ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1213
	'Smalltalk [warning]: rename failed - name is different from key' errorPrintCR.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1214
	^ self
2270
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1215
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1216
1525
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1217
    "/ rename the class
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1218
1847
6e567214b167 care for className being a symbol, when renaming classes
Claus Gittinger <cg@exept.de>
parents: 1758
diff changeset
  1219
    newSym := newName asSymbol.
6e567214b167 care for className being a symbol, when renaming classes
Claus Gittinger <cg@exept.de>
parents: 1758
diff changeset
  1220
    aClass setName:newSym.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1221
1525
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1222
    "/ store it in Smalltalk
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1223
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1224
    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
  1225
5610
af0d91fe32fc rename fixed (if it implies a nameSpace or ownership change)
Claus Gittinger <cg@exept.de>
parents: 5601
diff changeset
  1226
    "/ change the owning class
af0d91fe32fc rename fixed (if it implies a nameSpace or ownership change)
Claus Gittinger <cg@exept.de>
parents: 5601
diff changeset
  1227
    ns isNameSpace ifFalse:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1228
	aClass isPrivate ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1229
	    aClass class setOwningClass:ns.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1230
	] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1231
	    oldMetaclass := aClass class.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1232
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1233
	    "/ sigh - must make a PrivateMetaclass from Metaclass
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1234
	    newMetaclass := PrivateMetaclass new.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1235
	    newMetaclass flags:(oldMetaclass flags).
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1236
	    newMetaclass setSuperclass:(oldMetaclass superclass).
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1237
	    newMetaclass instSize:(oldMetaclass instSize).
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1238
	    newMetaclass setInstanceVariableString:(oldMetaclass instanceVariableString).
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1239
	    newMetaclass setMethodDictionary:(oldMetaclass methodDictionary).
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1240
	    newMetaclass setSoleInstance:aClass.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1241
	    newMetaclass setOwningClass:ns.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1242
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1243
	    aClass changeClassTo:newMetaclass.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1244
	    ObjectMemory flushCaches.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1245
	]
5610
af0d91fe32fc rename fixed (if it implies a nameSpace or ownership change)
Claus Gittinger <cg@exept.de>
parents: 5601
diff changeset
  1246
    ] ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1247
	aClass isPrivate ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1248
	    aClass class setOwningClass:nil.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1249
	]        
5610
af0d91fe32fc rename fixed (if it implies a nameSpace or ownership change)
Claus Gittinger <cg@exept.de>
parents: 5601
diff changeset
  1250
    ].
af0d91fe32fc rename fixed (if it implies a nameSpace or ownership change)
Claus Gittinger <cg@exept.de>
parents: 5601
diff changeset
  1251
878
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
  1252
    "/
1525
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1253
    "/ 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
  1254
    "/
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
  1255
    "/ self removeKey:oldSym.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1256
    self at:newSym put:aClass.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1257
1525
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1258
    "/ 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
  1259
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1260
    oldNameToNewName := IdentityDictionary new.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1261
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1262
    names := aClass classVariableString asCollectionOfWords.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1263
    names do:[:name |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1264
	oldCVSym := (oldSym , ':' , name) asSymbol.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1265
	value := self at:oldCVSym.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1266
	self at:oldCVSym put:nil.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1267
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1268
	"/
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1269
	"/ see comment in #removeKey: on why we dont remove it it here
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1270
	"/
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1271
	"/ self removeKey:cSym.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1272
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1273
	newCVSym := (newSym , ':' , name) asSymbol.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1274
	self at:newCVSym put:value.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1275
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1276
	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
  1277
    ].
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1278
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1279
    "/ 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
  1280
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
  1281
    oldNameToNewName keysAndValuesDo:[:oldNameSym :newNameSym |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1282
	aClass withAllSubclasses do:[:aSubClass |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1283
	    Transcript showCR:'changing global accesses from ''' , oldNameSym , ''' into ''' , newNameSym , ''' in class: ''' , aSubClass name , ''' ...'.        
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1284
	    aSubClass instAndClassSelectorsAndMethodsDo:[:sel :aMethod |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1285
		aMethod changeLiteral:oldNameSym to:newNameSym
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1286
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1287
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1288
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1289
	"/ and also in privateClasses ? ...
2270
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1290
2485
9f4a11a4521f new #privateClasses semantic
Claus Gittinger <cg@exept.de>
parents: 2476
diff changeset
  1291
"/        privateClasses size > 0 ifTrue:[
2270
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1292
"/            privateClasses do:[:aPrivateClass |
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1293
"/                aPrivateClass withAllSubclasses do:[:aSubClass |
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1294
"/                    aSubClass class methodDictionary do:[:aMethod |
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1295
"/                        aMethod changeLiteral:oldNameSym to:newNameSym
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1296
"/                    ].
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1297
"/                    aSubClass methodDictionary do:[:aMethod |
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1298
"/                        aMethod changeLiteral:oldNameSym to:newNameSym
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1299
"/                    ]
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1300
"/                ].
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1301
"/            ]
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1302
"/        ]
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1303
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1304
2270
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1305
    aClass addChangeRecordForClassRename:oldSym to:newSym.
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
  1306
5333
d80386e06d21 rename into other namespace did not work
Claus Gittinger <cg@exept.de>
parents: 5328
diff changeset
  1307
    "/ 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
  1308
    aClass setEnvironment:nil.
6734
dd9fa2d81cb9 use #topNameSpace
Claus Gittinger <cg@exept.de>
parents: 6722
diff changeset
  1309
    newNameSpace := aClass topNameSpace.
2405
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1310
2485
9f4a11a4521f new #privateClasses semantic
Claus Gittinger <cg@exept.de>
parents: 2476
diff changeset
  1311
    privateClasses size > 0 ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1312
	"/ must rename privateClasses as well
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1313
	Class withoutUpdatingChangesDo:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1314
	    privateClasses do:[:aPrivateClass |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1315
		self renameClass:aPrivateClass
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1316
		     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
  1317
            
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1318
		Transcript showCR:'recompiling methods in ''' , newNameSpace name , ''' accessing ''' , oldName , '::' , aPrivateClass nameWithoutPrefix , ''' ...'.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1319
		ClassBuilder
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1320
		    recompileGlobalAccessorsTo:(oldName , '::' , aPrivateClass nameWithoutPrefix) asSymbol 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1321
		    in:newNameSpace 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1322
		    except:nil.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1323
	    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1324
	]
2405
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1325
    ].
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
  1326
2319
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
  1327
    oldNameSpace ~~ newNameSpace ifTrue:[
5246
2ca7b20c4108 create namespaces as requried, when renaming a class
Claus Gittinger <cg@exept.de>
parents: 5214
diff changeset
  1328
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1329
	"/ all those referencing the class from the old nameSpace
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1330
	"/ must be recompiled ...
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1331
	"/ (to now access the global from smalltalk)
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1332
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1333
	oldNameSpace ~~ Smalltalk ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1334
	    Transcript showCR:'recompiling methods in ''' , oldNameSpace name , ''' accessing ''' , oldName , ''' ...'.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1335
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1336
	    ClassBuilder
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1337
		recompileGlobalAccessorsTo:oldName asSymbol 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1338
		in:oldNameSpace 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1339
		except:nil.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1340
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1341
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1342
	"/ all referencing the class in the new namespace
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1343
	"/ as well; to now access the new class.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1344
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1345
	(newNameSpace notNil and:[newNameSpace ~~ Smalltalk]) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1346
	    Transcript showCR:'recompiling methods in ''' , newNameSpace name , ''' accessing ''' , oldBaseName , ''' ...'.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1347
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1348
	    ClassBuilder
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1349
		recompileGlobalAccessorsTo:oldBaseName asSymbol 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1350
		in:newNameSpace 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1351
		except:nil.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1352
	].
3698
8bce45214d24 fixed renaming of a private class (must recompile owner)
Claus Gittinger <cg@exept.de>
parents: 3678
diff changeset
  1353
    ] ifFalse:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1354
	"/ all references to a global with my new name in my owning class
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1355
	"/ must now be redirected to myself.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1356
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1357
	aClass isPrivate ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1358
	    newBaseName := aClass nameWithoutNameSpacePrefix.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1359
	    newBaseNameWithoutPrefix := aClass nameWithoutPrefix.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1360
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1361
	    Transcript showCR:'recompiling methods accessing ''' , oldBaseNameWithoutPrefix , ''' in: ''' , aClass owningClass name , ''' ...'.        
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1362
	    aClass owningClass recompileMethodsAccessingGlobal:oldBaseNameWithoutPrefix.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1363
	    aClass owningClass class recompileMethodsAccessingGlobal:oldBaseNameWithoutPrefix.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1364
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1365
	    Transcript showCR:'recompiling methods accessing ''' , oldBaseName , ''' in: ''' , aClass owningClass name , ''' ...'.        
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1366
	    aClass owningClass recompileMethodsAccessingGlobal:oldBaseName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1367
	    aClass owningClass class recompileMethodsAccessingGlobal:oldBaseName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1368
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1369
	    Transcript showCR:'recompiling methods accessing ''' , newBaseNameWithoutPrefix , ''' in: ''' , aClass owningClass name , ''' ...'.        
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1370
	    aClass owningClass recompileMethodsAccessingGlobal:newBaseNameWithoutPrefix.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1371
	    aClass owningClass class recompileMethodsAccessingGlobal:newBaseNameWithoutPrefix.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1372
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1373
	    Transcript showCR:'recompiling methods accessing ''' , newBaseName , ''' in: ''' , aClass owningClass name , ''' ...'.        
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1374
	    aClass owningClass recompileMethodsAccessingGlobal:newBaseName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1375
	    aClass owningClass class recompileMethodsAccessingGlobal:newBaseName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1376
	]
4040
b27f87d9772d must send a change-notifiction, when renaming a class.
Claus Gittinger <cg@exept.de>
parents: 4028
diff changeset
  1377
    ].
b27f87d9772d must send a change-notifiction, when renaming a class.
Claus Gittinger <cg@exept.de>
parents: 4028
diff changeset
  1378
b27f87d9772d must send a change-notifiction, when renaming a class.
Claus Gittinger <cg@exept.de>
parents: 4028
diff changeset
  1379
    aClass changed:#definition.
b27f87d9772d must send a change-notifiction, when renaming a class.
Claus Gittinger <cg@exept.de>
parents: 4028
diff changeset
  1380
    "/ 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
  1381
    aClass allSubclassesDo:[:subClass |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1382
	subClass changed:#definition.
4040
b27f87d9772d must send a change-notifiction, when renaming a class.
Claus Gittinger <cg@exept.de>
parents: 4028
diff changeset
  1383
    ].
5613
b534e427f028 change message when renaming a class
Claus Gittinger <cg@exept.de>
parents: 5611
diff changeset
  1384
    self changed:#definition.
b534e427f028 change message when renaming a class
Claus Gittinger <cg@exept.de>
parents: 5611
diff changeset
  1385
    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
  1386
8bce45214d24 fixed renaming of a private class (must recompile owner)
Claus Gittinger <cg@exept.de>
parents: 3678
diff changeset
  1387
    "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
  1388
    "Modified: / 18.6.1996 / 14:20:50 / stefan"
5253
c6b2933882fe rename with namespace involved;
Claus Gittinger <cg@exept.de>
parents: 5247
diff changeset
  1389
    "Modified: / 11.2.2000 / 01:12:38 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1390
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1391
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1392
!Smalltalk class methodsFor:'copying'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1393
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1394
deepCopy
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1395
    "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
  1396
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1397
    ^ self
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1398
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1399
    "Modified: 18.5.1996 / 12:13:33 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1400
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1401
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1402
deepCopyUsing:aDictionary
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1403
    "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
  1404
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1405
    ^ self
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1406
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1407
    "Modified: 18.5.1996 / 12:13:36 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1408
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1409
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1410
shallowCopy
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1411
    "redefined to return self - there is only one Smalltalk dictionary"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1412
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1413
    ^ self
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1414
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1415
    "Modified: 18.5.1996 / 12:13:39 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1416
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1417
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1418
simpleDeepCopy
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1419
    "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
  1420
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1421
    ^ self
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1422
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
  1423
    "Modified: 18.5.1996 / 12:13:42 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1424
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1425
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1426
!Smalltalk class methodsFor:'debugging ST/X'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1427
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1428
compileTrace:aBoolean
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1429
    "dump generated inline code (NOOP if VM was compiled without the trace-debug option)"
7325
f424d3e7978f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7295
diff changeset
  1430
%{
f424d3e7978f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7295
diff changeset
  1431
    extern char __compileTrace__;
f424d3e7978f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7295
diff changeset
  1432
f424d3e7978f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7295
diff changeset
  1433
    __compileTrace__ = (aBoolean == true) ? 1 : 0;
f424d3e7978f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7295
diff changeset
  1434
%}
f424d3e7978f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7295
diff changeset
  1435
    "
f424d3e7978f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7295
diff changeset
  1436
     Smalltalk compileTrace:true
f424d3e7978f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7295
diff changeset
  1437
     Smalltalk compileTrace:false
f424d3e7978f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7295
diff changeset
  1438
    "
f424d3e7978f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7295
diff changeset
  1439
!
f424d3e7978f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7295
diff changeset
  1440
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1441
debugBreakPoint
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1442
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1443
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1444
    "call the dummy debug function, on which a breakpoint
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1445
     can be put in adb, sdb, dbx or gdb.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1446
     WARNING: this method is for debugging only
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1447
	      it will be removed without notice."
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1448
%{
2212
be31fd0cea4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2176
diff changeset
  1449
    __PATCHUPCONTEXTS(__context);
808
1919838112d1 renamed debugBreakPoint -> __debugBreakPoint__
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
  1450
    __debugBreakPoint__();
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1451
    RETURN(self);
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1452
%}.
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1453
    ^ self primitiveFailed
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1454
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1455
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1456
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1457
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1458
exitWithCoreDump
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1459
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1460
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1461
    "abort program and dump core"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1462
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1463
    OperatingSystem exitWithCoreDump
4096
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1464
    "/ never returns
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1465
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1466
    "Be careful evaluating this
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1467
     Smalltalk exitWithCoreDump
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1468
    "
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1469
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1470
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1471
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1472
fatalAbort
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1473
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1474
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1475
    "report a fatal-error, print a stack backtrace and exit with core dump.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1476
     (You may turn off the stack print with debugPrinting:false)"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1477
%{
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1478
    __fatal0(__context, "fatalAbort");
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1479
    /* NEVER RETURNS */
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1480
%}.
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1481
    ^ self primitiveFailed
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1482
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1483
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1484
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1485
fatalAbort:aMessage
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1486
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1487
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1488
    "report a fatal-error; print a stack backtrace and exit with core dump
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1489
     (You may turn off the stack print with debugPrinting:false)"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1490
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1491
%{
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1492
    char *msg;
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1493
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1494
    if (__isString(aMessage))
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1495
	msg = (char *) __stringVal(aMessage);
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1496
    else
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1497
	msg = "fatalAbort";
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1498
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1499
    __fatal0(__context, msg);
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1500
    /* NEVER RETURNS */
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1501
%}.
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1502
    ^ self primitiveFailed
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1503
5441
e88302747bbd rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5427
diff changeset
  1504
!
e88302747bbd rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5427
diff changeset
  1505
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1506
vmInstructionTrace:aBoolean
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1507
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1508
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1509
! !
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1510
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1511
!Smalltalk class methodsFor:'enumerating'!
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1512
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1513
allBehaviorsDo:aBlock
5580
374e843aa424 allBehaviorsDo now enumerates both classes and metaclasses
Claus Gittinger <cg@exept.de>
parents: 5579
diff changeset
  1514
    "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
  1515
374e843aa424 allBehaviorsDo now enumerates both classes and metaclasses
Claus Gittinger <cg@exept.de>
parents: 5579
diff changeset
  1516
    self allClassesAndMetaclassesDo:aBlock
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1517
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1518
    "
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1519
     Smalltalk allBehaviorsDo:[:aClass | aClass name printCR]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1520
    "
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1521
!
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1522
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1523
allClassCategories
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1524
    "return a set of all class categories in the system"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1525
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1526
    |allCategories|
6217
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1527
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1528
    allCategories := Set new.
7124
da253fd03ba1 Do not sort categories in #allClassCategories.
Stefan Vogel <sv@exept.de>
parents: 7105
diff changeset
  1529
    Smalltalk allClassesDo:[:cls | |category|
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1530
	category := cls category.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1531
	category notNil ifTrue:[    
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1532
	    allCategories add:category.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1533
	].
7124
da253fd03ba1 Do not sort categories in #allClassCategories.
Stefan Vogel <sv@exept.de>
parents: 7105
diff changeset
  1534
    ].
da253fd03ba1 Do not sort categories in #allClassCategories.
Stefan Vogel <sv@exept.de>
parents: 7105
diff changeset
  1535
7125
947dc98dd66c Return #allClassCategories as Set (to fit comment and make
Stefan Vogel <sv@exept.de>
parents: 7124
diff changeset
  1536
    ^ allCategories.
6217
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1537
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1538
    "
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1539
     Smalltalk allClassCategories
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1540
    "
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1541
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1542
    "Created: / 17.11.2001 / 12:13:09 / cg"
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1543
!
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1544
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1545
allClassesAndMetaclassesDo:aBlock
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1546
    "evaluate the argument, aBlock for all classes and metaclasses in the system."
5579
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1547
5940
804fb27727a6 oops - allClassesAndMetaclassesDo: evaluated block twice for
Claus Gittinger <cg@exept.de>
parents: 5916
diff changeset
  1548
    |already|
804fb27727a6 oops - allClassesAndMetaclassesDo: evaluated block twice for
Claus Gittinger <cg@exept.de>
parents: 5916
diff changeset
  1549
804fb27727a6 oops - allClassesAndMetaclassesDo: evaluated block twice for
Claus Gittinger <cg@exept.de>
parents: 5916
diff changeset
  1550
    already := IdentitySet new.
804fb27727a6 oops - allClassesAndMetaclassesDo: evaluated block twice for
Claus Gittinger <cg@exept.de>
parents: 5916
diff changeset
  1551
    self allClassesDo:[:eachClass | |cls|
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1552
	cls := eachClass theNonMetaclass.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1553
	(already includes:cls) ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1554
	    aBlock value:cls.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1555
	    already add:cls.    
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1556
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1557
	cls := cls class.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1558
	(already includes:cls) ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1559
	    aBlock value:cls.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1560
	    already add:cls.    
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1561
	].
5579
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1562
    ].
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1563
!
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1564
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1565
allClassesDo:aBlock
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1566
    "evaluate the argument, aBlock for all classes in the system."
5580
374e843aa424 allBehaviorsDo now enumerates both classes and metaclasses
Claus Gittinger <cg@exept.de>
parents: 5579
diff changeset
  1567
5765
152a485288d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5760
diff changeset
  1568
    self allClasses do:aBlock
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1569
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1570
    "
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1571
     Smalltalk allClassesDo:[:aClass | aClass name printCR]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1572
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1573
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1574
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1575
allClassesInCategory:aCategory
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1576
    "return a collection of for all classes in aCategory;
1299
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1577
     The order of the classes is not defined."
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1578
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1579
    |coll|
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1580
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1581
    coll := OrderedCollection new.
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1582
    self allClassesInCategory:aCategory do:[:aClass |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1583
	coll add:aClass
1299
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1584
    ].
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1585
    ^ coll
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1586
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1587
    "
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1588
     Smalltalk allClassesInCategory:'Views-Basic'
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1589
    "
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1590
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1591
    "Modified: 25.4.1996 / 18:06:13 / cg"
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1592
!
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1593
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1594
allClassesInCategory:aCategory do:aBlock
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1595
    "evaluate the argument, aBlock for all classes in the aCategory;
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1596
     The order of the classes is not defined."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1597
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1598
    aCategory notNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1599
	self allClassesDo:[:aClass |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1600
	    aClass isMeta ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1601
		(aClass category = aCategory) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1602
		    aBlock value:aClass
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1603
		]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1604
	    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1605
	]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1606
    ]
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1607
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1608
    "
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1609
     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
  1610
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1611
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1612
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1613
allClassesInCategory:aCategory inOrderDo:aBlock
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1614
    "evaluate the argument, aBlock for all classes in aCategory;
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1615
     superclasses come first - then subclasses"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1616
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1617
    |classes|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1618
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1619
    aCategory notNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1620
	classes := OrderedCollection new.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1621
	self allClassesInCategory:aCategory do:[:aClass |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1622
	    classes add:aClass
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1623
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1624
	classes topologicalSort:[:a :b | b isSubclassOf:a].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1625
	classes do:aBlock
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1626
    ]
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1627
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1628
    "
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1629
     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
  1630
    "
6217
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1631
e0f4f3959c49 reuse allClassesInCategory-stuff
Claus Gittinger <cg@exept.de>
parents: 6188
diff changeset
  1632
    "Modified: / 17.11.2001 / 12:18:15 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1633
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1634
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1635
allClassesInOrderDo:aBlock
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1636
    "evaluate the argument, aBlock for all classes in the system;
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1637
     Evaluation order is by inheritance: superclasses come first."
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1638
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1639
    |already|
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1640
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1641
    already := IdentitySet new.
5580
374e843aa424 allBehaviorsDo now enumerates both classes and metaclasses
Claus Gittinger <cg@exept.de>
parents: 5579
diff changeset
  1642
    self allClassesDo:[:aClass |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1643
	(already includes:aClass) ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1644
	    aClass allSuperclasses reverseDo:[:cls |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1645
		(already includes:aClass) ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1646
		    already add:cls.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1647
		    aBlock value:cls.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1648
		].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1649
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1650
	    already add:aClass.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1651
	    aBlock value:aClass.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1652
	]
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1653
    ].
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1654
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1655
    "
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1656
     Smalltalk allClassesInOrderDo:[:aClass | aClass name printCR]
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1657
    "
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1658
!
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1659
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1660
allKeysDo:aBlock
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1661
    "evaluate the argument, aBlock for all keys in the Smalltalk dictionary"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1662
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1663
    ^ self keysDo:aBlock
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1664
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1665
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1666
allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1667
    "return a set of all method categories in the system"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1668
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1669
    |allCategories|
6722
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1670
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1671
    allCategories := Set new.
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1672
    Smalltalk allClassesDo:[:cls |
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1673
	allCategories addAll:cls categories.
6722
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1674
    ].
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1675
7432
155245708ca3 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7430
diff changeset
  1676
    ^ allCategories.
6722
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1677
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1678
    "
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1679
     Smalltalk allMethodCategories
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1680
    "
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1681
!
8388292bc41d allClassesImplementing & allMethodCategories
Claus Gittinger <cg@exept.de>
parents: 6715
diff changeset
  1682
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1683
associationsDo:aBlock
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1684
    "evaluate the argument, aBlock for all key/value pairs 
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1685
     in the Smalltalk dictionary"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1686
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1687
    self keysDo:[:aKey |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1688
	aBlock value:(aKey -> (self at:aKey))
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1689
    ]
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1690
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1691
    "Smalltalk associationsDo:[:assoc | assoc printCR]"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1692
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1693
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1694
basicKeys
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1695
    "for rel > 5 only"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1696
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1697
    self primitiveFailed
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1698
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1699
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1700
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1701
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1702
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1703
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1704
!
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1705
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1706
do:aBlock
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1707
    "evaluate the argument, aBlock for all values in the Smalltalk dictionary"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1708
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1709
    |work|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1710
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1711
%{  /* 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
  1712
    __GLOBALS_DO(&aBlock, &work);
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1713
    RETURN (self);
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1714
%}.
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1715
    self keysDo:[:aKey |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1716
	aBlock value:(self at:aKey)
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1717
    ]
617
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
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1720
keysAndValuesDo:aBlock
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1721
    "evaluate the two-arg block, aBlock for all keys and values"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1722
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1723
    self keysDo:[:aKey |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1724
	aBlock value:aKey value:(self at:aKey)
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1725
    ]
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1726
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1727
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1728
keysDo:aBlock
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1729
    "evaluate the argument, aBlock for all keys in the Smalltalk dictionary"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1730
    |work|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1731
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1732
%{  /* 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
  1733
    __GLOBALKEYS_DO(&aBlock, &work);
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1734
    RETURN (self);
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1735
%}.
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1736
    self basicKeys do:[:aKey |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1737
	aBlock value:aKey
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1738
    ]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1739
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1740
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1741
!Smalltalk class methodsFor:'inspecting'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1742
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1743
inspectorClass
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1744
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1745
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1746
    "redefined to launch a DictionaryInspector
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1747
     (instead of the default Inspector)."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1748
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1749
    ^ DictionaryInspectorView
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1750
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1751
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1752
!Smalltalk class methodsFor:'message control'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1753
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1754
silentLoading
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1755
    "returns the Silentloading class variable."
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1756
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1757
     ^ SilentLoading
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1758
!
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1759
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1760
silentLoading:aBoolean
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1761
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1762
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1763
    "allows access to the Silentloading class variable, which controls
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1764
     messages from all kinds of system onto the transcript.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1765
     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
  1766
     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
  1767
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1768
    |prev|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1769
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1770
    prev := SilentLoading.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1771
    SilentLoading := aBoolean.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1772
    ^ prev
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1773
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1774
4957
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  1775
!Smalltalk class methodsFor:'misc accessing'!
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  1776
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1777
beHeadless:aBoolean
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1778
    "set/clear the headlessOperation flag."
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1779
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1780
    HeadlessOperation := aBoolean
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1781
!
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1782
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1783
standAloneApp:aBoolean
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1784
    "set/clear the StandAlone flag."
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1785
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1786
    StandAlone := aBoolean
4957
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  1787
! !
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  1788
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1789
!Smalltalk class methodsFor:'misc stuff'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1790
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1791
addExitBlock:aBlock
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1792
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1793
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1794
    "add a block to be executed when Smalltalk finishes.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1795
     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
  1796
     cleanup in stand alone applications."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1797
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1798
    ExitBlocks isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1799
	ExitBlocks := OrderedCollection with:aBlock
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1800
    ] ifFalse:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1801
	ExitBlocks add:aBlock
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1802
    ]
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1803
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1804
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1805
addImageStartBlock:aBlock
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1806
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1807
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1808
    "add a blocks to be executed in a separate process after
2681
0de96fb520ac commentary
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  1809
     everything has been initialized. 
0de96fb520ac commentary
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  1810
     These blocks will be executed after an image restart."
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1811
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1812
    ImageStartBlocks isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1813
	ImageStartBlocks := OrderedCollection with:aBlock
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1814
    ] ifFalse:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1815
	ImageStartBlocks add:aBlock
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1816
    ]
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1817
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1818
    "Created: 9.9.1996 / 16:48:20 / stefan"
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1819
!
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1820
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1821
addStartBlock:aBlock
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1822
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1823
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1824
    "add a blocks to be executed in a separate process after
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1825
     everything has been initialized. These blocks will
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1826
     be deleted after execution and therefore not be
2681
0de96fb520ac commentary
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  1827
     executed after an image restart. 
0de96fb520ac commentary
Claus Gittinger <cg@exept.de>
parents: 2677
diff changeset
  1828
     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
  1829
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1830
    StartBlocks isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1831
	StartBlocks := OrderedCollection with:aBlock
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1832
    ] ifFalse:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1833
	StartBlocks add:aBlock
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1834
    ]
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1835
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1836
    "Created: 9.9.1996 / 16:46:53 / stefan"
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1837
!
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1838
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1839
exit
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1840
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1841
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1842
    "finish the Smalltalk system"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1843
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1844
    ObjectMemory changed:#aboutToExit.  "/ for ST/X backward compatibility
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1845
    ObjectMemory changed:#aboutToQuit.  "/ for ST-80 compatibility
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1846
    ExitBlocks notNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1847
	ExitBlocks do:[:aBlock |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1848
	    aBlock value
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1849
	]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1850
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1851
    OperatingSystem exit
4096
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1852
    "/ never returns
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1853
d292495070db exitWithCoreDump was duplicate
Claus Gittinger <cg@exept.de>
parents: 4067
diff changeset
  1854
    "Be careful evaluating this
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1855
     Smalltalk exit
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1856
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1857
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1858
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1859
sleep:aDelay
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1860
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1861
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1862
    "wait for aDelay seconds.
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1863
     OBSOLETE: this is historical leftover and will be removed"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1864
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1865
    OperatingSystem sleep:aDelay
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1866
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1867
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1868
!Smalltalk class methodsFor:'queries'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1869
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1870
allClasses
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1871
    "return an unordered collection of all classes in the system.
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1872
     Only globally anchored classes are returned 
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1873
     (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
  1874
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1875
    |classes|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1876
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1877
    "/ 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
  1878
    "/ the reason is that if we modify the class hierarchy in
4067
732848627915 comment
Claus Gittinger <cg@exept.de>
parents: 4048
diff changeset
  1879
    "/ another view (background fileIn), while building up the
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1880
    "/ cachedClasses set, this may be flushed (invalidated) by the
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1881
    "/ other process in the meanwhile.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1882
    "/ If that happens, we restart the set-building here
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1883
    "/
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1884
    [(classes := CachedClasses) isNil] whileTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1885
	CachedClasses := classes := IdentitySet new:800. 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1886
	self keysAndValuesDo:[:sym :anObject |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1887
	    anObject notNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1888
		anObject isBehavior ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1889
		    "/ sigh - would like to skip over aliases
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1890
		    "/ but this cannot be done simply by comparing
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1891
		    "/ the classes name against the store-key
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1892
		    "/ i.e. cannot do:
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1893
		    "/      anObject name == sym ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1894
		    "/          classes add:anObject
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1895
		    "/      ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1896
		    "/ because that would lead to ignore all java
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1897
		    "/ classes, which are stored under a different
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1898
		    "/ key.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1899
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1900
		    (anObject name == sym
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1901
		    or:[anObject isJavaClass]) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1902
			classes add:anObject
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1903
		    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1904
		]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1905
	    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1906
	]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1907
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1908
    ^ classes
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1909
4618
f5a0e70205c9 oops - do not check for classes name = key (java stuff)
Claus Gittinger <cg@exept.de>
parents: 4607
diff changeset
  1910
    "CachedClasses := nil.
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1911
     Smalltalk allClasses
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1912
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1913
    to get the list sorted by name:
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1914
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1915
     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
  1916
    "
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1917
5278
ae041ee44fd1 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5269
diff changeset
  1918
    "Modified: / 23.2.2000 / 10:49:46 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1919
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1920
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1921
allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1922
    "return an unordered collection of all classes with their metaclasses in the system."
5579
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1923
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1924
    |classes|
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1925
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1926
    classes := IdentitySet new.
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1927
    self allClassesDo:[:eachClass |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1928
	classes add:(eachClass theNonMetaclass).
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1929
	classes add:(eachClass theMetaclass).
5579
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1930
    ].
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1931
    ^ classes
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1932
!
26af506d271e added #allClassesAndMetaclasses
Claus Gittinger <cg@exept.de>
parents: 5550
diff changeset
  1933
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1934
allClassesWithAllPrivateClasses
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1935
    "return an unordered collection of all classes in the Smalltalk namespace.
4642
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1936
     Only globally anchored classes are returned 
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1937
     (i.e. anonymous ones have to be aquired by Behavior allSubInstances)"
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1938
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1939
    ^ self allClasses select:[:aClass | 
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1940
	    |owner|
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1941
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1942
	    (aClass isNameSpace not      
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1943
	    or:[aClass == Smalltalk])
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1944
	    and:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1945
		owner := aClass topOwningClass.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1946
		(owner ? aClass) nameSpace == Smalltalk
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  1947
	    ]
4642
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1948
      ]
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1949
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1950
    "
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1951
     Smalltalk allClassesWithAllPrivateClasses
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1952
    "
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1953
!
fa212209890c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4630
diff changeset
  1954
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1955
cellAt:aName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1956
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1957
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1958
    "return the address of a global cell
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1959
     - used internally for compiler only"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1960
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1961
%{  /* NOCONTEXT */
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1962
    RETURN ( __GLOBAL_GETCELL(aName) );
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  1963
%}.
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1964
    ^ self primitiveFailed
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  1965
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1966
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1967
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1968
classCategoryCompletion:aPartialCategory
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  1969
    "given a partial class category name, return an array consisting of
6539
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1970
     2 entries: 1st: collection consisting of matching categories
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1971
		2nd: the longest match"
6539
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1972
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1973
    |matches best lcName|
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1974
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1975
    matches := IdentitySet new.
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1976
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1977
    "/ search for exact match
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1978
    self allClassesDo:[:aClass |
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1979
	|category|
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1980
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1981
	category := aClass category.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1982
	(category notNil and:[category startsWith:aPartialCategory]) ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1983
	    matches add:category
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1984
	]
6539
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1985
    ].
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1986
    matches isEmpty ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1987
	"/ search for case-ignoring match
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1988
	lcName := aPartialCategory asLowercase.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1989
	self allClassesDo:[:aClass |
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1990
	    |category|
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1991
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1992
	    category := aClass category.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1993
	    (category notNil and:[category asLowercase startsWith:lcName]) ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1994
		matches add:category
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1995
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  1996
	].
6539
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1997
    ].
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1998
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  1999
    matches isEmpty ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2000
	^ Array with:aPartialCategory with:(Array with:aPartialCategory)
6539
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  2001
    ].
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  2002
    matches size == 1 ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2003
	^ Array with:matches first with:(matches asArray)
6539
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  2004
    ].
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  2005
    matches := matches asSortedCollection.
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  2006
    best := matches longestCommonPrefix.
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  2007
    ^ Array with:best with:matches asArray
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  2008
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  2009
    "
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  2010
     Smalltalk classCategoryCompletion:'Sys'    
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  2011
     Smalltalk classCategoryCompletion:'System'              
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  2012
     Smalltalk classCategoryCompletion:'System-BinaryStorage' 
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  2013
    "
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  2014
!
62e7528c83fe classCategoryCompletion
Claus Gittinger <cg@exept.de>
parents: 6524
diff changeset
  2015
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2016
classNamed:aString
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2017
    "return the class with name aString, or nil if absent.
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2018
     To get to the metaClass, append ' class' to the string.
7520
03cbfda8cf8b allow for namespace::name in #classNamed.
Claus Gittinger <cg@exept.de>
parents: 7432
diff changeset
  2019
     To get a nameSpace or private class, prefix the name as required."
03cbfda8cf8b allow for namespace::name in #classNamed.
Claus Gittinger <cg@exept.de>
parents: 7432
diff changeset
  2020
03cbfda8cf8b allow for namespace::name in #classNamed.
Claus Gittinger <cg@exept.de>
parents: 7432
diff changeset
  2021
    |cls sym nonMeta idx ns nm|
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2022
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2023
    "be careful, to not invent new symbols ..."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2024
    sym := aString asSymbolIfInterned.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2025
    sym notNil ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2026
	cls := self at:sym ifAbsent:nil.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2027
	cls isBehavior ifTrue:[^ cls].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2028
	cls isNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2029
	    idx := sym indexOfSubCollection:'::'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2030
	    idx ~~ 0 ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2031
		ns := sym copyTo:idx-1.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2032
		nm := sym copyFrom:idx+2.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2033
		ns := Smalltalk at:ns asSymbol.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2034
		ns notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2035
		    ns isNameSpace ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2036
			cls := ns at:(nm asSymbol).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2037
		    ] ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2038
			ns isBehavior ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2039
			    cls := ns privateClassesAt:(nm asSymbol).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2040
			]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2041
		    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2042
		].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2043
		cls isBehavior ifTrue:[^ cls].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2044
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2045
	].
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2046
    ].
1480
df0bea6285f8 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  2047
    (aString endsWith:' class') ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2048
	nonMeta := self classNamed:(aString copyWithoutLast:6).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2049
	nonMeta notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2050
	    ^ nonMeta theMetaclass
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2051
	].
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2052
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2053
    ^ nil
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2054
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2055
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2056
     Smalltalk classNamed:'Object'    
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2057
     Smalltalk classNamed:'fooBar' 
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2058
     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
  2059
     Smalltalk classNamed:'Object class'    
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2060
     Smalltalk classNamed:'Metaclass'    
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2061
     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
  2062
     Smalltalk classNamed:'Array class'    
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2063
    "
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2064
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2065
    "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
  2066
    "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
  2067
    "Modified: 19.6.1996 / 14:22:21 / stefan"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2068
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2069
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2070
classNames
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2071
    "return a collection of all classNames in the system"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2072
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2073
    ^ self allClasses collect:[:aClass | aClass name]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2074
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2075
    "
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2076
     Smalltalk classNames
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2077
    "
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2078
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2079
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2080
classnameCompletion:aPartialClassName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2081
    "given a partial classname, return an array consisting of
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2082
     2 entries: 1st: collection consisting of matching names
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2083
		2nd: the best (longest) match"
6403
2b81e1bc42ea better classNameCompletion (namespaces)
Claus Gittinger <cg@exept.de>
parents: 6390
diff changeset
  2084
6472
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2085
    ^ self
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2086
	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
  2087
!
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2088
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2089
classnameCompletion:aPartialClassName inEnvironment:anEnvironment
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2090
    "given a partial classname, return an array consisting of
6472
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2091
     2 entries: 1st: collection consisting of matching names
7572
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2092
                2nd: the best (longest) match"
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2093
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2094
    |searchName matches ignCaseMatches best isMatchString cls nsPrefix 
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2095
     others nearBy lcSearchName|
6438
9df1edfc0b54 class-name completion (ith namespace-prefix)
Claus Gittinger <cg@exept.de>
parents: 6421
diff changeset
  2096
9df1edfc0b54 class-name completion (ith namespace-prefix)
Claus Gittinger <cg@exept.de>
parents: 6421
diff changeset
  2097
    aPartialClassName isEmpty ifTrue:[
7572
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2098
        ^ Array with:aPartialClassName with:#()
6438
9df1edfc0b54 class-name completion (ith namespace-prefix)
Claus Gittinger <cg@exept.de>
parents: 6421
diff changeset
  2099
    ].
9df1edfc0b54 class-name completion (ith namespace-prefix)
Claus Gittinger <cg@exept.de>
parents: 6421
diff changeset
  2100
9df1edfc0b54 class-name completion (ith namespace-prefix)
Claus Gittinger <cg@exept.de>
parents: 6421
diff changeset
  2101
    (aPartialClassName startsWith:'Smalltalk::') ifTrue:[
7572
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2102
        nsPrefix := 'Smalltalk::'.
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2103
        searchName := aPartialClassName copyFrom:'Smalltalk::' size + 1
6438
9df1edfc0b54 class-name completion (ith namespace-prefix)
Claus Gittinger <cg@exept.de>
parents: 6421
diff changeset
  2104
    ] ifFalse:[
7572
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2105
        nsPrefix := ''.
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2106
        searchName := aPartialClassName.
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2107
    ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2108
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2109
    (searchName at:1) isLowercase ifTrue:[
7572
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2110
        searchName := searchName copy asUppercaseFirst
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2111
    ].
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2112
    lcSearchName := searchName asLowercase.
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2113
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2114
    isMatchString := searchName includesMatchCharacters.
1451
90f7841aba25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  2115
    matches := OrderedCollection new.
2523
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  2116
    ignCaseMatches := OrderedCollection new.
7572
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2117
    others := OrderedCollection new.
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2118
6472
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2119
    anEnvironment allClassesDo:[:aClass |
7572
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2120
        |className addIt lcClassName|
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2121
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2122
        aClass isMeta ifFalse:[
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2123
            className := aClass name.
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2124
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2125
            isMatchString ifTrue:[
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2126
                addIt := searchName match:className
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2127
            ] ifFalse:[
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2128
                addIt := className startsWith:searchName.
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2129
            ].
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2130
            addIt ifTrue:[
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2131
                matches add:(nsPrefix , className)
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2132
            ] ifFalse:[
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2133
                "/ try ignoring case
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2134
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2135
                isMatchString ifTrue:[
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2136
                    addIt := searchName match:className ignoreCase:true
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2137
                ] ifFalse:[
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2138
                    lcClassName := className asLowercase.
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2139
                    addIt := lcClassName startsWith:lcSearchName.
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2140
                    addIt ifFalse:[
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2141
                        others add:className
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2142
                    ]
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2143
                ].
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2144
                addIt ifTrue:[
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2145
                    ignCaseMatches add:(nsPrefix , className)
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2146
                ].
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2147
            ]
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2148
        ]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2149
    ].
1451
90f7841aba25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  2150
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2151
    matches isEmpty ifTrue:[
7572
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2152
        matches := ignCaseMatches
6403
2b81e1bc42ea better classNameCompletion (namespaces)
Claus Gittinger <cg@exept.de>
parents: 6390
diff changeset
  2153
    ].
2523
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  2154
    matches isEmpty ifTrue:[
7572
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2155
        nearBy := SortedCollection new sortBlock:[:a :b | a key < b key].
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2156
        others do:[:className |
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2157
            |lcClassName dist cmpName|
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2158
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2159
            lcClassName := className asLowercase.
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2160
            dist := lcClassName levenshteinTo:lcSearchName s:9 k:1 c:0 i:9 d:2.
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2161
            cmpName := lcClassName copyTo:(lcSearchName size min:lcClassName size).
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2162
            dist := dist min:(cmpName levenshteinTo:lcSearchName s:9 k:1 c:0 i:9 d:2).
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2163
            cmpName := lcClassName copyTo:(lcSearchName size + 1 min:lcClassName size).
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2164
            dist := dist min:(cmpName levenshteinTo:lcSearchName s:9 k:1 c:0 i:9 d:2).
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2165
            dist < 4 ifTrue:[
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2166
                nearBy add:( dist -> (nsPrefix , className) ).
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2167
            ]
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2168
        ].
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2169
        matches := nearBy collect:[:eachPair | eachPair value].
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2170
    ].
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2171
    matches isEmpty ifTrue:[
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2172
        ^ Array with:searchName with:(Array with:searchName)
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2173
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2174
    matches size == 1 ifTrue:[
7572
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2175
        best := matches first.
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2176
        ^ Array with:best with:(matches asArray)
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2177
    ].
1451
90f7841aba25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  2178
    matches := matches asSortedCollection.
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2179
    isMatchString ifTrue:[
7572
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2180
        best := searchName.
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2181
    ] ifFalse:[
7572
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2182
        best := matches longestCommonPrefix.
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2183
        best size == 0 ifTrue:[
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2184
            ^ Array with:matches first with:(matches asArray)
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2185
        ].
6403
2b81e1bc42ea better classNameCompletion (namespaces)
Claus Gittinger <cg@exept.de>
parents: 6390
diff changeset
  2186
    ].
2b81e1bc42ea better classNameCompletion (namespaces)
Claus Gittinger <cg@exept.de>
parents: 6390
diff changeset
  2187
6472
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2188
    cls := anEnvironment classNamed:best.
6403
2b81e1bc42ea better classNameCompletion (namespaces)
Claus Gittinger <cg@exept.de>
parents: 6390
diff changeset
  2189
    (cls isBehavior and:[cls isNameSpace]) ifTrue:[
7572
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2190
        (matches conform:[:each | each = best
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2191
                                 or:[each startsWith:(best , '::')]])
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2192
        ifTrue:[
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2193
            best := best , '::'
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  2194
        ].
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2195
    ].
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2196
    ^ Array with:best with:matches asArray
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2197
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2198
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2199
     Smalltalk classnameCompletion:'Arr' 
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2200
     Smalltalk classnameCompletion:'Arra' 
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2201
     Smalltalk classnameCompletion:'arra' 
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2202
     Smalltalk classnameCompletion:'*rray' 
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2203
    "
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2204
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  2205
    "Created: 24.11.1995 / 17:24:45 / cg"
2523
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  2206
    "Modified: 3.4.1997 / 18:25:01 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2207
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2208
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2209
defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2210
    "return the default namespace, where new classes are installed,
2004
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  2211
     if NO special nameSpace handler is present"
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  2212
2029
55ddf4c547ab ask the current project for the defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 2004
diff changeset
  2213
    |p|
55ddf4c547ab ask the current project for the defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 2004
diff changeset
  2214
55ddf4c547ab ask the current project for the defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 2004
diff changeset
  2215
    (Project notNil and:[(p := Project current) notNil]) ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2216
	^ p defaultNameSpace
2029
55ddf4c547ab ask the current project for the defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 2004
diff changeset
  2217
    ].
55ddf4c547ab ask the current project for the defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 2004
diff changeset
  2218
2004
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  2219
    ^ self
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  2220
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  2221
    "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
  2222
    "Modified: 2.1.1997 / 20:01:31 / cg"
2004
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  2223
!
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  2224
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2225
globalnameCompletion:aPartialGlobalName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2226
    "given a partial globalName, return an array consisting of
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2227
     2 entries: 1st: collection consisting of matching names
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2228
		2nd: the best (longest) match"
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2229
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2230
    |searchName matches ignCaseMatches best isMatchString|
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2231
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2232
    searchName := aPartialGlobalName.
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2233
    searchName isEmpty ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2234
	^ Array with:searchName with:#()
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2235
    ].
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2236
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2237
    (searchName at:1) isLowercase ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2238
	searchName := searchName copy asUppercaseFirst
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2239
    ].
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2240
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2241
    isMatchString := searchName includesMatchCharacters.
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2242
    matches := OrderedCollection new.
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2243
    ignCaseMatches := OrderedCollection new.
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2244
    self keysDo:[:aGlobalName |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2245
	| addIt|
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2246
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2247
	isMatchString ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2248
	    addIt := searchName match:aGlobalName
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2249
	] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2250
	    addIt := aGlobalName startsWith:searchName
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2251
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2252
	addIt ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2253
	    matches add:aGlobalName
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2254
	] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2255
	    "/ try ignoring case
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2256
	    isMatchString ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2257
		addIt := searchName match:aGlobalName ignoreCase:true
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2258
	    ] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2259
		addIt := aGlobalName asLowercase startsWith:searchName asLowercase
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2260
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2261
	    addIt ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2262
		ignCaseMatches add:aGlobalName
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2263
	    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2264
	]
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2265
    ].
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2266
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2267
    matches isEmpty ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2268
	matches := ignCaseMatches
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2269
    ].
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2270
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2271
    matches isEmpty ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2272
	^ Array with:searchName with:(Array with:searchName)
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2273
    ].
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2274
    matches size == 1 ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2275
	^ Array with:matches first with:(matches asArray)
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2276
    ].
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2277
    matches := matches asSortedCollection.
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2278
    isMatchString ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2279
	best := searchName.
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2280
    ] ifFalse:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2281
	best := matches longestCommonPrefix.
5736
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2282
    ].
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2283
    ^ Array with:best with:matches asArray
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2284
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2285
    "
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2286
     Smalltalk globalnameCompletion:'Arr' 
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2287
     Smalltalk globalnameCompletion:'Arra' 
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2288
     Smalltalk globalnameCompletion:'arra' 
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2289
     Smalltalk globalnameCompletion:'*rray' 
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2290
    "
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2291
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2292
    "Created: 24.11.1995 / 17:24:45 / cg"
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2293
    "Modified: 3.4.1997 / 18:25:01 / cg"
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2294
!
d625e5505254 globalNamecompletion
Claus Gittinger <cg@exept.de>
parents: 5716
diff changeset
  2295
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2296
hasNamespaces
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2297
    "can be redefined by dummy namespaces/environments, to suppress
6472
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2298
     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
  2299
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2300
    ^ true
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2301
!
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2302
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2303
includes:something
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2304
    "this should come from Collection.
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2305
     will change the inheritance - Smalltalk is actually a collection"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2306
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2307
    self do:[:element | element = something ifTrue:[^ true]].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2308
    ^ false
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2309
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2310
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2311
isNameSpace
1706
24629b820adf prepare for private classes
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  2312
    ^ true
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2313
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2314
    "Created: 11.10.1996 / 18:10:43 / cg"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2315
!
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2316
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2317
isTopLevelNameSpace
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2318
    ^ true
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2319
!
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2320
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2321
isTopLevelNamespace
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2322
    "obsolete - use isTopLevelNameSpace"
5365
95c615a40176 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5363
diff changeset
  2323
7432
155245708ca3 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7430
diff changeset
  2324
    <resource:#obsolete>
155245708ca3 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7430
diff changeset
  2325
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  2326
    ^ true
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  2327
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  2328
    "Created: 11.10.1996 / 18:10:43 / cg"
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  2329
!
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  2330
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2331
methodProtocolCompletion:aPartialProtocolName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2332
    "given a partial method protocol name, return an array consisting of
5505
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2333
     2 entries: 1st: collection consisting of matching protocols
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2334
		2nd: the longest match"
5505
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2335
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2336
    |matches best lcName|
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2337
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2338
    matches := IdentitySet new.
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2339
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2340
    "/ search for exact match
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2341
    self allClassesDo:[:aClass |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2342
	aClass instAndClassSelectorsAndMethodsDo:[:aSelector :aMethod |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2343
	    |protocol|
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2344
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2345
	    protocol := aMethod category.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2346
	    (protocol notNil and:[protocol startsWith:aPartialProtocolName]) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2347
		matches add:protocol
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2348
	    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2349
	].
5505
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2350
    ].
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2351
    matches isEmpty ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2352
	"/ search for case-ignoring match
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2353
	lcName := aPartialProtocolName asLowercase.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2354
	self allClassesDo:[:aClass |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2355
	    aClass instAndClassSelectorsAndMethodsDo:[:aSelector :aMethod |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2356
		|protocol|
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2357
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2358
		protocol := aMethod category.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2359
		(protocol asLowercase startsWith:lcName) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2360
		    matches add:protocol
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2361
		]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2362
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2363
	].
5505
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2364
    ].
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2365
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2366
    matches isEmpty ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2367
	^ Array with:aPartialProtocolName with:(Array with:aPartialProtocolName)
5505
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2368
    ].
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2369
    matches size == 1 ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2370
	^ Array with:matches first with:(matches asArray)
5505
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2371
    ].
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2372
    matches := matches asSortedCollection.
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2373
    best := matches longestCommonPrefix.
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2374
    ^ Array with:best with:matches asArray
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2375
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2376
    "
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2377
     Smalltalk methodProtocolCompletion:'doc'
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2378
     Smalltalk methodProtocolCompletion:'docu' 
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2379
     Smalltalk methodProtocolCompletion:'documenta' 
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2380
    "
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2381
!
e99e8e9cbfef added #methodProtocolCompletion:
Claus Gittinger <cg@exept.de>
parents: 5504
diff changeset
  2382
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2383
numberOfGlobals
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2384
    "return the number of global variables in the system"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2385
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2386
    |tally "{ Class: SmallInteger }" |
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2387
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2388
    tally := 0.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2389
    self do:[:obj | tally := tally + 1].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2390
    ^ tally
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2391
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2392
    "Smalltalk numberOfGlobals"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2393
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2394
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2395
referencesAny:aCollection
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2396
    "redefined, since the references are only kept in the VM's symbol table"
3260
10e5199831ee added #referencesAny:
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  2397
10e5199831ee added #referencesAny:
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  2398
    self keysAndValuesDo:[:key :val |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2399
	aCollection do:[:anObject |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2400
	    (key == anObject) ifTrue:[^ true].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2401
	    (val == anObject ) ifTrue:[^ true].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2402
	]
3260
10e5199831ee added #referencesAny:
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  2403
    ].
10e5199831ee added #referencesAny:
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  2404
    ^ super referencesAny:aCollection
10e5199831ee added #referencesAny:
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  2405
10e5199831ee added #referencesAny:
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  2406
    "Created: / 2.2.1998 / 16:01:20 / cg"
10e5199831ee added #referencesAny:
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  2407
!
10e5199831ee added #referencesAny:
Claus Gittinger <cg@exept.de>
parents: 3155
diff changeset
  2408
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2409
referencesDerivedInstanceOf:aClass
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2410
    "redefined, since the references are only kept in the VM's symbol table"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2411
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2412
    self keysAndValuesDo:[:key :val |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2413
	(key isKindOf:aClass) ifTrue:[^ true].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2414
	(val isKindOf:aClass) ifTrue:[^ true].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2415
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2416
    ^ super referencesDerivedInstanceOf:aClass
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2417
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2418
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2419
referencesInstanceOf:aClass
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2420
    "redefined, since the references are only kept in the VM's symbol table"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2421
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2422
    self keysAndValuesDo:[:key :val |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2423
	(key isMemberOf:aClass) ifTrue:[^ true].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2424
	(val isMemberOf:aClass) ifTrue:[^ true].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2425
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2426
    ^ super referencesInstanceOf:aClass
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2427
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2428
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2429
referencesObject:anObject
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2430
    "redefined, since the references are only kept in the VM's symbol table"
6074
d91c99700e3b renamed #references: (conflict with RB's #references)
Claus Gittinger <cg@exept.de>
parents: 6033
diff changeset
  2431
d91c99700e3b renamed #references: (conflict with RB's #references)
Claus Gittinger <cg@exept.de>
parents: 6033
diff changeset
  2432
    self keysAndValuesDo:[:key :val |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2433
	(key == anObject) ifTrue:[^ true].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2434
	(val == anObject ) ifTrue:[^ true].
6074
d91c99700e3b renamed #references: (conflict with RB's #references)
Claus Gittinger <cg@exept.de>
parents: 6033
diff changeset
  2435
    ].
d91c99700e3b renamed #references: (conflict with RB's #references)
Claus Gittinger <cg@exept.de>
parents: 6033
diff changeset
  2436
    ^ super referencesObject:anObject
d91c99700e3b renamed #references: (conflict with RB's #references)
Claus Gittinger <cg@exept.de>
parents: 6033
diff changeset
  2437
d91c99700e3b renamed #references: (conflict with RB's #references)
Claus Gittinger <cg@exept.de>
parents: 6033
diff changeset
  2438
    "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
  2439
!
d91c99700e3b renamed #references: (conflict with RB's #references)
Claus Gittinger <cg@exept.de>
parents: 6033
diff changeset
  2440
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2441
resolveName:nameIn inClass:aClass
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2442
    "resolve aName as if compiled within aClass;
3026
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2443
     i.e. if it has a private class with this name, return it;
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2444
     if aName is known within the classes namespace, return that.
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2445
     Otherwise, return a global with that name.
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2446
     This should be used whereever Smalltalk>>at: used to be used,
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2447
     to resolve a global by name."
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2448
4354
8e265dcb2536 fixed name resolving with Smalltalk:: as prefix
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  2449
    |aName sym cls ns|
8e265dcb2536 fixed name resolving with Smalltalk:: as prefix
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  2450
8e265dcb2536 fixed name resolving with Smalltalk:: as prefix
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  2451
    nameIn isNil ifTrue:[^ nil].
4356
54d1f0b81638 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4355
diff changeset
  2452
    nameIn isBehavior ifTrue:[^ nameIn].       "/ already resolved
4354
8e265dcb2536 fixed name resolving with Smalltalk:: as prefix
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  2453
    aName := nameIn.
8e265dcb2536 fixed name resolving with Smalltalk:: as prefix
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  2454
8e265dcb2536 fixed name resolving with Smalltalk:: as prefix
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  2455
    (aName startsWith:'Smalltalk::') ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2456
	aName := aName copyFrom:12.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2457
	^ self at:(aName asSymbol) ifAbsent:nil.
4354
8e265dcb2536 fixed name resolving with Smalltalk:: as prefix
Claus Gittinger <cg@exept.de>
parents: 4334
diff changeset
  2458
    ].
3026
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2459
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2460
    sym := aName asSymbol.
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2461
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2462
    cls := aClass privateClassesAt:sym.
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2463
    cls notNil ifTrue:[^ cls].
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2464
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2465
    ns := aClass nameSpace.
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2466
    (ns notNil and:[ns ~~ Smalltalk]) ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2467
	ns isNameSpace ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2468
	    cls := ns at:sym ifAbsent:nil.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2469
	] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2470
	    cls := ns privateClassesAt:sym
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2471
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2472
	cls notNil ifTrue:[^ cls].
3025
53b114d5be3e added #resolveClassNamed:
ca
parents: 3022
diff changeset
  2473
    ].
3026
7e1d4efc5ba5 *** empty log message ***
ca
parents: 3025
diff changeset
  2474
    ^ self at:sym ifAbsent:nil.
4356
54d1f0b81638 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4355
diff changeset
  2475
54d1f0b81638 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4355
diff changeset
  2476
    "Modified: / 9.7.1999 / 01:18:07 / cg"
3025
53b114d5be3e added #resolveClassNamed:
ca
parents: 3022
diff changeset
  2477
!
53b114d5be3e added #resolveClassNamed:
ca
parents: 3022
diff changeset
  2478
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2479
selectorCompletion:aPartialSymbolName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2480
    "given a partial selector, return an array consisting of
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2481
     2 entries: 1st: collection consisting of matching implemented selectors
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2482
		2nd: the longest match"
3565
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2483
6472
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2484
    ^ self
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2485
	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
  2486
!
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2487
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2488
selectorCompletion:aPartialSymbolName inEnvironment:anEnvironment
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2489
    "given a partial selector, return an array consisting of
6472
72a32fbfa191 allow for completion algorithm to be used on another ns
Claus Gittinger <cg@exept.de>
parents: 6438
diff changeset
  2490
     2 entries: 1st: collection consisting of matching implemented selectors
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2491
		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
  2492
3565
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2493
    |matches best lcSym|
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2494
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2495
    matches := IdentitySet new.
3565
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2496
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2497
    "/ 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
  2498
    anEnvironment allClassesDo:[:aClass |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2499
	aClass instAndClassSelectorsAndMethodsDo:[:aSelector :aMethod |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2500
	    (aSelector startsWith:aPartialSymbolName) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2501
		matches add:aSelector
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2502
	    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2503
	].
3565
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2504
    ].
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2505
    matches isEmpty ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2506
	"/ search for case-ignoring match
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2507
	lcSym := aPartialSymbolName asLowercase.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2508
	anEnvironment allClassesDo:[:aClass |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2509
	    aClass instAndClassSelectorsAndMethodsDo:[:aSelector :aMethod |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2510
		(aSelector asLowercase startsWith:lcSym) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2511
		    matches add:aSelector
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2512
		]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2513
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2514
	].
3565
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2515
    ].
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2516
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2517
    matches isEmpty ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2518
	^ Array with:aPartialSymbolName with:(Array with:aPartialSymbolName)
3565
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2519
    ].
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2520
    matches size == 1 ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2521
	^ Array with:matches first with:(matches asArray)
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2522
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2523
    matches := matches asSortedCollection.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2524
    best := matches longestCommonPrefix.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2525
    ^ Array with:best with:matches asArray
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2526
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2527
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2528
     Smalltalk selectorCompletion:'at:p'  
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2529
     Smalltalk selectorCompletion:'nextP' 
3565
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2530
     Smalltalk selectorCompletion:'nextp' 
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2531
    "
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1455
diff changeset
  2532
3565
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2533
    "Modified: / 7.6.1996 / 08:44:33 / stefan"
966a108e3765 also do caseless selectorCompletion
Claus Gittinger <cg@exept.de>
parents: 3560
diff changeset
  2534
    "Modified: / 14.6.1998 / 15:54:03 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2535
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2536
4431
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2537
!Smalltalk class methodsFor:'queries-system'!
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2538
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2539
dialectName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2540
    ^ 'SmalltalkX'
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2541
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2542
    "
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2543
     Smalltalk dialectName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2544
    "
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2545
!
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2546
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2547
dialectReleaseVersion
7348
277bbf3b3de2 category
Claus Gittinger <cg@exept.de>
parents: 7325
diff changeset
  2548
    ^ self versionString
277bbf3b3de2 category
Claus Gittinger <cg@exept.de>
parents: 7325
diff changeset
  2549
277bbf3b3de2 category
Claus Gittinger <cg@exept.de>
parents: 7325
diff changeset
  2550
    "
277bbf3b3de2 category
Claus Gittinger <cg@exept.de>
parents: 7325
diff changeset
  2551
     Smalltalk dialectReleaseVersion
277bbf3b3de2 category
Claus Gittinger <cg@exept.de>
parents: 7325
diff changeset
  2552
    "
277bbf3b3de2 category
Claus Gittinger <cg@exept.de>
parents: 7325
diff changeset
  2553
!
277bbf3b3de2 category
Claus Gittinger <cg@exept.de>
parents: 7325
diff changeset
  2554
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2555
isDolphinSmalltalk
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2556
    "return false here - this may be useful to write portable
4970
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2557
     applications - add #isDolphinSmalltalk to your dolphin,
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2558
     returning true there."
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2559
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2560
    ^ false
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2561
!
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2562
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2563
isSmalltalkMT
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2564
    "return false here - this may be useful to write portable
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2565
     applications - add #isSmalltalkMT to your smalltalk-MT,
4970
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2566
     returning true there."
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2567
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2568
    ^ false
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2569
!
c5ab8ead5b8e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4963
diff changeset
  2570
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2571
isSmalltalkV
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2572
    "return false here - this may be useful to write portable
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2573
     applications - add #isSmalltalkV to your smalltalkV,
4431
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2574
     returning true there."
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2575
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2576
    ^ false
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2577
!
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2578
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2579
isSmalltalkX
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2580
    "return true here - this may be useful to write portable
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2581
     applications - add #isSmalltalkX to your other smalltalks,
4431
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2582
     returning false there."
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2583
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2584
    ^ true
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2585
!
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2586
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2587
isSqueak
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2588
    "return false here - this may be useful to write portable
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2589
     applications - add #isSqueak to your squeak,
4431
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2590
     returning true there."
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2591
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2592
    ^ false
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2593
!
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2594
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2595
isVisualAge
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2596
    "return false here - this may be useful to write portable
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2597
     applications - add #isVisualAge to your visualAge,
4431
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2598
     returning true there."
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2599
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2600
    ^ false
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2601
!
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2602
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2603
isVisualWorks
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2604
    "return false here - this may be useful to write portable
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2605
     applications - add #isVisualWorks to your visualWorks,
4431
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2606
     returning true there."
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2607
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2608
    ^ false
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2609
! !
1c7ee9a97eda *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4430
diff changeset
  2610
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  2611
!Smalltalk class methodsFor:'startup'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2612
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2613
displayInitializationDone
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2614
    "inform the restart, that the display has been initialized"
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2615
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2616
    CallbackSignal raiseRequest.
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2617
!
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2618
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2619
mainStartup:graphicalMode
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2620
    "common start/restart action, if there is a Display, initialize it
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2621
     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
  2622
7043
d88be9c553d2 Release references to processes in #mainStartup:
Stefan Vogel <sv@exept.de>
parents: 7040
diff changeset
  2623
    |process imageName thisIsARestart|
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2624
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2625
    imageName := ObjectMemory imageName.
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  2626
    thisIsARestart := imageName notNil.
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2627
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2628
    "
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2629
     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
  2630
    "
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2631
    Display notNil ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2632
	Display deviceIOTimeoutErrorSignal handlerBlock:[:ex |
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2633
	    SaveEmergencyImage == true ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2634
		'Display [warning]: broken display connection - emergency save in ''crash.img''.' infoPrintCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2635
		ObjectMemory primSnapShotOn:'crash.img'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2636
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2637
	    'Display [warning]: broken display connection - exit.' infoPrintCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2638
	    Smalltalk exit.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2639
	].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2640
	Display startDispatch.
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2641
    ].
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2642
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2643
    Initializing := false.
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2644
2074
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  2645
    "/ 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
  2646
    "/ 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
  2647
    "/ 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
  2648
    "/ 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
  2649
7043
d88be9c553d2 Release references to processes in #mainStartup:
Stefan Vogel <sv@exept.de>
parents: 7040
diff changeset
  2650
    process := [
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2651
	StartBlocks notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2652
	    StartBlocks do:[:aBlock|
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2653
		aBlock value
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2654
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2655
	    StartBlocks := nil.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2656
	].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2657
	ImageStartBlocks notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2658
	    ImageStartBlocks do:[:aBlock|
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2659
		aBlock value
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2660
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2661
	].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2662
	StandAlone ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2663
	    (SilentLoading == true) ifFalse:[   "i.e. undefined counts as false" 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2664
		thisIsARestart ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2665
		    Transcript cr.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2666
		    Transcript showCR:('Smalltalk restarted from:'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2667
					, imageName
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2668
					, ' (saved '
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2669
					, ObjectMemory imageSaveTime printString
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2670
					, ')' ).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2671
		] ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2672
		    Transcript showCR:(self hello).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2673
		    Transcript showCR:(self copyrightString).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2674
		    Transcript cr.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2675
		].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2676
		Transcript cr.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2677
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2678
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2679
	    DemoMode==true ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2680
		Transcript showCR:'*** Restricted use:                              ***'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2681
		Transcript showCR:'*** This program may be used for education only. ***'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2682
		Transcript showCR:'*** Please read the files COPYRIGHT and LICENSE  ***'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2683
		Transcript showCR:'*** for more details.                            ***'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2684
		Transcript cr.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2685
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2686
	].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2687
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2688
	thisIsARestart ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2689
	    "/
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2690
	    "/ the final late notification - users can now assume that
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2691
	    "/ views, forms etc. have been recreated.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2692
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2693
	    ObjectMemory changed:#returnFromSnapshot.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2694
	]
7039
6f1c02381145 Do not keep reference to start block handler process.
Stefan Vogel <sv@exept.de>
parents: 7000
diff changeset
  2695
7040
d24ef75bc6c3 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7039
diff changeset
  2696
    ] newProcess.
d24ef75bc6c3 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7039
diff changeset
  2697
7043
d88be9c553d2 Release references to processes in #mainStartup:
Stefan Vogel <sv@exept.de>
parents: 7040
diff changeset
  2698
    process priority:8.
d88be9c553d2 Release references to processes in #mainStartup:
Stefan Vogel <sv@exept.de>
parents: 7040
diff changeset
  2699
    process name:'start block handler'.
d88be9c553d2 Release references to processes in #mainStartup:
Stefan Vogel <sv@exept.de>
parents: 7040
diff changeset
  2700
    process beGroupLeader.
d88be9c553d2 Release references to processes in #mainStartup:
Stefan Vogel <sv@exept.de>
parents: 7040
diff changeset
  2701
    process resume.
d88be9c553d2 Release references to processes in #mainStartup:
Stefan Vogel <sv@exept.de>
parents: 7040
diff changeset
  2702
    process := nil.
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  2703
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  2704
2074
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  2705
    "/ 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
  2706
    "/ message.
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  2707
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2708
    (StartupClass notNil and:[StartupSelector notNil]) ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2709
	"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2710
	 allow more customization by reading an image specific rc-file
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2711
	"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2712
	thisIsARestart ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2713
	    (imageName asFilename hasSuffix:'img') ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2714
		imageName := imageName copyWithoutLast:4
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2715
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2716
	    self fileIn:(imageName , '.rc')
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2717
	].
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2718
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2719
"/        Display notNil ifTrue:[
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2720
"/            Display exitOnLastClose:true.
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2721
"/        ].
2086
4a9d8b5cada7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  2722
"/        Processor exitWhenNoMoreUserProcesses:true.
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2723
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2724
	process := [
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2725
	    StandAlone ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2726
		AbortSignal handle:[:ex |
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2727
		    OperatingSystem exit:1
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2728
		] do:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2729
		    StartupClass perform:StartupSelector withArguments:StartupArguments.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2730
		]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2731
	    ] ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2732
		StartupClass perform:StartupSelector withArguments:StartupArguments.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2733
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2734
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2735
	    "/
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2736
	    "/ non-GUI apps exit after the startup;
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2737
	    "/ assume that GUI apps have created & opened some view ...
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2738
	    "/
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2739
	    Display isNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2740
		Smalltalk exit.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2741
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2742
	    "/
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2743
	    "/ GUI apps exit after the last user process has finished
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2744
	    "/
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2745
	    Display exitOnLastClose:true.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2746
	    Processor exitWhenNoMoreUserProcesses:true.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2747
	] newProcess.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2748
	process priority:8.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2749
	process name:'main'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2750
	process beGroupLeader.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2751
	process resume.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2752
	process := true.    "do not refer to process"
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2753
    ].
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2754
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2755
    "
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2756
     if view-classes exist, start dispatching;
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2757
     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
  2758
    "
4957
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  2759
    ((Display notNil and:[graphicalMode]) 
7043
d88be9c553d2 Release references to processes in #mainStartup:
Stefan Vogel <sv@exept.de>
parents: 7040
diff changeset
  2760
     or:[process notNil
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2761
     or:[HeadlessOperation]]) ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2762
	Processor dispatchLoop.
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2763
    ] ifFalse:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2764
	StandAlone ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2765
	    self readEvalPrint
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2766
	]
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2767
    ].
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2768
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2769
    "done - the last process finished"
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2770
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2771
    self exit
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2772
3062
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  2773
    "Created: / 18.7.1996 / 21:07:39 / cg"
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  2774
    "Modified: / 9.9.1996 / 17:42:50 / stefan"
3483
029aabc7f3c2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3475
diff changeset
  2775
    "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
  2776
!
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2777
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2778
readEvalPrint
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2779
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2780
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2781
    "simple read-eval-print loop for non-graphical Minitalk"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2782
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2783
    |text|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2784
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2785
    'ST- ' print.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2786
    Stdin skipSeparators.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2787
    Stdin atEnd ifFalse:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2788
	text := Stdin nextChunk.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2789
	[text notNil] whileTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2790
	    AbortSignal handle:[:ex |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2791
		'evaluation aborted' printCR
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2792
	    ] do:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2793
		Compiler isNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2794
		    'No evaluator class available (Compiler == nil)' printCR.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2795
		    ^ self
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2796
		].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2797
		(Compiler evaluate:text) printCR.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2798
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2799
	    'ST- ' print.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2800
	    text := Stdin nextChunk
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2801
	].
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2802
    ].
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  2803
    '' printCR
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2804
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2805
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2806
restart
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2807
    "startup after an image has been loaded;
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  2808
     there are three change-notifications made to dependents of ObjectMemory,
10
claus
parents: 8
diff changeset
  2809
     which allow a stepwise re-init: #earlyRestart, #restarted and #returnFromSnapshot.
335
claus
parents: 329
diff changeset
  2810
3096
881660d6e997 added #earlySystemInitialization change message (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3092
diff changeset
  2811
     #earlySystemInstallation is sent for ST80 compatibility
881660d6e997 added #earlySystemInitialization change message (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3092
diff changeset
  2812
10
claus
parents: 8
diff changeset
  2813
     #earlyRestart is send first, nothing has been setup yet.
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2814
		   (should be used to flush all device dependent entries)
335
claus
parents: 329
diff changeset
  2815
10
claus
parents: 8
diff changeset
  2816
     #restarted is send right after.
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2817
		   (should be used to recreate external resources (fds, bitmaps etc)
335
claus
parents: 329
diff changeset
  2818
10
claus
parents: 8
diff changeset
  2819
     #returnFromSnapshot is sent last
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2820
		   (should be used to restart processes, reOpen Streams which cannot
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2821
		    be automatically be reopened (i.e. Sockets, Pipes) and so on.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2822
		   (Notice that positionable fileStreams are already reopened and repositioned)
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2823
     "
10
claus
parents: 8
diff changeset
  2824
4503
99718971ba26 Redirect Transcript to Stderr during restart-initialization.
Stefan Vogel <sv@exept.de>
parents: 4490
diff changeset
  2825
    |deb insp transcript idx|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2826
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2827
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2828
    "/ when we arrive here, all objects from our previous life
3971
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3952
diff changeset
  2829
    "/ 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
  2830
    "/ handles, display information etc.
3971
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3952
diff changeset
  2831
    "/ also, dynamically loaded modules have not yet been reloaded yet.
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3952
diff changeset
  2832
    "/ and the concrete OS, concrete FileName etc. are still refering to
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3952
diff changeset
  2833
    "/ 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
  2834
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2835
    Initializing := true.
3499
5f8715a97ff5 switching to OS-subclasses
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
  2836
    AbstractOperatingSystem initializeConcreteClass.
5f8715a97ff5 switching to OS-subclasses
Claus Gittinger <cg@exept.de>
parents: 3492
diff changeset
  2837
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  2838
    ImageRestartTime := AbsoluteTime now.
335
claus
parents: 329
diff changeset
  2839
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2840
    CommandLine := CommandLineArguments copy.
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2841
    CommandLineArguments := CommandLineArguments asOrderedCollection.
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  2842
    CommandName := CommandLineArguments removeFirst. "/ the command
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2843
1582
0823160f6b38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  2844
    idx := CommandLineArguments indexOf:'-q'.
6881
14a7a3c779b8 command line args
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  2845
    idx == 0 ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  2846
	idx := CommandLineArguments indexOf:'--silent'.
6881
14a7a3c779b8 command line args
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  2847
    ].
1582
0823160f6b38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  2848
    idx ~~ 0 ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2849
	Object infoPrinting:false.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2850
	ObjectMemory infoPrinting:false.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2851
	CommandLineArguments removeAtIndex:idx.
1582
0823160f6b38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  2852
    ].
0823160f6b38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  2853
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2854
    "/
3971
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3952
diff changeset
  2855
    "/ start catching SIGSEGV and SIGBUS
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3952
diff changeset
  2856
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3952
diff changeset
  2857
    OperatingSystem enableHardSignalInterrupts.
aad506cdc5d9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3952
diff changeset
  2858
2907
1666bf27f351 VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
  2859
    "/ reinit Filename
1666bf27f351 VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
  2860
    Filename reinitialize.
1666bf27f351 VMS changes
Claus Gittinger <cg@exept.de>
parents: 2896
diff changeset
  2861
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2862
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2863
    "/ 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
  2864
329
claus
parents: 326
diff changeset
  2865
    self flushPathCaches.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2866
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2867
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2868
    "/ 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
  2869
    "/ 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
  2870
477
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
  2871
    self reinitStandardStreams.
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
  2872
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2873
    "/
4503
99718971ba26 Redirect Transcript to Stderr during restart-initialization.
Stefan Vogel <sv@exept.de>
parents: 4490
diff changeset
  2874
    "/ redirect Transcript to Stderr during startup    
99718971ba26 Redirect Transcript to Stderr during restart-initialization.
Stefan Vogel <sv@exept.de>
parents: 4490
diff changeset
  2875
99718971ba26 Redirect Transcript to Stderr during restart-initialization.
Stefan Vogel <sv@exept.de>
parents: 4490
diff changeset
  2876
    transcript := Transcript.    
99718971ba26 Redirect Transcript to Stderr during restart-initialization.
Stefan Vogel <sv@exept.de>
parents: 4490
diff changeset
  2877
    Transcript := Stderr.
99718971ba26 Redirect Transcript to Stderr during restart-initialization.
Stefan Vogel <sv@exept.de>
parents: 4490
diff changeset
  2878
99718971ba26 Redirect Transcript to Stderr during restart-initialization.
Stefan Vogel <sv@exept.de>
parents: 4490
diff changeset
  2879
    "/
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2880
    "/ temporary switch back to dumb interface - 
4503
99718971ba26 Redirect Transcript to Stderr during restart-initialization.
Stefan Vogel <sv@exept.de>
parents: 4490
diff changeset
  2881
    "/ to handle errors while view-stuff is not yet reinitialized
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2882
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2883
    insp := Inspector.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2884
    deb := Debugger.
684
3e0b5a8ec381 invalidate display connection during early startup
Claus Gittinger <cg@exept.de>
parents: 680
diff changeset
  2885
    deb notNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2886
	deb reinitialize
684
3e0b5a8ec381 invalidate display connection during early startup
Claus Gittinger <cg@exept.de>
parents: 680
diff changeset
  2887
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2888
    Inspector := MiniInspector.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2889
    Debugger := MiniDebugger.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2890
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2891
    "/ 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
  2892
    "/ 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
  2893
    "/ 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
  2894
    "/ this code.
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  2895
    "/ 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
  2896
    "/ ObjectFileLoader; therefore, must reload before doing any notifications.
335
claus
parents: 329
diff changeset
  2897
1100
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  2898
    ObjectFileLoader notNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2899
	ObjectFileLoader reloadAllRememberedObjectFiles.
1100
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  2900
    ].
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  2901
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2902
    "/
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2903
    "/ invalidate all display connections.
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2904
    "/ This is required to avoid trouble if someone accesses
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2905
    "/ a display during early startup.
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2906
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2907
    Screen notNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2908
	Screen allScreens do:[:aDisplay |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2909
	    aDisplay invalidateConnection
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2910
	].
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2911
    ].
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2912
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  2913
    ObjectMemory changed:#earlySystemInstallation.
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  2914
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2915
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2916
    "/ reinitialize the Processor - restartable processes
4109
3e536657cff6 comment only
Claus Gittinger <cg@exept.de>
parents: 4099
diff changeset
  2917
    "/ 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
  2918
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2919
    Processor reinitialize.
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2920
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2921
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2922
    "/ 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
  2923
    "/ (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
  2924
3022
1b6800d56d62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3021
diff changeset
  2925
    ObjectMemory
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2926
	changed:#earlyRestart; changed:#restarted.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2927
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2928
    "/
3526
78245608c0b8 no need for last change (restarting processes).
Claus Gittinger <cg@exept.de>
parents: 3523
diff changeset
  2929
    "/ start catching SIGINT and SIGQUIT
78245608c0b8 no need for last change (restarting processes).
Claus Gittinger <cg@exept.de>
parents: 3523
diff changeset
  2930
78245608c0b8 no need for last change (restarting processes).
Claus Gittinger <cg@exept.de>
parents: 3523
diff changeset
  2931
    OperatingSystem enableUserInterrupts.
6390
41d5c47c33f0 Catch sigPWR and sigHUP on restart
Stefan Vogel <sv@exept.de>
parents: 6366
diff changeset
  2932
    OperatingSystem enableCrashSignalInterrupts.
3526
78245608c0b8 no need for last change (restarting processes).
Claus Gittinger <cg@exept.de>
parents: 3523
diff changeset
  2933
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2934
    "/ 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
  2935
    "/ 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
  2936
    "/ -fastStart argument.
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  2937
6881
14a7a3c779b8 command line args
Claus Gittinger <cg@exept.de>
parents: 6863
diff changeset
  2938
    idx := CommandLineArguments indexOf:'--faststart'.
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2939
    idx ~~ 0 ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2940
	CommandLineArguments removeAtIndex:idx.
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2941
    ] ifFalse:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2942
	CallbackSignal := QuerySignal new.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2943
	[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2944
	    Class withoutUpdatingChangesDo:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2945
		(self fileIn:(self commandName , '_r.rc')) ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2946
		    "no _r.rc file where executable is; try default smalltalk_r.rc"
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2947
		    self fileIn:'smalltalk_r.rc'
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2948
		].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2949
	    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2950
	] on:CallbackSignal do:[:ex|
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2951
	    "/ now, display and view-stuff works;
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2952
	    "/ back to the previous debugging interface
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2953
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2954
	    Inspector := insp.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2955
	    Debugger := deb.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2956
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2957
	    "/ reinstall Transcript, if not changed during restart.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2958
	    "/ if there was no Transcript, go to stderr
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2959
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2960
	    (transcript notNil and:[Transcript == Stderr]) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2961
		Transcript := transcript.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2962
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2963
	    Initializing := false.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2964
	    ex proceed.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2965
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2966
	CallbackSignal := nil.
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2967
    ].
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2968
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2969
    "/ reinitialization (restart) of Display is normally performed
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2970
    "/ 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
  2971
    "/ do in now.
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  2972
    Initializing ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2973
	Display notNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2974
	    [
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2975
		Display reinitializeFor:Screen defaultDisplayName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2976
	    ] on:Screen deviceOpenErrorSignal do:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2977
		'Smalltalk [error]: Cannot restart connection to: ' errorPrint.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2978
		Screen defaultDisplayName errorPrintCR.
6852
7e4ea7876711 more changes for better standAlone operation
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  2979
		OperatingSystem exit:1.
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2980
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2981
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2982
	"/ now, display and view-stuff works;
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2983
	"/ back to the previous debugging interface
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2984
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2985
	Inspector := insp.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2986
	Debugger := deb.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2987
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2988
	"/ reinstall Transcript, if not changed during restart.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2989
	"/ if there was no Transcript, go to stderr
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2990
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2991
	(transcript notNil and:[Transcript == Stderr]) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2992
	    Transcript := transcript.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2993
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  2994
	Initializing := false.
7
bf6f603119df final release before Dispatcher
claus
parents: 5
diff changeset
  2995
    ].
bf6f603119df final release before Dispatcher
claus
parents: 5
diff changeset
  2996
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2997
    self mainStartup:true
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  2998
3526
78245608c0b8 no need for last change (restarting processes).
Claus Gittinger <cg@exept.de>
parents: 3523
diff changeset
  2999
    "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
  3000
    "Modified: / 3.8.1999 / 09:42:21 / stefan"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3001
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3002
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3003
start
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3004
    "main startup, if there is a Display, initialize it
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3005
     and start dispatching; otherwise go into a read-eval-print loop."
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3006
6852
7e4ea7876711 more changes for better standAlone operation
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  3007
    |idx graphicalMode arg didReadRCFile|
960
e3b75f50d0cd changes for standAlone operation
Claus Gittinger <cg@exept.de>
parents: 948
diff changeset
  3008
e3b75f50d0cd changes for standAlone operation
Claus Gittinger <cg@exept.de>
parents: 948
diff changeset
  3009
    graphicalMode := true.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3010
    Initializing := true.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3011
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3012
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3013
     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
  3014
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3015
    Class withoutUpdatingChangesDo:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3016
	|myName defaultRC prevCatchSetting|
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3017
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3018
	"/
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3019
	"/ look for any '-q', '-e' or '-f' command line arguments
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3020
	"/ and handle them;
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3021
	"/ read startup and patches file
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3022
	"/
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3023
	idx := CommandLineArguments indexOf:'-q'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3024
	idx == 0 ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3025
	    idx := CommandLineArguments indexOf:'--silent'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3026
	].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3027
	idx ~~ 0 ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3028
	    Object infoPrinting:false.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3029
	    ObjectMemory infoPrinting:false.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3030
	    CommandLineArguments removeAtIndex:idx.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3031
	].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3032
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3033
	StandAlone ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3034
	    "/ look for a '-e filename' argument - this will force evaluation of
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3035
	    "/ filename only, no standard startup
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3036
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3037
	    idx := CommandLineArguments indexOf:'-e'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3038
	    idx == 0 ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3039
		idx := CommandLineArguments indexOf:'--execute'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3040
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3041
	    idx ~~ 0 ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3042
		arg := CommandLineArguments at:idx + 1.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3043
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3044
		CommandLineArguments
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3045
		    removeAtIndex:idx+1; removeAtIndex:idx.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3046
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3047
		arg = '-' ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3048
		    self fileInStream:Stdin
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3049
			   lazy:nil
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3050
			   silent:nil
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3051
			   logged:false
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3052
			   addPath:nil
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3053
		] ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3054
		    self fileIn:arg.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3055
		].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3056
		self exit
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3057
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3058
	].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3059
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3060
	"/ look for a '-f filename' argument - this will force evaluation of
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3061
	"/ filename instead of smalltalk.rc
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3062
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3063
	idx := CommandLineArguments indexOf:'-f'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3064
	idx == 0 ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3065
	    idx := CommandLineArguments indexOf:'--file'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3066
	].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3067
	idx ~~ 0 ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3068
	    myName := (CommandLineArguments at:idx + 1).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3069
	    CommandLineArguments
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3070
		removeAtIndex:idx+1; removeAtIndex:idx.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3071
	    CommandLine at:1 put:myName.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3072
	    CommandName := myName.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3073
	    (self secureFileIn:myName) ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3074
		('Smalltalk [error]: startup file ', myName, ' not found.') errorPrintCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3075
		OperatingSystem exit:1.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3076
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3077
	] ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3078
	    "/ look for <command>.rc
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3079
	    "/ if not found, read smalltalk.rc (or stxapp.rc for standAlone operation)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3080
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3081
	    didReadRCFile := false.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3082
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3083
	    myName := self commandName asFilename withSuffix:'rc'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3084
	    (didReadRCFile := self secureFileIn:myName) ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3085
		StandAlone ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3086
		    defaultRC := 'smalltalk.rc'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3087
		] ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3088
		    defaultRC := 'stxapp.rc'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3089
		].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3090
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3091
		didReadRCFile := self secureFileIn:defaultRC.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3092
		didReadRCFile ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3093
		    StandAlone ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3094
			'Smalltalk [warning]: no startup rc-file found. Going into line-by-line interpreter.' infoPrintCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3095
			graphicalMode := false.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3096
		    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3097
		]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3098
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3099
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3100
	    "/ ('StandAlone is %1' bindWith:StandAlone) printCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3101
	    "/ ('Headless is %1' bindWith:HeadlessOperation) printCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3102
	    "/ ('Display is %1' bindWith:Display) printCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3103
	    "/ ('Screen is %1' bindWith:Screen) printCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3104
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3105
	    didReadRCFile ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3106
		StandAlone ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3107
		    "/ its a smalltalk - proceed in interpreter.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3108
		    'Smalltalk [warning]: no startup rc-file found. Going into line-by-line interpreter.' infoPrintCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3109
		    graphicalMode := false.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3110
		] ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3111
		    "/ its an application - try harder
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3112
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3113
		    Screen notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3114
			[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3115
			    Screen openDefaultDisplay:nil.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3116
			] on:Screen deviceOpenErrorSignal do:[:ex|
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3117
			    ('Smalltalk [error]: No Display connection to: ', ex parameter printString) errorPrintCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3118
			    'Smalltalk [info]: Either set the DISPLAY environment variable,' infoPrintCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3119
			    'Smalltalk [info]: or start smalltalk with a -display argument.' infoPrintCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3120
			    HeadlessOperation == true ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3121
				OperatingSystem exit:1.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3122
			    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3123
			].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3124
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3125
			Display notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3126
			    (self secureFileIn:'display.rc') ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3127
				'Smalltalk [warning]: no display.rc found; screen setting might be wrong.' infoPrintCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3128
			    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3129
			].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3130
		    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3131
		]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3132
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3133
	].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3134
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3135
6841
37bc69fc9240 set StandAlone flag earlier (during initSystem);
Claus Gittinger <cg@exept.de>
parents: 6837
diff changeset
  3136
    StandAlone ifFalse:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3137
	"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3138
	 enable the graphical debugger/inspector 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3139
	 (they could have been (re)defined as autoloaded in the patches file)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3140
	"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3141
	self initStandardTools.
963
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  3142
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3143
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  3144
    (Display isNil or:[HeadlessOperation]) ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3145
	graphicalMode := false.
2074
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  3146
    ].
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  3147
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  3148
    self mainStartup:graphicalMode
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  3149
5146
bfe5096a2d06 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5145
diff changeset
  3150
    "Modified: / 24.12.1999 / 00:26:54 / cg"
1097
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  3151
! !
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  3152
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  3153
!Smalltalk class methodsFor:'startup queries'!
1097
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  3154
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3155
commandLine
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3156
    "return the full command line arguments (with which ST/X was started)"
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  3157
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  3158
    ^ CommandLine
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  3159
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  3160
    "Created: 19.7.1996 / 11:09:06 / cg"
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  3161
!
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  3162
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3163
commandLineArgumentNamed:aString
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3164
    "extract a named argument from the command line arguments."
6806
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  3165
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  3166
    |args index|
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  3167
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  3168
    args := self commandLineArguments.
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  3169
    index := args indexOf:aString.
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  3170
    (index between:1 and:(args size - 1)) ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3171
	^ args at:index+1
6806
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  3172
    ].
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  3173
    ^ nil.
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  3174
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  3175
    "
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  3176
     self commandLineArgumentNamed:'-display'
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  3177
    "
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  3178
!
8f0267c644bc Command line argument fetching
Stefan Vogel <sv@exept.de>
parents: 6782
diff changeset
  3179
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3180
commandLineArguments
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3181
    "return the user command line arguments;
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3182
     This is a collection of strings (separated command line words),
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  3183
     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
  3184
     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
  3185
     the commandLineArguments will be #('foo' 'bar' 'baz').
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  3186
     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
  3187
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  3188
    ^ CommandLineArguments
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  3189
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  3190
    "Modified: 19.7.1996 / 11:11:03 / cg"
1097
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  3191
!
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  3192
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3193
commandName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3194
    "return the excutables name - this is normally 'smalltalk', but
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3195
     can be something else for standAlone apps."
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  3196
6842
a5110421e4ab more for standAlone start
Claus Gittinger <cg@exept.de>
parents: 6841
diff changeset
  3197
    ^ CommandName.
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  3198
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  3199
    "Modified: 19.7.1996 / 11:11:16 / cg"
1097
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  3200
!
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  3201
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3202
isHeadless
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3203
    "return true, if this is a headless application
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3204
     i.e. no default Display connection is required/used"
4957
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  3205
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  3206
    ^ HeadlessOperation
4957
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  3207
!
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  3208
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3209
isStandAloneApp
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3210
    "return true, if this is a standAlone application
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3211
     (in contrast to a full smalltalk system)."
1097
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  3212
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  3213
    ^ StandAlone
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3214
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3215
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3216
startupArguments
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3217
    "return the arguments passed to StartupClass"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3218
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3219
    ^ StartupArguments
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3220
!
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3221
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3222
startupClass
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3223
    "return the class, that will get the start message when smalltalk
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3224
     starts and its non-nil. Usually this is nil, but saving an image 
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3225
     with a non-nil StartupClass allows stand-alone applications"
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3226
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3227
    ^ StartupClass
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3228
!
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3229
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3230
startupClass:aClass selector:aSymbol arguments:anArrayOrNil
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3231
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  3232
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3233
    "set the class, selector and arguments to be performed when smalltalk
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3234
     starts. Setting those before saving a snapshot, will make the saved
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3235
     image come up executing your application (instead of the normal mainloop)"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3236
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3237
    StartupClass := aClass.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3238
    StartupSelector := aSymbol.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3239
    StartupArguments := anArrayOrNil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3240
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3241
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3242
startupSelector
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3243
    "return the selector, that will be sent to StartupClass"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3244
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3245
    ^ StartupSelector
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3246
! !
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3247
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  3248
!Smalltalk class methodsFor:'system environment'!
1069
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3249
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3250
language
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3251
    "return the language setting"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3252
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3253
    ^ Language
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3254
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3255
    "
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3256
     Smalltalk language
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3257
    "
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3258
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3259
    "Modified: 26.4.1996 / 17:10:05 / cg"
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3260
!
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3261
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3262
language:aLanguageSymbol
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3263
    "set the language"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3264
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3265
    Language := aLanguageSymbol.
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3266
    self changed:#Language
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3267
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3268
    "
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3269
     Smalltalk language:#de
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3270
    "
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3271
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3272
    "Modified: 26.4.1996 / 17:13:34 / cg"
1069
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3273
!
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3274
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3275
languageTerritory
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3276
    "return the language territory setting"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3277
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3278
    ^ LanguageTerritory
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3279
!
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3280
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3281
languageTerritory:aTerritorySymbol
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3282
    "set the language territory"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3283
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3284
    LanguageTerritory := aTerritorySymbol.
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3285
    self changed:#LanguageTerritory
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3286
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3287
    "
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3288
     Time now
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3289
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3290
     Smalltalk languageTerritory:#us.
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3291
     Time now
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3292
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3293
     Smalltalk languageTerritory:#de.
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3294
     Time now    
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3295
    "
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3296
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3297
    "Modified: 26.4.1996 / 17:12:39 / cg"
1069
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3298
! !
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3299
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  3300
!Smalltalk class methodsFor:'system management'!
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  3301
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3302
compressSources
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3303
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3304
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3305
    "compress the sources file, and remove all method source strings
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3306
     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
  3307
     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
  3308
     since we use per-class sourcefiles for the compiled classes,
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3309
     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
  3310
     incremental compiled methods.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3311
     Therefore, only those sources which are not coming from compiled
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3312
     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
  3313
     This is being automated - so dont care for now."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3314
7105
44c02807ca41 More openErrorSignal change preparations
Stefan Vogel <sv@exept.de>
parents: 7085
diff changeset
  3315
    |newStream table source pos fileName|
44c02807ca41 More openErrorSignal change preparations
Stefan Vogel <sv@exept.de>
parents: 7085
diff changeset
  3316
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3317
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3318
     first, find all methods which contain either a string-ref
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3319
     or an external string in the 'st.src' file
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3320
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3321
    newStream := 'src.tmp' asFilename writeStream.
7105
44c02807ca41 More openErrorSignal change preparations
Stefan Vogel <sv@exept.de>
parents: 7085
diff changeset
  3322
    newStream checkNilFileStream.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3323
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3324
    table := IdentityDictionary new:100.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3325
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3326
    Method allSubInstancesDo:[:aMethod |
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3327
	source := nil.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3328
	aMethod sourcePosition notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3329
	    aMethod sourceFilename = 'st.src' ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3330
		source := aMethod source.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3331
	    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3332
	] ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3333
	    source := aMethod source
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3334
	].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3335
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3336
	source notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3337
	    pos := newStream position1Based.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3338
	    newStream nextChunkPut:source.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3339
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3340
	    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3341
	     dont change the methods info - maybe some write error
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3342
	     occurs later, in that case we abort and leave everything
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3343
	     untouched.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3344
	    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3345
	    table at:aMethod put:pos
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3346
	]
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3347
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3348
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3349
    newStream close.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3350
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3351
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3352
     now, rename the new source file,
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3353
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3354
    fileName := (ObjectMemory nameForSources).
1693
1dbf6a20c15e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  3355
    'src.tmp' asFilename renameTo:fileName.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3356
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3357
    "good - now go over all changed methods, and change their
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3358
     source reference"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3359
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3360
    table keysAndValuesDo:[:aMethod :pos |
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3361
	aMethod localSourceFilename:fileName position:pos.
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  3362
"/        aMethod printCR.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3363
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3364
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3365
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3366
     Smalltalk compressSources
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3367
    "
1693
1dbf6a20c15e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  3368
2176
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  3369
    "Modified: 16.1.1997 / 01:25:58 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3370
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3371
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3372
generateSingleSourceFile
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3373
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3374
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3375
    "generate the sources file, and remove all method source strings
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3376
     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
  3377
     This makes the image independent from the per-class source files
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3378
     and makes transportation of endUser applications easier, since
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3379
     only 3 files (executable, image and sourceFile) need to be 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3380
     transported."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3381
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3382
    |newStream table source pos fileName|
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3383
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3384
    newStream := 'src.tmp' asFilename writeStream.
7105
44c02807ca41 More openErrorSignal change preparations
Stefan Vogel <sv@exept.de>
parents: 7085
diff changeset
  3385
    newStream checkNilFileStream.
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3386
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3387
    table := IdentityDictionary new:100.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3388
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3389
    Method allSubInstancesDo:[:aMethod |
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3390
	source := aMethod source.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3391
	source notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3392
	    pos := newStream position1Based.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3393
	    newStream nextChunkPut:source.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3394
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3395
	    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3396
	     dont change the methods info - maybe some write error
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3397
	     occurs later, in that case we abort and leave everything
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3398
	     untouched.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3399
	    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3400
	    table at:aMethod put:pos
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3401
	]
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3402
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3403
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3404
    newStream close.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3405
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3406
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3407
     now, rename the new source file,
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3408
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3409
    fileName := (ObjectMemory nameForSources).
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3410
    'src.tmp' asFilename renameTo:fileName.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3411
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3412
    "good - now go over all changed methods, and change their
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3413
     source reference"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3414
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3415
    table keysAndValuesDo:[:aMethod :pos |
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3416
	aMethod localSourceFilename:fileName position:pos.
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3417
"/        aMethod printCR.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3418
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3419
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3420
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3421
     Smalltalk generateSingleSourceFile
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3422
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3423
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3424
    "Modified: 16.1.1997 / 01:25:58 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3425
    "Created: 17.10.1997 / 13:00:56 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3426
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3427
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3428
installAutoloadedClassNamed:clsName category:cat package:package revision:revisionOrNil 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3429
    "create & install an autoload stub for a class named: clsName,
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3430
     to be loaded from package.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3431
     If revisionOrNil is non-nil, set it up to load exactly that revision
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3432
     (otherwise, the newest revision will be loaded"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3433
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3434
    self 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3435
	installAutoloadedClassNamed:clsName
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3436
	category:cat
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3437
	package:package
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3438
	revision:revisionOrNil
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3439
	numClassInstVars:nil.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3440
!
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3441
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3442
installAutoloadedClassNamed:clsName category:cat package:package revision:revisionOrNil numClassInstVars:numClassInstVarsOrNil
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  3443
    "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
  3444
     to be loaded from package.
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3445
     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
  3446
     (otherwise, the newest revision will be loaded"
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3447
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3448
    |clsSym cls|
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3449
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3450
    clsSym := clsName asSymbol.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3451
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3452
    "/ install if not already compiled-in
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3453
    (cls := self at:clsSym) isNil ifTrue:[
7581
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3454
        Autoload subclass:clsSym
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3455
            instanceVariableNames:''
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3456
            classVariableNames:''
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3457
            poolDictionaries:''
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3458
            category:cat
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3459
            inEnvironment:Smalltalk.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3460
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3461
        cls := self at:clsSym.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3462
        cls isNil ifTrue:[
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3463
            ('Smalltalk [warning]: failed to install ' , clsName , ' as autoloaded.') infoPrintCR.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3464
        ] ifFalse:[
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3465
            cls package:package asSymbol.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3466
            revisionOrNil notNil ifTrue:[
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3467
                cls setBinaryRevision:revisionOrNil
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3468
            ]
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3469
        ]    
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3470
    ] ifFalse:[
7581
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3471
        "/ class already present - however, check for category/package change
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3472
        package ~= cls package ifTrue:[
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3473
            cls package:package asSymbol.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3474
        ].
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3475
        cat ~= cls category ifTrue:[
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3476
            cls category:cat.
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  3477
        ].
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3478
    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3479
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3480
    "Created: / 5.11.1998 / 15:10:25 / cg"
3915
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3481
!
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3482
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3483
installAutoloadedClasses
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3484
    "read the standard abbreviation file; install all classes found there as
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3485
     autoloaded. This takes some time ..."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3486
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  3487
    |dirsConsulted p|
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3488
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3489
    "/ new scheme: look for a directory called 'packages'
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3490
    "/ and enumerate its abbrev.stc files...
5067
335c866e150c walk packagePath when reading abbrevs & autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5065
diff changeset
  3491
    dirsConsulted := Set new.
5162
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3492
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3493
"/ no longer - only consult the packagePath ...
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3494
"/    f := Smalltalk getSystemFileName:'packages'.
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3495
"/    f notNil ifTrue:[
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3496
"/        f := f asFilename.
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3497
"/        f isDirectory ifTrue:[
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3498
"/            ('Smalltalk [info]: installing autoloaded classes found under ''' , f pathName ,'''') infoPrintCR.
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3499
"/            self 
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3500
"/                recursiveInstallAutoloadedClassesFrom:f 
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3501
"/                rememberIn:dirsConsulted 
7286
15c403fce412 maxLevels when looking for autoloaded classes
penk
parents: 7284
diff changeset
  3502
"/                maxLevels:15 
5162
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3503
"/                noAutoload:false
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3504
"/                packageTop:f.
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3505
"/        ].
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3506
"/    ].
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3507
f7a14d1e17ce checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5160
diff changeset
  3508
    "/ along the package-path
5788
db9dcc37532c care for empty packagePath
Claus Gittinger <cg@exept.de>
parents: 5787
diff changeset
  3509
    (p := self packagePath) do:[:aPath |
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3510
	(dirsConsulted includes:aPath) ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3511
	    ('Smalltalk [info]: installing autoloaded classes found under ''' , aPath ,'''') infoPrintCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3512
	    self 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3513
		recursiveInstallAutoloadedClassesFrom:aPath 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3514
		rememberIn:dirsConsulted 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3515
		maxLevels:15 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3516
		noAutoload:false
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3517
		packageTop:aPath.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3518
	]
5788
db9dcc37532c care for empty packagePath
Claus Gittinger <cg@exept.de>
parents: 5787
diff changeset
  3519
    ].
db9dcc37532c care for empty packagePath
Claus Gittinger <cg@exept.de>
parents: 5787
diff changeset
  3520
    p size == 0 ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3521
	('Smalltalk [info]: installing autoloaded classes found under ''../../..''') infoPrintCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3522
	self 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3523
	    recursiveInstallAutoloadedClassesFrom:'../../..' 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3524
	    rememberIn:dirsConsulted 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3525
	    maxLevels:15 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3526
	    noAutoload:false
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3527
	    packageTop:'../../..'.
5788
db9dcc37532c care for empty packagePath
Claus Gittinger <cg@exept.de>
parents: 5787
diff changeset
  3528
    ].
db9dcc37532c care for empty packagePath
Claus Gittinger <cg@exept.de>
parents: 5787
diff changeset
  3529
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3530
    "/ 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
  3531
    "/ include directory. This will vanish.
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3532
5096
9a513c6d8f63 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5095
diff changeset
  3533
"/    ('Smalltalk [info]: installing autoloaded classes from ''include/abbrev.stc''') infoPrintCR.
9a513c6d8f63 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5095
diff changeset
  3534
"/    self installAutoloadedClassesFrom:'include/abbrev.stc'
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3535
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3536
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3537
     Smalltalk installAutoloadedClasses
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3538
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3539
5096
9a513c6d8f63 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5095
diff changeset
  3540
    "Created: / 14.2.1997 / 17:32:57 / cg"
9a513c6d8f63 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5095
diff changeset
  3541
    "Modified: / 13.12.1999 / 11:56:50 / cg"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3542
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3543
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3544
installAutoloadedClassesFrom:anAbbrevFilePath
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3545
    "read the given abbreviation file; install all classes found there as
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3546
     autoloaded. This takes some time ..."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3547
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3548
    |f s|
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3549
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3550
    f := self getSystemFileName:anAbbrevFilePath.
6714
f4ab666995e0 Search packagePath for autoloaded classes
Stefan Vogel <sv@exept.de>
parents: 6711
diff changeset
  3551
    f isNil ifTrue:[f := self getPackageFileName:anAbbrevFilePath].
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3552
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3553
    f notNil ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3554
	f := f asFilename.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3555
	f isDirectory ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3556
	    f := f construct:'abbrev.stc'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3557
	].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3558
	[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3559
	    s := f readStream.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3560
	    self installAutoloadedClassesFromStream:s.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3561
	    s close.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3562
	] on:FileStream openErrorSignal do:[:ex| "do nothing"].
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3563
    ]
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3564
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3565
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3566
     Smalltalk installAutoloadedClassesFrom:'include/abbrev.stc'
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3567
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3568
3915
e32e63ee0d79 extracted autoload-class generation into extra method
Claus Gittinger <cg@exept.de>
parents: 3866
diff changeset
  3569
    "Modified: / 5.11.1998 / 15:10:51 / cg"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3570
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3571
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3572
installAutoloadedClassesFromStream:anAbbrevFileStream
5112
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  3573
    "read the given abbreviation file; 
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  3574
     install all classes found there as autoloaded, and also update the
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  3575
     abbreviation (className-to-fileName mapping) table.
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  3576
     This takes some time ..."
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3577
7564
e633ecac3dde *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7563
diff changeset
  3578
    |s2 l clsName abbrev package cat numClassInstVars 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
  3579
9da015b8ae46 update abbrevs on the fly when installing autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5108
diff changeset
  3580
    "/ 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
  3581
    CachedAbbreviations isNil ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3582
	CachedAbbreviations := IdentityDictionary new.
5109
9da015b8ae46 update abbrevs on the fly when installing autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5108
diff changeset
  3583
    ].
9da015b8ae46 update abbrevs on the fly when installing autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5108
diff changeset
  3584
    abbrevs := CachedAbbreviations.
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3585
5112
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  3586
    KnownPackages isNil ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3587
	KnownPackages := Set new.
5112
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  3588
    ].
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  3589
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3590
    "/ yes, create any required nameSpace, without asking user.
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3591
    Class createNameSpaceQuerySignal answer:true do:[
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3592
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3593
	[anAbbrevFileStream atEnd] whileFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3594
	    l := anAbbrevFileStream nextLine withoutSeparators.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3595
	    l notEmpty ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3596
		"/ must do it manually, caring for quoted strings.
4685
d145298696b7 more package loading support
Claus Gittinger <cg@exept.de>
parents: 4642
diff changeset
  3597
"/                words := line asCollectionOfWords.
d145298696b7 more package loading support
Claus Gittinger <cg@exept.de>
parents: 4642
diff changeset
  3598
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3599
		words := OrderedCollection new.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3600
		s2 := l readStream.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3601
		[s2 atEnd] whileFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3602
		    s2 skipSeparators.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3603
		    s2 peek == $' ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3604
			s2 next.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3605
			w := s2 upTo:$'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3606
			s2 skipSeparators.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3607
		    ] ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3608
			w := s2 upToSeparator
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3609
		    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3610
		    words add:w
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3611
		].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3612
		words size < 3 ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3613
		    'Smalltalk [warning]: bad abbrev entry' errorPrint.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3614
		    anAbbrevFileStream isFileStream ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3615
			' (in ''' errorPrint. 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3616
			anAbbrevFileStream pathName errorPrint.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3617
			''')' errorPrint
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3618
		    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3619
		    ': ' errorPrint. l errorPrintCR
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3620
		] ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3621
		    clsName := (words at:1) asSymbol.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3622
		    abbrev := (words at:2).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3623
		    package := (words at:3) asSymbol.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3624
		    cat := words at:4 ifAbsent:nil.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3625
		    numClassInstVars := words at:5 ifAbsent:'0'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3626
		    numClassInstVars := Integer readFrom:numClassInstVars onError:[0].
7564
e633ecac3dde *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7563
diff changeset
  3627
5117
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3628
"/                KnownPackages add:package.
5112
8c8655a248df checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5110
diff changeset
  3629
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3630
		    (cat size == 0) ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3631
			cat := 'autoloaded'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3632
		    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3633
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3634
		    "/ on the fly, update the abbreviations
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3635
		    clsName ~= abbrev ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3636
			nameKey := clsName asSymbol.    
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3637
			oldAbbrev := abbrevs at:nameKey ifAbsent:nil.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3638
			(oldAbbrev notNil and:[oldAbbrev ~= abbrev]) ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3639
			    StandAlone ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3640
				('Smalltalk [warning]: conflict for: ' , clsName , ' in ' , (anAbbrevFileStream pathName)) infoPrintCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3641
				('Smalltalk [warning]: (' , oldAbbrev , ' <-> ' , abbrev , ')') infoPrintCR
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3642
			    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3643
			    abbrevs at:nameKey put:abbrev.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3644
			] ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3645
			    cls := self classNamed:abbrev.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3646
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3647
			    cls notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3648
				cls name ~= clsName ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3649
				    "/ ok, there is a class named after this abbrev ...
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3650
				    "/ this is only a conflict, if the other class has no
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3651
				    "/ abbreviation (or the same).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3652
				    (abbrevs at:(cls name asSymbol) ifAbsent:cls name) = abbrev ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3653
					cls isNameSpace ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3654
					    package = cls package ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3655
						StandAlone ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3656
						    ('Smalltalk [warning]: conflict for: ' , cls name , ' in ' , (anAbbrevFileStream pathName)) infoPrintCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3657
						    ('Smalltalk [warning]: (' , clsName , ' -> ' , abbrev , ')') infoPrintCR
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3658
						]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3659
					    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3660
					]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3661
				    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3662
				]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3663
			    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3664
			    abbrevs at:clsName asSymbol put:abbrev.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3665
			]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3666
		    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3667
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3668
		    "/ '  autoloaded: ' print. clsName print. ' in ' print. cat printCR.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3669
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3670
		    self installAutoloadedClassNamed:clsName category:cat package:package revision:nil numClassInstVars:numClassInstVars.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3671
		]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3672
	    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3673
	]
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3674
    ]
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3675
!
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3676
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3677
loadBinaries
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3678
    "return true, if binaries should be loaded into the system,
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3679
     false if this should be suppressed. The default is false (for now)."
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3680
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3681
    ^ LoadBinaries
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
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3684
loadBinaries:aBoolean
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3685
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3686
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3687
    "turn on/off loading of binary objects"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3688
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3689
    aBoolean ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3690
	(ObjectFileLoader notNil and:[ObjectFileLoader canLoadObjectFiles]) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3691
	    LoadBinaries := true.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3692
	    ^ self
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3693
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3694
	'Smalltalk [info]: this system does not support binary loading' infoPrintCR.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3695
    ].
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3696
    LoadBinaries := false
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
    "Modified: 10.1.1997 / 15:11:00 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3699
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3700
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3701
logDoits
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3702
    "return true if doits should go into the changes file
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3703
     as well as changes - by default, this is off, since
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3704
     it can blow up the changes file enormously ...
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3705
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3706
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3707
    ^ LogDoits
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3708
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3709
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3710
     LogDoits := false
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3711
     LogDoits := true
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3712
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3713
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3714
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3715
logDoits:aBoolean
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3716
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3717
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3718
    "turn on/off logging of doits in the changes file.
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3719
     By default, this is off, since it can blow up the 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3720
     changes file enormously ...
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3721
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3722
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3723
    LogDoits := aBoolean
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3724
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3725
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3726
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3727
makeBytecodeMethods
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3728
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3729
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3730
    "walk over all methods and make each a bytecode method
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3731
     iff it does not contain primitive C code.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3732
     Experimental and not yet used."
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
    Method allSubInstancesDo:[:aMethod |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3735
	|newMethod|
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3736
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3737
	aMethod hasPrimitiveCode ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3738
	    newMethod := aMethod asByteCodeMethod.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3739
	    newMethod ~~ aMethod ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3740
		aMethod becomeSameAs:newMethod
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3741
	    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3742
	].
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3743
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3744
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3745
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3746
     Smalltalk makeBytecodeMethods
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
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3749
    "Modified: 16.1.1997 / 01:25:58 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3750
    "Created: 17.10.1997 / 13:52:19 / cg"
3062
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3751
!
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3752
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3753
recursiveInstallAutoloadedClassesFrom:aDirectory rememberIn:dirsConsulted maxLevels:maxLevels noAutoload:noAutoloadIn packageTop:packageTopPath
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3754
    "read all abbrev.stc files from and under aDirectory
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3755
     and install autoloaded classes.
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3756
     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
  3757
     (however, the directories are searched for packages)
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3758
     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
  3759
7085
71d0e451114d Handle openErrorSignal in preparition for change openErrorSignal
Stefan Vogel <sv@exept.de>
parents: 7054
diff changeset
  3760
    |abbrevStream dir noAutoloadHere dirName pkgName directoryContents|
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3761
5075
c9e585ae97d4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5074
diff changeset
  3762
    maxLevels == 0 ifTrue:[
5077
8360a3057ac5 checkin from browser
ca
parents: 5075
diff changeset
  3763
"/        'Smalltalk [warning]: max directory nesting reached.' infoPrintCR.
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3764
	^ self
5075
c9e585ae97d4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5074
diff changeset
  3765
    ].
5074
7c7c3ebe6492 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5069
diff changeset
  3766
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3767
    dir := aDirectory asFilename.
6188
38ebb7cd179b in addition to a NOAUTOLOAD file (which suppresses),
penk
parents: 6187
diff changeset
  3768
5110
283e7eb8c359 remember where we have been when searching for abbrev.stc-files.
Claus Gittinger <cg@exept.de>
parents: 5109
diff changeset
  3769
    (dirsConsulted includes:dir pathName) ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3770
	^ self
5110
283e7eb8c359 remember where we have been when searching for abbrev.stc-files.
Claus Gittinger <cg@exept.de>
parents: 5109
diff changeset
  3771
    ].
283e7eb8c359 remember where we have been when searching for abbrev.stc-files.
Claus Gittinger <cg@exept.de>
parents: 5109
diff changeset
  3772
    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
  3773
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3774
    (dir construct:'NOPACKAGES') exists ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3775
	^ self.
5363
0070ef95a033 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5333
diff changeset
  3776
    ].
6188
38ebb7cd179b in addition to a NOAUTOLOAD file (which suppresses),
penk
parents: 6187
diff changeset
  3777
    noAutoloadHere := noAutoloadIn.
38ebb7cd179b in addition to a NOAUTOLOAD file (which suppresses),
penk
parents: 6187
diff changeset
  3778
    noAutoloadHere ifFalse:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3779
	(dir construct:'NOAUTOLOAD') exists ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3780
	    noAutoloadHere := true.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3781
	].
6188
38ebb7cd179b in addition to a NOAUTOLOAD file (which suppresses),
penk
parents: 6187
diff changeset
  3782
    ] ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3783
	(dir construct:'AUTOLOAD') exists ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3784
	    noAutoloadHere := false.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3785
	].
5108
15f99321b0dc allow for package dirs to be skipped
ca
parents: 5096
diff changeset
  3786
    ].
5117
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3787
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3788
    ((dir construct:'loadAll') exists
6188
38ebb7cd179b in addition to a NOAUTOLOAD file (which suppresses),
penk
parents: 6187
diff changeset
  3789
    or:[(dir construct:'abbrev.stc') exists
38ebb7cd179b in addition to a NOAUTOLOAD file (which suppresses),
penk
parents: 6187
diff changeset
  3790
    or:[(dir construct:(dir baseName , '.prj')) exists]]) ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3791
	KnownPackages isNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3792
	    KnownPackages := Set new.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3793
	].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3794
	dirName := dir pathName.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3795
	pkgName := dirName copyFrom:(packageTopPath asFilename pathName) size + 1 + 1.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3796
	KnownPackages add:pkgName
5117
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3797
    ].
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3798
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3799
    "/
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3800
    "/ suppress installation as autoloaded in this and everything
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3801
    "/ below; however, still traverse the directories to find packages ...
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3802
    "/
6188
38ebb7cd179b in addition to a NOAUTOLOAD file (which suppresses),
penk
parents: 6187
diff changeset
  3803
    noAutoloadHere ifFalse:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3804
	[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3805
	    abbrevStream := (dir construct:'abbrev.stc') asFilename readStream.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3806
	    self installAutoloadedClassesFromStream:abbrevStream.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3807
	    abbrevStream close.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3808
	] on:FileStream openErrorSignal do:[:ex| "ignore this file"].
7085
71d0e451114d Handle openErrorSignal in preparition for change openErrorSignal
Stefan Vogel <sv@exept.de>
parents: 7054
diff changeset
  3809
    ].
71d0e451114d Handle openErrorSignal in preparition for change openErrorSignal
Stefan Vogel <sv@exept.de>
parents: 7054
diff changeset
  3810
71d0e451114d Handle openErrorSignal in preparition for change openErrorSignal
Stefan Vogel <sv@exept.de>
parents: 7054
diff changeset
  3811
    [
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3812
	directoryContents := dir directoryContents.
7085
71d0e451114d Handle openErrorSignal in preparition for change openErrorSignal
Stefan Vogel <sv@exept.de>
parents: 7054
diff changeset
  3813
    ] on:FileStream openErrorSignal do:[:ex|
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3814
	"non-accessable directory: we are done"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3815
	^ self
7085
71d0e451114d Handle openErrorSignal in preparition for change openErrorSignal
Stefan Vogel <sv@exept.de>
parents: 7054
diff changeset
  3816
    ].
71d0e451114d Handle openErrorSignal in preparition for change openErrorSignal
Stefan Vogel <sv@exept.de>
parents: 7054
diff changeset
  3817
71d0e451114d Handle openErrorSignal in preparition for change openErrorSignal
Stefan Vogel <sv@exept.de>
parents: 7054
diff changeset
  3818
    directoryContents do:[:aFilename |
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3819
	|f|
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3820
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3821
	(#(
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3822
	    'doc'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3823
	    'CVS'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3824
	    'bitmaps'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3825
	    'resources'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3826
	    'source'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3827
	) includes:aFilename) ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3828
	    ((dir baseName ~= 'stx')
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3829
	    or:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3830
		(#(
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3831
		    'configurations'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3832
		    'include'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3833
		    'rules'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3834
		    'stc'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3835
		    'support'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3836
		) includes:aFilename) not]) 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3837
	    ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3838
		f := dir construct:aFilename.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3839
		f isDirectory ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3840
		     self 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3841
			recursiveInstallAutoloadedClassesFrom:f 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3842
			rememberIn:dirsConsulted    
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3843
			maxLevels:maxLevels-1
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3844
			noAutoload:noAutoloadHere
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3845
			packageTop:packageTopPath.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3846
		]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3847
	    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  3848
	].
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3849
    ].
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3850
5117
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3851
    "
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3852
     Smalltalk installAutoloadedClasses
af187fd23a8a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5113
diff changeset
  3853
    "
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3854
!
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  3855
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3856
replaceReferencesTo:anObject with:newRef
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3857
    |toAdd|
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3858
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3859
    toAdd := OrderedCollection new.
6033
be1b7877b425 + #replaceReferencesTo:with:
Claus Gittinger <cg@exept.de>
parents: 6031
diff changeset
  3860
    self keysAndValuesDo:[:key :val |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3861
	(key == anObject) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3862
	    self shouldImplement.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3863
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3864
	(val == anObject ) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3865
	    toAdd add:(key -> newRef)
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3866
	].
6033
be1b7877b425 + #replaceReferencesTo:with:
Claus Gittinger <cg@exept.de>
parents: 6031
diff changeset
  3867
    ].
be1b7877b425 + #replaceReferencesTo:with:
Claus Gittinger <cg@exept.de>
parents: 6031
diff changeset
  3868
    toAdd do:[:each |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3869
	self at:(each key) put:(each value)
6033
be1b7877b425 + #replaceReferencesTo:with:
Claus Gittinger <cg@exept.de>
parents: 6031
diff changeset
  3870
    ].
be1b7877b425 + #replaceReferencesTo:with:
Claus Gittinger <cg@exept.de>
parents: 6031
diff changeset
  3871
!
be1b7877b425 + #replaceReferencesTo:with:
Claus Gittinger <cg@exept.de>
parents: 6031
diff changeset
  3872
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3873
saveEmergencyImage:aBoolean
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3874
    "set/clear the flag which controls if ST/X should save an
3062
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3875
     emergency image in case of a broken display connection.
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3876
     The default is true.
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3877
     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
  3878
     (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
  3879
     a crash. In multiheaded applications, this only affects 
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3880
     crashes of the master Display connection (the initial connection);
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3881
     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
  3882
     like window destroy from the windowManager."
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3883
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3884
    SaveEmergencyImage := aBoolean
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3885
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  3886
    "Modified: / 24.10.1997 / 18:22:26 / cg"
3083
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
  3887
!
451912c492ae checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3062
diff changeset
  3888
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3889
systemOrganization
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3890
    "for partial ST80 compatibility;
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3891
     In ST80, Smalltalk organization returns a systemOrganizer, which
3626
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3892
     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
  3893
     from #organization, which keeps track of method categories of that class.
7432
155245708ca3 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7430
diff changeset
  3894
     Since in ST/X, Smalltalk is a class, there is now a conflict.
3626
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3895
     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
  3896
     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
  3897
     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
  3898
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3899
    ^ SystemOrganizer for:nil
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3900
5a69787e857c added hook make apps VW compatible w.r.t. system-organizaton.
Claus Gittinger <cg@exept.de>
parents: 3624
diff changeset
  3901
    "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
  3902
    "Modified: / 20.6.1998 / 12:41:34 / cg"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3903
! !
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
!Smalltalk class methodsFor:'system management-fileIn'!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3906
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3907
fileIn:aFileName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3908
    "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
  3909
     return true if ok, false if failed.
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  3910
     This method can load almost anything which makes sense:
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3911
	.st    - source files
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3912
	.cls   - binary smalltalk bytecode files
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3913
	.so    - binary compiled machine code class libraries
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3914
	[.class - java bytecode -- soon to come]"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3915
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3916
    ^ self fileIn:aFileName lazy:nil silent:nil logged:false 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3917
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3918
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3919
     Smalltalk fileIn:'source/TicTacToe.st'
4712
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  3920
     Smalltalk fileIn:'binary/TicTacToe.cls'
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  3921
     Smalltalk fileIn:'binary/TicTacToe.so'
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3922
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3923
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3924
    "Created: 28.10.1995 / 17:06:28 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3925
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3926
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3927
fileIn:aFileName inPackage:aPackageID
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3928
    "read in the named file in a packages directory."
5687
6245a55e90d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5657
diff changeset
  3929
6245a55e90d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5657
diff changeset
  3930
    |dir|
6245a55e90d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5657
diff changeset
  3931
6245a55e90d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5657
diff changeset
  3932
    dir := self getPackageDirectoryForPackage:aPackageID.
6096
64e9b08f4bc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6094
diff changeset
  3933
    dir isNil ifTrue:[^ false].
64e9b08f4bc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6094
diff changeset
  3934
64e9b08f4bc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6094
diff changeset
  3935
    dir := dir asFilename.
64e9b08f4bc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6094
diff changeset
  3936
    ^ (self fileIn:(dir construct:aFileName))
64e9b08f4bc4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6094
diff changeset
  3937
      or:[ self fileIn:((dir construct:'source') construct:aFileName) ]
5687
6245a55e90d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5657
diff changeset
  3938
!
6245a55e90d6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5657
diff changeset
  3939
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3940
fileIn:aFileName lazy:lazy
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3941
    "read in the named file - look for it in some standard places;
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3942
     return true if ok, false if failed.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3943
     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
  3944
     are created which compile themself when first executed. This allows
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3945
     for much faster fileIn (but slows down the first execution later).
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3946
     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
  3947
     code which is known to be syntactically correct."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3948
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3949
    ^ self fileIn:aFileName lazy:lazy silent:nil logged:false 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3950
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3951
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3952
     Smalltalk fileIn:'source/TicTacToe.st' lazy:true
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3953
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3954
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3955
    "Created: 28.10.1995 / 17:06:36 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3956
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3957
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3958
fileIn:aFileName lazy:lazy silent:silent
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3959
    "read in the named file - look for it in some standard places;
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3960
     return true if ok, false if failed.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3961
     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
  3962
     are created which compile themself when first executed. This allows
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3963
     for much faster fileIn (but slows down the first execution later).
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3964
     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
  3965
     code which is known to be syntactically correct.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3966
     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
  3967
     Giving nil for silent/lazy will use the current settings."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3968
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3969
    ^ self fileIn:aFileName lazy:lazy silent:silent logged:false
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3970
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3971
    "Created: 28.10.1995 / 17:06:41 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3972
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3973
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3974
fileIn:aFileNameOrString lazy:lazy silent:silent logged:logged
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  3975
    "read in the named file - look for it in some standard places;
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3976
     return true if ok, false if failed.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3977
     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
  3978
     are created which compile themself when first executed. This allows
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3979
     for much faster fileIn (but slows down the first execution later).
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3980
     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
  3981
     code which is known to be syntactically correct.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3982
     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
  3983
     Giving nil for silent/lazy will use the current settings.
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  3984
     This method can load almost anything which makes sense:
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3985
	.st    - source files
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3986
	.cls   - binary smalltalk bytecode files
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3987
	.so    - binary compiled machine code class libraries
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3988
	[.class - java bytecode -- soon to come]"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3989
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3990
    |fileNameString aStream path morePath bos|
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3991
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3992
    fileNameString := aFileNameOrString asString.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3993
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3994
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3995
     an object or shared object ?
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3996
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3997
    (ObjectFileLoader notNil
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  3998
    and:[ObjectFileLoader hasValidBinaryExtension:fileNameString]) ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  3999
	"/ LoadBinaries ifFalse:[^ false].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4000
	path := self getBinaryFileName:fileNameString.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4001
	path isNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4002
	    path := self getSystemFileName:fileNameString.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4003
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4004
	path isNil ifTrue:[^ false].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4005
	^ (ObjectFileLoader loadObjectFile:path) notNil
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4006
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4007
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4008
    (fileNameString asFilename hasSuffix:'cls') ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4009
	BinaryObjectStorage notNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4010
	    aStream := self systemFileStreamFor:fileNameString.
3952
05c36f8e87b4 fixed fileIn of byteCode (.cls) files
Claus Gittinger <cg@exept.de>
parents: 3915
diff changeset
  4011
"/            path := self getBinaryFileName:fileNameString.
05c36f8e87b4 fixed fileIn of byteCode (.cls) files
Claus Gittinger <cg@exept.de>
parents: 3915
diff changeset
  4012
"/            path isNil ifTrue:[^ false].
05c36f8e87b4 fixed fileIn of byteCode (.cls) files
Claus Gittinger <cg@exept.de>
parents: 3915
diff changeset
  4013
"/            aStream := path asFilename readStream.
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4014
	    aStream notNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4015
		aStream binary.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4016
		bos := BinaryObjectStorage onOld:aStream.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4017
		bos next.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4018
		bos close.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4019
		^ true
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4020
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4021
	    ^ false
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4022
	]
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4023
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4024
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4025
    (fileNameString startsWith:'source/') ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4026
	aStream := self sourceFileStreamFor:(fileNameString copyFrom:8)
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4027
    ] ifFalse:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4028
	(fileNameString startsWith:'fileIn/') ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4029
	    aStream := self fileInFileStreamFor:(fileNameString copyFrom:8)
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4030
	] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4031
	    aStream := self systemFileStreamFor:fileNameString.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4032
	    aStream isNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4033
		OperatingSystem isUNIXlike ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4034
		    (fileNameString startsWith:'/') ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4035
			aStream := self systemFileStreamFor:('lib/' , fileNameString).
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4036
		    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4037
		]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4038
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4039
	    (aStream notNil and:[fileNameString includes:$/]) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4040
		"/ temporarily prepend the files directory
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4041
		"/ to the searchPath.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4042
		"/ This allows fileIn-driver files to refer to local
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4043
		"/ files via a relative path, and drivers to fileIn other
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4044
		"/ drivers ...
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4045
		morePath := aStream pathName asFilename directoryName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4046
	    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4047
	]
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4048
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4049
    aStream isNil ifTrue:[^ false].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4050
    ^ self fileInStream:aStream lazy:lazy silent:silent logged:logged addPath:morePath
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4051
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4052
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4053
     Smalltalk fileIn:'source/TicTacToe.st' lazy:true silent:true
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4054
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4055
3952
05c36f8e87b4 fixed fileIn of byteCode (.cls) files
Claus Gittinger <cg@exept.de>
parents: 3915
diff changeset
  4056
    "Modified: / 16.2.1999 / 10:03:26 / cg"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4057
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4058
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4059
fileIn:aFileName logged:logged
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4060
    "read in the named file - look for it in some standard places;
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4061
     return true if ok, false if failed.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4062
     The argument logged controls, if the changefile is to be updated."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4063
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4064
    ^ self fileIn:aFileName lazy:nil silent:nil logged:logged 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4065
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4066
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4067
     Smalltalk fileIn:'source/TicTacToe.st' logged:false
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4068
    "
457
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  4069
!
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  4070
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4071
fileInChanges
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4072
    "read in the last changes file - bringing the system to the state it
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  4073
     had when left the last time.
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  4074
     WARNING: this method is rubbish: it should only read things after the
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4075
	      last '**snapshot**' - entry 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4076
	      (instead of the complete changes file)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4077
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  4078
    "
400
claus
parents: 396
diff changeset
  4079
     do NOT update the changes file now ...
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  4080
    "
2928
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  4081
    self fileIn:ChangeFileName logged:false
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4082
77
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  4083
    "
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  4084
     Smalltalk fileInChanges 
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  4085
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4086
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  4087
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4088
fileInClass:aClassName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4089
    "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
  4090
     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
  4091
     finally source file (.st) in that order.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4092
     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
  4093
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4094
    ^ self 
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4095
	fileInClass:aClassName 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4096
	package:nil
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4097
	initialize:true 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4098
	lazy:false 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4099
	silent:nil
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4100
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4101
    "Modified: / 9.1.1998 / 14:41:46 / cg"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4102
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4103
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4104
fileInClass:aClassName fromObject:aFileName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4105
    "read in the named object file and dynamic-link it into the system
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4106
     - look for it in some standard places.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4107
     Only install the named class from this object file.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4108
     Return true if ok, false if failed."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4109
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4110
    |path ok|
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4111
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4112
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4113
     check if the dynamic loader class is in
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4114
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4115
    (LoadBinaries not or:[ObjectFileLoader isNil]) ifTrue:[^ false].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4116
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4117
    (path := self getBinaryFileName:aFileName) isNil ifTrue:[^ false].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4118
    ok := (ObjectFileLoader loadClass:aClassName fromObjectFile:path) notNil.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4119
    ok ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4120
	SilentLoading ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4121
	    Transcript show:'  loaded ' , aClassName , ' from ' ; showCR:aFileName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4122
	]
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4123
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4124
    ^ ok
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4125
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4126
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4127
     Smalltalk fileInClass:'AbstractPath' fromObject:'../../goodies/Paths/AbstrPath.so' 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4128
     Smalltalk fileInClass:'ClockView' fromObject:'../../libwidg3/libwidg3.so' 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4129
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4130
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4131
    "Modified: 10.9.1996 / 20:43:52 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4132
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4133
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4134
fileInClass:aClassName initialize:doInit
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4135
    "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
  4136
     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
  4137
     finally source file (.st) in that order.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4138
     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
  4139
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4140
    ^ self 
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4141
	fileInClass:aClassName 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4142
	package:nil
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4143
	initialize:doInit 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4144
	lazy:false 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4145
	silent:nil
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4146
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4147
    "Modified: / 9.1.1998 / 14:42:02 / cg"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4148
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4149
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4150
fileInClass:aClassName initialize:doInit lazy:loadLazy
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4151
    "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
  4152
     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
  4153
     finally source file (.st) in that order.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4154
     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
  4155
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4156
     ^ self 
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4157
	fileInClass:aClassName 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4158
	package:nil
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4159
	initialize:doInit 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4160
	lazy:loadLazy 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4161
	silent:nil
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4162
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4163
    "Modified: / 9.1.1998 / 14:42:19 / cg"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4164
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4165
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4166
fileInClass:aClassName initialize:doInit lazy:loadLazy silent:beSilent 
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4167
    "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
  4168
     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
  4169
     finally source file (.st), in that order.
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4170
     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
  4171
     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
  4172
     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
  4173
     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
  4174
     nil uses the value from SilentLoading."
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4175
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4176
    ^ self
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4177
	fileInClass:aClassName 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4178
	package:nil
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4179
	initialize:doInit 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4180
	lazy:loadLazy 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4181
	silent:beSilent
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4182
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4183
    "Modified: / 9.1.1998 / 14:42:28 / cg"
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4184
!
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4185
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4186
fileInClass:aClassName package:package initialize:doInit lazy:loadLazy silent:beSilent 
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4187
    "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
  4188
     This is the workhorse for autoloading.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4189
     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
  4190
     finally source file (.st), in that order.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4191
     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
  4192
     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
  4193
     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
  4194
     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
  4195
     nil uses the value from SilentLoading."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4196
7366
8669460eb2fc care for valid classFileName after fileIn
Claus Gittinger <cg@exept.de>
parents: 7364
diff changeset
  4197
    |shortName longName libName newClass ok wasLazy wasSilent sharedLibExtension inStream mgr 
8669460eb2fc care for valid classFileName after fileIn
Claus Gittinger <cg@exept.de>
parents: 7364
diff changeset
  4198
     fn packageDir packageFile bos|
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4199
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4200
    wasLazy := Compiler compileLazy:loadLazy.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4201
    beSilent notNil ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4202
	wasSilent := self silentLoading:beSilent.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4203
    ].
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4204
4026
96712578b0da care for namespace/prefix in className when filing in.
Claus Gittinger <cg@exept.de>
parents: 4006
diff changeset
  4205
    longName := aClassName copyReplaceAll:$: with:$_.
96712578b0da care for namespace/prefix in className when filing in.
Claus Gittinger <cg@exept.de>
parents: 4006
diff changeset
  4206
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4207
    [
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4208
	Class withoutUpdatingChangesDo:
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4209
	[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4210
	    |zarFn zar entry|
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4211
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4212
	    ok := false.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4213
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4214
	    shortName := self fileNameForClass:aClassName.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4215
	    package notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4216
		packageDir := package asString.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4217
		packageDir := packageDir copyReplaceAll:$: with:$/.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4218
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4219
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4220
	    Class packageQuerySignal answer:package
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4221
	    do:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4222
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4223
		"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4224
		 first, look for a loader-driver file (in fileIn/xxx.ld)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4225
		"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4226
		(ok := self fileIn:('fileIn/' , shortName , '.ld') lazy:loadLazy silent:beSilent)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4227
		ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4228
		    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4229
		     try abbreviated driver-file (in fileIn/xxx.ld)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4230
		    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4231
		    shortName ~= aClassName ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4232
			ok := self fileIn:('fileIn/' , longName , '.ld') lazy:loadLazy silent:beSilent
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4233
		    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4234
		    ok ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4235
			"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4236
			 then, if dynamic linking is available, 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4237
			"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4238
			(LoadBinaries and:[ObjectFileLoader notNil]) ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4239
			    sharedLibExtension := ObjectFileLoader sharedLibraryExtension.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4240
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4241
			    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4242
			     first look for a class packages shared binary in binary/xxx.o
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4243
			    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4244
			    libName := self libraryFileNameOfClass:aClassName.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4245
			    libName notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4246
				(ok := self fileInClass:aClassName fromObject:(libName, sharedLibExtension))
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4247
				ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4248
				    sharedLibExtension ~= '.o' ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4249
					ok := self fileInClass:aClassName fromObject:(libName, '.o')
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4250
				    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4251
				].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4252
			    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4253
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4254
			    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4255
			     then, look for a shared binary in binary/xxx.o
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4256
			    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4257
			    ok ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4258
				(ok := self fileInClass:aClassName fromObject:(shortName, sharedLibExtension))
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4259
				ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4260
				    sharedLibExtension ~= '.o' ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4261
					ok := self fileInClass:aClassName fromObject:(shortName, '.o')
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4262
				    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4263
				    ok ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4264
					shortName ~= aClassName ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4265
					    (ok := self fileInClass:aClassName fromObject:(longName, sharedLibExtension))
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4266
					    ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4267
						sharedLibExtension ~= '.o' ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4268
						    ok := self fileInClass:aClassName fromObject:(longName, '.o')
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4269
						]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4270
					    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4271
					].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4272
				    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4273
				].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4274
			    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4275
			].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4276
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4277
			"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4278
			 if that did not work, look for a compiled-bytecode file ...
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4279
			"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4280
			ok ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4281
			    (ok := self fileIn:(shortName , '.cls') lazy:loadLazy silent:beSilent)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4282
			    ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4283
				shortName ~= aClassName ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4284
				    ok := self fileIn:(longName , '.cls') lazy:loadLazy silent:beSilent
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4285
				]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4286
			    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4287
			].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4288
			"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4289
			 if that did not work, and the classes package is known,
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4290
			 look for an st-cls file 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4291
			 in a package subdir of the source-directory ...
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4292
			"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4293
			ok ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4294
			    (packageDir notNil and:[BinaryObjectStorage notNil]) ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4295
				packageFile := self getPackageFileName:(packageDir , '/classes/' , shortName , '.cls').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4296
				packageFile isNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4297
				    packageFile := (packageDir , '/classes/' , shortName , '.cls').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4298
				].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4299
				(ok := self fileIn:packageFile lazy:loadLazy silent:beSilent)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4300
				ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4301
				    shortName ~= aClassName ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4302
					packageFile := self getPackageFileName:(packageDir , '/classes/' , longName , '.cls').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4303
					packageFile isNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4304
					    packageFile := (packageDir , '/classes/' , longName , '.cls').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4305
					].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4306
					ok := self fileIn:packageFile lazy:loadLazy silent:beSilent
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4307
				    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4308
				].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4309
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4310
				zarFn := self getPackageFileName:(packageDir , '/classes.zip').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4311
				zarFn notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4312
				    zar := ZipArchive oldFileNamed:zarFn.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4313
				    zar notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4314
					entry := zar extract:(shortName , '.cls').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4315
					(entry isNil and:[shortName ~= longName]) ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4316
					    entry := zar extract:(longName , '.cls').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4317
					].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4318
					entry notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4319
					    bos := BinaryObjectStorage onOld:(entry asByteArray readStream).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4320
					    bos next.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4321
					    bos close.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4322
					    ok := true
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4323
					].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4324
				    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4325
				]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4326
			    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4327
			].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4328
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4329
			"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4330
			 if that did not work, look for an st-source file ...
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4331
			"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4332
			ok ifFalse:[                   
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4333
			    fn := shortName , '.st'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4334
			    (ok := self fileIn:fn lazy:loadLazy silent:beSilent)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4335
			    ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4336
				shortName ~= longName ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4337
				    fn := longName , '.st'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4338
				    ok := self fileIn:fn lazy:loadLazy silent:beSilent
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4339
				].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4340
				ok ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4341
				    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4342
				     ... and in the standard source-directory
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4343
				    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4344
				    fn := 'source/' , shortName , '.st'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4345
				    (ok := self fileIn:fn lazy:loadLazy silent:beSilent)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4346
				    ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4347
					shortName ~= longName ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4348
					    fn := 'source/' , longName , '.st'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4349
					    ok := self fileIn:fn lazy:loadLazy silent:beSilent
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4350
					]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4351
				    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4352
				]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4353
			    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4354
			    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4355
			     if that did not work, and the classes package is known,
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4356
			     look for an st-source file 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4357
			     in a package subdir of the source-directory ...
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4358
			    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4359
			    ok ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4360
				packageDir notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4361
				    packageFile := self getPackageFileName:(packageDir , '/source/' , shortName , '.st').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4362
				    packageFile isNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4363
					packageFile := (packageDir , '/source/' , shortName , '.st').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4364
				    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4365
				    fn := packageFile.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4366
				    (ok := self fileIn:packageFile lazy:loadLazy silent:beSilent)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4367
				    ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4368
					shortName ~= aClassName ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4369
					    packageFile := self getPackageFileName:(packageDir , '/source/' , longName , '.st').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4370
					    packageFile isNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4371
						packageFile := (packageDir , '/source/' , longName , '.st').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4372
					    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4373
					    fn := packageFile.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4374
					    ok := self fileIn:packageFile lazy:loadLazy silent:beSilent
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4375
					].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4376
					ok ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4377
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4378
					    packageFile := self getPackageFileName:(packageDir , '/' , shortName , '.st').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4379
					    packageFile isNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4380
						packageFile := (packageDir , '/' , shortName , '.st').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4381
					    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4382
					    fn := packageFile.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4383
					    (ok := self fileIn:packageFile lazy:loadLazy silent:beSilent)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4384
					    ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4385
						shortName ~= aClassName ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4386
						    packageFile := self getPackageFileName:(packageDir , '/' , longName , '.st').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4387
						    packageFile isNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4388
							packageFile := (packageDir , '/' , longName , '.st').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4389
						    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4390
						    fn := packageFile.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4391
						    ok := self fileIn:packageFile lazy:loadLazy silent:beSilent
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4392
						].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4393
						ok ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4394
						    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4395
						     ... and in the standard source-directory
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4396
						    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4397
						    fn := 'source/' , packageDir , '/' , shortName , '.st'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4398
						    (ok := self fileIn:fn lazy:loadLazy silent:beSilent)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4399
						    ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4400
							shortName ~= aClassName ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4401
							    fn := 'source/' , packageDir , '/' , longName , '.st'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4402
							    ok := self fileIn:fn lazy:loadLazy silent:beSilent
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4403
							]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4404
						    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4405
						]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4406
					    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4407
					].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4408
				    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4409
				]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4410
			    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4411
			    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4412
			     if that did not work, and the classes package is known,
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4413
			     look for a zipArchive containing a class entry.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4414
			    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4415
			    ok ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4416
				packageDir notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4417
				    zarFn := self getPackageFileName:(packageDir , '/source.zip').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4418
				    zarFn isNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4419
					zarFn := packageDir asFilename withSuffix:'zip'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4420
					zarFn := self getSourceFileName:zarFn.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4421
				    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4422
				    zarFn notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4423
					zar := ZipArchive oldFileNamed:zarFn.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4424
					zar notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4425
					    entry := zar extract:(shortName , '.st').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4426
					    (entry isNil and:[shortName ~= longName]) ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4427
						entry := zar extract:(longName , '.st').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4428
					    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4429
					    entry notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4430
						fn := zarFn.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4431
						ok := self 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4432
							fileInStream:(entry asString readStream)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4433
							lazy:loadLazy 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4434
							silent:beSilent 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4435
							logged:false
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4436
							addPath:nil
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4437
					    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4438
					]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4439
				    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4440
				]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4441
			    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4442
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4443
			    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4444
			     if that did not work, 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4445
			     look for a zipArchive containing a class entry.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4446
			    "
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4447
			    ok ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4448
				zarFn := self getSourceFileName:'source.zip'.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4449
				zarFn notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4450
				    zar := ZipArchive oldFileNamed:zarFn.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4451
				    zar notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4452
					entry := zar extract:(zarFn := shortName , '.st').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4453
					(entry isNil and:[shortName ~= longName]) ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4454
					    entry := zar extract:(zarFn := longName , '.st').
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4455
					].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4456
					entry notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4457
					    fn := zarFn.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4458
					    ok := self 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4459
						    fileInStream:(entry asString readStream)
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4460
						    lazy:loadLazy 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4461
						    silent:beSilent 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4462
						    logged:false
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4463
						    addPath:nil
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4464
					].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4465
				    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4466
				]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4467
			    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4468
			    ok ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4469
				"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4470
				 new: if there is a sourceCodeManager, ask it for the classes sourceCode
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4471
				"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4472
				(mgr := Smalltalk at:#SourceCodeManager) notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4473
				    inStream := mgr getMostRecentSourceStreamForClassNamed:aClassName.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4474
				    inStream notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4475
					fn := nil.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4476
					ok := self fileInStream:inStream lazy:loadLazy silent:beSilent logged:false addPath:nil. 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4477
				    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4478
				].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4479
			    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4480
			].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4481
		    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4482
		]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4483
	    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4484
	].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4485
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4486
	ok ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4487
	    newClass := self at:(aClassName asSymbol).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4488
	    newClass notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4489
		fn notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4490
		    newClass classFilename isNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4491
			newClass setClassFilename:fn
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4492
		    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4493
		].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4494
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4495
		doInit ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4496
		    newClass initialize
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4497
		]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4498
	    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4499
	].
6421
58dca33cf0fc #valueNowOrOnUnwindDo: -> #ensure:
Claus Gittinger <cg@exept.de>
parents: 6403
diff changeset
  4500
    ] ensure:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4501
	Compiler compileLazy:wasLazy. 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4502
	wasSilent notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4503
	    self silentLoading:wasSilent
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4504
	]
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4505
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4506
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4507
    ^ newClass
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4508
3155
35befc38f4f1 added package-argument to fileIn methods.
Claus Gittinger <cg@exept.de>
parents: 3096
diff changeset
  4509
    "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
  4510
    "Modified: / 5.6.1999 / 14:53:01 / cg"
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4511
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4512
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4513
fileInClassLibrary:aClassLibraryName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4514
    "find an object file containing a binary class library in some standard places
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4515
     and load it. This install all of its contained classes.
4712
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4516
     Return true if ok, false if not.
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4517
     Notice: the argument may not have an extension (by purpose);
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4518
	     the sharedLib extension (.dll / .so / .sl) is added here, to
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4519
	     make the caller independent of the underlying operatingSystem."
4712
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4520
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4521
    |path fn|
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4522
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4523
    ObjectFileLoader isNil ifTrue:[^ false].
4712
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4524
6837
505a9c83c1a0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6836
diff changeset
  4525
    fn := aClassLibraryName asFilename withSuffix:(ObjectFileLoader sharedLibrarySuffix).
6836
11fd536a8e02 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6819
diff changeset
  4526
    fn := fn pathName.
4712
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4527
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4528
    path := self getBinaryFileName:fn.
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4529
    path isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4530
	path := self getSystemFileName:fn.
4712
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4531
    ].
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4532
    path isNil ifTrue:[^ false].
68ef0760af79 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4691
diff changeset
  4533
4714
5da464c01bfd Fix #fileInClassLibrary:
Stefan Vogel <sv@exept.de>
parents: 4712
diff changeset
  4534
    ^ (ObjectFileLoader loadObjectFile:path) notNil
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4535
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
     Smalltalk fileInClassLibrary:'libtable'
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4538
     Smalltalk fileInClassLibrary:'binary/libwidg3'
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4539
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4540
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4541
    "Modified: 8.1.1997 / 17:58:56 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4542
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4543
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4544
fileInClassLibrary:aClassLibraryName inPackage:packageID
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4545
    "find an object file containing a binary class library in some standard places
6025
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4546
     and load it. This install all of its contained classes.
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4547
     Return true if ok, false if not.
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4548
     Notice: the argument may not have an extension (by purpose);
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4549
	     the sharedLib extension (.dll / .so / .sl) is added here, to
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4550
	     make the caller independent of the underlying operatingSystem."
6025
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4551
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4552
    |path fn|
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4553
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4554
    ObjectFileLoader isNil ifTrue:[^ false].
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4555
6837
505a9c83c1a0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6836
diff changeset
  4556
    fn := aClassLibraryName asFilename withSuffix:(ObjectFileLoader sharedLibrarySuffix).
505a9c83c1a0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6836
diff changeset
  4557
    fn := fn pathName.
6025
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4558
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4559
    path := self getPackageDirectoryForPackage:packageID.
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4560
    path isNil ifTrue:[^ false].
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4561
    path := path asFilename construct:fn.
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4562
    path exists ifFalse:[^ false].
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4563
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4564
    ^ (ObjectFileLoader loadObjectFile:path pathName) notNil
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4565
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4566
    "
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4567
     Smalltalk fileInClassLibrary:'libtable'
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4568
     Smalltalk fileInClassLibrary:'binary/libwidg3'
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4569
     Smalltalk fileInClassLibrary:'refactoryBrowser' inPackage:'stx:goodies/refactoryBrowser'
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4570
    "
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4571
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4572
    "Modified: 8.1.1997 / 17:58:56 / cg"
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4573
!
b5822854231c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 6020
diff changeset
  4574
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4575
fileInStream:aStream lazy:lazy silent:silent logged:logged addPath:morePath
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4576
    "read sourceCode from aStream;
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4577
     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
  4578
     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
  4579
     are created which compile themself when first executed. This allows
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4580
     for much faster fileIn (but slows down the first execution later).
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4581
     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
  4582
     code which is known to be syntactically correct.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4583
     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
  4584
     Giving nil for silent/lazy will use the current settings.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4585
     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
  4586
     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
  4587
     using a relative path."
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
    |wasLazy wasSilent oldSystemPath oldRealPath|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4590
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4591
    aStream isNil ifTrue:[^ false].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4592
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4593
    lazy notNil ifTrue:[wasLazy := Compiler compileLazy:lazy].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4594
    silent notNil ifTrue:[wasSilent := self silentLoading:silent].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4595
    [
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4596
	Class updateChangeFileQuerySignal answer:logged do:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4597
	    Class updateChangeListQuerySignal answer:logged do:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4598
		oldSystemPath := SystemPath copy.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4599
		[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4600
		    morePath notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4601
			SystemPath addFirst:morePath.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4602
			oldRealPath := RealSystemPath.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4603
			RealSystemPath := nil.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4604
		    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4605
		    aStream fileIn
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4606
		] ensure:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4607
		    morePath notNil ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4608
			SystemPath := oldSystemPath.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4609
			RealSystemPath := oldRealPath.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4610
		    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4611
		].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4612
	    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4613
	]
6421
58dca33cf0fc #valueNowOrOnUnwindDo: -> #ensure:
Claus Gittinger <cg@exept.de>
parents: 6403
diff changeset
  4614
    ] ensure:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4615
	lazy notNil ifTrue:[Compiler compileLazy:wasLazy]. 
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4616
	silent notNil ifTrue:[self silentLoading:wasSilent].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4617
	aStream close
617
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
    ^ true
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
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4622
     Smalltalk fileInStream:('source/TicTacToe.st' asFilename readStream) lazy:true silent:true
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4623
    "
1896
71760df55ce5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  4624
71760df55ce5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  4625
    "Modified: 5.11.1996 / 20:03:35 / cg"
617
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
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4628
isClassLibraryLoaded:name
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4629
    "return true, if a particular class library is already loaded"
5881
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4630
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4631
    ObjectMemory 
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4632
	binaryModuleInfo 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4633
	    do:[:entry | 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4634
		   entry type == #classLibrary ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4635
		       entry libraryName = name ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4636
			  ^ true        "/ already loaded
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4637
		       ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4638
		   ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4639
	       ].
5881
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4640
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4641
    ^ false
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4642
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4643
    "
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4644
     Smalltalk isClassLibraryLoaded:'libbasic'
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4645
     Smalltalk isClassLibraryLoaded:'libwidg3'
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4646
    "
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4647
!
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4648
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4649
loadClassLibraryIfAbsent:name
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4650
    "dynamically load a classLibrary, if not already loaded
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4651
     and the system supports dynamic loading.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4652
     Return true, if the library is loaded, false if not.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4653
     This entry is called without system specific filename
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4654
     extensions - it is portable among different architectures
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4655
     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
  4656
     are be present ..."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4657
5881
81a349eab73c added #isClassLibraryLoaded:
Claus Gittinger <cg@exept.de>
parents: 5878
diff changeset
  4658
    (self isClassLibraryLoaded:name) ifTrue:[ ^ true ].  "/ already loaded
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4659
    ^ self fileInClassLibrary:name
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4660
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4661
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4662
     Smalltalk loadClassLibraryIfAbsent:'libbasic'
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4663
     Smalltalk loadClassLibraryIfAbsent:'libwidg3'
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4664
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4665
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4666
    "Modified: 31.10.1996 / 16:57:24 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4667
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4668
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4669
secureFileIn:aFileName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4670
    "read in the named file, looking for it at standard places.
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4671
     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
  4672
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4673
    |retVal|
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4674
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4675
    retVal := false.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4676
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4677
    (SignalSet with:AbortSignal with:Process terminateSignal)
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4678
	handle:[:ex |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4679
	    ex return
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4680
	] do:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4681
	    retVal := self fileIn:aFileName
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4682
	].
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4683
    ^ retVal
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4684
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4685
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4686
silentFileIn:aFilename
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4687
    "same as fileIn:, but do not output 'compiled...'-messages on Transcript.
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4688
     Main use is during startup."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4689
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4690
    |wasSilent|
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4691
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4692
    wasSilent := self silentLoading:true.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4693
    [
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4694
	self fileIn:aFilename
6421
58dca33cf0fc #valueNowOrOnUnwindDo: -> #ensure:
Claus Gittinger <cg@exept.de>
parents: 6403
diff changeset
  4695
    ] ensure:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4696
	self silentLoading:wasSilent
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4697
    ]
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4698
! !
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4699
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4700
!Smalltalk class methodsFor:'system management-files'!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4701
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4702
bitmapFileStreamFor:aFileName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4703
    "search aFileName in some standard places;
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4704
     return a readonly fileStream or nil if not found.
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4705
     Searches in subdirectories named 'bitmaps' in the SystemPath.
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4706
     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
  4707
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4708
    |aString|
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4709
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4710
    aString := self getBitmapFileName:aFileName.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4711
    aString notNil ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4712
	^ aString asFilename readStreamOrNil
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4713
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4714
    ^ nil
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4715
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4716
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4717
bitmapFromFileNamed:aFileName forClass:aClass
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4718
    "search aFileName in some standard places:
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4719
     first in the redefinable bitmaps path, 
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4720
     then in the classes own package directory if existing.
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4721
     Return an image or nil."
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4722
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4723
    ^ self imageFromFileNamed:aFileName inPackage:(aClass package)
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4724
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4725
    "
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4726
     Smalltalk bitmapFromFileNamed:'SmalltalkX.xbm' forClass:View
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4727
    "
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4728
!
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4729
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4730
bitmapFromFileNamed:aFileName inPackage:aPackage
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4731
    "search aFileName in some standard places:
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4732
     first in the redefinable bitmaps path, 
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4733
     then in the package directory if existing.
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4734
     Return an image or nil."
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4735
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  4736
    ^ self imageFromFileNamed:aFileName inPackage:aPackage
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4737
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4738
    "
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4739
     Smalltalk bitmapFromFileNamed:'SmalltalkX.xbm' inPackage:'stx:libview'
5041
2886a5a4d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5040
diff changeset
  4740
     Smalltalk bitmapFromFileNamed:'SmalltalkX.xbm' inPackage:'stx:libtool'
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4741
    "
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4742
!
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  4743
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4744
classNameForFile:aFileName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4745
    "return the className which corresponds to an abbreviated fileName,
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4746
     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
  4747
     include a '.st' suffix (but no other)."
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4748
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4749
    |fn|
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4750
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4751
    (aFileName asFilename hasSuffix:'st') ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4752
	fn := aFileName copyWithoutLast:3
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4753
    ] ifFalse:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4754
	fn := aFileName
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4755
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4756
    ^ self filenameAbbreviations keyAtEqualValue:fn ifAbsent:[fn].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4757
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4758
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4759
     Smalltalk classNameForFile:'DrawObj'  
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4760
     Smalltalk classNameForFile:'DrawObj.st' 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4761
     Smalltalk classNameForFile:'ArrColl.st' 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4762
     Smalltalk classNameForFile:'ArrColl.chg' 
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4763
    "
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4764
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4765
    "Modified: 11.12.1995 / 14:51:10 / cg"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4766
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4767
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4768
constructPathFor:aDirectoryName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4769
    "search for aDirectory in SystemPath; 
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4770
     return a collection of pathes which include that directory."
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4771
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4772
    ^ self realSystemPath select:[:dirName |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4773
	|fullPath|
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4774
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4775
	fullPath := dirName asFilename construct:aDirectoryName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4776
	"/ fullPath exists and:[fullPath isDirectory and:[fullPath isReadable]]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4777
	fullPath isDirectory and:[fullPath isReadable]
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4778
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4779
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4780
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4781
fileInFileStreamFor:aFileName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4782
    "search aFileName in some standard places;
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4783
     return a readonly fileStream or nil if not found.
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4784
     Searches in subdirectories named 'fileIn' in SystemPath"
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4785
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4786
    |aString|
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4787
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4788
    aString := self getFileInFileName:aFileName.
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4789
    aString notNil ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  4790
	^ aString asFilename readStreamOrNil
3044
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4791
    ].
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4792
    ^ nil
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4793
!
a0bbac91639b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3033
diff changeset
  4794
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4795
fileNameForClass:aClassOrClassName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4796
    "return a good filename for aClassOrClassName -
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4797
     using the abbreviation file if there is one"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4798
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  4799
    |fileName abbrev cls fullClassName shortClassName|
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4800
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4801
    aClassOrClassName isBehavior ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4802
	cls := aClassOrClassName theNonMetaclass.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4803
	fullClassName := cls name.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4804
	shortClassName := cls nameWithoutPrefix.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4805
    ] ifFalse:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4806
	fullClassName := shortClassName := aClassOrClassName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4807
	shortClassName := shortClassName copyFrom:(shortClassName lastIndexOf:$:)+1.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4808
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4809
4748
10a336922e56 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4746
diff changeset
  4810
    fileName := fullClassName asSymbol.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4811
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4812
    "look for abbreviation"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4813
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4814
    abbrev := self filenameAbbreviations at:fileName ifAbsent:[nil].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4815
    abbrev notNil ifTrue:[^ abbrev].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4816
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4817
    "no abbreviation found - if its a short name, take it"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4818
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4819
    OperatingSystem maxFileNameLength < (fileName size + 3) ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4820
	"this will only be triggered on sys5.3/DOS type systems"
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4821
	('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
  4822
    ].
4748
10a336922e56 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4746
diff changeset
  4823
10a336922e56 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4746
diff changeset
  4824
    fileName := shortClassName asSymbol.
10a336922e56 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4746
diff changeset
  4825
    ^ fileName asString
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4826
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4827
     Smalltalk fileNameForClass:SmallInteger    
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4828
     Smalltalk fileNameForClass:'SmallInteger'    
3678
606bf9fca8f2 infoPrint.
Claus Gittinger <cg@exept.de>
parents: 3627
diff changeset
  4829
     Smalltalk fileNameForClass:'UnixOperatingSystem' 
4746
062aa9dc0f3d fixed fileName guessing
Claus Gittinger <cg@exept.de>
parents: 4741
diff changeset
  4830
     Smalltalk fileNameForClass:'Launcher'        
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4831
     Smalltalk fileNameForClass:'SomeUnknownClass' 
4746
062aa9dc0f3d fixed fileName guessing
Claus Gittinger <cg@exept.de>
parents: 4741
diff changeset
  4832
     Smalltalk fileNameForClass:OSI::FTAMOperation 
062aa9dc0f3d fixed fileName guessing
Claus Gittinger <cg@exept.de>
parents: 4741
diff changeset
  4833
     Smalltalk fileNameForClass:'OSI::Foobar' 
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4834
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4835
6151
e36a9b339582 isMeta/soleInstance -> theMetaclass / theNonMetaclass
Claus Gittinger <cg@exept.de>
parents: 6121
diff changeset
  4836
    "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
  4837
!
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  4838
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4839
filenameAbbreviations
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4840
    "return a dictionary containing the classname-to-filename
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4841
     mappings. (needed for sys5.3 users, where filenames are limited
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4842
     to 14 chars)"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4843
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4844
    CachedAbbreviations isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4845
	self readAbbreviations
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4846
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4847
    ^ CachedAbbreviations
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4848
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4849
    "flush with:
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4850
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4851
     CachedAbbreviations := nil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4852
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4853
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4854
     Smalltalk filenameAbbreviations
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4855
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4856
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4857
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4858
flushPathCaches
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4859
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4860
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4861
    "forget pathCaches - these are collections containing valid directory names,
2378
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4862
     where system files (resource, bitmaps etc.) are found.
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4863
     A flush is only required, if a new system directory has been created while
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4864
     the system is active, and those files should override the others
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4865
     (for example, if you created a private resource directory)"
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4866
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4867
    RealSystemPath := ResourcePath := SourcePath := 
5052
31a76937dec2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5051
diff changeset
  4868
    BitmapPath := BinaryPath := FileInPath := nil
2378
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4869
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4870
    "
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4871
     Smalltalk flushPathCaches
e76870d427ee commentary
ca
parents: 2374
diff changeset
  4872
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4873
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4874
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4875
getBinaryFileName:aFileName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4876
    "search aFileName in some standard places 
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4877
     (subdirectories named 'binary' in SystemPath);
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4878
     return the absolute filename or nil if none is found."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4879
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  4880
    BinaryPath isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4881
	BinaryPath := self constructPathFor:BinaryDirName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4882
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4883
2928
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  4884
    ^ 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
  4885
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  4886
    "Modified: 18.7.1996 / 15:53:49 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  4887
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  4888
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4889
getBitmapFileName:aFileName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4890
    "search aFileName in some standard places 
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4891
     (subdirectories named 'bitmaps' in SystemPath);
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4892
     return the absolute filename or nil if none is found."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4893
2974
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4894
    |f|
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4895
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4896
    BitmapPath isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4897
	BitmapPath := self constructPathFor:BitmapDirName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4898
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4899
2974
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4900
    "/ first, try a bitmaps subdir along the path.
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4901
    f := self searchPath:BitmapPath for:aFileName in:BitmapDirName.
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4902
    f isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4903
	"/ then, try it itself along the path.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4904
	f := self searchPath:self realSystemPath for:aFileName in:nil
2974
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4905
    ].
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4906
    ^ f
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4907
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4908
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4909
     Smalltalk getBitmapFileName:'SBrowser.xbm'
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4910
    "
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  4911
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  4912
    "Modified: 18.7.1996 / 15:53:55 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4913
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4914
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4915
getFileInFileName:aFileName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4916
    "search aFileName in some standard places 
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4917
     (subdirectories named 'fileIn' in SystemPath);
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4918
     return the absolute filename or nil if none is found."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4919
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  4920
    FileInPath isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4921
	FileInPath := self constructPathFor:FileInDirName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4922
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4923
2928
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  4924
    ^ 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
  4925
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  4926
    "Modified: 18.7.1996 / 15:53:59 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4927
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4928
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4929
getPackageDirectoryForPackage:aPackageID
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4930
    "search for a particular package; return its directory, or nil"
5550
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4931
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4932
    |packageDir|
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4933
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4934
    packageDir := aPackageID copyReplaceAll:$: with:$/.
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4935
    self packagePath do:[:aPath |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4936
	|dir|
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4937
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4938
	dir := aPath asFilename construct:packageDir.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4939
	(dir exists and:[dir isDirectory]) ifTrue:[^ dir].
5550
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4940
    ].
5785
872483483444 oops - getPackageDirectoryForPackage now cares for the case
Claus Gittinger <cg@exept.de>
parents: 5781
diff changeset
  4941
872483483444 oops - getPackageDirectoryForPackage now cares for the case
Claus Gittinger <cg@exept.de>
parents: 5781
diff changeset
  4942
    "/ 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
  4943
    (aPackageID upTo:$:) = 'stx' ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4944
	packageDir :=  aPackageID copyFrom:(aPackageID indexOf:$:) + 1.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4945
	packageDir := '../../' ,  packageDir.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4946
	packageDir := packageDir asFilename.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4947
	(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
  4948
    ].
5550
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4949
    ^ nil
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4950
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4951
    "
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4952
     Smalltalk getPackageDirectoryForPackage:(Array package)
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4953
     Smalltalk getPackageDirectoryForPackage:'stx:goodies/bitmaps'
5785
872483483444 oops - getPackageDirectoryForPackage now cares for the case
Claus Gittinger <cg@exept.de>
parents: 5781
diff changeset
  4954
     Smalltalk getPackageDirectoryForPackage:'stx:libview'
5550
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4955
    "
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4956
!
01ad51c71b0e added #getPackageDirectoryForPackage:
Claus Gittinger <cg@exept.de>
parents: 5518
diff changeset
  4957
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4958
getPackageFileName:aFileName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4959
    "search aFileName in some standard places 
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4960
     (packagePath and subdirectories named 'packages' in SystemPath);
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4961
     return the absolute filename or nil if none is found."
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4962
5052
31a76937dec2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5051
diff changeset
  4963
    |f|
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4964
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  4965
    "/ search along packagePath ...
5052
31a76937dec2 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5051
diff changeset
  4966
    f := self searchPath:self packagePath for:aFileName in:nil.
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  4967
    f isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4968
	"/ search under packages-directory along systemPath ...
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4969
	f := self searchPath:self realSystemPath for:aFileName in:PackageDirName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4970
	"/ kludge - allow for stx-directory to be named differently
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4971
	f isNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4972
	    (aFileName startsWith:'stx') ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4973
		(aFileName startsWith:'stx' , Filename separator) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4974
		    f := '../..' asFilename construct:(aFileName copyFrom:5).
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4975
		    f exists ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4976
			^ f pathName
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4977
		    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4978
		]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4979
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4980
	].
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  4981
    ].
5878
b89d789e1705 always return a string from #getPackageFileName
Claus Gittinger <cg@exept.de>
parents: 5860
diff changeset
  4982
    (f notNil and:[(f := f asFilename) exists]) ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  4983
	^ f pathName
5878
b89d789e1705 always return a string from #getPackageFileName
Claus Gittinger <cg@exept.de>
parents: 5860
diff changeset
  4984
    ].
b89d789e1705 always return a string from #getPackageFileName
Claus Gittinger <cg@exept.de>
parents: 5860
diff changeset
  4985
    ^ nil
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4986
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4987
    "
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  4988
     Smalltalk getPackageFileName:'stx/libview/resources/normal.style'  
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  4989
     Smalltalk getPackageFileName:'stx/libview/source.zip'    
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4990
    "
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4991
!
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  4992
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4993
getResourceFileName:aFileName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4994
    "search aFileName in some standard places 
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  4995
     (subdirectories named 'resource' in SystemPath);
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4996
     return the absolute filename or nil if none is found."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  4997
2974
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4998
    |f|
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  4999
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5000
    ResourcePath isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5001
	ResourcePath := self constructPathFor:ResourceDirName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5002
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5003
2974
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  5004
    "/ first, try a resource subdir along the path.
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  5005
    f := self searchPath:ResourcePath for:aFileName in:ResourceDirName.
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  5006
    f isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5007
	"/ then, try it itself along the path.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5008
	f := self searchPath:self realSystemPath for:aFileName in:nil
2974
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  5009
    ].
7e7c19f4d6d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2967
diff changeset
  5010
    ^ f
617
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
    "
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5013
     Smalltalk getResourceFileName:'SystemBrowser.rs'
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5014
    "
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  5015
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  5016
    "Modified: 18.7.1996 / 15:54:03 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5017
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5018
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5019
getResourceFileName:aFileName forClass:aClassOrNil
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5020
    "search aFileName in some standard places 
5043
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  5021
     (subdirectories named 'resource' in SystemPath);
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  5022
     and in aClasses package directory.
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  5023
     Return the absolute filename or nil if none is found."
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  5024
5065
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  5025
    |pkgOrNil|
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  5026
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  5027
    aClassOrNil notNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5028
	pkgOrNil := aClassOrNil package.
5065
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  5029
    ].
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  5030
    ^ self getResourceFileName:aFileName forPackage:pkgOrNil.
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  5031
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  5032
    "
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  5033
     Smalltalk getResourceFileName:'SystemBrowser.rs' forClass:SystemBrowser
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  5034
    "
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  5035
!
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  5036
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5037
getResourceFileName:aFileName forPackage:aPackageIDOrNil
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5038
    "search aFileName in some standard places 
5065
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  5039
     (subdirectories named 'resource' in SystemPath);
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  5040
     and in a packages directory.
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  5041
     Return the absolute filename or nil if none is found."
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  5042
5080
b600259b45b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5079
diff changeset
  5043
    |f dir packageDir|
5043
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  5044
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  5045
    f := self getResourceFileName:aFileName.
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  5046
    f notNil ifTrue:[^ f].
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  5047
5065
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  5048
    aPackageIDOrNil notNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5049
	packageDir := aPackageIDOrNil copyReplaceAll:$: with:$/.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5050
	self packagePath do:[:aPath |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5051
	    |pD|
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5052
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5053
	    pD := aPath asFilename construct:packageDir.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5054
	    pD exists ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5055
		f := pD construct:aFileName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5056
		f exists ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5057
		    ^ f pathName
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5058
		].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5059
		f := (pD construct:'resources') construct:aFileName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5060
		f exists ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5061
		    ^ f pathName
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5062
		].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5063
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5064
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5065
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5066
	dir := Smalltalk getPackageDirectoryForPackage:(aPackageIDOrNil ? 'stx:libview').
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5067
	dir notNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5068
	    f := (dir asFilename construct:'resources') construct:aFileName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5069
	    f exists ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5070
		^ f pathName
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5071
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5072
	    f := (dir asFilename construct:'styles') construct:aFileName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5073
	    f exists ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5074
		^ f pathName
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5075
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5076
	].
5043
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  5077
    ].
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  5078
    ^ nil
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  5079
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  5080
    "
5065
a7ae2d968496 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5064
diff changeset
  5081
     Smalltalk getResourceFileName:'SystemBrowser.rs' forPackage:'stx:libtool'
5080
b600259b45b1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5079
diff changeset
  5082
     Smalltalk getResourceFileName:'normal.style' forPackage:'stx:libview'
5043
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  5083
    "
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  5084
!
d1c0070f9412 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5042
diff changeset
  5085
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5086
getSourceFileName:aFileName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5087
    "search aFileName in some standard places 
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5088
     (subdirectories named 'source' in SystemPath);
736
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  5089
     return the absolute filename or nil if none is found.
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  5090
     This is used to find a sourceFile for a methods source,
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  5091
     if no sourceCodeManager is available."
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5092
2959
ef8cc5a5a19f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2933
diff changeset
  5093
    |f|
ef8cc5a5a19f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2933
diff changeset
  5094
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5095
    SourcePath isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5096
	SourcePath := self constructPathFor:SourceDirName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5097
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5098
2959
ef8cc5a5a19f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2933
diff changeset
  5099
    "/ first, try a source subdir along the path.
4770
9a6dcf673683 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4761
diff changeset
  5100
    SourcePath notNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5101
	f := self searchPath:SourcePath for:aFileName in:SourceDirName.
4770
9a6dcf673683 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4761
diff changeset
  5102
    ].
2959
ef8cc5a5a19f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2933
diff changeset
  5103
    f isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5104
	"/ then, try it itself along the path.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5105
	f := self searchPath:self realSystemPath for:aFileName in:nil
2959
ef8cc5a5a19f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2933
diff changeset
  5106
    ].
ef8cc5a5a19f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2933
diff changeset
  5107
    ^ f
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5108
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5109
    "
736
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  5110
     Smalltalk getSourceFileName:'Smalltalk.st'  
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  5111
     Smalltalk getSourceFileName:'ArrColl.st' 
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5112
    "
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  5113
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  5114
    "Modified: 18.7.1996 / 15:54:07 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5115
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5116
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5117
getSystemFileName:aFileNameOrString
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5118
    "search aFileNameOrString in some standard places;
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5119
     return the absolute filename or nil if none is found.
4150
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  5120
     see comment in Smalltalk>>initSystemPath.
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  5121
     This should be used to access resources such as bitmaps, doc-files,
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  5122
     and other help files.
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  5123
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5124
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5125
    "credits for this method go to Markus ...."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5126
2933
8b65cb642d91 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2928
diff changeset
  5127
    |fn nameString|
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  5128
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  5129
    fn := aFileNameOrString asFilename.
2933
8b65cb642d91 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2928
diff changeset
  5130
    nameString := fn name.
2896
be30640b9012 VMS stuff
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  5131
    fn isAbsolute ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5132
	"dont use path for absolute file names"
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5133
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5134
	^ nameString
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5135
    ].
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5136
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5137
    self realSystemPath do:[:dirName |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5138
	|realName|
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5139
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5140
	realName := dirName asFilename construct:nameString.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5141
	"/
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5142
	"/ here, we also return true if its a directory
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5143
	"/ (Even if unreadable). 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5144
	"/ It could be that the file itself is still readable.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5145
	"/
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5146
	(realName isDirectory or:[realName isReadable]) ifTrue: [
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5147
	    ^ realName name
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5148
	]
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5149
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5150
    ^ nil
4150
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  5151
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  5152
    "
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  5153
     Smalltalk getSystemFileName:'doc/online/english/TOP.html'
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  5154
     Smalltalk getSystemFileName:'bitmaps/SBrowser.xbm'
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  5155
     Smalltalk getSystemFileName:'bitmaps/foo'  
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  5156
     Smalltalk getSystemFileName:'resources/View.rs'  
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  5157
     Smalltalk getSystemFileName:'resources/iris.style'  
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  5158
    "
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  5159
11b33d68bac0 comment
Claus Gittinger <cg@exept.de>
parents: 4129
diff changeset
  5160
    "Modified: / 6.5.1999 / 10:40:37 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5161
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5162
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5163
imageFromFileNamed:aFileName forClass:aClass
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5164
    "search aFileName in some standard places:
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5165
     first in the redefinable bitmaps path, then in the classes
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5166
     own package directory if existing.
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5167
     Return an image or nil."
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5168
5113
b3d3be7d95b9 icon search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  5169
    |package nm img|
b3d3be7d95b9 icon search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  5170
b3d3be7d95b9 icon search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  5171
    package := aClass package.
b3d3be7d95b9 icon search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  5172
    img := self imageFromFileNamed:aFileName inPackage:package.
b3d3be7d95b9 icon search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  5173
    img isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5174
	package ~= 'stx:goodies' ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5175
	    "/ try under the goodies package ...
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5176
	    img := Smalltalk imageFromFileNamed:aFileName inPackage:'stx:goodies'.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5177
	].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5178
	img isNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5179
	    (aFileName startsWith:'bitmaps') ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5180
		nm := 'bitmaps/' , aFileName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5181
		img := Smalltalk imageFromFileNamed:nm forClass:self.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5182
		img isNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5183
		    img := Smalltalk imageFromFileNamed:nm inPackage:'stx:goodies'.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5184
		]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5185
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5186
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5187
	    img isNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5188
		img := Smalltalk imageFromFileNamed:aFileName inPackage:'stx:goodies'.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5189
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5190
	]
5113
b3d3be7d95b9 icon search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  5191
    ].
b3d3be7d95b9 icon search
Claus Gittinger <cg@exept.de>
parents: 5112
diff changeset
  5192
    ^ img
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5193
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5194
    "
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5195
     Smalltalk imageFromFileNamed:'SmalltalkX.xbm' forClass:View
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5196
    "
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5197
!
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5198
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5199
imageFromFileNamed:aFileName inPackage:aPackage
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5200
    "search aFileName in some standard places:
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5201
     first in the redefinable bitmaps path, then in the 
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5202
     package directory if existing.
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5203
     Return an image or nil."
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5204
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5205
    |i f dir|
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5206
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5207
    i := Image fromFile:aFileName resolution:100.
5860
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  5208
    i notNil ifTrue:[^ i].
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  5209
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  5210
    f := self getBitmapFileName:aFileName.
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  5211
    f notNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5212
	i := Image fromFile:f.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5213
	i notNil ifTrue:[^ i].
5860
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  5214
    ].
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  5215
    dir := self projectDirectoryForPackage:aPackage.
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  5216
    dir isNil ifTrue:[^ nil].
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  5217
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  5218
    ((f := aFileName) startsWith:'bitmaps/') ifFalse:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5219
	i := Image fromFile:(dir asFilename construct:f).
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5220
	i notNil ifTrue:[^ i].
5860
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  5221
    
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5222
	f := 'bitmaps/' , aFileName.
5860
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  5223
    ].
5bd2ece3d750 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5857
diff changeset
  5224
    ^ Image fromFile:(dir asFilename construct:f).
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5225
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5226
    "
5587
4c4d67ad0e51 avoid obsoleteMessage warning (Filename ,)
Claus Gittinger <cg@exept.de>
parents: 5580
diff changeset
  5227
     Smalltalk imageFromFileNamed:'SmalltalkX.xbm' inPackage:'stx:libview' 
4c4d67ad0e51 avoid obsoleteMessage warning (Filename ,)
Claus Gittinger <cg@exept.de>
parents: 5580
diff changeset
  5228
     Smalltalk imageFromFileNamed:'SmalltalkX.xbm' inPackage:'stx:libtool' 
4c4d67ad0e51 avoid obsoleteMessage warning (Filename ,)
Claus Gittinger <cg@exept.de>
parents: 5580
diff changeset
  5229
     Smalltalk imageFromFileNamed:'bitmaps/gifImages/garfield.gif' inPackage:'stx:goodies' 
5089
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5230
    "
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5231
!
558b86f2d9b9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5080
diff changeset
  5232
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5233
libraryFileNameOfClass:aClassOrClassName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5234
    "for a given class, return the name of a classLibrary which contains
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5235
     binary code for it.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5236
     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
  5237
     for an entry for aClassOrClassName.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5238
     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
  5239
     the 2nd col.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5240
     Return nil if no entry is found.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5241
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5242
     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
  5243
     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
  5244
     Otherwise, the returned name is the classLibrary object of that class.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5245
     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
  5246
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5247
    |aStream line words n aClassName|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5248
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5249
    aClassOrClassName isBehavior ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5250
	aClassName := aClassOrClassName name
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5251
    ] ifFalse:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5252
	aClassName := aClassOrClassName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5253
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5254
    aClassName := aClassName asString.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5255
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5256
    #('include/liblist.stc')    "/ filenames
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5257
    with:#(2)                   "/ column
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5258
    do:[:fileName :col |
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5259
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5260
	aStream := self systemFileStreamFor:fileName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5261
	aStream notNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5262
	    [aStream atEnd] whileFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5263
		line := aStream nextLine.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5264
		line notNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5265
		    (line startsWith:'#') ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5266
			words := line asCollectionOfWords.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5267
			(n := words size) > 1 ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5268
			    (words at:1) = aClassName ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5269
				n >= col ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5270
				    aStream close.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5271
				    ^ (words at:col) withoutSeparators
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5272
				]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5273
			    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5274
			]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5275
		    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5276
		]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5277
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5278
	    aStream close
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5279
	].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5280
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5281
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5282
    ^ nil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5283
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5284
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5285
     Smalltalk libraryFileNameOfClass:'ClockView' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5286
     Smalltalk libraryFileNameOfClass:'Bag' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5287
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5288
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5289
    "Modified: 6.11.1995 / 15:41:39 / cg"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5290
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5291
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5292
packagePath
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5293
    "return a collection of additional directorynames, where smalltalk
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5294
     looks for package directories.
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5295
     Notice, that directories named 'packages' under the systemPath are
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5296
     always consulted - even if not in the packagePath"
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5297
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5298
    ^ PackagePath
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5299
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5300
    "
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5301
     Smalltalk packagePath
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5302
     Smalltalk packagePath addLast:'/opt/smalltalk'
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5303
     Smalltalk packagePath addFirst:'/usr/local/otherPackages'
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5304
    "
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5305
!
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5306
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5307
packagePath:aPath
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5308
    "set the packagePath;
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5309
     a collection of additional directorynames, where smalltalk
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5310
     looks for package directories.
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5311
     Notice, that directories named 'packages' under the systemPath are
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5312
     always consulted - even if not in the packagePath"
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5313
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5314
    PackagePath := aPath asOrderedCollection
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5315
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5316
    "
6852
7e4ea7876711 more changes for better standAlone operation
Claus Gittinger <cg@exept.de>
parents: 6851
diff changeset
  5317
     Smalltalk packagePath:#( '.' '/opt/stx' '/opt/smalltalk' '/usr/local/otherPackages')
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5318
    "
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5319
!
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5320
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5321
projectDirectoryForClass:aClass
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5322
    "given a class, return the path to its package directory;
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5323
     nil if not found."
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5324
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5325
    |pkg|
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5326
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5327
    pkg := aClass package.
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5328
    pkg isNil ifTrue:[^ nil].
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5329
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5330
    ^ self projectDirectoryForPackage:pkg.
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5331
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5332
    "
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5333
     Smalltalk projectDirectoryForClass:Array 
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5334
     Smalltalk projectDirectoryForClass:View
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5335
    "
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5336
!
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5337
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5338
projectDirectoryForPackage:aPackage
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5339
    "given a packageID, return the path to its package directory;
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5340
     nil if not found."
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5341
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  5342
    |prj prjDir|
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5343
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5344
    "/ there might be a package specific resource directory ...
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5345
    "/ in the directory, from which the project was loaded
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5346
    prj := Project projectWithId:aPackage.
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5347
    prj notNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5348
	prjDir := prj directory.
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5349
    ].
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5350
    (prjDir notNil and:[prjDir asFilename exists]) ifFalse:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5351
	prjDir := Smalltalk getPackageFileName:(aPackage copyReplaceAll:$: with:$/).
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5352
    ].
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5353
    ^ prjDir
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5354
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5355
    "
5040
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5356
     Smalltalk projectDirectoryForPackage:'stx:libbasic'   
5c1b0d236cb1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5039
diff changeset
  5357
     Smalltalk projectDirectoryForPackage:'exept:smartcard'
5038
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5358
    "
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5359
!
d74e7c71ae75 added package directory handling
Claus Gittinger <cg@exept.de>
parents: 5037
diff changeset
  5360
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5361
readAbbreviations
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5362
    "read classname to filename mappings from include/abbrev.stc.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5363
     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
  5364
5067
335c866e150c walk packagePath when reading abbrevs & autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5065
diff changeset
  5365
    |aStream f dirsConsulted|
4420
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5366
7572
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  5367
self installAutoloadedClasses.
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  5368
^ CachedAbbreviations.
43341d5aef04 use levenshtein for intelligent classname search
Claus Gittinger <cg@exept.de>
parents: 7565
diff changeset
  5369
4420
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5370
    CachedAbbreviations := IdentityDictionary new.
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5371
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5372
    "/ new scheme: look for a directory called 'packages'
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5373
    "/ and enumerate its abbrev.stc files...
5067
335c866e150c walk packagePath when reading abbrevs & autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5065
diff changeset
  5374
    dirsConsulted := Set new.
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5375
    f := Smalltalk getSystemFileName:'packages'.
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5376
    f notNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5377
	f := f asFilename.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5378
	f isDirectory ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5379
	    ('Smalltalk [info]: reading all class abbreviations found under ''' , f pathName ,'''') infoPrintCR.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5380
	    self recursiveReadAllAbbreviationsFrom:f.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5381
	    dirsConsulted add:f pathName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5382
	].
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5383
    ].
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5384
5067
335c866e150c walk packagePath when reading abbrevs & autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5065
diff changeset
  5385
    "/ and along the package-path
335c866e150c walk packagePath when reading abbrevs & autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5065
diff changeset
  5386
    self packagePath do:[:aPath |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5387
	(dirsConsulted includes:aPath) ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5388
	    ('Smalltalk [info]: reading all class abbreviations found under ''' , aPath ,'''') infoPrintCR.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5389
	    self recursiveReadAllAbbreviationsFrom:aPath.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5390
	    dirsConsulted add:aPath
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5391
	]
5067
335c866e150c walk packagePath when reading abbrevs & autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5065
diff changeset
  5392
    ].
335c866e150c walk packagePath when reading abbrevs & autoloaded classes.
Claus Gittinger <cg@exept.de>
parents: 5065
diff changeset
  5393
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5394
    "/ 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
  5395
    "/ include directory. This will vanish.
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5396
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5397
    aStream := self systemFileStreamFor:'include/abbrev.stc'.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5398
    aStream notNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5399
	('Smalltalk [info]: reading additional abbreviations from ''' , aStream pathName ,'''') infoPrintCR.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5400
	self readAbbreviationsFromStream:aStream.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5401
	aStream close.
5262
8db0fd70802f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5261
diff changeset
  5402
"/    ] ifFalse:[
8db0fd70802f *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5261
diff changeset
  5403
"/        ('Smalltalk [warning]: no global''include/abbrev.stc'' file found') infoPrintCR
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5404
    ].
4420
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5405
    ^ CachedAbbreviations
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5406
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5407
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5408
     Smalltalk readAbbreviations
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5409
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5410
5091
a145df1cd0e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  5411
    "Modified: / 10.12.1999 / 17:48:53 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5412
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5413
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5414
readAbbreviationsFromStream:aStream
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5415
    "read classname to filename mappings from aStream.
4420
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5416
     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
  5417
5095
9bbf3cf594e5 no warning for same-abbrev, if packages differ.
Claus Gittinger <cg@exept.de>
parents: 5093
diff changeset
  5418
    |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
  5419
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5420
    abbrevs := CachedAbbreviations.
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5421
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5422
    [aStream atEnd] whileFalse:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5423
	line := aStream nextLine.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5424
	line notNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5425
	    (line startsWith:'#') ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5426
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5427
		"/ must do it manually, caring for quoted strings.
4685
d145298696b7 more package loading support
Claus Gittinger <cg@exept.de>
parents: 4642
diff changeset
  5428
"/                words := line asCollectionOfWords.
d145298696b7 more package loading support
Claus Gittinger <cg@exept.de>
parents: 4642
diff changeset
  5429
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5430
		words := OrderedCollection new.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5431
		s := line readStream.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5432
		[s atEnd] whileFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5433
		    s skipSeparators.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5434
		    s peek == $' ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5435
			s next.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5436
			w := s upTo:$'.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5437
			s skipSeparators.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5438
		    ] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5439
			w := s upToSeparator
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5440
		    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5441
		    words add:w
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5442
		].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5443
		words size >= 3 ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5444
		    nm := (words at:1) withoutSeparators.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5445
		    abbrev := (words at:2) withoutSeparators.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5446
		    pkg := (words at:3) withoutSeparators.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5447
		    nm ~= abbrev ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5448
			key := nm asSymbol.    
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5449
			oldAbbrev := abbrevs at:key ifAbsent:nil.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5450
			oldAbbrev notNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5451
			    oldAbbrev ~= abbrev ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5452
				StandAlone ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5453
				    ('Smalltalk [warning]: conflict for: ' , nm , ' in ' , (aStream pathName)) infoPrintCR.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5454
				    ('Smalltalk [warning]: (' , oldAbbrev , ' <-> ' , abbrev , ')') infoPrintCR
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5455
				]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5456
			    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5457
			] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5458
			    cls := self classNamed:abbrev.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5459
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5460
			    cls notNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5461
				cls name ~= nm ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5462
				    "/ ok, there is a class named after this abbrev ...
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5463
				    "/ this is only a conflict, if the other class has no
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5464
				    "/ abbreviation (or the same).
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5465
				    (abbrevs at:(cls name asSymbol) ifAbsent:cls name) = abbrev ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5466
					cls isNameSpace ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5467
					    pkg = cls package ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5468
						StandAlone ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5469
						    ('Smalltalk [warning]: conflict for: ' , cls name , ' in ' , (aStream pathName)) infoPrintCR.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5470
						    ('Smalltalk [warning]: (' , nm , ' -> ' , abbrev , ')') infoPrintCR
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5471
						]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5472
					    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5473
					]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5474
				    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5475
				]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5476
			    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5477
			    abbrevs at:nm asSymbol put:abbrev.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5478
			]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5479
		    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5480
		] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5481
		    ('Smalltalk [warning]: malformed line in ' , (aStream pathName)) infoPrintCR.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5482
		]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5483
	    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5484
	]
4420
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5485
    ].
5091
a145df1cd0e6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5089
diff changeset
  5486
5095
9bbf3cf594e5 no warning for same-abbrev, if packages differ.
Claus Gittinger <cg@exept.de>
parents: 5093
diff changeset
  5487
    "Modified: / 13.12.1999 / 11:54:17 / cg"
4420
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5488
!
beac992b86d1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4391
diff changeset
  5489
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5490
realSystemPath
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5491
    "return the realSystemPath - thats the directorynames from
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5492
     SystemPath which exist and are readable"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5493
5044
dc829a004785 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5043
diff changeset
  5494
    |nP|
dc829a004785 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5043
diff changeset
  5495
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5496
    RealSystemPath isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5497
	OperatingSystem isVMSlike ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5498
	    "/ temporary kludge: since we cannot currently
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5499
	    "/ check for existance of a name like 'volume:',
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5500
	    "/ leave those in the Path without a check.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5501
	    RealSystemPath := SystemPath select:[:dirName |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5502
		|f|
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5503
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5504
		f := dirName asFilename.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5505
		f isVolumeOnly ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5506
		    true
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5507
		] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5508
		    (f isDirectory) and:[f isReadable]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5509
		]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5510
	    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5511
	] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5512
	    RealSystemPath := SystemPath select:[:dirName |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5513
		|f|
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5514
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5515
		f := dirName asFilename.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5516
		(f isDirectory) and:[f isReadable]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5517
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5518
	    RealSystemPath := RealSystemPath collect:[:dirName |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5519
		    |f|
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5520
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5521
		    f := dirName asFilename pathName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5522
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5523
	    "/ remove duplicates (but keep order)
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5524
	    nP := OrderedCollection new.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5525
	    RealSystemPath do:[:p |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5526
		(nP includes:p) ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5527
		    nP add:p
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5528
		]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5529
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5530
	    RealSystemPath := nP.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5531
	].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5532
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5533
    ^ RealSystemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5534
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5535
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5536
recursiveReadAllAbbreviationsFrom:aDirectory
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5537
    self recursiveReadAllAbbreviationsFrom:aDirectory maxLevels:15
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5538
!
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5539
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5540
recursiveReadAllAbbreviationsFrom:aDirectory maxLevels:maxLevels
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5541
    "read all abbreviations from and under aDirectory."
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5542
7085
71d0e451114d Handle openErrorSignal in preparition for change openErrorSignal
Stefan Vogel <sv@exept.de>
parents: 7054
diff changeset
  5543
    |abbrevStream dir directoryContents|
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5544
5075
c9e585ae97d4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5074
diff changeset
  5545
    maxLevels == 0 ifTrue:[
5077
8360a3057ac5 checkin from browser
ca
parents: 5075
diff changeset
  5546
"/        'Smalltalk [warning]: max directory nesting reached.' infoPrintCR.
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5547
	^ self
5075
c9e585ae97d4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5074
diff changeset
  5548
    ].
4957
d2470714f2da headless stuff
Stefan Vogel <sv@exept.de>
parents: 4956
diff changeset
  5549
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5550
    dir := aDirectory asFilename.
5057
390bbf7d37bf care for empty directories
Claus Gittinger <cg@exept.de>
parents: 5053
diff changeset
  5551
    dir exists ifFalse:[^ self].
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5552
7085
71d0e451114d Handle openErrorSignal in preparition for change openErrorSignal
Stefan Vogel <sv@exept.de>
parents: 7054
diff changeset
  5553
    [
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5554
	abbrevStream := (dir construct:'abbrev.stc') asFilename readStream.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5555
	self readAbbreviationsFromStream:abbrevStream.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5556
	abbrevStream close.
7085
71d0e451114d Handle openErrorSignal in preparition for change openErrorSignal
Stefan Vogel <sv@exept.de>
parents: 7054
diff changeset
  5557
    ] on:FileStream openErrorSignal do:[:ex| "ignore this file"].
71d0e451114d Handle openErrorSignal in preparition for change openErrorSignal
Stefan Vogel <sv@exept.de>
parents: 7054
diff changeset
  5558
71d0e451114d Handle openErrorSignal in preparition for change openErrorSignal
Stefan Vogel <sv@exept.de>
parents: 7054
diff changeset
  5559
    [
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5560
	directoryContents := dir directoryContents.
7085
71d0e451114d Handle openErrorSignal in preparition for change openErrorSignal
Stefan Vogel <sv@exept.de>
parents: 7054
diff changeset
  5561
    ] on:FileStream openErrorSignal do:[:ex|
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5562
	"non-accessable directory: we are done"
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5563
	^ self
7085
71d0e451114d Handle openErrorSignal in preparition for change openErrorSignal
Stefan Vogel <sv@exept.de>
parents: 7054
diff changeset
  5564
    ].
71d0e451114d Handle openErrorSignal in preparition for change openErrorSignal
Stefan Vogel <sv@exept.de>
parents: 7054
diff changeset
  5565
71d0e451114d Handle openErrorSignal in preparition for change openErrorSignal
Stefan Vogel <sv@exept.de>
parents: 7054
diff changeset
  5566
    directoryContents do:[:aFilename |
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5567
	|f|
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5568
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5569
	(#(
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5570
	    'doc'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5571
	    'CVS'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5572
	    'bitmaps'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5573
	    'resources'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5574
	    'source'
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5575
	) includes:aFilename) ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5576
	    f := dir construct:aFilename.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5577
	    f isDirectory ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5578
		self recursiveReadAllAbbreviationsFrom:f maxLevels:maxLevels-1
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5579
	    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5580
	].
4458
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5581
    ].
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5582
!
6f46b35f787c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4431
diff changeset
  5583
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5584
resourceFileStreamFor:aFileName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5585
    "search aFileName in some standard places;
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5586
     return a readonly fileStream or nil if not found.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5587
     Searches in subdirectories named 'resource' in SystemPath"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5588
5053
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  5589
    ^ self resourceFileStreamFor:aFileName forClass:nil
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  5590
!
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  5591
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5592
resourceFileStreamFor:aFileName forClass:aClassOrNil
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5593
    "search aFileName in some standard places and in the classes
5053
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  5594
     package-resource directory.
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  5595
     Return a readonly fileStream or nil if not found.
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  5596
     Searches in subdirectories named 'resource' in SystemPath"
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  5597
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5598
    |aString|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5599
5053
0d8cc1eb0545 added #getResourceFileStream:forClass:
Claus Gittinger <cg@exept.de>
parents: 5052
diff changeset
  5600
    aString := self getResourceFileName:aFileName forClass:aClassOrNil.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5601
    aString notNil ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5602
	^ aString asFilename readStreamOrNil
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5603
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5604
    ^ nil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5605
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5606
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5607
searchPath:aPath for:aFileName in:aDirName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5608
    "search aPath for a subdirectory named aDirectory with a file
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5609
     named aFileName"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5610
2928
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  5611
    |f|
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  5612
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  5613
    ((f := aFileName asFilename) isAbsolute 
39c23e287c81 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2912
diff changeset
  5614
    or:[f isExplicitRelative]) ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5615
	"/
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5616
	"/ dont use path for absolute or explicit .-relative file names
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5617
	"/
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5618
	^ aFileName
5786
354c5cb654d1 resource access (if stx is not the TOP-dirs name)
Claus Gittinger <cg@exept.de>
parents: 5785
diff changeset
  5619
    ].
354c5cb654d1 resource access (if stx is not the TOP-dirs name)
Claus Gittinger <cg@exept.de>
parents: 5785
diff changeset
  5620
354c5cb654d1 resource access (if stx is not the TOP-dirs name)
Claus Gittinger <cg@exept.de>
parents: 5785
diff changeset
  5621
    aPath notNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5622
	aPath do:[:dirName |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5623
	    |realName dir|
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5624
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5625
	    dir := dirName asFilename.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5626
	    aDirName notNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5627
		realName := (dir construct:aDirName) construct:aFileName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5628
	    ] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5629
		realName := dir construct:aFileName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5630
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5631
	    (realName isReadable) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5632
		^ realName name
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5633
	    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5634
	].
5786
354c5cb654d1 resource access (if stx is not the TOP-dirs name)
Claus Gittinger <cg@exept.de>
parents: 5785
diff changeset
  5635
    ].
354c5cb654d1 resource access (if stx is not the TOP-dirs name)
Claus Gittinger <cg@exept.de>
parents: 5785
diff changeset
  5636
354c5cb654d1 resource access (if stx is not the TOP-dirs name)
Claus Gittinger <cg@exept.de>
parents: 5785
diff changeset
  5637
    ^ nil.
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  5638
4129
15c7aac46056 #isReadable is ok as check - no need for #exists
Claus Gittinger <cg@exept.de>
parents: 4113
diff changeset
  5639
    "Modified: / 29.4.1999 / 15:06:43 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5640
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5641
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5642
sourceDirectoryNameOfClass:aClassOrClassName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5643
    "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
  5644
     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
  5645
     for an entry for aClassOrClassName.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5646
     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
  5647
     the 3rd col.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5648
     Return nil if no entry is found."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5649
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5650
    |aStream line words n aClassName|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5651
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5652
    aClassOrClassName isBehavior ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5653
	aClassName := aClassOrClassName name
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5654
    ] ifFalse:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5655
	aClassName := aClassOrClassName
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5656
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5657
    aClassName := aClassName asString.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5658
728
50cf1c907c28 again search liblist for a classes source directory
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
  5659
    #('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
  5660
    with:#(3 2)                   "/ column
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5661
    do:[:fileName :col |
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5662
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5663
	aStream := self systemFileStreamFor:fileName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5664
	aStream notNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5665
	    [aStream atEnd] whileFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5666
		line := aStream nextLine.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5667
		line notNil ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5668
		    (line startsWith:'#') ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5669
			words := line asCollectionOfWords.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5670
			(n := words size) > 1 ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5671
			    (words at:1) = aClassName ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5672
				n >= col ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5673
				    aStream close.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5674
				    ^ (words at:col) withoutSeparators
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5675
				]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5676
			    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5677
			]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5678
		    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5679
		]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5680
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5681
	    aStream close
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5682
	].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5683
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5684
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5685
    ^ nil
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5686
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5687
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5688
     Smalltalk sourceDirectoryNameOfClass:'ClockView' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5689
     Smalltalk sourceDirectoryNameOfClass:'Bag' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5690
     Smalltalk sourceDirectoryNameOfClass:'GLWireCubeDemoView' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5691
     Smalltalk sourceDirectoryNameOfClass:'SomeNonExistingClass' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5692
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5693
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5694
    "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
  5695
    "Modified: 9.12.1995 / 23:54:14 / cg"
2033
c94698170f36 Close unused streams.
Stefan Vogel <sv@exept.de>
parents: 2029
diff changeset
  5696
    "Modified: 3.1.1997 / 11:26:44 / stefan"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5697
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5698
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5699
sourceFileStreamFor:aFileName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5700
    "search aFileName in some standard places;
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5701
     return a readonly fileStream or nil if not found.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5702
     Searches in subdirectories named 'source' in SystemPath"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5703
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5704
    |aString|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5705
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5706
    aString := self getSourceFileName:aFileName.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5707
    aString notNil ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5708
	^ aString asFilename readStreamOrNil
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5709
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5710
    ^ nil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5711
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5712
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5713
systemFileStreamFor:aFileName
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5714
    "search aFileName in some standard places;
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5715
     return a readonly fileStream or nil if not found.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5716
     see comment in Smalltalk>>initSystemPath"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5717
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5718
    |aString|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5719
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5720
    aString := self getSystemFileName:aFileName.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5721
    aString notNil ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5722
	^ aString asFilename readStreamOrNil
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5723
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5724
    ^ nil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5725
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5726
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5727
systemPath
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5728
    "return a collection of directorynames, where smalltalk
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5729
     looks for system files 
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5730
     (usually in subdirs such as resources, bitmaps, source etc.)
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5731
     see comment in Smalltalk>>initSystemPath."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5732
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5733
    ^ SystemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5734
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5735
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5736
     Smalltalk systemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5737
     Smalltalk systemPath addLast:'someOtherDirectoryPath'
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5738
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5739
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5740
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5741
systemPath:aPath
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5742
    "set the collection of directorynames, where smalltalk
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5743
     looks for system files 
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5744
     (usually in subdirs such as resources, bitmaps, source etc.)
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5745
     see comment in Smalltalk>>initSystemPath."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5746
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5747
    SystemPath := aPath.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5748
    self flushPathCaches
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5749
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5750
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5751
     Smalltalk systemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  5752
     Smalltalk systemPath:(Smalltalk systemPath copy addLast:'someOtherDirectoryPath')
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  5753
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  5754
! !
2
claus
parents: 1
diff changeset
  5755
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5756
!Smalltalk class methodsFor:'system management-packages'!
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5757
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5758
knownPackages
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5759
    ^ KnownPackages ? #()
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5760
!
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5761
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5762
loadExtensionsForPackage:aPackageId
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5763
    |packageDirName|
7281
f12470234bc2 +loadExtensions
Claus Gittinger <cg@exept.de>
parents: 7275
diff changeset
  5764
f12470234bc2 +loadExtensions
Claus Gittinger <cg@exept.de>
parents: 7275
diff changeset
  5765
    packageDirName := aPackageId copyReplaceAll:$: with:$/.
f12470234bc2 +loadExtensions
Claus Gittinger <cg@exept.de>
parents: 7275
diff changeset
  5766
f12470234bc2 +loadExtensions
Claus Gittinger <cg@exept.de>
parents: 7275
diff changeset
  5767
    packageDirName := self getPackageFileName:packageDirName.
f12470234bc2 +loadExtensions
Claus Gittinger <cg@exept.de>
parents: 7275
diff changeset
  5768
    packageDirName isNil ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5769
	^ false
7281
f12470234bc2 +loadExtensions
Claus Gittinger <cg@exept.de>
parents: 7275
diff changeset
  5770
    ].
f12470234bc2 +loadExtensions
Claus Gittinger <cg@exept.de>
parents: 7275
diff changeset
  5771
    ^ self loadExtensionsFromDirectory:packageDirName
f12470234bc2 +loadExtensions
Claus Gittinger <cg@exept.de>
parents: 7275
diff changeset
  5772
!
f12470234bc2 +loadExtensions
Claus Gittinger <cg@exept.de>
parents: 7275
diff changeset
  5773
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5774
loadExtensionsFromDirectory:packageDirOrString
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5775
    |packageDir f|
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5776
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5777
    packageDir := packageDirOrString asFilename.
7281
f12470234bc2 +loadExtensions
Claus Gittinger <cg@exept.de>
parents: 7275
diff changeset
  5778
f12470234bc2 +loadExtensions
Claus Gittinger <cg@exept.de>
parents: 7275
diff changeset
  5779
    f := packageDir construct:'extensions.st'.
f12470234bc2 +loadExtensions
Claus Gittinger <cg@exept.de>
parents: 7275
diff changeset
  5780
    f exists ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5781
	f fileIn.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5782
	SilentLoading ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5783
	    Transcript showCR:('loaded extensions: ' , f pathName).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5784
	].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  5785
	^ true
7281
f12470234bc2 +loadExtensions
Claus Gittinger <cg@exept.de>
parents: 7275
diff changeset
  5786
    ].
f12470234bc2 +loadExtensions
Claus Gittinger <cg@exept.de>
parents: 7275
diff changeset
  5787
    ^ false
f12470234bc2 +loadExtensions
Claus Gittinger <cg@exept.de>
parents: 7275
diff changeset
  5788
!
f12470234bc2 +loadExtensions
Claus Gittinger <cg@exept.de>
parents: 7275
diff changeset
  5789
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5790
loadPackage:aPackageIdOrPackage
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5791
    "make certain, that some particular package is loaded into the system.
4741
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5792
     Experimental."
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5793
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5794
    (aPackageIdOrPackage isSymbol 
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5795
    or:[aPackageIdOrPackage isString]) ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5796
	^ self loadPackageWithId:aPackageIdOrPackage asAutoloaded:false
6851
91662dfb3e80 Remove debug print.
Stefan Vogel <sv@exept.de>
parents: 6849
diff changeset
  5797
    ].
91662dfb3e80 Remove debug print.
Stefan Vogel <sv@exept.de>
parents: 6849
diff changeset
  5798
    self shouldImplement.
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5799
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5800
    "
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5801
     Smalltalk loadPackage:'stx:libbasic'  
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5802
     Smalltalk loadPackage:'stx:goodies/persistency'
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5803
     Smalltalk loadPackage:'cg:cparser'
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5804
     Smalltalk loadPackage:'cg:rose'
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5805
    "
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5806
!
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5807
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5808
loadPackage:packageId fromAllSourceFilesInDirectory:aDirectory
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5809
    "load all source files found in aDirectory and treat them like
4741
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5810
     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
  5811
     Experimental."
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5812
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5813
    |p t new anyFail|
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5814
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5815
    "/ problem: dependencies.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5816
    "/ solution: repeat twice, so that superclasses are present the second time
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5817
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5818
    Class packageQuerySignal answer:packageId asSymbol do:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5819
	|any|
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5820
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5821
	2 timesRepeat:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5822
	    anyFail := false.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5823
	    aDirectory directoryContents do:[:file |
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5824
		|fn|
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5825
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5826
		fn := aDirectory construct:file.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5827
		(fn hasSuffix:'st') ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5828
		    Metaclass confirmationQuerySignal answer:false do:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5829
			(self fileIn:fn) ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5830
			    anyFail := true
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5831
			] ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5832
			    any := true.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5833
			]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5834
		    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5835
		]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5836
	    ].
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5837
	    any ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5838
		^ false "/ no file found
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5839
	    ]
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5840
	].
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5841
    ].
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5842
                
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5843
    new := (p := Project projectWithId:packageId) isNil.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5844
    new ifTrue:[ p := Project new].
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5845
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5846
    p name:packageId.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5847
    p directory:aDirectory.
4726
5c5e1c7f8933 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4724
diff changeset
  5848
    p package:packageId.
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5849
    t := packageId asCollectionOfSubstringsSeparatedByAny:'/\:'.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5850
    p repositoryModule:(t first).
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5851
    p repositoryDirectory:(packageId copyFrom:t first size + 2).
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5852
    p isLoaded:true.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5853
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5854
    new ifTrue:[Project addLoadedProject:p].
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5855
    ^ anyFail not
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5856
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5857
!
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5858
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5859
loadPackage:packageId fromClassLibrary:aFilename
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5860
    "load a package from a compiled classLib.
4741
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5861
     Experimental."
4723
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5862
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5863
    |p t new|
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5864
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5865
    (self fileIn:aFilename) ifFalse:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5866
	(self fileInClassLibrary:aFilename) ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5867
	    self warn:'Failed to load the package ', packageId printString.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5868
	    ^ false.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5869
	]
4723
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5870
    ].
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5871
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5872
    new := (p := Project projectWithId:packageId) isNil.
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5873
    new ifTrue:[ p := Project new].
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5874
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5875
    p name:packageId.
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5876
    p directory:aFilename directory.
4726
5c5e1c7f8933 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4724
diff changeset
  5877
    p package:packageId.
4723
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5878
    t := packageId asCollectionOfSubstringsSeparatedByAny:'/\:'.
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5879
    p repositoryModule:(t first).
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5880
    p repositoryDirectory:(packageId copyFrom:t first size + 2).
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5881
    p isLoaded:true.
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5882
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5883
    new ifTrue:[Project addLoadedProject:p].
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5884
    ^ true
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5885
!
2d9252c2733c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4722
diff changeset
  5886
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5887
loadPackage:packageId fromLoadAllFile:aFilename
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5888
    "load a package from a loadAll - loader script.
4741
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5889
     Experimental."
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5890
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5891
    |p t new|
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5892
4846
6fbaeb342ec6 do not open confirmers when loading a package
Claus Gittinger <cg@exept.de>
parents: 4781
diff changeset
  5893
    Metaclass confirmationQuerySignal answer:false
6fbaeb342ec6 do not open confirmers when loading a package
Claus Gittinger <cg@exept.de>
parents: 4781
diff changeset
  5894
    do:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5895
	(self fileIn:aFilename) ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5896
	    self warn:'Failed to load the package ', packageId printString.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5897
	    ^ false.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5898
	]
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
    new := (p := Project projectWithId:packageId) isNil.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5902
    new ifTrue:[ p := Project new].
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5903
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5904
    p name:packageId.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5905
    p directory:aFilename directory.
4726
5c5e1c7f8933 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4724
diff changeset
  5906
    p package:packageId.
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5907
    t := packageId asCollectionOfSubstringsSeparatedByAny:'/\:'.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5908
    p repositoryModule:(t first).
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5909
    p repositoryDirectory:(packageId copyFrom:t first size + 2).
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5910
    p isLoaded:true.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5911
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5912
    new ifTrue:[Project addLoadedProject:p].
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5913
    ^ true
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5914
!
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5915
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5916
loadPackage:aPackageId fromProjectFile:f asAutoloaded:doLoadAsAutoloaded
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5917
    "load a package from a .prj spec.
4741
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5918
     Experimental."
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5919
4756
76982048a91a first try to load package from prj file.
Claus Gittinger <cg@exept.de>
parents: 4748
diff changeset
  5920
5601
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5921
    "/ not yet implemented ...
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5922
    ^ false.
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5923
6559
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  5924
"/    |prj fn|
2ec6d0d1b821 Changed Workstation initialization
Stefan Vogel <sv@exept.de>
parents: 6539
diff changeset
  5925
"/
5601
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5926
"/        prj := Project new loadFromProjectFile:f asFilename pathName.
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5927
"/    "/ no - also allow for applications to be loaded this way
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5928
"/    "/    prj type == #library ifFalse:[ ^ false].
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5929
"/    self halt.
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5930
"/        "/ load all prerequisites ...
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5931
"/        prj prerequisites do:[:aRequiredPackage |
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5932
"/            self halt.
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5933
"/        ].
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5934
"/
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5935
"/        "/ see if there is a class library ...
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5936
"/        fn := prj directory asFilename construct:(prj name , ObjectFileLoader sharedLibraryExtension).
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5937
"/        fn exists ifTrue:[
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5938
"/            "/ load that classLibrary ...
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5939
"/            self fileIn:fn pathName.
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5940
"/        ].
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5941
"/
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5942
"/        "/ now, for all other classes, file-them in
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5943
"/        "/ or declare as autoloaded ...
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5944
"/
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5945
"/        prj classes do:[:aClassOrName | |ns|
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5946
"/            aClassOrName isBehavior ifFalse:[
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5947
"/                ((self includesKey:aClassOrName) not  
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5948
"/                and:[(ns := prj defaultNameSpace) isNil
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5949
"/                    or:[ns == self
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5950
"/                    or:[(ns includesKey:aClassOrName) not]]]) 
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5951
"/                ifTrue:[
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5952
"/                    "/ must load a corresponding source or cls-file
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5953
"/    self halt.
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5954
"/                ]
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5955
"/            ]
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5956
"/        ].
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5957
"/        prj isLoaded:true.
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5958
"/        prj directory:f asFilename directoryName.
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5959
"/        Project addLoadedProject:prj.
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5960
"/        ^ true
4756
76982048a91a first try to load package from prj file.
Claus Gittinger <cg@exept.de>
parents: 4748
diff changeset
  5961
76982048a91a first try to load package from prj file.
Claus Gittinger <cg@exept.de>
parents: 4748
diff changeset
  5962
"
76982048a91a first try to load package from prj file.
Claus Gittinger <cg@exept.de>
parents: 4748
diff changeset
  5963
 Smalltalk loadPackage:'exept:osi/asn1'
76982048a91a first try to load package from prj file.
Claus Gittinger <cg@exept.de>
parents: 4748
diff changeset
  5964
 Smalltalk 
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5965
	loadPackage:'exept:osi/asn1'
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5966
	fromProjectFile:'../../../exept/osi/asn1/asn1.prj'
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  5967
	asAutoloaded:false
4756
76982048a91a first try to load package from prj file.
Claus Gittinger <cg@exept.de>
parents: 4748
diff changeset
  5968
"
4722
854b7a5427b0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4720
diff changeset
  5969
!
854b7a5427b0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4720
diff changeset
  5970
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5971
loadPackage:aPackageId fromZIPArchive:f asAutoloaded:doLoadAsAutoloaded
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5972
    "load a package from a .zip delivery file.
4741
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5973
     Experimental."
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5974
5601
c101570d9daa checkin from browser
Claus Gittinger <cg@exept.de>
parents: 5593
diff changeset
  5975
    "/ not yet implemented ...
4722
854b7a5427b0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4720
diff changeset
  5976
    ^ false
854b7a5427b0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4720
diff changeset
  5977
!
854b7a5427b0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4720
diff changeset
  5978
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5979
loadPackageWithId:aPackageId
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5980
    "make certain, that some particular package is loaded into the system.
4741
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5981
     Experimental."
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5982
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5983
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5984
    ^ self loadPackageWithId:aPackageId asAutoloaded:false
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5985
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5986
    "
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5987
     Smalltalk loadPackageWithId:'stx:libbasic'  
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5988
     Smalltalk loadPackageWithId:'stx:goodies/persistency'
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5989
     Smalltalk loadPackageWithId:'cg:cparser'
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5990
     Smalltalk loadPackageWithId:'cg:rose'
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5991
     Smalltalk loadPackageWithId:'detemobil:smc'
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5992
    "
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5993
!
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5994
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5995
loadPackageWithId:aPackageId asAutoloaded:doLoadAsAutoloaded
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  5996
    "make certain, that some particular package is loaded into the system.
4741
c4bf20b435e1 comments
Claus Gittinger <cg@exept.de>
parents: 4737
diff changeset
  5997
     Experimental."
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  5998
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  5999
    |pkg packageDirName packageBaseName packageDir|
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6000
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6001
    pkg := Project projectWithId:aPackageId.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6002
    (pkg notNil and:[pkg isLoaded]) ifTrue:[ 
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6003
	"/ ('Smalltalk [info]: Package ' , aPackageId , ' already loaded.') infoPrintCR.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6004
	(doLoadAsAutoloaded 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6005
	or:[pkg areAllClassesLoaded]) ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6006
	    ^ true
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6007
	].
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6008
    ].
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6009
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6010
    "/ ok; not yet loaded.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6011
    "/ try to locate the package; try the following:
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6012
    "/    $(packagePath)/<packageDir>/...
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6013
    "/    $(SYSPATH)/packages/<packageDir>
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6014
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6015
    packageDirName := aPackageId copyReplaceAll:$: with:$/.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6016
    packageBaseName := packageDirName asFilename baseName.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6017
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6018
    packageDir := self getPackageFileName:packageDirName.
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6019
    packageDir isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6020
	"/ for convenience: try ../../.. as well 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6021
	"/ (when executing in thedevelopment environment)
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6022
	packageDir := '../../..' asFilename construct:packageDirName.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6023
	packageDir exists ifTrue:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6024
	    packageDir := packageDir pathName
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6025
	] ifFalse:[
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6026
	    ('Smalltalk [warning]: cannot find packageDirectory: ' , packageDirName) errorPrintCR.
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6027
	    ^ false
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6028
	]
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6029
    ].
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6030
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6031
    ^ self
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6032
	loadPackageWithId:aPackageId 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6033
	name:packageBaseName 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6034
	fromDirectory:packageDir 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6035
	asAutoloaded:doLoadAsAutoloaded
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6036
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6037
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6038
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6039
    "
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6040
     Smalltalk loadPackageWithId:'stx:libbasic'  
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6041
     Smalltalk loadPackageWithId:'stx:goodies/persistency'
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6042
     Smalltalk loadPackageWithId:'exept:ctypes'
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6043
    "
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6044
!
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6045
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6046
loadPackageWithId:aPackageId name:packageName fromDirectory:packageDirOrString asAutoloaded:doLoadAsAutoloaded
6243
341b9337c3b5 handle silentLoading setting in laodPackage
tm
parents: 6231
diff changeset
  6047
    |f s packageDir shLibName|
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6048
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6049
    packageDir := packageDirOrString asFilename.
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6050
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6051
    "/ .prj ?
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6052
    f := (packageDir construct:packageName) withSuffix:'prj'.
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6053
    f exists ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6054
	(self loadPackage:aPackageId fromProjectFile:f asAutoloaded:doLoadAsAutoloaded) ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6055
	    SilentLoading ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6056
		Transcript showCR:('Smalltalk [info]: loaded package: ' , aPackageId , ' from project file: ' , f pathName).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6057
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6058
	    ^ true
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6059
	]
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6060
    ].
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6061
    "/ loadAll ?
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6062
    f := packageDir construct:'loadAll'.
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6063
    f exists ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6064
	(self loadPackage:aPackageId fromLoadAllFile:f) ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6065
	    SilentLoading ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6066
		Transcript showCR:('loaded package: ' , aPackageId , ' from loadAll file: ' , f pathName).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6067
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6068
	    ^ true
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6069
	]
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6070
    ].
5807
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  6071
    "/ .zip ?
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  6072
    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
  6073
    f exists ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6074
	(self loadPackage:aPackageId fromZIPArchive:f asAutoloaded:doLoadAsAutoloaded) ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6075
	    SilentLoading ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6076
		Transcript showCR:('loaded package: ' , aPackageId , ' from zip file: ' , f pathName).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6077
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6078
	    ^ true
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6079
	]
5807
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  6080
    ].
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  6081
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  6082
    shLibName := packageName , ObjectFileLoader sharedLibraryExtension.
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  6083
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  6084
    "/ .so ?
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  6085
    f := packageDir construct:shLibName.
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  6086
    f exists ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6087
	(self loadPackage:aPackageId fromClassLibrary:f) ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6088
	    SilentLoading ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6089
		Transcript showCR:('loaded package: ' , aPackageId , ' from binary classLib file: ' , f pathName).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6090
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6091
	    doLoadAsAutoloaded ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6092
		"/ force autoloading...
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6093
		Smalltalk allClassesDo:[:eachClass |
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6094
		    eachClass package == aPackageId ifTrue:[ eachClass autoload].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6095
		].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6096
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6097
	    ^ true
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6098
	]              
5807
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  6099
    ].
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  6100
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  6101
    "/ abbrev.stc ?
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  6102
    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
  6103
    f exists ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6104
	Smalltalk installAutoloadedClassesFrom:f pathName.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6105
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6106
	doLoadAsAutoloaded ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6107
	    "/ force autoloading...
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6108
	    Smalltalk allClassesDo:[:eachClass |
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6109
		eachClass package == aPackageId ifTrue:[ eachClass autoload].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6110
	    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6111
	].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6112
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6113
	self loadExtensionsFromDirectory:packageDirOrString.
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6114
	SilentLoading ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6115
	    Transcript showCR:('loaded package: ' , aPackageId , ' from abbrev file: ' , f pathName).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6116
	].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6117
	^ true
5807
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  6118
    ].
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  6119
7290
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6120
"/    "/ lib/loadAll ?  (will vanish)
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6121
"/    f := (packageDir construct:'lib') construct:'loadAll'.
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6122
"/    f exists ifTrue:[
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6123
"/        (self loadPackage:aPackageId fromLoadAllFile:f) ifTrue:[
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6124
"/            SilentLoading ifFalse:[
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6125
"/                Transcript showCR:('loaded package: ' , aPackageId , ' from loadAll file: ' , f pathName).
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6126
"/            ].
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6127
"/            ^ true
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6128
"/        ]
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6129
"/    ].
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6130
"/
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6131
"/    "/ /lib/.so ? (will vanish)
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6132
"/    f := (packageDir construct:'lib') construct:shLibName.
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6133
"/    f exists ifTrue:[
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6134
"/        (self loadPackage:aPackageId fromClassLibrary:f) ifTrue:[
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6135
"/            SilentLoading ifFalse:[
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6136
"/                Transcript showCR:('loaded package: ' , aPackageId , ' from binary classLib file: ' , f pathName).
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6137
"/            ].
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6138
"/            ^ true
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6139
"/        ]
641e8628ff39 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7286
diff changeset
  6140
"/    ].
5807
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  6141
5175
c3e71ead8e06 when loading a package, and a .so file could not be found
Claus Gittinger <cg@exept.de>
parents: 5168
diff changeset
  6142
    "/ 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
  6143
    packageDir directoryContentsAsFilenamesDo:[:aFilename |
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6144
	(aFilename hasSuffix:ObjectFileLoader sharedLibrarySuffix) ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6145
	    (self loadPackage:aPackageId fromClassLibrary:aFilename) ifTrue:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6146
		SilentLoading ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6147
		    Transcript showCR:('loaded package: ' , aPackageId , ' from binary classLib file: ' , aFilename pathName).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6148
		].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6149
		doLoadAsAutoloaded ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6150
		    "/ force autoloading...
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6151
		    Smalltalk allClassesDo:[:eachClass |
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6152
			eachClass package == aPackageId ifTrue:[ eachClass autoload].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6153
		    ].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6154
		].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6155
		^ true
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6156
	    ]
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6157
	]
5175
c3e71ead8e06 when loading a package, and a .so file could not be found
Claus Gittinger <cg@exept.de>
parents: 5168
diff changeset
  6158
    ].
5807
019d25b669e5 in loadPackage, if there is no loadAll file and no
Claus Gittinger <cg@exept.de>
parents: 5789
diff changeset
  6159
5051
81d5b5985154 package search fixed/improved
Claus Gittinger <cg@exept.de>
parents: 5047
diff changeset
  6160
    "/ source files
4737
7f66c4dc7c17 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4726
diff changeset
  6161
    (self loadPackage:aPackageId fromAllSourceFilesInDirectory:packageDir) ifTrue:[
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6162
	SilentLoading ifFalse:[
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6163
	    Transcript showCR:('loaded package: ' , aPackageId , ' from source files in:' , packageDir pathName).
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6164
	].
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6165
	^ true
4737
7f66c4dc7c17 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4726
diff changeset
  6166
    ].
7f66c4dc7c17 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4726
diff changeset
  6167
    ^ false
7f66c4dc7c17 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4726
diff changeset
  6168
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6169
    "
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6170
     Smalltalk loadPackageWithId:'stx:libbasic'  
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6171
     Smalltalk loadPackageWithId:'stx:goodies/persistency'
4722
854b7a5427b0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4720
diff changeset
  6172
     Smalltalk loadPackageWithId:'exept:ctypes'
4718
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6173
    "
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6174
! !
a2d639dcef88 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4714
diff changeset
  6175
6711
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  6176
!Smalltalk class methodsFor:'system management-undeclared variables'!
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  6177
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6178
clearUndeclaredVariables
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6179
    "remove all undeclared variables"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6180
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6181
    (Smalltalk at:#Undeclared) do:[:eachKey |
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6182
	Smalltalk removeKey:(self undeclaredPrefix , eachKey) asSymbol.
6711
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  6183
    ].
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  6184
    (Smalltalk at:#Undeclared) removeAll.
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  6185
    Smalltalk removeKey:#Undeclared.
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  6186
!
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  6187
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6188
undeclaredPrefix
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6189
    "the prefix used for undeclared variables"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6190
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6191
    ^ 'Undeclared:::'
6711
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  6192
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  6193
    "Created: / 31.10.1997 / 01:13:10 / cg"
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  6194
! !
ae28c469a063 undeclared variable handling
penk
parents: 6649
diff changeset
  6195
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  6196
!Smalltalk class methodsFor:'time-versions'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6197
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6198
configuration
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6199
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6200
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6201
    "for developers only: return the configuration, with which
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6202
     this smalltalk was compiled."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6203
567
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  6204
%{  /* NOCONTEXT */
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6205
    extern char *__getConfigurationString();
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6206
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6207
    RETURN (__MKSTRING(__getConfigurationString() COMMA_SND));
5406
4a6995b61c0e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5400
diff changeset
  6208
%}.
5445
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  6209
    ^ 'unknownOS/unknownCONF:unknownPACK'
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  6210
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  6211
    "
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  6212
     Smalltalk configuration 
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6213
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6214
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6215
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6216
copyrightString
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6217
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6218
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6219
    "return a copyright string"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6220
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6221
%{  /* NOCONTEXT */
829
fc386319f41c removed external function defs (soon no longer allowed)
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  6222
#ifndef __getCopyrightString
fc386319f41c removed external function defs (soon no longer allowed)
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  6223
    extern OBJ __getCopyrightString();
568
f5754db15abf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
  6224
#endif
f5754db15abf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
  6225
829
fc386319f41c removed external function defs (soon no longer allowed)
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  6226
    RETURN (__getCopyrightString());
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  6227
%}.
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  6228
    ^ self primitiveFailed
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6229
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6230
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6231
     Smalltalk copyrightString
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6232
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6233
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6234
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6235
distributorString
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6236
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6237
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6238
    "return a string describing the distributor of this software"
567
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  6239
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  6240
%{  /* NOCONTEXT */
829
fc386319f41c removed external function defs (soon no longer allowed)
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  6241
#ifndef __getDistributorString
fc386319f41c removed external function defs (soon no longer allowed)
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  6242
    extern OBJ __getDistributorString();
568
f5754db15abf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
  6243
#endif
f5754db15abf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
  6244
829
fc386319f41c removed external function defs (soon no longer allowed)
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  6245
    RETURN (__getDistributorString());
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  6246
%}.
5445
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  6247
    ^ 'eXept Software AG, Germany'
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  6248
567
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  6249
    "
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  6250
     Smalltalk distributorString
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  6251
    "
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  6252
!
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  6253
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6254
expirationTime
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6255
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6256
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6257
    "for developers only: return the time when the system will expire.
1645
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6258
     after this time it will not run any longer.
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6259
     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
  6260
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6261
    |exp|
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6262
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6263
%{  
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6264
    extern unsigned int __getExpirationTime();
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6265
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6266
    exp = __MKUINT(__getExpirationTime());
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6267
%}.
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6268
    exp == 0 ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6269
	^ nil
1645
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6270
    ].
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6271
    ^ AbsoluteTime new fromOSTime:(exp * 1000). "OSTime is ms since 1970"
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6272
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6273
    "
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6274
     Smalltalk expirationTime
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6275
    "
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6276
!
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  6277
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6278
fullVersionString
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6279
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6280
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6281
    "return a full version string"
3062
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6282
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6283
    ^ 'Smalltalk/X release ' , self versionString , ' of ' , self versionDate 
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6284
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6285
    "
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6286
     Smalltalk fullVersionString
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6287
    "
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6288
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6289
    "Created: / 27.10.1997 / 17:03:09 / cg"
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6290
    "Modified: / 27.10.1997 / 17:04:02 / cg"
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6291
!
5b8a2aa07108 write an emergency snapshot image,
Claus Gittinger <cg@exept.de>
parents: 3044
diff changeset
  6292
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6293
hello
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6294
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6295
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6296
    "return a greeting string"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6297
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6298
    "stupid: this should come from a resource file ...
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6299
     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
  6300
     Resource-stuff."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6301
6187
d4788adb7a8e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6186
diff changeset
  6302
    |proto lang|
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6303
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6304
    lang := Language.
5641
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6305
    (lang == #de) ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6306
	proto := 'Willkommen bei %1 (Version %2 vom %3)'
5641
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6307
    ] ifFalse:[ (lang == #fr) ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6308
	proto := 'Salut, Bienvenue à %1 (version %2 de %3)'
5641
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6309
    ] ifFalse:[ (lang == #it) ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6310
	proto := 'Ciao, benvenuto al %1 (versione %2 di %3)'
5641
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6311
    ] 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
  6312
"/        proto := 'Hola, bienvenida a %1 (versión %2 de %3)'
5641
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6313
    ] 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
  6314
"/        proto := 'Oi, benvindo a %1 (versão %2 de %3)'
5641
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6315
    ] ifFalse:[ (lang == #no) ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6316
	proto := 'Hei, verdenmottakelse til %1 (versjon %2 av %3)'
5641
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6317
    ]]]]]].
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6318
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6319
    "/ ... more needed here ...
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6320
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6321
    proto isNil ifTrue:[
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6322
	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
  6323
    ].
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6324
6187
d4788adb7a8e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6186
diff changeset
  6325
    ^ proto bindWith:('SmallTalk/X' allBold)
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6326
		with:(self versionString) 
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6327
		with:(self versionDate)
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6328
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6329
    "
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6330
     Smalltalk language:#us.   
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6331
     Smalltalk hello     
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6332
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6333
     Smalltalk language:#de.   
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6334
     Smalltalk hello  
1412
7c0326f67a03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1410
diff changeset
  6335
5641
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6336
     Smalltalk language:#no.   
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6337
     Smalltalk hello  
02c5bdd3a982 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5613
diff changeset
  6338
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1419
diff changeset
  6339
     Transcript showCR:(Smalltalk hello)
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1419
diff changeset
  6340
     Stdout showCR:(Smalltalk hello)
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6341
    "
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  6342
1412
7c0326f67a03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1410
diff changeset
  6343
    "Modified: 18.5.1996 / 14:25:13 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6344
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6345
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6346
imageRestartTime
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6347
    "return a timestamp for the moment when this image was restarted.
1069
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  6348
     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
  6349
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6350
    ^ ImageRestartTime
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6351
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6352
    "
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6353
     Smalltalk imageStartTime
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6354
     Smalltalk imageRestartTime
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6355
    "
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6356
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6357
    "Created: 13.12.1995 / 17:44:20 / cg"
1069
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  6358
    "Modified: 6.3.1996 / 11:56:35 / cg"
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6359
!
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6360
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6361
imageSaveTime
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6362
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6363
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6364
    "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
  6365
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  6366
    ^ ObjectMemory imageSaveTime
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  6367
!
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  6368
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6369
imageStartTime
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6370
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6371
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6372
    "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
  6373
     (i.e. the first initial start without an image)"
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6374
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6375
    ^ ImageStartTime
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6376
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6377
    "
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6378
     Smalltalk imageStartTime
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6379
     Smalltalk imageRestartTime
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6380
    "
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6381
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6382
    "Created: 13.12.1995 / 17:44:14 / cg"
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6383
    "Modified: 13.12.1995 / 17:45:47 / cg"
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6384
!
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  6385
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6386
majorVersionNr
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6387
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6388
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6389
    "return the major version number.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6390
     This is only incremented for very fundamental changes,
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6391
     which make old object files totally incompatible
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6392
     (for example, if the layout/representation of fundamental
3382
0f4a79609ee1 bumped rev.
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6393
      classes changes).
0f4a79609ee1 bumped rev.
Claus Gittinger <cg@exept.de>
parents: 3366
diff changeset
  6394
3988
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6395
     ST/X revision Naming is:
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6396
	<major>.<minor>.<revision>.<release>"
7362
1af5f648cdb2 major version bumb (due to class-layout change)
Claus Gittinger <cg@exept.de>
parents: 7348
diff changeset
  6397
1af5f648cdb2 major version bumb (due to class-layout change)
Claus Gittinger <cg@exept.de>
parents: 7348
diff changeset
  6398
    ^ 5
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6399
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6400
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6401
     Smalltalk majorVersionNr
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6402
    "
1941
51332fe23542 bumped version to 3 (I guess, nameSpaces are a major step)
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  6403
51332fe23542 bumped version to 3 (I guess, nameSpaces are a major step)
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  6404
    "Modified: 8.11.1996 / 19:59:21 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6405
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6406
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6407
minorVersionNr
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6408
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6409
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6410
    "return the minor version number.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6411
     This is incremented for changes which make some old object
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6412
     files incompatible, or the protocol changes such that some
3988
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6413
     classes need rework.
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6414
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6415
     ST/X revision Naming is:
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6416
	<major>.<minor>.<revision>.<release>"
3988
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6417
5322
411b6c0f7250 renamed sone structures;
Claus Gittinger <cg@exept.de>
parents: 5318
diff changeset
  6418
    ^ 1
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6419
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6420
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6421
     Smalltalk minorVersionNr
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6422
    "
1941
51332fe23542 bumped version to 3 (I guess, nameSpaces are a major step)
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  6423
3092
2b522323d8d1 bumped vsn
Claus Gittinger <cg@exept.de>
parents: 3083
diff changeset
  6424
    "Modified: / 3.11.1997 / 14:49:48 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6425
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6426
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6427
releaseIdentification
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6428
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6429
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6430
    "for developers only: return the release 
1552
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6431
     (to further identify the version in case of errors)"
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6432
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6433
%{  /* NOCONTEXT */
1553
983c16ee1aab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
  6434
    extern OBJ __getRel();
983c16ee1aab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
  6435
983c16ee1aab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
  6436
    RETURN (__getRel());
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  6437
%}.
5445
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  6438
    ^ 'ST/X_experimental'
1552
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6439
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6440
    "
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6441
     Smalltalk releaseIdentification
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6442
    "
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6443
!
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  6444
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6445
releaseNr
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6446
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6447
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6448
    "return the revision number.
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6449
     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
  6450
     their way to the outside world.
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6451
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6452
     ST/X revision Naming is:
6853
482543a4e72e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6852
diff changeset
  6453
	<major>.<minor>.<revision>.<release>"
4334
ecb1b3fe1a73 bumped version
Claus Gittinger <cg@exept.de>
parents: 4333
diff changeset
  6454
6861
90c7843e4843 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6854
diff changeset
  6455
    ^ 1
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6456
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6457
    " 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6458
     Smalltalk releaseNr 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6459
    "
732
29a49feab799 release bump - that seems to be a good one
Claus Gittinger <cg@exept.de>
parents: 728
diff changeset
  6460
29a49feab799 release bump - that seems to be a good one
Claus Gittinger <cg@exept.de>
parents: 728
diff changeset
  6461
    "Created: 10.12.1995 / 01:42:19 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6462
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6463
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6464
revisionNr
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6465
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6466
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6467
    "return the revision number.
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6468
     Incremented for releases which fix bugs/add features
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6469
     and represent a stable workable version which got published
3988
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6470
     to the outside world.
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6471
1794a51fcb6e bumped version
Claus Gittinger <cg@exept.de>
parents: 3976
diff changeset
  6472
     ST/X revision Naming is:
7565
cd76db5ee5cd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7564
diff changeset
  6473
	<major>.<minor>.<revision>.<release>"
7000
6af934dc694a bumped releaseNr (librun fixes)
penk
parents: 6970
diff changeset
  6474
7364
8aaf72115156 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 7362
diff changeset
  6475
    ^ 1
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6476
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6477
    " 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6478
     Smalltalk revisionNr
6715
d562bc3b4e03 release
Claus Gittinger <cg@exept.de>
parents: 6714
diff changeset
  6479
     Smalltalk hello  
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6480
    "
1941
51332fe23542 bumped version to 3 (I guess, nameSpaces are a major step)
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  6481
3624
a464c7554f6f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3611
diff changeset
  6482
    "Modified: / 19.6.1998 / 04:29:10 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6483
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6484
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6485
timeStamp
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6486
    "return a string useful for timestamping a file.
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6487
     The returned string is padded with spaces for a constant
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6488
     length (to avoid changing a files size in fileOut with unchanged
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6489
     class)."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6490
5373
7fd5260cd1d8 splitted timeStamp
Claus Gittinger <cg@exept.de>
parents: 5371
diff changeset
  6491
    ^ ('''' , self timeStampString , '''') paddedTo:80 with:(Character space)
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6492
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6493
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6494
timeStamp:aStream
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6495
    "write a string useful for timestamping a file onto aStream.
3611
f55f117dfd4a added #timeStamp: (ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  6496
     ST80 compatibility"
f55f117dfd4a added #timeStamp: (ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  6497
f55f117dfd4a added #timeStamp: (ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  6498
    aStream nextPutAll:(self timeStamp).
f55f117dfd4a added #timeStamp: (ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  6499
f55f117dfd4a added #timeStamp: (ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  6500
    "Created: / 18.6.1998 / 17:22:58 / cg"
f55f117dfd4a added #timeStamp: (ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  6501
!
f55f117dfd4a added #timeStamp: (ST80 compatibility)
Claus Gittinger <cg@exept.de>
parents: 3610
diff changeset
  6502
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6503
timeStampString
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6504
    "return a string useful for timestamping a file."
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6505
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6506
    ^ ('From Smalltalk/X, Version:' , (Smalltalk versionString) , ' on '
5373
7fd5260cd1d8 splitted timeStamp
Claus Gittinger <cg@exept.de>
parents: 5371
diff changeset
  6507
       , Date today printString , ' at ' , Time now printString
7fd5260cd1d8 splitted timeStamp
Claus Gittinger <cg@exept.de>
parents: 5371
diff changeset
  6508
       )
7fd5260cd1d8 splitted timeStamp
Claus Gittinger <cg@exept.de>
parents: 5371
diff changeset
  6509
!
7fd5260cd1d8 splitted timeStamp
Claus Gittinger <cg@exept.de>
parents: 5371
diff changeset
  6510
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6511
versionDate
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6512
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6513
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6514
    "return the executables build date - thats the date when the smalltalk
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6515
     executable was built"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6516
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6517
%{  /* NOCONTEXT */
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6518
    extern char *__getBuildDateString();
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6519
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6520
    RETURN (__MKSTRING(__getBuildDateString() COMMA_SND) );
5410
859c010edb47 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5406
diff changeset
  6521
%}.
5445
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  6522
    ^ 'today'
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  6523
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  6524
    "
11d13c4365dc rel5 migration
Claus Gittinger <cg@exept.de>
parents: 5441
diff changeset
  6525
     Smalltalk versionDate 
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6526
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6527
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6528
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6529
versionString
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6530
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6531
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6532
    "return the version string"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6533
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6534
    ^ (self majorVersionNr printString ,
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6535
       '.',
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6536
       self minorVersionNr printString ,
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6537
       '.',
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6538
       self revisionNr printString)
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6539
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6540
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6541
     Smalltalk versionString
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  6542
    "
5427
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6543
!
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6544
7563
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6545
vmMajorVersionNr
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6546
    "{ Pragma: +optSpace }"
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6547
Claus Gittinger <cg@exept.de>
parents: 7561
diff changeset
  6548
    "return the VMs major version number."
5427
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6549
%{
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6550
    RETURN (__MKSMALLINT(4));
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6551
%}.
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6552
    ^ 4
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6553
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6554
    "
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6555
     Smalltalk vmMajorVersionNr
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6556
    "
012eb7b7163b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5419
diff changeset
  6557
2
claus
parents: 1
diff changeset
  6558
! !
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  6559
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  6560
!Smalltalk class methodsFor:'documentation'!
630
b785d23d7c5b version at the end
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
  6561
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  6562
version
7581
6912a7336e15 class category: sends a change notification;
Claus Gittinger <cg@exept.de>
parents: 7572
diff changeset
  6563
    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.597 2003-08-29 16:40:06 cg Exp $'
630
b785d23d7c5b version at the end
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
  6564
! !