Smalltalk.st
author Claus Gittinger <cg@exept.de>
Sat, 26 Apr 1997 15:07:23 +0200
changeset 2588 090cf1da8036
parent 2572 f5dd1c34ccc3
child 2645 91d6c3973952
permissions -rw-r--r--
handle abort signal in readEvalPrint loop
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
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
     3
              All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
a27a279701f8 Initial revision
claus
parents:
diff changeset
    13
Object subclass:#Smalltalk
2405
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
    14
	instanceVariableNames:''
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
    15
	classVariableNames:'StartBlocks ImageStartBlocks ExitBlocks CachedClasses SystemPath
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
    16
		StartupClass StartupSelector StartupArguments CommandLine
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
    17
		CommandLineArguments CachedAbbreviations SilentLoading
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
    18
		Initializing StandAlone LogDoits LoadBinaries RealSystemPath
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
    19
		ResourcePath SourcePath BitmapPath BinaryPath FileInPath
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
    20
		ImageStartTime ImageRestartTime DemoMode'
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
    21
	poolDictionaries:''
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
    22
	category:'System-Support'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    23
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    24
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
    25
!Smalltalk class methodsFor:'documentation'!
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    26
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    27
copyright
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    28
"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    29
 COPYRIGHT (c) 1988 by Claus Gittinger
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    30
              All Rights Reserved
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    31
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    32
 This software is furnished under a license and may be used
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    33
 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
    34
 inclusion of the above copyright notice.   This software may not
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    35
 be provided or otherwise made available to, or used by, any
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    36
 other person.  No title to or ownership of the software is
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    37
 hereby transferred.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
    38
"
95
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
    39
!
d22739a0c6e9 *** empty log message ***
claus
parents: 88
diff changeset
    40
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    41
documentation
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    42
"
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    43
    This is one of the central classes in the system;
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    44
    it provides all system-startup, shutdown and maintenance support.
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
    45
    Also global variables are (conceptionally) kept here.
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    46
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    47
    As you will notice, this is NOT a Dictionary
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    48
     - my implementation of globals is totally different
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    49
       (due to the need to be able to access globals from c-code as well).
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    50
    However, it provides the known enumeration protocol.
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    51
    It may change to become a subclass of collection at some time ...
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
    52
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
    53
1286
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1222
diff changeset
    54
    [Instance variables:]
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    55
                                        none - all handling is done in the VM
1286
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1222
diff changeset
    56
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1222
diff changeset
    57
    [Class variables:]
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1222
diff changeset
    58
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    59
        StartBlocks     <Collection>    blocks to be executed in a separate process after
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    60
                                        everything has been initialized. These blocks will
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    61
                                        be deleted after execution and therefore not be
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    62
                                        executed after an image restart. Initial processes
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    63
                                        are usually started here.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    64
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    65
        ImageStartBlocks 
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    66
                        <Collection>    blocks to be executed in a separate process after
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    67
                                        everything has been initialized. These blocks will be
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    68
                                        executed after an image restart.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    69
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    70
        ExitBlocks      <Collection>    blocks to evaluate before system is
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    71
                                        left. Not currently used (GNU-ST compatibility).
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    72
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    73
        SystemPath      <Collection>    path to search for system files (sources, bitmaps etc)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    74
                                        Set to a default here, but typically changed from some
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    75
                                        startup.rc file
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    76
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    77
        StartupClass    <Class>         
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    78
        StartupSelector <Symbol>        
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    79
        StartupArguments <Array>
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    80
                                        class and selector, where the system starts up
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    81
                                        (right after VM initialization)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    82
                                        If an image is saved while this is nonNil, the image will come up
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    83
                                        there.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    84
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    85
        CommandLineArguments <Array>    command line broken into words
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    86
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    87
        SilentLoading   <Boolean>       suppresses messages during fileIn and in compiler
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    88
                                        (can be set to true from a customized main)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    89
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    90
        LogDoits        <Boolean>       if true, doits are also logged in the changes
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    91
                                        file. Default is false, since the changes file
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    92
                                        may become huge if every tiny doIt is saved there ...
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    93
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    94
        LoadBinaries    <Boolean>       if true, we attempt to load classes rom a binary
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    95
                                        file, if present. If false, this is always suppressed.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    96
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    97
        ImageStartTime  <AbsoluteTime>  timestamp when this system was started the very first time
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    98
                                        (i.e. the time of the initial start without an image)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
    99
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   100
        ImageRestartTime
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   101
                        <AbsoluteTIme>  timestamp when this image was started
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   102
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   103
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   104
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
   105
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   106
    strictly private classVariables (helpers):
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   107
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   108
        CachedClasses   <Collection>    known classes (cached for faster class enumeration)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   109
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   110
        CachedAbbreviations
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   111
                        <Dictionary>    className to filename mappings
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   112
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   113
        SourcePath      <Collection>    cached names of really existing directories
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   114
        BitmapPath                      These are remembered, since in NFS systems,
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   115
        ResourcePath                    the time to lookup files may become long
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   116
        BinaryPath                      (especially, if some directories are on machines
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   117
        FileInPath                      which are not up ...). Therefore, the set of really
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   118
                                        existing directories is cached when the SystemPath
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   119
                                        is walked the first time.
1286
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1222
diff changeset
   120
4270a0b4917d documentation
Claus Gittinger <cg@exept.de>
parents: 1222
diff changeset
   121
    [author:]
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   122
        Claus Gittinger
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
   123
"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   124
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   125
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   126
!Smalltalk class methodsFor:'initialization'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   127
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   128
initGlobalsFromEnvironment
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   129
    "setup globals from the shell-environment"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   130
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   131
    |envString i langString terrString|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   132
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   133
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   134
     extract Language and LanguageTerritory from LANG variable.
994
6163ae7aaf9b territory defaults to #us (instead of #usa)
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
   135
     valid are for example: english_us / us_us / us
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   136
                            english / en_en / en
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   137
                            german / de_de / de
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   138
                            german_austria
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   139
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   140
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   141
    Language := #english.
994
6163ae7aaf9b territory defaults to #us (instead of #usa)
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
   142
    LanguageTerritory := #us.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   143
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   144
    envString := OperatingSystem getEnvironment:'LANG'.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   145
    envString notNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   146
        envString isEmpty ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   147
            i := envString indexOf:$_.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   148
            (i == 0) ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   149
                langString := envString.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   150
                terrString := envString
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   151
            ] ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   152
                langString := envString copyTo:(i - 1).
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   153
                terrString := envString copyFrom:(i + 1)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   154
            ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   155
            Language := langString asLowercase asSymbol.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   156
            LanguageTerritory := terrString asLowercase asSymbol
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   157
        ]
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   158
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   159
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   160
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   161
     Smalltalk initGlobalsFromEnvironment
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   162
    "
994
6163ae7aaf9b territory defaults to #us (instead of #usa)
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
   163
6163ae7aaf9b territory defaults to #us (instead of #usa)
Claus Gittinger <cg@exept.de>
parents: 977
diff changeset
   164
    "Modified: 22.2.1996 / 16:59:12 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   165
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   166
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   167
initInterrupts
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   168
    "initialize interrupts"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   169
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   170
    OperatingSystem enableUserInterrupts.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   171
    OperatingSystem enableHardSignalInterrupts.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   172
    OperatingSystem enableFpExceptionInterrupts.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   173
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   174
    ObjectMemory userInterruptHandler:self.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   175
    ObjectMemory signalInterruptHandler:self.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   176
    ObjectMemory recursionInterruptHandler:self.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   177
963
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   178
    "
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   179
     Smalltalk initInterrupts
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   180
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   181
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   182
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   183
initStandardStreams
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   184
    "initialize some well-known streams"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   185
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   186
    Stdout := NonPositionableExternalStream forStdout.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   187
    Stderr := NonPositionableExternalStream forStderr.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   188
    Stdin := NonPositionableExternalStream forStdin.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   189
    Printer := PrinterStream.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   190
    Transcript := Stderr
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   191
963
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   192
    "
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   193
     Smalltalk initStandardStreams
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   194
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   195
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   196
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   197
initStandardTools
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   198
    "predefine some tools which we will need later
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   199
     - if the view-classes exist,
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   200
       they will redefine Inspector and Debugger for graphical interfaces"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   201
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   202
    "redefine debug-tools, if view-classes exist"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   203
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   204
    Display notNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   205
        InspectorView notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   206
            Inspector := InspectorView
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   207
        ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   208
        DebugView notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   209
            Debugger := DebugView
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   210
        ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   211
        Display initialize
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   212
    ]
963
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   213
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   214
    "
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   215
     Smalltalk initStandardTools
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
   216
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   217
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   218
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   219
initSystemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   220
    "setup path where system files are searched for.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   221
     the default path is set to:
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   222
            .
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   223
            ..
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   224
            $HOME                    (if defined)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   225
            $HOME/.smalltalk         (if defined & existing)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   226
            $SMALLTALK_LIBDIR        (if defined & existing)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   227
            $STX_LIBDIR              (if defined & existing)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   228
            /usr/local/lib/smalltalk (if existing)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   229
            /usr/lib/smalltalk       (if existing)
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   230
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   231
     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
   232
     startup file; add expressions such as:
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   233
            Smalltalk systemPath addFirst:'/foo/bar/baz'.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   234
        or: 
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   235
            Smalltalk systemPath addLast:'/fee/foe/foo'.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   236
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   237
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   238
    |p homePath|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   239
680
6f5794a26d2d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 657
diff changeset
   240
    SystemPath isNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   241
        homePath := OperatingSystem getHomeDirectory.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   242
        homePath isNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   243
            homePath := '.'
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   244
        ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   245
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   246
        "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   247
         the path is set to search files first locally
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   248
         - this allows private stuff to override global stuff
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   249
        "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   250
        SystemPath := OrderedCollection new.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   251
        SystemPath add:'.'.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   252
        SystemPath add:'..'.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   253
        SystemPath add:homePath.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   254
        (OperatingSystem isDirectory:(p := homePath , '/.smalltalk')) ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   255
            SystemPath add:p
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   256
        ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   257
        p := OperatingSystem getEnvironment:'SMALLTALK_LIBDIR'.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   258
        p notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   259
            SystemPath add:p
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   260
        ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   261
        p := OperatingSystem getEnvironment:'STX_LIBDIR'.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   262
        p notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   263
            SystemPath add:p
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   264
        ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   265
        (OperatingSystem isDirectory:'/usr/local/lib/smalltalk') ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   266
            SystemPath add:'/usr/local/lib/smalltalk'
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   267
        ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   268
        (OperatingSystem isDirectory:'/usr/lib/smalltalk') ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   269
            SystemPath add:'/usr/lib/smalltalk'
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   270
        ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   271
        self flushPathCaches
680
6f5794a26d2d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 657
diff changeset
   272
    ]
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   273
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   274
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   275
     Smalltalk initSystemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   276
     Smalltalk systemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   277
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   278
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   279
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   280
initUserPreferences
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   281
    "setup other stuff"
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
    LogDoits := false.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   284
    LoadBinaries := false.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   285
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   286
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   287
initializeModules
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   288
    "perform module specific initialization and
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   289
     send #initialize to all classes.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   290
     Notice: this is not called when an image is restarted"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   291
%{
1688
8a42db1eea60 removed all COMMA_CON / CON_COMMA uses
Claus Gittinger <cg@exept.de>
parents: 1682
diff changeset
   292
    __init_registered_modules__(3);
1481
90a28fd060bc *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1480
diff changeset
   293
    @global(DemoMode) = __getDemoMode() ? true : false;
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   294
%}
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   295
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   296
325
claus
parents: 324
diff changeset
   297
initializeSystem
24
20cfbafcd0a3 *** empty log message ***
claus
parents: 13
diff changeset
   298
    "initialize all other classes; setup dispatcher processes etc.
211
58bb873aa83c *** empty log message ***
claus
parents: 202
diff changeset
   299
     This one is the first entry into the smalltalk world right after startup,
58bb873aa83c *** empty log message ***
claus
parents: 202
diff changeset
   300
     ususally followed by Smalltalk>>start.
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   301
     Notice: 
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   302
        this is not called when an image is restarted; in this
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   303
        case the show starts in Smalltalk>>restart."
211
58bb873aa83c *** empty log message ***
claus
parents: 202
diff changeset
   304
348
claus
parents: 345
diff changeset
   305
    SilentLoading := false.
claus
parents: 345
diff changeset
   306
    Initializing := true.
claus
parents: 345
diff changeset
   307
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   308
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   309
    "/ define low-level debugging tools - graphical classes are not prepared yet
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   310
    "/ to handle things. 
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   311
    "/ This will bring us into the MiniDebugger when an error occurs
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   312
    "/ during startup
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   313
    "/
211
58bb873aa83c *** empty log message ***
claus
parents: 202
diff changeset
   314
    Inspector := MiniInspector.
58bb873aa83c *** empty log message ***
claus
parents: 202
diff changeset
   315
    Debugger := MiniDebugger.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   316
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   317
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   318
    "/ start catching SIGSEGV and SIGBUS
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   319
    "/
713
32540afb8ffc setup SIGSEGV/SIGBUS handling early - to catch those during startup
Claus Gittinger <cg@exept.de>
parents: 706
diff changeset
   320
    OperatingSystem enableHardSignalInterrupts.
32540afb8ffc setup SIGSEGV/SIGBUS handling early - to catch those during startup
Claus Gittinger <cg@exept.de>
parents: 706
diff changeset
   321
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   322
    self initGlobalsFromEnvironment.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   323
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   324
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   325
    "/ 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
   326
    "/ 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
   327
    "/
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   328
    Object initialize.
423
claus
parents: 421
diff changeset
   329
    Signal initialize.
326
d2902942491d *** empty log message ***
claus
parents: 325
diff changeset
   330
    ObjectMemory initialize.
2504
ece15ffbcb69 Initialize OperatingSystem early (needed for some signals).
Stefan Vogel <sv@exept.de>
parents: 2485
diff changeset
   331
    OperatingSystem initialize.
596
ecb1d732dade require Stream to be initialized before ExternalStream is
Claus Gittinger <cg@exept.de>
parents: 592
diff changeset
   332
    Stream initialize.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   333
    ExternalStream initialize.
211
58bb873aa83c *** empty log message ***
claus
parents: 202
diff changeset
   334
58bb873aa83c *** empty log message ***
claus
parents: 202
diff changeset
   335
    self initStandardStreams.    "/ setup Stdin, Stdout etc.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   336
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   337
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   338
    "/ sorry, path must be set before ...
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   339
    "/ 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
   340
    "/
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   341
    self initSystemPath.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   342
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   343
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   344
    "/ must init display here - some classes (Color, Form) need it during initialize
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   345
    "/"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   346
    Workstation notNil ifTrue:[
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   347
        Workstation initialize
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   348
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   349
a27a279701f8 Initial revision
claus
parents:
diff changeset
   350
    Compiler := ByteCodeCompiler.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   351
    Compiler isNil ifTrue:[
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   352
        "
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   353
         ByteCodeCompiler is not in the system (i.e. has not been linked in)
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   354
         this allows at least immediate evaluations for runtime systems without compiler
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   355
         NOTICE: a parser is always needed, otherwise we cannot read resource files etc.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   356
        "
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   357
        Compiler := Parser
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   358
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   359
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   360
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   361
    "/ another one, to be initialized before others
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   362
    "/
2077
6b5dc412dd15 must initialize Processor before doing modulInits
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   363
    ProcessorScheduler initialize.
6b5dc412dd15 must initialize Processor before doing modulInits
Claus Gittinger <cg@exept.de>
parents: 2076
diff changeset
   364
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   365
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   366
    "/ now, finally, initialize all other classes
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   367
    "/
325
claus
parents: 324
diff changeset
   368
    self initializeModules.
claus
parents: 324
diff changeset
   369
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   370
    ImageStartTime := AbsoluteTime now.
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   371
321
5472c14f6ef5 *** empty log message ***
claus
parents: 314
diff changeset
   372
    Display notNil ifTrue:[
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   373
        Display initialize.
2572
f5dd1c34ccc3 fetch display colors early (to catch fatal color situations)
Claus Gittinger <cg@exept.de>
parents: 2546
diff changeset
   374
	Display initializeDeviceResources.
321
5472c14f6ef5 *** empty log message ***
claus
parents: 314
diff changeset
   375
    ].
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
   376
    self initInterrupts.
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   377
    self initUserPreferences.
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   378
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   379
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   380
    "/ 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
   381
    "/ 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
   382
    "/ (especially: streams and signals can now be used)
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   383
    "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   384
    ObjectMemory changed:#initialized.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   385
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
   386
    "Modified: 8.1.1997 / 19:57:59 / cg"
2504
ece15ffbcb69 Initialize OperatingSystem early (needed for some signals).
Stefan Vogel <sv@exept.de>
parents: 2485
diff changeset
   387
    "Modified: 8.1.1997 / 19:58:12 / stefan"
325
claus
parents: 324
diff changeset
   388
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   389
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   390
isInitialized
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   391
    "this returns true, if the system is properly initialized;
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   392
     i.e. false during startup. Especially, the whole viewing stuff is
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   393
     not working correctly until initialized."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   394
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   395
    ^ Initializing not
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   396
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   397
477
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
   398
reinitStandardStreams
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
   399
    "reinitialize some well-known streams.
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
   400
     Tis must be done very early during startup, to allow for
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
   401
     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
   402
     (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
   403
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
   404
    Stdout reOpen. Stderr reOpen. Stdin reOpen.
161
ed36169f354d *** empty log message ***
claus
parents: 159
diff changeset
   405
! !
ed36169f354d *** empty log message ***
claus
parents: 159
diff changeset
   406
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   407
!Smalltalk class methodsFor:'accessing'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   408
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   409
at:aKey
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   410
    "retrieve the value stored under aKey, a symbol. 
1956
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   411
     Return nil if not present 
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   412
     (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
   413
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   414
%{  /* NOCONTEXT */
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   415
    RETURN ( __GLOBAL_GET(aKey) );
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   416
%}
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   417
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   418
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   419
at:aKey ifAbsent:aBlock
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   420
    "retrieve the value stored at aKey.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   421
     If there is nothing stored under this key, return the value of
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   422
     the evaluation of aBlock."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   423
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   424
    (self includesKey:aKey) ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   425
        ^ self at:aKey
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   426
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   427
    ^ aBlock value
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   428
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   429
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   430
     Smalltalk at:#fooBar                       <- returns nil
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   431
     Smalltalk at:#fooBar ifAbsent:['sorry']    <- no error
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   432
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   433
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   434
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   435
at:aKey put:aValue
1222
b77fbb5457fb commentary
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   436
    "store the argument aValue under aKey, a symbol.
b77fbb5457fb commentary
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   437
     Return aValue (sigh)."
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   438
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   439
    |oldValue|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   440
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   441
%{
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   442
    oldValue = __GLOBAL_SET(aKey, aValue, (OBJ *)0);
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   443
%}.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   444
    CachedClasses notNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   445
        oldValue isBehavior ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   446
            oldValue name == aKey ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   447
                CachedClasses remove:oldValue ifAbsent:[]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   448
            ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   449
        ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   450
        aValue isBehavior ifTrue:[
1956
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   451
"/            aValue isMeta ifTrue:[
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   452
"/                "/ this should not happen
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   453
"/                ('SMALLTALK: store a Metaclass: ' , aValue name , ' as ' , aKey) infoPrintCR.
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   454
"/            ].
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
   455
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   456
            aValue name == aKey ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   457
                CachedClasses add:aValue
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   458
            ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   459
        ].
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   460
    ].
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
   461
    ^ aValue.
1955
276d4ce9b40e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1945
diff changeset
   462
"/
276d4ce9b40e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1945
diff changeset
   463
"/%{  /* NOCONTEXT */
276d4ce9b40e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1945
diff changeset
   464
"/    (void) __GLOBAL_SET(aKey, aValue, (OBJ *)0);
276d4ce9b40e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1945
diff changeset
   465
"/%}.
276d4ce9b40e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1945
diff changeset
   466
"/    CachedClasses := nil.
276d4ce9b40e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1945
diff changeset
   467
"/    ^ aValue
1222
b77fbb5457fb commentary
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   468
b77fbb5457fb commentary
Claus Gittinger <cg@exept.de>
parents: 1133
diff changeset
   469
    "Modified: 19.4.1996 / 11:31:49 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   470
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   471
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   472
includesKey:aKey
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   473
    "return true, if the key is known"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   474
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   475
%{  /* NOCONTEXT */
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   476
    RETURN ( __GLOBAL_KEYKNOWN(aKey) );
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   477
%}
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   478
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   479
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   480
keyAtValue:anObject
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   481
    "return the symbol under which anObject is stored - or nil"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   482
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   483
    self keysDo:[:aKey |
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   484
        (self at:aKey) == anObject ifTrue:[^ aKey]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   485
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   486
    ^ nil
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   487
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   488
    "Smalltalk keyAtValue:Object"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   489
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   490
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   491
keys
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   492
    "return a collection with all keys in the Smalltalk dictionary"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   493
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   494
    |keys|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   495
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   496
    keys := IdentitySet new.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   497
    self keysDo:[:k | keys add:k].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   498
    ^ keys
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   499
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   500
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   501
removeKey:aKey
878
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
   502
    "remove the association stored under the key-argument from the globals dictionary.
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
   503
     WARNING: 
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   504
        this is somewhat dangerous: conceptionally, the association is removed,
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   505
        to which machine & byte compiled code refers if it accesses a global.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   506
        If there are still global accesses in some literalArray or from machine-compiled code,
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   507
        it continues to reference the globals value via that obsolete association and gets a nil
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   508
        value.  (which is correct)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   509
        However, if that global is later reintroduced, a new association will be created and
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   510
        the new global now referenced via the new association.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   511
        The old accesses will still see nil, although the globals value is actually non-nil
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   512
        (this is questionable).
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   513
        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
   514
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   515
    CachedClasses := nil.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   516
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   517
%{  /* NOCONTEXT */
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   518
    RETURN ( __GLOBAL_REMOVE(aKey) );
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   519
%}
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   520
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   521
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   522
!Smalltalk class methodsFor:'binary storage'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   523
2476
50a974f6386d renamed addGlobals.
Claus Gittinger <cg@exept.de>
parents: 2465
diff changeset
   524
addGlobalsForBinaryStorageTo:globalDictionary
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   525
    |pools|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   526
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   527
    pools := Set new.
2465
1dfcacbbd376 ignore nil values when adding globals (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   528
879
add0438a73b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 878
diff changeset
   529
    self keysAndValuesDo:[:key :value |
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   530
        (key includes:$:) ifFalse:[       "/ skip classVars
2465
1dfcacbbd376 ignore nil values when adding globals (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   531
            (value ~~ self 
1dfcacbbd376 ignore nil values when adding globals (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   532
            and:[value notNil]) ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   533
                value isClass ifTrue:[
2476
50a974f6386d renamed addGlobals.
Claus Gittinger <cg@exept.de>
parents: 2465
diff changeset
   534
                    value addGlobalsForBinaryStorageTo:globalDictionary.
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   535
                    pools addAll:value sharedPools
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   536
                ] ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   537
                    globalDictionary at:(key->value) put:self
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   538
                ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   539
                value notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   540
                    globalDictionary at:value put:self
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   541
                ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   542
            ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   543
        ]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   544
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   545
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   546
    pools do:[:poolDictionary|
2476
50a974f6386d renamed addGlobals.
Claus Gittinger <cg@exept.de>
parents: 2465
diff changeset
   547
        poolDictionary addGlobalsForBinaryStorageTo:globalDictionary
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   548
    ]
2465
1dfcacbbd376 ignore nil values when adding globals (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   549
1dfcacbbd376 ignore nil values when adding globals (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   550
    "Modified: 19.3.1997 / 18:15:25 / cg"
2476
50a974f6386d renamed addGlobals.
Claus Gittinger <cg@exept.de>
parents: 2465
diff changeset
   551
    "Created: 21.3.1997 / 15:40:31 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   552
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   553
879
add0438a73b0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 878
diff changeset
   554
storeBinaryDefinitionOf:anObject on:stream manager:manager
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   555
    |string|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   556
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   557
    anObject class == Association ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   558
        string := 'Smalltalk associationAt: ', anObject key storeString
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   559
    ] ifFalse: [
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   560
        string := 'Smalltalk at: ', (self keyAtValue: anObject) storeString
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   561
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   562
    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
   563
    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
   564
"/    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
   565
1dfcacbbd376 ignore nil values when adding globals (binary storage)
Claus Gittinger <cg@exept.de>
parents: 2418
diff changeset
   566
    "Modified: 19.3.1997 / 18:49:14 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   567
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   568
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   569
!Smalltalk class methodsFor:'browsing'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   570
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   571
browseAllCallsOn:aSelectorSymbol
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   572
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   573
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   574
    "startup a browser for all methods sending a particular message"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   575
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   576
    SystemBrowser browseAllCallsOn:aSelectorSymbol
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   577
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   578
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   579
     Smalltalk browseAllCallsOn:#at:put: 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   580
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   581
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   582
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   583
browseAllSelect:aBlock
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   584
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   585
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   586
    "startup a browser for all methods for which aBlock returns true"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   587
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   588
    SystemBrowser browseAllSelect:aBlock
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   589
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   590
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   591
     Smalltalk browseAllSelect:[:m | m literals isNil]
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   592
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   593
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   594
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   595
browseChanges
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   596
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   597
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   598
    "startup a changes browser"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   599
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   600
    ChangesBrowser notNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   601
        ChangesBrowser open
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   602
    ] ifFalse:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   603
        self warn:'no ChangesBrowser built in'
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   604
    ]
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   605
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   606
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   607
     Smalltalk browseChanges
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   608
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   609
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   610
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   611
browseImplementorsOf:aSelectorSymbol
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   612
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   613
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   614
    "startup a browser for all methods implementing a particular message"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   615
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   616
    SystemBrowser browseImplementorsOf:aSelectorSymbol
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   617
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   618
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   619
     Smalltalk browseImplementorsOf:#at:put: 
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   620
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   621
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   622
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   623
!Smalltalk class methodsFor:'class management'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   624
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   625
flushCachedClasses
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   626
    CachedClasses := nil
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   627
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   628
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   629
removeClass:aClass
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   630
    "remove the argument, aClass from the smalltalk dictionary;
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   631
     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
   632
     Also, class variables of aClass are removed."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   633
2485
9f4a11a4521f new #privateClasses semantic
Claus Gittinger <cg@exept.de>
parents: 2476
diff changeset
   634
    |sym cSym names oldName|
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   635
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   636
    oldName := aClass name.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   637
    sym := oldName asSymbol.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   638
    ((self at:sym) == aClass) ifFalse:[
2127
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   639
        "check other name ..."
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   640
        (self includes:aClass) ifFalse:[
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   641
            'Smalltalk [warning]: no such class: ' errorPrint. oldName errorPrintCR.
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   642
            ^ self
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   643
        ].
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   644
        "
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   645
         the class has changed its name - without telling me ...
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   646
         what should be done in this case ?
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   647
        "
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   648
        'Smalltalk [warning]: class ' errorPrint. oldName errorPrint.
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   649
        ' has changed its name' errorPrintCR.
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   650
        ^ self
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   651
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   652
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   653
    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
   654
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
   655
    "/
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
   656
    "/ 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
   657
    "/
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
   658
    "/ self removeKey:sym.     "/ remove key - this actually fails, if there are
2127
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   659
                               "/ still compiled code references."
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   660
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   661
    "remove private classes"
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   662
2485
9f4a11a4521f new #privateClasses semantic
Claus Gittinger <cg@exept.de>
parents: 2476
diff changeset
   663
    aClass privateClassesSorted do:[:somePrivateClass |
9f4a11a4521f new #privateClasses semantic
Claus Gittinger <cg@exept.de>
parents: 2476
diff changeset
   664
        aClass privateClassesAt:(somePrivateClass nameWithoutPrefix) asSymbol put:nil.
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   665
    ].
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   666
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   667
    "remove class variables"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   668
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   669
    names := aClass classVariableString asCollectionOfWords.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   670
    names do:[:name |
2127
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   671
        cSym := (sym , ':' , name) asSymbol.
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   672
        self at:cSym asSymbol put:nil.
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   673
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   674
        "/
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   675
        "/ see comment in removeKey: on why we dont remove it here
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   676
        "/
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
   677
        "/ self removeKey:cSym
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   678
    ].
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   679
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   680
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   681
"/    actually could get along with less flushing
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   682
"/    (entries for aClass and subclasses only)
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   683
"/    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
   684
"/    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
   685
"/    expensive then cache flushing.
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   686
"/
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   687
"/    aClass allSubclassesDo:[:aSubclass |
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   688
"/        ObjectMemory flushInlineCachesForClass:aSubclass.
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   689
"/        ObjectMemory flushMethodCacheFor:aSubclass
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   690
"/    ].
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   691
"/    ObjectMemory flushInlineCachesForClass:aClass.
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   692
"/    ObjectMemory flushMethodCacheFor:aClass
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   693
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   694
    ObjectMemory flushInlineCaches.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   695
    ObjectMemory flushMethodCache.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   696
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   697
    aClass addChangeRecordForClassRemove:oldName.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   698
    self changed:#classRemove with:aClass.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   699
1655
fb6ee1b55ec4 use *-categories
Claus Gittinger <cg@exept.de>
parents: 1650
diff changeset
   700
    aClass category:#'* removed *'.
fb6ee1b55ec4 use *-categories
Claus Gittinger <cg@exept.de>
parents: 1650
diff changeset
   701
2485
9f4a11a4521f new #privateClasses semantic
Claus Gittinger <cg@exept.de>
parents: 2476
diff changeset
   702
    "Modified: 22.3.1997 / 16:14:05 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   703
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   704
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   705
renameClass:aClass to:newName
1525
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
   706
    "rename aClass to newName. Most of the work is in
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
   707
     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
   708
     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
   709
2270
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   710
    |oldName oldSym newSym names oldCVSym newCVSym value oldNameToNewName
2319
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   711
     oldNameSpace newNameSpace oldBaseName privateClasses|
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   712
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   713
    oldName := aClass name.
2405
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
   714
    aClass isPrivate ifTrue:[
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
   715
        oldNameSpace := aClass topOwningClass nameSpace.
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
   716
    ] ifFalse:[
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
   717
        oldNameSpace := aClass nameSpace.
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
   718
    ].
2319
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   719
    oldBaseName := aClass nameWithoutNameSpacePrefix.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   720
    oldSym := oldName asSymbol.
2485
9f4a11a4521f new #privateClasses semantic
Claus Gittinger <cg@exept.de>
parents: 2476
diff changeset
   721
    privateClasses := aClass privateClassesSorted.
2270
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   722
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   723
    ((self at:oldSym) ~~ aClass) ifTrue:[
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   724
        'Smalltalk [warning]: rename failed - name is different from key' errorPrintCR.
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   725
        ^ self
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   726
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   727
1525
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
   728
    "/ rename the class
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   729
1847
6e567214b167 care for className being a symbol, when renaming classes
Claus Gittinger <cg@exept.de>
parents: 1758
diff changeset
   730
    newSym := newName asSymbol.
6e567214b167 care for className being a symbol, when renaming classes
Claus Gittinger <cg@exept.de>
parents: 1758
diff changeset
   731
    aClass setName:newSym.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   732
1525
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
   733
    "/ and its meta
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   734
1847
6e567214b167 care for className being a symbol, when renaming classes
Claus Gittinger <cg@exept.de>
parents: 1758
diff changeset
   735
    aClass class setName:(newName , ' class') asSymbol.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   736
1525
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
   737
    "/ store it in Smalltalk
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   738
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   739
    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
   740
878
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
   741
    "/
1525
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
   742
    "/ 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
   743
    "/
c09b016c6674 do not remove a global-assoc when classes are removed (see comment there)
Claus Gittinger <cg@exept.de>
parents: 857
diff changeset
   744
    "/ self removeKey:oldSym.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   745
    self at:newSym put:aClass.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   746
1525
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
   747
    "/ 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
   748
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
   749
    oldNameToNewName := IdentityDictionary new.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   750
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   751
    names := aClass classVariableString asCollectionOfWords.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   752
    names do:[:name |
2270
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   753
        oldCVSym := (oldSym , ':' , name) asSymbol.
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   754
        value := self at:oldCVSym.
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   755
        self at:oldCVSym put:nil.
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   756
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   757
        "/
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   758
        "/ see comment in #removeKey: on why we dont remove it it here
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   759
        "/
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   760
        "/ self removeKey:cSym.
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   761
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   762
        newCVSym := (newSym , ':' , name) asSymbol.
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   763
        self at:newCVSym put:value.
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   764
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   765
        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
   766
    ].
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
   767
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
   768
    "/ 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
   769
935b12ecf8ff in renameClass: patch literals of all methods to access the renamed
Claus Gittinger <cg@exept.de>
parents: 1481
diff changeset
   770
    oldNameToNewName keysAndValuesDo:[:oldNameSym :newNameSym |
2270
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   771
        aClass withAllSubclasses do:[:aSubClass |
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   772
            aSubClass class methodDictionary do:[:aMethod |
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   773
                aMethod changeLiteral:oldNameSym to:newNameSym
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   774
            ].
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   775
            aSubClass methodDictionary do:[:aMethod |
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   776
                aMethod changeLiteral:oldNameSym to:newNameSym
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   777
            ]
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   778
        ].
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   779
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   780
        "/ and also in privateClasses ? ...
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   781
2485
9f4a11a4521f new #privateClasses semantic
Claus Gittinger <cg@exept.de>
parents: 2476
diff changeset
   782
"/        privateClasses size > 0 ifTrue:[
2270
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   783
"/            privateClasses do:[:aPrivateClass |
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   784
"/                aPrivateClass withAllSubclasses do:[:aSubClass |
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   785
"/                    aSubClass class methodDictionary do:[:aMethod |
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   786
"/                        aMethod changeLiteral:oldNameSym to:newNameSym
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   787
"/                    ].
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   788
"/                    aSubClass methodDictionary do:[:aMethod |
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   789
"/                        aMethod changeLiteral:oldNameSym to:newNameSym
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   790
"/                    ]
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   791
"/                ].
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   792
"/            ]
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   793
"/        ]
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   794
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   795
2270
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   796
    aClass addChangeRecordForClassRename:oldSym to:newSym.
76c239686353 when renaming a class, also rename any private classes.
Claus Gittinger <cg@exept.de>
parents: 2249
diff changeset
   797
2405
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
   798
    aClass isPrivate ifTrue:[
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
   799
        newNameSpace := aClass topOwningClass nameSpace.
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
   800
    ] ifFalse:[    
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
   801
        newNameSpace := aClass nameSpace.
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
   802
    ].
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
   803
2485
9f4a11a4521f new #privateClasses semantic
Claus Gittinger <cg@exept.de>
parents: 2476
diff changeset
   804
    privateClasses size > 0 ifTrue:[
2405
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
   805
        "/ must rename privateClasses as well
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
   806
        privateClasses do:[:aPrivateClass |
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
   807
            self renameClass:aPrivateClass
2514
8750c546d17c correctly recompile accesses to privateClasses
ca
parents: 2504
diff changeset
   808
                 to:(newSym , '::' , aPrivateClass nameWithoutPrefix).
8750c546d17c correctly recompile accesses to privateClasses
ca
parents: 2504
diff changeset
   809
        
8750c546d17c correctly recompile accesses to privateClasses
ca
parents: 2504
diff changeset
   810
            Transcript showCR:'recompiling methods in ''' , newNameSpace name , ''' accessing ''' , oldName , '::' , aPrivateClass nameWithoutPrefix , ''' ...'.
8750c546d17c correctly recompile accesses to privateClasses
ca
parents: 2504
diff changeset
   811
            Class class
8750c546d17c correctly recompile accesses to privateClasses
ca
parents: 2504
diff changeset
   812
                recompileGlobalAccessorsTo:(oldName , '::' , aPrivateClass nameWithoutPrefix) asSymbol 
8750c546d17c correctly recompile accesses to privateClasses
ca
parents: 2504
diff changeset
   813
                in:newNameSpace 
8750c546d17c correctly recompile accesses to privateClasses
ca
parents: 2504
diff changeset
   814
                except:nil.
2405
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
   815
        ]
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
   816
    ].
939f4e751ef3 dont forget to rename private classes as well.
Claus Gittinger <cg@exept.de>
parents: 2379
diff changeset
   817
2319
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   818
    oldNameSpace ~~ newNameSpace ifTrue:[
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   819
        "/ all those referencing the class from the old nameSpace
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   820
        "/ must be recompiled ...
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   821
        "/ (to now access the global from smalltalk)
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   822
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   823
        oldNameSpace ~~ Smalltalk ifTrue:[
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   824
            Transcript showCR:'recompiling methods in ''' , oldNameSpace name , ''' accessing ''' , oldName , ''' ...'.
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   825
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   826
            Class class
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   827
                recompileGlobalAccessorsTo:oldName asSymbol 
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   828
                in:oldNameSpace 
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   829
                except:nil.
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   830
        ].
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   831
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   832
        "/ all referencing the class in the new namespace
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   833
        "/ as well; to now access the new class.
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   834
2345
7601178f4ad4 checkin from browser
ca
parents: 2319
diff changeset
   835
        (newNameSpace notNil and:[newNameSpace ~~ Smalltalk]) ifTrue:[
2319
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   836
            Transcript showCR:'recompiling methods in ''' , newNameSpace name , ''' accessing ''' , oldBaseName , ''' ...'.
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   837
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   838
            Class class
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   839
                recompileGlobalAccessorsTo:oldBaseName asSymbol 
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   840
                in:newNameSpace 
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   841
                except:nil.
2514
8750c546d17c correctly recompile accesses to privateClasses
ca
parents: 2504
diff changeset
   842
        ].
8750c546d17c correctly recompile accesses to privateClasses
ca
parents: 2504
diff changeset
   843
8750c546d17c correctly recompile accesses to privateClasses
ca
parents: 2504
diff changeset
   844
        
2319
640bb389f90a recompile when moving classes across namespaces
Claus Gittinger <cg@exept.de>
parents: 2317
diff changeset
   845
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   846
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   847
    "Created: 29.10.1995 / 19:58:32 / cg"
1480
df0bea6285f8 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
   848
    "Modified: 18.6.1996 / 14:20:50 / stefan"
2485
9f4a11a4521f new #privateClasses semantic
Claus Gittinger <cg@exept.de>
parents: 2476
diff changeset
   849
    "Modified: 22.3.1997 / 16:15:03 / 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:'copying'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   853
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   854
deepCopy
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   855
    "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
   856
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   857
    ^ self
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   858
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   859
    "Modified: 18.5.1996 / 12:13:33 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   860
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   861
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   862
deepCopyUsing:aDictionary
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   863
    "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
   864
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   865
    ^ self
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   866
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   867
    "Modified: 18.5.1996 / 12:13:36 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   868
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   869
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   870
shallowCopy
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   871
    "redefined to return self - there is only one Smalltalk dictionary"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   872
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   873
    ^ self
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   874
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   875
    "Modified: 18.5.1996 / 12:13:39 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   876
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   877
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   878
simpleDeepCopy
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   879
    "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
   880
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   881
    ^ self
1410
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   882
518bf8454809 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1307
diff changeset
   883
    "Modified: 18.5.1996 / 12:13:42 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   884
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   885
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
   886
!Smalltalk class methodsFor:'debugging ST/X'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   887
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   888
debugBreakPoint
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   889
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   890
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   891
    "call the dummy debug function, on which a breakpoint
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   892
     can be put in adb, sdb, dbx or gdb.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   893
     WARNING: this method is for debugging only
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   894
              it will be removed without notice."
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   895
%{
2212
be31fd0cea4d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2176
diff changeset
   896
    __PATCHUPCONTEXTS(__context);
808
1919838112d1 renamed debugBreakPoint -> __debugBreakPoint__
Claus Gittinger <cg@exept.de>
parents: 796
diff changeset
   897
    __debugBreakPoint__();
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   898
%}
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   899
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   900
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   901
exitWithCoreDump
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   902
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   903
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   904
    "abort program and dump core"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   905
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   906
%{  /* NOCONTEXT */
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   907
    abort();
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   908
    /* NEVER RETURNS */
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   909
%}
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
fatalAbort
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   913
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   914
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   915
    "report a fatal-error, print a stack backtrace and exit with core dump.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   916
     (You may turn off the stack print with debugPrinting:false)"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   917
%{
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   918
    __fatal0(__context, "fatalAbort");
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   919
    /* NEVER RETURNS */
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
!
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
fatalAbort:aMessage
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   924
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   925
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   926
    "report a fatal-error; print a stack backtrace and exit with core dump
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   927
     (You may turn off the stack print with debugPrinting:false)"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   928
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   929
%{
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   930
    char *msg;
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   931
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   932
    if (__isString(aMessage))
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   933
        msg = (char *) __stringVal(aMessage);
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   934
    else
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   935
        msg = "fatalAbort";
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   936
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   937
    __fatal0(__context, msg);
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   938
    /* NEVER RETURNS */
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   939
%}
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   940
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
   941
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   942
printPolyCaches
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   943
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   944
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   945
    "dump poly caches.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   946
     WARNING: this method is for debugging only
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   947
              it will be removed without notice"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   948
%{
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   949
    __dumpILCCaches();
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   950
%}
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   951
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   952
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   953
printStackBacktrace
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   954
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   955
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   956
    "print a stack backtrace - then continue.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   957
     (You may turn off the stack print with debugPrinting:false)
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   958
     WARNING: this method is for debugging only 
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   959
              it will be removed without notice"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   960
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   961
%{
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   962
    __printStack(__context);
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   963
%}
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   964
    "Smalltalk printStackBacktrace"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   965
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   966
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   967
printSymbols
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   968
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   969
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   970
    "dump the internal symbol table.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   971
     WARNING: this method is for debugging only
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   972
              it will be removed without notice"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   973
%{
790
73131541a373 debug functions is only available if compiled with -DDEBUG
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
   974
#ifdef DEBUG
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   975
    __dumpSymbols();
790
73131541a373 debug functions is only available if compiled with -DDEBUG
Claus Gittinger <cg@exept.de>
parents: 785
diff changeset
   976
#endif
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   977
%}
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   978
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
   979
785
c666457288e1 added sendTraceOn / sendTraceOff
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
   980
sendTraceOff
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   981
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   982
785
c666457288e1 added sendTraceOn / sendTraceOff
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
   983
    "turns tracing of message sends off.
c666457288e1 added sendTraceOn / sendTraceOff
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
   984
     WARNING: this method is for debugging only 
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   985
              it may be removed without notice"
785
c666457288e1 added sendTraceOn / sendTraceOff
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
   986
c666457288e1 added sendTraceOn / sendTraceOff
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
   987
%{  /* NOCONTEXT */
796
28cde02334c8 use functional interface to set/clear messageTrace
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
   988
    __setMessageTrace__(0);
785
c666457288e1 added sendTraceOn / sendTraceOff
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
   989
%}
c666457288e1 added sendTraceOn / sendTraceOff
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
   990
!
c666457288e1 added sendTraceOn / sendTraceOff
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
   991
c666457288e1 added sendTraceOn / sendTraceOff
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
   992
sendTraceOn
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   993
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
   994
785
c666457288e1 added sendTraceOn / sendTraceOff
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
   995
    "turns tracing of message sends on.
c666457288e1 added sendTraceOn / sendTraceOff
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
   996
     WARNING: this method is for debugging only 
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
   997
              it may be removed without notice"
785
c666457288e1 added sendTraceOn / sendTraceOff
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
   998
c666457288e1 added sendTraceOn / sendTraceOff
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
   999
%{  /* NOCONTEXT */
796
28cde02334c8 use functional interface to set/clear messageTrace
Claus Gittinger <cg@exept.de>
parents: 790
diff changeset
  1000
    __setMessageTrace__(1);
785
c666457288e1 added sendTraceOn / sendTraceOff
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  1001
%}
c666457288e1 added sendTraceOn / sendTraceOff
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  1002
!
c666457288e1 added sendTraceOn / sendTraceOff
Claus Gittinger <cg@exept.de>
parents: 745
diff changeset
  1003
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1004
statistic
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1005
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1006
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1007
    "print some statistic data.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1008
     WARNING: this method is for debugging only 
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1009
              it may be removed without notice"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1010
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1011
%{  /* NOCONTEXT */
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1012
    __STATISTIC__();
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1013
%}
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1014
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1015
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1016
!Smalltalk class methodsFor:'enumerating'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1017
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1018
allBehaviorsDo:aBlock
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1019
    "evaluate the argument, aBlock for all classes in the system"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1020
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1021
    CachedClasses isNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1022
        self allClasses
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1023
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1024
    CachedClasses do:aBlock
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1025
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1026
    "
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1027
     Smalltalk allBehaviorsDo:[:aClass | aClass name printCR]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1028
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1029
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1030
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1031
allClassesDo:aBlock
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1032
    "evaluate the argument, aBlock for all classes in the system.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1033
     Backward compatibility - use #allBehaviorsDo: for ST-80 compatibility."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1034
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1035
    ^ self allBehaviorsDo:aBlock
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1036
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1037
    "
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1038
     Smalltalk allClassesDo:[:aClass | aClass name printCR]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1039
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1040
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1041
1299
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1042
allClassesInCategory:aCategory
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1043
    "return a collection of for all classes in aCategory;
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1044
     The order of the classes is not defined."
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1045
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1046
    |coll|
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1047
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1048
    coll := OrderedCollection new.
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1049
    self allClassesInCategory:aCategory do:[:aClass |
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1050
        coll add:aClass
1299
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1051
    ].
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1052
    ^ coll
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1053
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1054
    "
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1055
     Smalltalk allClassesInCategory:'Views-Basic'
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1056
    "
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1057
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1058
    "Modified: 25.4.1996 / 18:06:13 / cg"
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1059
!
8f49ec04c9f8 documentation
Claus Gittinger <cg@exept.de>
parents: 1286
diff changeset
  1060
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1061
allClassesInCategory:aCategory do:aBlock
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1062
    "evaluate the argument, aBlock for all classes in the aCategory;
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1063
     The order of the classes is not defined."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1064
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1065
    aCategory notNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1066
        self allBehaviorsDo:[:aClass |
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1067
            aClass isMeta ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1068
                (aClass category = aCategory) ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1069
                    aBlock value:aClass
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1070
                ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1071
            ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1072
        ]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1073
    ]
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1074
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1075
    "
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1076
     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
  1077
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1078
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1079
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1080
allClassesInCategory:aCategory inOrderDo:aBlock
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1081
    "evaluate the argument, aBlock for all classes in aCategory;
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1082
     superclasses come first - then subclasses"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1083
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1084
    |classes|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1085
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1086
    aCategory notNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1087
        classes := OrderedCollection new.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1088
        self allBehaviorsDo:[:aClass |
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1089
            aClass isMeta ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1090
                (aClass category = aCategory) ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1091
                    classes add:aClass
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1092
                ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1093
            ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1094
        ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1095
        classes topologicalSort:[:a :b | b isSubclassOf:a].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1096
        classes do:aBlock
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1097
    ]
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1098
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1099
    "
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1100
     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
  1101
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1102
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1103
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1104
allKeysDo:aBlock
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1105
    "evaluate the argument, aBlock for all keys in the Smalltalk dictionary"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1106
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1107
    ^ self keysDo:aBlock
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1108
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1109
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1110
associationsDo:aBlock
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1111
    "evaluate the argument, aBlock for all key/value pairs 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1112
     in the Smalltalk dictionary"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1113
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1114
    self keysDo:[:aKey |
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1115
        aBlock value:(aKey -> (self at:aKey))
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1116
    ]
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1117
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1118
    "Smalltalk associationsDo:[:assoc | assoc printCR]"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1119
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1120
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1121
do:aBlock
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1122
    "evaluate the argument, aBlock for all values in the Smalltalk dictionary"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1123
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1124
    |work|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1125
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1126
%{  /* 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
  1127
    __GLOBALS_DO(&aBlock, &work);
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1128
%}
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1129
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1130
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1131
keysAndValuesDo:aBlock
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1132
    "evaluate the two-arg block, aBlock for all keys and values"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1133
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1134
    self keysDo:[:aKey |
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1135
        aBlock value:aKey value:(self at:aKey)
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1136
    ]
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1137
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1138
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1139
keysDo:aBlock
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1140
    "evaluate the argument, aBlock for all keys in the Smalltalk dictionary"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1141
    |work|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1142
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1143
%{  /* 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
  1144
    __GLOBALKEYS_DO(&aBlock, &work);
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1145
%}
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1146
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1147
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1148
!Smalltalk class methodsFor:'inspecting'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1149
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1150
inspectorClass
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1151
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1152
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1153
    "redefined to launch a DictionaryInspector
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1154
     (instead of the default Inspector)."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1155
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1156
    ^ DictionaryInspectorView
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1157
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1158
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1159
!Smalltalk class methodsFor:'message control'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1160
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1161
silentLoading
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1162
    "returns the Silentloading class variable."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1163
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1164
     ^ SilentLoading
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1165
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1166
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1167
silentLoading:aBoolean
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1168
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1169
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1170
    "allows access to the Silentloading class variable, which controls
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1171
     messages from all kinds of system onto the transcript.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1172
     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
  1173
     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
  1174
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1175
    |prev|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1176
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1177
    prev := SilentLoading.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1178
    SilentLoading := aBoolean.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1179
    ^ prev
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1180
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1181
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1182
!Smalltalk class methodsFor:'misc stuff'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1183
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1184
addExitBlock:aBlock
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1185
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1186
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1187
    "add a block to be executed when Smalltalk finishes.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1188
     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
  1189
     cleanup in stand alone applications."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1190
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1191
    ExitBlocks isNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1192
        ExitBlocks := OrderedCollection with:aBlock
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1193
    ] ifFalse:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1194
        ExitBlocks add:aBlock
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1195
    ]
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1196
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1197
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1198
addImageStartBlock:aBlock
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1199
    "{ Pragma: +optSpace }"
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1200
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1201
    "add a blocks to be executed in a separate process after
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1202
     everything has been initialized. These blocks will be
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1203
     executed after an image restart."
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1204
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1205
    ImageStartBlocks isNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1206
        ImageStartBlocks := OrderedCollection with:aBlock
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1207
    ] ifFalse:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1208
        ImageStartBlocks add:aBlock
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1209
    ]
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1210
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1211
    "Created: 9.9.1996 / 16:48:20 / stefan"
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1212
!
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1213
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1214
addStartBlock:aBlock
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1215
    "{ Pragma: +optSpace }"
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1216
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1217
    "add a blocks to be executed in a separate process after
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1218
     everything has been initialized. These blocks will
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1219
     be deleted after execution and therefore not be
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1220
     executed after an image restart. Initial processes are usually started here."
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1221
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1222
    StartBlocks isNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1223
        StartBlocks := OrderedCollection with:aBlock
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1224
    ] ifFalse:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1225
        StartBlocks add:aBlock
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1226
    ]
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1227
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1228
    "Created: 9.9.1996 / 16:46:53 / stefan"
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1229
!
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1230
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1231
exit
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1232
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1233
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1234
    "finish Smalltalk system"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1235
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1236
    ObjectMemory changed:#aboutToQuit.  "/ for ST-80 compatibility
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1237
    ExitBlocks notNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1238
        ExitBlocks do:[:aBlock |
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1239
            aBlock value
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1240
        ]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1241
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1242
    OperatingSystem exit
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1243
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1244
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1245
     Smalltalk exit
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1246
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1247
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1248
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1249
sleep:aDelay
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1250
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1251
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1252
    "wait for aDelay seconds.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1253
     OBSOLETE: this is historical leftover and will be removed"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1254
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1255
    OperatingSystem sleep:aDelay
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1256
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1257
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1258
!Smalltalk class methodsFor:'queries'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1259
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1260
allClasses
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1261
    "return an unordered collection of all classes in the system.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1262
     Only globally anchored classes are returned 
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1263
     (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
  1264
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1265
    |classes|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1266
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1267
    "/ 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
  1268
    "/ the reason is that if we modify the class hierarchy in
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1269
    "/ anothe view (background fileIn), while building up the
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1270
    "/ cachedClasses set, this may be flushed (invalidated) by the
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1271
    "/ other process in the meanwhile.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1272
    "/ If that happens, we restart the set-building here
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1273
    "/
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1274
    [(classes := CachedClasses) isNil] whileTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1275
        CachedClasses := classes := IdentitySet new:800. 
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1276
        self do:[:anObject |
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1277
            anObject notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1278
                anObject isBehavior ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1279
                    classes add:anObject
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1280
                ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1281
            ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1282
        ]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1283
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1284
    ^ classes
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1285
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1286
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1287
     Smalltalk allClasses
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1288
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1289
    to get the list sorted by name:
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1290
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1291
     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
  1292
    "
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1293
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1294
    "Modified: 13.12.1995 / 14:52:50 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1295
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1296
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1297
cellAt:aName
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1298
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1299
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1300
    "return the address of a global cell
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1301
     - used internally for compiler only"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1302
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1303
%{  /* NOCONTEXT */
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1304
    RETURN ( __GLOBAL_GETCELL(aName) );
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1305
%}
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1306
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1307
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1308
classNamed:aString
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1309
    "return the class with name aString, or nil if absent.
1480
df0bea6285f8 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1310
     To get to the metaClass, append ' class' to the string."
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1311
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1312
    |cls sym meta|
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1313
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1314
    "be careful, to not invent new symbols ..."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1315
    sym := aString asSymbolIfInterned.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1316
    sym notNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1317
        cls := self at:sym ifAbsent:[].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1318
        cls isBehavior ifTrue:[^ cls]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1319
    ].
1480
df0bea6285f8 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1320
    (aString endsWith:' class') ifTrue:[
df0bea6285f8 Change the name of a classes Metaclass from e.g. "SmallIntegerclass" to
Stefan Vogel <sv@exept.de>
parents: 1461
diff changeset
  1321
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1322
        meta := self classNamed:(aString copyWithoutLast:6).
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1323
        meta notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1324
            ^ meta class
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1325
        ].
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1326
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1327
    ^ nil
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1328
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1329
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1330
     Smalltalk classNamed:'Object'    
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1331
     Smalltalk classNamed:'fooBar' 
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1332
     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
  1333
     Smalltalk classNamed:'Object class'    
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1334
     Smalltalk classNamed:'Metaclass'    
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1335
     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
  1336
     Smalltalk classNamed:'Array class'    
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1337
    "
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1338
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1339
    "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
  1340
    "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
  1341
    "Modified: 19.6.1996 / 14:22:21 / stefan"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1342
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1343
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1344
classNames
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1345
    "return a collection of all classNames in the system"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1346
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1347
    ^ self allClasses collect:[:aClass | aClass name]
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1348
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1349
    "
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1350
     Smalltalk classNames
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1351
    "
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1352
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1353
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1354
classnameCompletion:aPartialClassName
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1355
    "given a partial classname, return an array consisting of
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1356
     2 entries: 1st: collection consisting of matching names
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1357
                2nd: the best (longest) match"
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1358
2523
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  1359
    |searchName matches ignCaseMatches best isMatchString|
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1360
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1361
    searchName := aPartialClassName.
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1362
    searchName isEmpty ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1363
        ^ Array with:searchName with:#()
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1364
    ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1365
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1366
    (searchName at:1) isLowercase ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1367
        searchName := searchName copy asUppercaseFirst
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1368
    ].
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1369
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1370
    isMatchString := searchName includesMatchCharacters.
1451
90f7841aba25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1371
    matches := OrderedCollection new.
2523
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  1372
    ignCaseMatches := OrderedCollection new.
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1373
    self allClassesDo:[:aClass |
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1374
        |className addIt|
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1375
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1376
        className := aClass name.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1377
        aClass isMeta ifFalse:[
1451
90f7841aba25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1378
        
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1379
            isMatchString ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1380
                addIt := searchName match:className
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1381
            ] ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1382
                addIt := className startsWith:searchName
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1383
            ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1384
            addIt ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1385
                matches add:aClass name
2523
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  1386
            ] ifFalse:[
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  1387
                "/ try ignoring case
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  1388
                isMatchString ifTrue:[
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  1389
                    addIt := searchName match:className ignoreCase:true
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  1390
                ] ifFalse:[
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  1391
                    addIt := className asLowercase startsWith:searchName asLowercase
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  1392
                ].
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  1393
                addIt ifTrue:[
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  1394
                    ignCaseMatches add:aClass name
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  1395
                ]
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1396
            ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1397
        ]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1398
    ].
1451
90f7841aba25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1399
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1400
    matches isEmpty ifTrue:[
2523
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  1401
        matches := ignCaseMatches
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  1402
    ].
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  1403
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  1404
    matches isEmpty ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1405
        ^ Array with:searchName with:(Array with:searchName)
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1406
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1407
    matches size == 1 ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1408
        ^ Array with:matches first with:(matches asArray)
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1409
    ].
1451
90f7841aba25 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1422
diff changeset
  1410
    matches := matches asSortedCollection.
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1411
    isMatchString ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1412
        best := searchName.
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1413
    ] ifFalse:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1414
        best := matches longestCommonPrefix.
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1415
    ].
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1416
    ^ Array with:best with:matches asArray
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1417
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1418
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1419
     Smalltalk classnameCompletion:'Arr' 
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1420
     Smalltalk classnameCompletion:'Arra' 
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1421
     Smalltalk classnameCompletion:'arra' 
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1422
     Smalltalk classnameCompletion:'*rray' 
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1423
    "
644
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1424
9363244ef25d classNamed: fixed for metaclasses; handle matchCharacters in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 630
diff changeset
  1425
    "Created: 24.11.1995 / 17:24:45 / cg"
2523
04db1fd74e0d try ignoring case in classNameCompletion
Claus Gittinger <cg@exept.de>
parents: 2514
diff changeset
  1426
    "Modified: 3.4.1997 / 18:25:01 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1427
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1428
2004
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  1429
defaultNameSpace
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  1430
    "return the default namespace, where new classes are installed,
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  1431
     if NO special nameSpace handler is present"
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  1432
2029
55ddf4c547ab ask the current project for the defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 2004
diff changeset
  1433
    |p|
55ddf4c547ab ask the current project for the defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 2004
diff changeset
  1434
55ddf4c547ab ask the current project for the defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 2004
diff changeset
  1435
    (Project notNil and:[(p := Project current) notNil]) ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1436
        ^ p defaultNameSpace
2029
55ddf4c547ab ask the current project for the defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 2004
diff changeset
  1437
    ].
55ddf4c547ab ask the current project for the defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 2004
diff changeset
  1438
2004
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  1439
    ^ self
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  1440
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  1441
    "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
  1442
    "Modified: 2.1.1997 / 20:01:31 / cg"
2004
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  1443
!
b660837fe0c7 renamed #currentNameSpace to #defaultNameSpace
Claus Gittinger <cg@exept.de>
parents: 1971
diff changeset
  1444
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1445
includes:something
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1446
    "this should come from Collection.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1447
     will change the inheritance - Smalltalk is actually a collection"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1448
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1449
    self do:[:element | element = something ifTrue:[^ true]].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1450
    ^ false
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1451
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1452
1706
24629b820adf prepare for private classes
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  1453
isNamespace
24629b820adf prepare for private classes
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  1454
    ^ true
24629b820adf prepare for private classes
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  1455
24629b820adf prepare for private classes
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  1456
    "Created: 11.10.1996 / 18:10:43 / cg"
24629b820adf prepare for private classes
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  1457
!
24629b820adf prepare for private classes
Claus Gittinger <cg@exept.de>
parents: 1696
diff changeset
  1458
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1459
numberOfGlobals
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1460
    "return the number of global variables in the system"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1461
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1462
    |tally "{ Class: SmallInteger }" |
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1463
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1464
    tally := 0.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1465
    self do:[:obj | tally := tally + 1].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1466
    ^ tally
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1467
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1468
    "Smalltalk numberOfGlobals"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1469
!
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
references:anObject
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1472
    "redefined, since the references are only kept in the VM's symbol table"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1473
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1474
    self keysAndValuesDo:[:key :val |
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1475
        (key == anObject) ifTrue:[^ true].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1476
        (val == anObject ) ifTrue:[^ true].
617
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
    ^ super references:anObject
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1479
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1480
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1481
referencesDerivedInstanceOf:aClass
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1482
    "redefined, since the references are only kept in the VM's symbol table"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1483
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1484
    self keysAndValuesDo:[:key :val |
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1485
        (key isKindOf:aClass) ifTrue:[^ true].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1486
        (val isKindOf:aClass) ifTrue:[^ true].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1487
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1488
    ^ super referencesDerivedInstanceOf:aClass
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1489
!
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
referencesInstanceOf:aClass
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1492
    "redefined, since the references are only kept in the VM's symbol table"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1493
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1494
    self keysAndValuesDo:[:key :val |
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1495
        (key isMemberOf:aClass) ifTrue:[^ true].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1496
        (val isMemberOf:aClass) ifTrue:[^ true].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1497
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1498
    ^ super referencesInstanceOf:aClass
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1499
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1500
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1501
selectorCompletion:aPartialSymbolName
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1502
    "given a partial selector, return an array consisting of
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1503
     2 entries: 1st: collection consisting of matching implemented selectors
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1504
                2nd: the longest match"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1505
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1506
    |matches best|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1507
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1508
    matches := IdentitySet new.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1509
    self allClassesDo:[:aClass |
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1510
        aClass methodDictionary keys do:[:aSelector |
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1511
            (aSelector startsWith:aPartialSymbolName) ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1512
                matches add:aSelector
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1513
            ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1514
        ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1515
        aClass class methodDictionary keys do:[:aSelector |
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1516
            (aSelector startsWith:aPartialSymbolName) ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1517
                matches add:aSelector
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1518
            ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1519
        ]
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1520
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1521
    matches := matches asSortedCollection.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1522
    matches isEmpty ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1523
        ^ Array with:aPartialSymbolName with:(Array with:aPartialSymbolName)
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1524
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1525
    matches size == 1 ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1526
        ^ Array with:matches first with:(matches asArray)
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1527
    ].
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1528
    best := matches longestCommonPrefix.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1529
    ^ Array with:best with:matches asArray
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1530
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1531
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1532
     Smalltalk selectorCompletion:'at:p'  
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1533
     Smalltalk selectorCompletion:'nextP' 
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1534
    "
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1455
diff changeset
  1535
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 1455
diff changeset
  1536
    "Modified: 7.6.1996 / 08:44:33 / stefan"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1537
! !
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1538
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1539
!Smalltalk class methodsFor:'startup'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1540
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1541
mainStartup:graphicalMode
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1542
    "common start/restart action, if there is a Display, initialize it
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1543
     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
  1544
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1545
    |mainProcess standAloneProcess imageName thisIsARestart|
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1546
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1547
    imageName := ObjectMemory imageName.
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1548
    thisIsARestart := imageName notNil.
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1549
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1550
    "
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1551
     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
  1552
    "
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1553
    Display notNil ifTrue:[
2535
2484285b227d setup a terminating Display I/O error handler.
Claus Gittinger <cg@exept.de>
parents: 2523
diff changeset
  1554
        Display deviceIOErrorSignal handlerBlock:[:ex |
2484285b227d setup a terminating Display I/O error handler.
Claus Gittinger <cg@exept.de>
parents: 2523
diff changeset
  1555
            'Display [warning]: broken display connection - exit.' infoPrintCR.
2484285b227d setup a terminating Display I/O error handler.
Claus Gittinger <cg@exept.de>
parents: 2523
diff changeset
  1556
            Smalltalk exit.
2484285b227d setup a terminating Display I/O error handler.
Claus Gittinger <cg@exept.de>
parents: 2523
diff changeset
  1557
        ].
2084
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1558
        Display startDispatch.
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1559
    ].
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1560
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1561
    Initializing := false.
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1562
2074
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  1563
    "/ 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
  1564
    "/ 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
  1565
    "/ 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
  1566
    "/ 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
  1567
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1568
    mainProcess := [
2084
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1569
        StartBlocks notNil ifTrue:[
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1570
            StartBlocks do:[:aBlock|
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1571
                aBlock value
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1572
            ].
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1573
            StartBlocks := nil.
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1574
        ].
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1575
        ImageStartBlocks notNil ifTrue:[
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1576
            ImageStartBlocks do:[:aBlock|
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1577
                aBlock value
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1578
            ].
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1579
        ].
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1580
        StandAlone ifFalse:[
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1581
            (SilentLoading == true) ifFalse:[   "i.e. undefined counts as false" 
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1582
                thisIsARestart ifTrue:[
2084
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1583
                    Transcript cr.
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1584
                    Transcript showCR:('Smalltalk restarted from:'
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1585
                                        , imageName
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1586
                                        , ' (saved '
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1587
                                        , ObjectMemory imageSaveTime printString
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1588
                                        , ')' ).
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1589
                ] ifFalse:[
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1590
                    Transcript showCR:(self hello).
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1591
                    Transcript showCR:(self copyrightString).
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1592
                    Transcript cr.
2084
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1593
                ].
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1594
                Transcript cr.
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1595
            ].
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1596
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1597
            DemoMode ifTrue:[
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1598
                Transcript showCR:'*** Restricted use:                              ***'.
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1599
                Transcript showCR:'*** This program may be used for education only. ***'.
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1600
                Transcript showCR:'*** Please read the files COPYRIGHT and LICENSE  ***'.
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1601
                Transcript showCR:'*** for more details.                            ***'.
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1602
                Transcript cr.
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1603
            ].
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1604
        ].
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1605
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1606
        thisIsARestart ifTrue:[
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1607
            "/
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1608
            "/ the final late notification - users can now assume that
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1609
            "/ views, forms etc. have been recreated.
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1610
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1611
            ObjectMemory changed:#returnFromSnapshot.
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1612
        ]
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1613
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1614
    ] newProcess.
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1615
    mainProcess priority:8.
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1616
    mainProcess name:'start block handler'.
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1617
    mainProcess beGroupLeader.
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1618
    mainProcess resume.
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1619
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1620
2074
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  1621
    "/ 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
  1622
    "/ message.
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  1623
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1624
    (StartupClass notNil and:[StartupSelector notNil]) ifTrue:[
2084
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1625
        "
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1626
         allow more customization by reading an image specific rc-file
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1627
        "
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1628
        thisIsARestart ifTrue:[
2084
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1629
            (imageName endsWith:'.img') ifTrue:[
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1630
                imageName := imageName copyWithoutLast:4
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1631
            ].
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1632
            self fileIn:(imageName , '.rc')
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1633
        ].
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1634
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1635
"/        Display notNil ifTrue:[
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1636
"/            Display class exitOnLastClose:true.
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1637
"/        ].
2086
4a9d8b5cada7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1638
"/        Processor exitWhenNoMoreUserProcesses:true.
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1639
2084
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1640
        standAloneProcess := [
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1641
            StartupClass perform:StartupSelector withArguments:StartupArguments.
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1642
            "/
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1643
            "/ non-GUI apps exit after the startup;
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1644
            "/ assume that GUI apps have created & opened some view ...
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1645
            "/
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1646
            Display isNil ifTrue:[
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1647
                Smalltalk exit.
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1648
            ].
2086
4a9d8b5cada7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1649
            "/
4a9d8b5cada7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1650
            "/ GUI apps exit after the last user process has finished
4a9d8b5cada7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1651
            "/
4a9d8b5cada7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1652
            Display class exitOnLastClose:true.
4a9d8b5cada7 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2085
diff changeset
  1653
            Processor exitWhenNoMoreUserProcesses:true.
2084
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1654
        ] newProcess.
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1655
        standAloneProcess priority:8.
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1656
        standAloneProcess name:'main'.
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1657
        standAloneProcess beGroupLeader.
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1658
        standAloneProcess resume.
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1659
    ].
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1660
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1661
    "
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1662
     if view-classes exist, start dispatching;
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1663
     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
  1664
    "
2074
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  1665
    ((Display notNil and:[graphicalMode]) or:[standAloneProcess notNil]) ifTrue:[
2084
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1666
        Processor dispatchLoop.
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1667
    ] ifFalse:[
2084
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1668
        StandAlone ifFalse:[
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1669
            self readEvalPrint
c3342f5d6461 exitOnLastClose is bad here (INSTALLER)
Claus Gittinger <cg@exept.de>
parents: 2083
diff changeset
  1670
        ]
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1671
    ].
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1672
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1673
    "done - the last process finished"
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1674
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1675
    self exit
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1676
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1677
    "Created: 18.7.1996 / 21:07:39 / cg"
1650
b4b36961d1bc Add StartBlocks and ImageStartBlocks.
Stefan Vogel <sv@exept.de>
parents: 1647
diff changeset
  1678
    "Modified: 9.9.1996 / 17:42:50 / stefan"
2535
2484285b227d setup a terminating Display I/O error handler.
Claus Gittinger <cg@exept.de>
parents: 2523
diff changeset
  1679
    "Modified: 11.4.1997 / 13:39:06 / cg"
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1680
!
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1681
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1682
readEvalPrint
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1683
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  1684
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1685
    "simple read-eval-print loop for non-graphical Minitalk"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1686
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1687
    |text|
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1688
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1689
    'ST- ' print.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1690
    Stdin skipSeparators.
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1691
    Stdin atEnd ifFalse:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1692
        text := Stdin nextChunk.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1693
        [text notNil] whileTrue:[
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1694
	    AbortSignal handle:[:ex |
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1695
		'evaluation aborted' printCR
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1696
	    ] do:[
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1697
                (Compiler evaluate:text) printCR.
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1698
	    ].
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1699
            'ST- ' print.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1700
            text := Stdin nextChunk
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  1701
        ].
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1702
    ].
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  1703
    '' printCR
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1704
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  1705
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1706
restart
24
20cfbafcd0a3 *** empty log message ***
claus
parents: 13
diff changeset
  1707
    "startup after an image has been loaded;
10
claus
parents: 8
diff changeset
  1708
     there are three change-notifications made to dependents of ObjectMemory,
claus
parents: 8
diff changeset
  1709
     which allow a stepwise re-init: #earlyRestart, #restarted and #returnFromSnapshot.
335
claus
parents: 329
diff changeset
  1710
10
claus
parents: 8
diff changeset
  1711
     #earlyRestart is send first, nothing has been setup yet.
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1712
                   (should be used to flush all device dependent entries)
335
claus
parents: 329
diff changeset
  1713
10
claus
parents: 8
diff changeset
  1714
     #restarted is send right after.
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1715
                   (should be used to recreate external resources (fds, bitmaps etc)
335
claus
parents: 329
diff changeset
  1716
10
claus
parents: 8
diff changeset
  1717
     #returnFromSnapshot is sent last
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1718
                   (should be used to restart processes, reOpen Streams which cannot
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1719
                    be automatically be reopened (i.e. Sockets, Pipes) and so on.
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1720
                   (Notice that positionable fileStreams are already reopened and repositioned)
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1721
     "
10
claus
parents: 8
diff changeset
  1722
1581
9f5bc5da5514 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1580
diff changeset
  1723
    |deb insp idx|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1724
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1725
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1726
    "/ when we arrive here, all objects from our previous life
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1727
    "/ have been reloaded - however, these contain invalid device
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1728
    "/ handles, display information etc.
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1729
    "/ also, dynamically loaded modules have not yet been reloaded.
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1730
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1731
    Initializing := true.
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  1732
    ImageRestartTime := AbsoluteTime now.
335
claus
parents: 329
diff changeset
  1733
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  1734
    CommandLine := CommandLineArguments copy.
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  1735
    CommandLineArguments := CommandLineArguments asOrderedCollection.
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  1736
    CommandLineArguments removeAtIndex:1. "/ the command
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  1737
1582
0823160f6b38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  1738
    idx := CommandLineArguments indexOf:'-q'.
0823160f6b38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  1739
    idx ~~ 0 ifTrue:[
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1740
        Object infoPrinting:false.
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1741
        ObjectMemory infoPrinting:false.
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1742
        CommandLineArguments removeAtIndex:idx.
1582
0823160f6b38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  1743
    ].
0823160f6b38 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1581
diff changeset
  1744
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1745
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1746
    "/ invalidate the display connection.
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1747
    "/ This is required to avoid trouble if someone accesses
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1748
    "/ the Display during early startup.
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1749
684
3e0b5a8ec381 invalidate display connection during early startup
Claus Gittinger <cg@exept.de>
parents: 680
diff changeset
  1750
    Display notNil ifTrue:[
2535
2484285b227d setup a terminating Display I/O error handler.
Claus Gittinger <cg@exept.de>
parents: 2523
diff changeset
  1751
        Display class allScreens do:[:aDisplay |
2484285b227d setup a terminating Display I/O error handler.
Claus Gittinger <cg@exept.de>
parents: 2523
diff changeset
  1752
            aDisplay invalidateConnection
2484285b227d setup a terminating Display I/O error handler.
Claus Gittinger <cg@exept.de>
parents: 2523
diff changeset
  1753
        ].
684
3e0b5a8ec381 invalidate display connection during early startup
Claus Gittinger <cg@exept.de>
parents: 680
diff changeset
  1754
    ].
3e0b5a8ec381 invalidate display connection during early startup
Claus Gittinger <cg@exept.de>
parents: 680
diff changeset
  1755
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1756
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1757
    "/ start catching SIGSEGV and SIGBUS
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1758
684
3e0b5a8ec381 invalidate display connection during early startup
Claus Gittinger <cg@exept.de>
parents: 680
diff changeset
  1759
    OperatingSystem enableHardSignalInterrupts.
3e0b5a8ec381 invalidate display connection during early startup
Claus Gittinger <cg@exept.de>
parents: 680
diff changeset
  1760
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1761
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1762
    "/ 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
  1763
329
claus
parents: 326
diff changeset
  1764
    self flushPathCaches.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1765
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1766
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1767
    "/ 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
  1768
    "/ 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
  1769
477
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
  1770
    self reinitStandardStreams.
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 457
diff changeset
  1771
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1772
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1773
    "/ temporary switch back to dumb interface - 
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1774
    "/ to handle errors while view-stuff is not yet reinitialized"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1775
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1776
    insp := Inspector.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1777
    deb := Debugger.
684
3e0b5a8ec381 invalidate display connection during early startup
Claus Gittinger <cg@exept.de>
parents: 680
diff changeset
  1778
    deb notNil ifTrue:[
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1779
        deb reinitialize
684
3e0b5a8ec381 invalidate display connection during early startup
Claus Gittinger <cg@exept.de>
parents: 680
diff changeset
  1780
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1781
    Inspector := MiniInspector.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1782
    Debugger := MiniDebugger.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1783
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1784
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1785
    "/ 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
  1786
    "/ 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
  1787
    "/ 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
  1788
    "/ this code.
335
claus
parents: 329
diff changeset
  1789
1100
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  1790
    ObjectFileLoader notNil ifTrue:[
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1791
        ObjectFileLoader reloadAllRememberedObjectFiles.
1100
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  1792
    ].
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  1793
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1794
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1795
    "/ reinitialize the Processor - restartable processes
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1796
    "/ are now prepared to restart, when the dispatch starts.
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1797
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1798
    Processor reinitialize.
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1799
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1800
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1801
    "/ 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
  1802
    "/ (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
  1803
7
bf6f603119df final release before Dispatcher
claus
parents: 5
diff changeset
  1804
    ObjectMemory changed:#earlyRestart.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1805
    ObjectMemory changed:#restarted.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1806
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1807
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1808
    "/ some class must be reinitialized before all others ...
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1809
    "/ - sorry, but order is important
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1810
    "/
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  1811
    Workstation notNil ifTrue:[
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1812
        Workstation reinitialize.
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  1813
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1814
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1815
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1816
    "/ start catching SIGINT and SIGQUIT
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1817
684
3e0b5a8ec381 invalidate display connection during early startup
Claus Gittinger <cg@exept.de>
parents: 680
diff changeset
  1818
    OperatingSystem enableUserInterrupts.
3e0b5a8ec381 invalidate display connection during early startup
Claus Gittinger <cg@exept.de>
parents: 680
diff changeset
  1819
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1820
    "/
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1821
    "/ done later now - when display connection is working
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1822
    "/
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1823
"/    "/
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1824
"/    "/ the final late notification - users can now assume that
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1825
"/    "/ views, forms etc. have been recreated.
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1826
"/
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1827
"/    ObjectMemory changed:#returnFromSnapshot.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1828
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1829
    "/ now, display and view-stuff works;
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1830
    "/ back to the previous debugging interface
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1831
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1832
    Inspector := insp.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1833
    Debugger := deb.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1834
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1835
    Initializing := false.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1836
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1837
    "/
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1838
    "/ if there is no Transcript, go to stderr
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1839
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1840
    Transcript isNil ifTrue:[
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1841
        Transcript := Stderr
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1842
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1843
1455
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1844
    "/ 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
  1845
    "/ 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
  1846
    "/ -fastStart argument.
970b79688f56 reload object modules earlier - some comments what is going on in #restart
Claus Gittinger <cg@exept.de>
parents: 1451
diff changeset
  1847
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  1848
    idx := CommandLineArguments indexOf:'-faststart'.
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  1849
    idx ~~ 0 ifTrue:[
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1850
        CommandLineArguments removeAtIndex:idx.
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  1851
    ] ifFalse:[
2249
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1852
        Class withoutUpdatingChangesDo:[
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1853
            (self fileIn:(self commandName , '_r.rc')) ifFalse:[
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1854
                "no _r.rc file where executable is; try default smalltalk_r.rc"
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1855
                self fileIn:'smalltalk_r.rc'
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1856
            ].
cdb6c87f0707 send returnFromSnapshot notification later -
Claus Gittinger <cg@exept.de>
parents: 2212
diff changeset
  1857
        ]
7
bf6f603119df final release before Dispatcher
claus
parents: 5
diff changeset
  1858
    ].
bf6f603119df final release before Dispatcher
claus
parents: 5
diff changeset
  1859
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1860
    self mainStartup:true
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1861
2535
2484285b227d setup a terminating Display I/O error handler.
Claus Gittinger <cg@exept.de>
parents: 2523
diff changeset
  1862
    "Modified: 11.4.1997 / 13:40:28 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1863
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1864
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1865
start
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1866
    "main startup, if there is a Display, initialize it
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1867
     and start dispatching; otherwise go into a read-eval-print loop."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1868
2075
85e8e9cfebd3 allow standAlone apps to be mini-debugged with '-debug' flag
Claus Gittinger <cg@exept.de>
parents: 2074
diff changeset
  1869
    |idx graphicalMode arg debuggingStandAlone|
960
e3b75f50d0cd changes for standAlone operation
Claus Gittinger <cg@exept.de>
parents: 948
diff changeset
  1870
e3b75f50d0cd changes for standAlone operation
Claus Gittinger <cg@exept.de>
parents: 948
diff changeset
  1871
    graphicalMode := true.
2075
85e8e9cfebd3 allow standAlone apps to be mini-debugged with '-debug' flag
Claus Gittinger <cg@exept.de>
parents: 2074
diff changeset
  1872
    debuggingStandAlone := false.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1873
    Initializing := true.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1874
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  1875
    CommandLine := CommandLineArguments copy.
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  1876
    CommandLineArguments := CommandLineArguments asOrderedCollection.
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  1877
    CommandLineArguments removeAtIndex:1. "/ the command
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  1878
963
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  1879
    "/
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  1880
    "/ turn off info messages in standAlone app
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  1881
    "/
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  1882
    StandAlone ifTrue:[
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1883
        InfoPrinting := false.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1884
        ObjectMemory infoPrinting:false.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1885
        idx := CommandLineArguments indexOf:'-debug'.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1886
        idx ~~ 0 ifTrue:[
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1887
            CommandLineArguments removeAtIndex:idx.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1888
            debuggingStandAlone := true
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1889
        ]
963
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  1890
    ].
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  1891
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1892
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1893
     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
  1894
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1895
    Class withoutUpdatingChangesDo:[
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1896
        |myName defaultRC|
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1897
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1898
        "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1899
        "/ look for any '-q', '-e' or '-f' command line arguments
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1900
        "/ and handle them;
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1901
        "/ read startup and patches file
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1902
        "/
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1903
        idx := CommandLineArguments indexOf:'-q'.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1904
        idx ~~ 0 ifTrue:[
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1905
            Object infoPrinting:false.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1906
            ObjectMemory infoPrinting:false.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1907
            CommandLineArguments removeAtIndex:idx.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1908
        ].
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1909
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1910
        StandAlone ifFalse:[
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1911
            "/ look for a '-e filename' argument - this will force evaluation of
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1912
            "/ filename only, no standard startup
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1913
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1914
            idx := CommandLineArguments indexOf:'-e'.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1915
            idx ~~ 0 ifTrue:[
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1916
                arg := CommandLineArguments at:idx + 1.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1917
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1918
                CommandLineArguments removeAtIndex:idx+1.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1919
                CommandLineArguments removeAtIndex:idx.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1920
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1921
                arg = '-' ifTrue:[
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1922
                    self fileInStream:Stdin
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1923
                           lazy:nil
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1924
                           silent:nil
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1925
                           logged:false
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1926
                           addPath:nil
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1927
                ] ifFalse:[
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1928
                    self fileIn:arg.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1929
                ].
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1930
                self exit
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1931
            ].
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1932
        ].
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1933
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1934
        "/ if there is a <command>.pch, that patches file is read.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1935
        "/ otherwise, look for a patches file.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1936
        "/ BUT: the patches file is not read in StandAlone operation
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1937
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1938
        myName := self commandName.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1939
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1940
        "/ look for a '-f filename' argument - this will force evaluation of
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1941
        "/ filename instead of smalltalk.rc
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1942
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1943
        idx := CommandLineArguments indexOf:'-f'.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1944
        idx ~~ 0 ifTrue:[
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1945
            myName := (CommandLineArguments at:idx + 1).
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1946
            CommandLineArguments removeAtIndex:idx+1.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1947
            CommandLineArguments removeAtIndex:idx.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1948
        ].
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1949
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1950
        (self secureFileIn:(myName , '.pch')) ifFalse:[
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1951
            StandAlone ifFalse:[
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1952
                self secureFileIn:'patches'.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1953
            ].
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1954
        ].
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1955
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1956
        "/ then look for <command>.rc
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1957
        "/ if not found, read smalltalk.rc (or stxapp.rc for standAlone operation)
935
4317f75fa478 dont allow setting the loadBinaries flag, if there is no ObjectFileLoader
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  1958
        
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1959
        (self secureFileIn:(myName , '.rc')) ifFalse:[
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1960
            StandAlone ifFalse:[
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1961
                defaultRC := 'smalltalk.rc'
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1962
            ] ifTrue:[
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1963
                defaultRC := 'stxapp.rc'
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1964
            ].
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1965
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1966
            "/ no .rc file where executable is; try default smalltalk.rc (or stxapp.rc)
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1967
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1968
            (self secureFileIn:defaultRC) ifFalse:[
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1969
                StandAlone ifFalse:[
2127
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
  1970
                    'Smalltalk [warning]: no startup rc-file found. Going into line-by-line interpreter.' infoPrintCR.
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1971
                    graphicalMode := false.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1972
                ]
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1973
            ]
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1974
        ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1975
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1976
963
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  1977
    StandAlone ifTrue:[
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1978
        Debugger := Inspector := nil.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1979
        debuggingStandAlone ifTrue:[
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1980
            Debugger := MiniDebugger.
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1981
        ].
963
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  1982
    ] ifFalse:[
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1983
        "
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1984
         enable the graphical debugger/inspector 
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1985
         (they could have been (re)defined as autoloaded in the patches file)
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1986
        "
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1987
        self initStandardTools.
963
fef0f2ed2709 more for standAlone (nonGraphical) mode
Claus Gittinger <cg@exept.de>
parents: 962
diff changeset
  1988
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  1989
2074
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  1990
    Display isNil ifTrue:[
2090
42653edf4cc5 added hook for 2nd stage initialization
Claus Gittinger <cg@exept.de>
parents: 2089
diff changeset
  1991
        graphicalMode := false.
2074
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  1992
    ].
01f7e1396c18 fixed standalone startup (broke when startupblocks where invented ...)
Claus Gittinger <cg@exept.de>
parents: 2050
diff changeset
  1993
1578
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1994
    self mainStartup:graphicalMode
9df8cc1ec5c4 start & restart actions merged into a common method.
Claus Gittinger <cg@exept.de>
parents: 1573
diff changeset
  1995
2127
84a9ab84c94c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2123
diff changeset
  1996
    "Modified: 10.1.1997 / 17:24:37 / cg"
1097
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1997
! !
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  1998
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  1999
!Smalltalk class methodsFor:'startup queries'!
1097
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2000
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2001
commandLine
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2002
    "return the full command line arguments (with which ST/X was started)"
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2003
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2004
    ^ CommandLine
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2005
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2006
    "Created: 19.7.1996 / 11:09:06 / cg"
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2007
!
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2008
1097
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2009
commandLineArguments
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2010
    "return the user command line arguments;
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2011
     This is a collection of strings (separated command line words),
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2012
     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
  2013
     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
  2014
     the commandLineArguments will be #('foo' 'bar' 'baz').
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2015
     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
  2016
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2017
    ^ CommandLineArguments
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2018
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2019
    "Modified: 19.7.1996 / 11:11:03 / cg"
1097
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2020
!
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2021
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2022
commandName
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2023
    "return the excutables name - this is normally 'smalltalk', but
1580
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2024
     can be something else for standAlone apps."
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2025
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2026
    ^ CommandLine at:1.
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2027
fa0156475cc2 remove internal args from the CommandLineArguments.
Claus Gittinger <cg@exept.de>
parents: 1578
diff changeset
  2028
    "Modified: 19.7.1996 / 11:11:16 / cg"
1097
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2029
!
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2030
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2031
isStandAloneApp
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2032
    "return true, if this is a standAlone application
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2033
     (in contrast to a full smalltalk system)."
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2034
14711c00f386 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1095
diff changeset
  2035
    ^ StandAlone
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2036
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2037
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2038
startupArguments
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2039
    "return the arguments passed to StartupClass"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2040
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2041
    ^ StartupArguments
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2042
!
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2043
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2044
startupClass
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2045
    "return the class, that will get the start message when smalltalk
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2046
     starts and its non-nil. Usually this is nil, but saving an image 
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2047
     with a non-nil StartupClass allows stand-alone applications"
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2048
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2049
    ^ StartupClass
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2050
!
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2051
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2052
startupClass:aClass selector:aSymbol arguments:anArrayOrNil
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  2053
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  2054
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2055
    "set the class, selector and arguments to be performed when smalltalk
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2056
     starts. Setting those before saving a snapshot, will make the saved
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2057
     image come up executing your application (instead of the normal mainloop)"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2058
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2059
    StartupClass := aClass.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2060
    StartupSelector := aSymbol.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2061
    StartupArguments := anArrayOrNil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2062
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2063
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2064
startupSelector
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2065
    "return the selector, that will be sent to StartupClass"
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2066
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2067
    ^ StartupSelector
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2068
! !
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2069
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  2070
!Smalltalk class methodsFor:'system environment'!
1069
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  2071
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  2072
language
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  2073
    "return the language setting"
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  2074
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  2075
    ^ Language
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2076
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2077
    "
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2078
     Smalltalk language
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2079
    "
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2080
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2081
    "Modified: 26.4.1996 / 17:10:05 / cg"
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2082
!
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2083
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2084
language:aLanguageSymbol
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2085
    "set the language"
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2086
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2087
    Language := aLanguageSymbol.
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2088
    self changed:#Language
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2089
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2090
    "
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2091
     Smalltalk language:#de
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2092
    "
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2093
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2094
    "Modified: 26.4.1996 / 17:13:34 / cg"
1069
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  2095
!
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  2096
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  2097
languageTerritory
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  2098
    "return the language territory setting"
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  2099
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  2100
    ^ LanguageTerritory
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2101
!
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2102
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2103
languageTerritory:aTerritorySymbol
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2104
    "set the language territory"
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2105
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2106
    LanguageTerritory := aTerritorySymbol.
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2107
    self changed:#LanguageTerritory
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2108
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2109
    "
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2110
     Time now
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2111
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2112
     Smalltalk languageTerritory:#us.
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2113
     Time now
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2114
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2115
     Smalltalk languageTerritory:#de.
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2116
     Time now    
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2117
    "
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2118
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  2119
    "Modified: 26.4.1996 / 17:12:39 / cg"
1069
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  2120
! !
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  2121
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  2122
!Smalltalk class methodsFor:'system management'!
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2123
457
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  2124
bitmapFileStreamFor:aFileName
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  2125
    "search aFileName in some standard places;
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  2126
     return a readonly fileStream or nil if not found.
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  2127
     Searches in subdirectories named 'bitmaps' in SystemPath"
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  2128
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  2129
    |aString|
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  2130
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  2131
    aString := self getBitmapFileName:aFileName.
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  2132
    aString notNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2133
        ^ FileStream readonlyFileNamed:aString
457
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  2134
    ].
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  2135
    ^ nil
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  2136
!
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  2137
2
claus
parents: 1
diff changeset
  2138
classNameForFile:aFileName
10
claus
parents: 8
diff changeset
  2139
    "return the className which corresponds to an abbreviated fileName,
736
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2140
     or nil if no special translation applies. The given filename arg may
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2141
     include a '.st' suffix (but no other)."
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2142
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2143
    |fn|
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2144
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2145
    (aFileName endsWith:'.st') ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2146
        fn := aFileName copyWithoutLast:3
736
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2147
    ] ifFalse:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2148
        fn := aFileName
736
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2149
    ].
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2150
    ^ self filenameAbbreviations keyAtEqualValue:fn ifAbsent:[fn].
2
claus
parents: 1
diff changeset
  2151
329
claus
parents: 326
diff changeset
  2152
    "
736
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2153
     Smalltalk classNameForFile:'DrawObj'  
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2154
     Smalltalk classNameForFile:'DrawObj.st' 
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2155
     Smalltalk classNameForFile:'ArrColl.st' 
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2156
     Smalltalk classNameForFile:'ArrColl.chg' 
329
claus
parents: 326
diff changeset
  2157
    "
736
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2158
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2159
    "Modified: 11.12.1995 / 14:51:10 / cg"
2
claus
parents: 1
diff changeset
  2160
!
claus
parents: 1
diff changeset
  2161
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2162
compressSources
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  2163
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  2164
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2165
    "compress the sources file, and remove all method source strings
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2166
     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
  2167
     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
  2168
     since we use per-class sourcefiles for the compiled classes,
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2169
     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
  2170
     incremental compiled methods.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2171
     Therefore, only those sources which are not coming from compiled
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2172
     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
  2173
     This is being automated - so dont care for now."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2174
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2175
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2176
     first, find all methods which contain either a string-ref
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2177
     or an external string in the 'st.src' file
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2178
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2179
    |newStream table source pos fileName|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2180
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2181
    newStream := 'src.tmp' asFilename writeStream.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2182
    newStream isNil ifTrue:[
2176
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2183
        self error:'cannot create new temporary source file'.
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2184
        ^ self
457
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  2185
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2186
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2187
    table := IdentityDictionary new:100.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2188
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2189
    Method allSubInstancesDo:[:aMethod |
2176
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2190
        source := nil.
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2191
        aMethod sourcePosition notNil ifTrue:[
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2192
            aMethod sourceFilename = 'st.src' ifTrue:[
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2193
                source := aMethod source.
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2194
            ]
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2195
        ] ifFalse:[
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2196
            source := aMethod source
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2197
        ].
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2198
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2199
        source notNil ifTrue:[
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2200
            pos := newStream position.
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2201
            newStream nextChunkPut:source.
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2202
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2203
            "
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2204
             dont change the methods info - maybe some write error
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2205
             occurs later, in that case we abort and leave everything
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2206
             untouched.
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2207
            "
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2208
            table at:aMethod put:pos
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2209
        ]
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2210
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2211
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2212
    newStream close.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2213
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2214
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2215
     now, rename the new source file,
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2216
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2217
    fileName := (ObjectMemory nameForSources).
1693
1dbf6a20c15e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  2218
    'src.tmp' asFilename renameTo:fileName.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2219
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2220
    "good - now go over all changed methods, and change their
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2221
     source reference"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2222
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2223
    table keysAndValuesDo:[:aMethod :pos |
2176
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2224
        aMethod localSourceFilename:fileName position:pos.
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  2225
"/        aMethod printCR.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2226
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2227
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2228
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2229
     Smalltalk compressSources
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2230
    "
1693
1dbf6a20c15e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1688
diff changeset
  2231
2176
1a24b0cef25a when compressing sources, make certain to avoid later
Claus Gittinger <cg@exept.de>
parents: 2170
diff changeset
  2232
    "Modified: 16.1.1997 / 01:25:58 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2233
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2234
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2235
constructPathFor:aDirectoryName
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2236
    "search for aDirectory in SystemPath"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2237
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2238
    ^ self realSystemPath select:[:dirName |
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2239
        OperatingSystem isDirectory:(dirName , '/' , aDirectoryName)
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2240
    ].
457
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  2241
!
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  2242
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2243
fileInChanges
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2244
    "read in the last changes file - bringing the system to the state it
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2245
     had when left the last time.
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2246
     WARNING: this method is rubbish: it should only read things after the
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2247
              last '**snapshot**' - entry 
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2248
              (instead of the complete changes file)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2249
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2250
    "
400
claus
parents: 396
diff changeset
  2251
     do NOT update the changes file now ...
70
73055652dd21 *** empty log message ***
claus
parents: 62
diff changeset
  2252
    "
400
claus
parents: 396
diff changeset
  2253
    self fileIn:'changes' logged:false
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2254
77
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  2255
    "
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  2256
     Smalltalk fileInChanges 
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  2257
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2258
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2259
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2260
fileInFileStreamFor:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2261
    "search aFileName in some standard places;
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2262
     return a readonly fileStream or nil if not found.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2263
     Searches in subdirectories named 'fileIn' in SystemPath"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2264
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2265
    |aString|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2266
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2267
    aString := self getFileInFileName:aFileName.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2268
    aString notNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2269
        ^ FileStream readonlyFileNamed:aString
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2270
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2271
    ^ nil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2272
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2273
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2274
fileInStream:aStream lazy:lazy silent:silent logged:logged addPath:morePath
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2275
    "read sourceCode from aStream;
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2276
     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
  2277
     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
  2278
     are created which compile themself when first executed. This allows
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2279
     for much faster fileIn (but slows down the first execution later).
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2280
     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
  2281
     code which is known to be syntactically correct.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2282
     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
  2283
     Giving nil for silent/lazy will use the current settings.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2284
     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
  2285
     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
  2286
     using a relative path."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2287
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2288
    |wasLazy wasSilent oldSystemPath oldRealPath|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2289
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2290
    aStream isNil ifTrue:[^ false].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2291
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2292
    lazy notNil ifTrue:[wasLazy := Compiler compileLazy:lazy].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2293
    silent notNil ifTrue:[wasSilent := self silentLoading:silent].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2294
    [
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2295
        Class updateChangeFileQuerySignal answer:logged do:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2296
            oldSystemPath := SystemPath copy.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2297
            morePath notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2298
                SystemPath addFirst:morePath.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2299
                oldRealPath := RealSystemPath.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2300
                RealSystemPath := nil.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2301
            ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2302
            aStream fileIn
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2303
        ]
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2304
    ] valueNowOrOnUnwindDo:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2305
        morePath notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2306
            SystemPath := oldSystemPath.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2307
            RealSystemPath := oldRealPath.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2308
        ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2309
        lazy notNil ifTrue:[Compiler compileLazy:wasLazy]. 
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2310
        silent notNil ifTrue:[self silentLoading:wasSilent].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2311
        aStream close
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2312
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2313
    ^ true
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2314
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2315
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2316
     Smalltalk fileInStream:('source/TicTacToe.st' asFilename readStream) lazy:true silent:true
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2317
    "
1896
71760df55ce5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  2318
71760df55ce5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1850
diff changeset
  2319
    "Modified: 5.11.1996 / 20:03:35 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2320
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2321
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2322
fileNameForClass:aClassOrClassName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2323
    "return a good filename for aClassOrClassName -
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2324
     using the abbreviation file if there is one"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2325
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2326
    |fileName abbrev aClassName|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2327
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2328
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2329
    aClassOrClassName isBehavior ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2330
        aClassOrClassName isMeta ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2331
            aClassName := aClassOrClassName soleInstance name
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2332
        ] ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2333
            aClassName := aClassOrClassName name
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2334
        ]
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2335
    ] ifFalse:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2336
        aClassName := aClassOrClassName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2337
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2338
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2339
    fileName := aClassName asSymbol.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2340
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2341
    "first look, if the class exists and has a fileName"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2342
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2343
" later ... - compiler should put the source file name into the class
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2344
    (Symbol hasInterned:aClassName) ifTrue:[:sym |
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2345
        |class|
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2346
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2347
        (Smalltalk includesKey:sym) ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2348
            class := Smalltalk at:sym.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2349
            class isClass ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2350
                abbrev := class classFileName.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2351
            ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2352
        ]
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2353
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2354
"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2355
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2356
    "look for abbreviation"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2357
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2358
    abbrev := self filenameAbbreviations at:fileName ifAbsent:[nil].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2359
    abbrev notNil ifTrue:[^ abbrev].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2360
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2361
    "no abbreviation found - if its a short name, take it"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2362
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2363
    OperatingSystem maxFileNameLength < (fileName size + 3) ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2364
        "this will only be triggered on sys5.3/DOS type systems"
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2365
        self warn:'cant find short for ' , fileName , ' in abbreviation file'
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2366
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2367
    ^ fileName asString
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2368
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2369
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2370
     Smalltalk fileNameForClass:SmallInteger    
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2371
     Smalltalk fileNameForClass:'SmallInteger'    
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2372
     Smalltalk fileNameForClass:'OperatingSystem' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2373
     Smalltalk fileNameForClass:'SomeUnknownClass' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2374
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2375
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2376
    "Modified: 6.11.1995 / 15:37:33 / cg"
457
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  2377
!
41c73cbee305 change classes versionString when class changes (prepare for sourceCode system)
Claus Gittinger <cg@exept.de>
parents: 456
diff changeset
  2378
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2379
filenameAbbreviations
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2380
    "return a dictionary containing the classname-to-filename
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2381
     mappings. (needed for sys5.3 users, where filenames are limited
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2382
     to 14 chars)"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2383
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2384
    CachedAbbreviations isNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2385
        self readAbbreviations
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2386
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2387
    ^ CachedAbbreviations
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2388
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2389
    "flush with:
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2390
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2391
     CachedAbbreviations := nil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2392
    "
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
     Smalltalk filenameAbbreviations
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2395
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2396
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2397
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2398
flushPathCaches
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2399
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  2400
2378
e76870d427ee commentary
ca
parents: 2374
diff changeset
  2401
    "forget pathCaches - these are collections containing valid directory names,
e76870d427ee commentary
ca
parents: 2374
diff changeset
  2402
     where system files (resource, bitmaps etc.) are found.
e76870d427ee commentary
ca
parents: 2374
diff changeset
  2403
     A flush is only required, if a new system directory has been created while
e76870d427ee commentary
ca
parents: 2374
diff changeset
  2404
     the system is active, and those files should override the others
e76870d427ee commentary
ca
parents: 2374
diff changeset
  2405
     (for example, if you created a private resource directory)"
e76870d427ee commentary
ca
parents: 2374
diff changeset
  2406
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2407
    RealSystemPath := ResourcePath := SourcePath := BitmapPath := BinaryPath := FileInPath := nil
2378
e76870d427ee commentary
ca
parents: 2374
diff changeset
  2408
e76870d427ee commentary
ca
parents: 2374
diff changeset
  2409
    "
e76870d427ee commentary
ca
parents: 2374
diff changeset
  2410
     Smalltalk flushPathCaches
e76870d427ee commentary
ca
parents: 2374
diff changeset
  2411
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2412
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2413
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2414
getBinaryFileName:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2415
    "search aFileName in some standard places 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2416
     (subdirectories named 'binary' in SystemPath);
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2417
     return the absolute filename or nil if none is found."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2418
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2419
    BinaryPath isNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2420
        BinaryPath := self constructPathFor:'binary'
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
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2423
    ^ self searchPath:BinaryPath for:aFileName in:'binary'
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2424
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2425
    "Modified: 18.7.1996 / 15:53:49 / cg"
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2426
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  2427
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2428
getBitmapFileName:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2429
    "search aFileName in some standard places 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2430
     (subdirectories named 'bitmaps' in SystemPath);
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2431
     return the absolute filename or nil if none is found."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2432
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2433
    BitmapPath isNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2434
        BitmapPath := self constructPathFor:'bitmaps'
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2435
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2436
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2437
    ^ self searchPath:BitmapPath for:aFileName in:'bitmaps' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2438
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2439
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2440
     Smalltalk getBitmapFileName:'SBrowser.xbm'
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2441
    "
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2442
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2443
    "Modified: 18.7.1996 / 15:53:55 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2444
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2445
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2446
getFileInFileName:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2447
    "search aFileName in some standard places 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2448
     (subdirectories named 'fileIn' in SystemPath);
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2449
     return the absolute filename or nil if none is found."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2450
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2451
    FileInPath isNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2452
        FileInPath := self constructPathFor:'fileIn'
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2453
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2454
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2455
    ^ self searchPath:FileInPath for:aFileName in:'fileIn'
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2456
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2457
    "Modified: 18.7.1996 / 15:53:59 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2458
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2459
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2460
getResourceFileName:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2461
    "search aFileName in some standard places 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2462
     (subdirectories named 'resource' in SystemPath);
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2463
     return the absolute filename or nil if none is found."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2464
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2465
    ResourcePath isNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2466
        ResourcePath := self constructPathFor:'resources'
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2467
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2468
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2469
    ^ self searchPath:ResourcePath for:aFileName in:'resources' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2470
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2471
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2472
     Smalltalk getResourceFileName:'SBrowser.rs'
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2473
    "
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2474
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2475
    "Modified: 18.7.1996 / 15:54:03 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2476
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2477
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2478
getSourceFileName:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2479
    "search aFileName in some standard places 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2480
     (subdirectories named 'source' in SystemPath);
736
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2481
     return the absolute filename or nil if none is found.
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2482
     This is used to find a sourceFile for a methods source,
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2483
     if no sourceCodeManager is available."
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2484
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2485
    SourcePath isNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2486
        SourcePath := self constructPathFor:'source'
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2487
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2488
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2489
    ^ self searchPath:SourcePath for:aFileName in:'source' 
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  2490
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  2491
    "
736
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2492
     Smalltalk getSourceFileName:'Smalltalk.st'  
9129846af5ca *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 732
diff changeset
  2493
     Smalltalk getSourceFileName:'ArrColl.st' 
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  2494
    "
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2495
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2496
    "Modified: 18.7.1996 / 15:54:07 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2497
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2498
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2499
getSystemFileName:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2500
    "search aFileName in some standard places;
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2501
     return the absolute filename or nil if none is found.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2502
     see comment in Smalltalk>>initSystemPath."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2503
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2504
    "credits for this method go to Markus ...."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2505
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2506
    (aFileName startsWith:'/') ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2507
        "dont use path for absolute file names"
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2508
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2509
        ^ aFileName
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  2510
    ].
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  2511
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2512
    self realSystemPath do:[:dirName |
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2513
        |realName|
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2514
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2515
        realName := dirName , '/' , aFileName.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2516
        (OperatingSystem isReadable:realName) ifTrue: [
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2517
            ^ realName
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2518
        ]
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  2519
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2520
    ^ nil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2521
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2522
2169
780726f7a16c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  2523
installAutoloadedClasses
780726f7a16c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  2524
    "read the standard abbreviation file; install all classes found there as
780726f7a16c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  2525
     autoloaded. This takes some time ..."
780726f7a16c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  2526
780726f7a16c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  2527
    self installAutoloadedClassesFrom:'include/abbrev.stc'
780726f7a16c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  2528
780726f7a16c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  2529
    "
780726f7a16c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  2530
     Smalltalk installAutoloadedClasses
780726f7a16c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  2531
    "
780726f7a16c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  2532
780726f7a16c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  2533
    "Modified: 10.1.1997 / 15:10:48 / cg"
780726f7a16c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  2534
    "Created: 14.2.1997 / 17:32:57 / cg"
780726f7a16c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  2535
!
780726f7a16c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  2536
1625
0ef643b30394 install autoloaded classes is now a method in Smalltalk
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
  2537
installAutoloadedClassesFrom:anAbbrevFilePath
2169
780726f7a16c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2159
diff changeset
  2538
    "read the given abbreviation file; install all classes found there as
1911
fc4b431f174d commentary
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  2539
     autoloaded. This takes some time ..."
fc4b431f174d commentary
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  2540
1625
0ef643b30394 install autoloaded classes is now a method in Smalltalk
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
  2541
    |f s s2 l clsName abbrev package cat rev cls|
0ef643b30394 install autoloaded classes is now a method in Smalltalk
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
  2542
0ef643b30394 install autoloaded classes is now a method in Smalltalk
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
  2543
    f := self getSystemFileName:anAbbrevFilePath.
1911
fc4b431f174d commentary
Claus Gittinger <cg@exept.de>
parents: 1906
diff changeset
  2544
1625
0ef643b30394 install autoloaded classes is now a method in Smalltalk
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
  2545
    f notNil ifTrue:[
2123
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2546
        s := f asFilename readStream.
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2547
        s notNil ifTrue:[
2374
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2548
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2549
            "/ yes, create any required nameSpace, without asking user.
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2550
            Class createNameSpaceQuerySignal answer:true do:[
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2551
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2552
                [s atEnd] whileFalse:[
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2553
                    l := s nextLine withoutSeparators.
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2554
                    l notEmpty ifTrue:[
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2555
                        s2 := l readStream.
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2556
                        clsName := (s2 upTo:Character space) withoutSeparators asSymbol.
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2557
                        (self at:clsName) isNil ifTrue:[
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2558
                            s2 skipSeparators.
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2559
                            abbrev := (s2 upTo:Character space) withoutSeparators asSymbol.
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2560
                            s2 skipSeparators.
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2561
                            package := (s2 upTo:Character space) withoutSeparators asSymbol.
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2562
                            s2 skipSeparators.
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2563
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2564
                            rev := nil.    
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2565
                            s2 skipSeparators.
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2566
                            s2 atEnd ifFalse:[
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2567
                                s2 peek isDigit ifTrue:[
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2568
                                    rev := (s2 upTo:Character space) withoutSeparators.
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2569
                                    s2 skipSeparators.
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2570
                                ]
2170
391748705b60 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2169
diff changeset
  2571
                            ].
2374
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2572
                            cat := s2 upToEnd withoutSeparators.
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2573
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2574
                            (cat startsWith:$') ifTrue:[
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2575
                                cat := (cat copyFrom:2 to:(cat size - 1)) withoutSeparators.
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2576
                            ].
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2577
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2578
                            (cat isNil or:[cat isEmpty]) ifTrue:[
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2579
                                cat := 'autoloaded'
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2580
                            ].
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2581
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  2582
                            "/ '  autoloaded: ' print. clsName print. ' in ' print. cat printCR.
2374
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2583
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2584
                            "/ install if not already compiled-in
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2585
                            Autoload subclass:clsName
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2586
                                instanceVariableNames:''
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2587
                                classVariableNames:''
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2588
                                poolDictionaries:''
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2589
                                category:cat
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2590
                                inEnvironment:Smalltalk.
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2591
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2592
                            cls := self at:clsName.
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2593
                            cls isNil ifTrue:[
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2594
                                ('Smalltalk [warning]: failed to add ' , clsName , ' as autoloaded.') infoPrintCR.
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2595
                            ] ifFalse:[
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2596
                                cls package:package asSymbol.
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2597
                                rev notNil ifTrue:[
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2598
                                    cls setBinaryRevision:rev
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2599
                                ]
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2600
                            ]    
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2601
                        ]
2123
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2602
                    ]
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2603
                ]
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2604
            ].
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2605
            s close.
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2606
        ].
1625
0ef643b30394 install autoloaded classes is now a method in Smalltalk
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
  2607
    ]
0ef643b30394 install autoloaded classes is now a method in Smalltalk
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
  2608
0ef643b30394 install autoloaded classes is now a method in Smalltalk
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
  2609
    "
0ef643b30394 install autoloaded classes is now a method in Smalltalk
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
  2610
     Smalltalk installAutoloadedClassesFrom:'include/abbrev.stc'
0ef643b30394 install autoloaded classes is now a method in Smalltalk
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
  2611
    "
0ef643b30394 install autoloaded classes is now a method in Smalltalk
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
  2612
2374
3d30b4d51e1f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2367
diff changeset
  2613
    "Modified: 10.2.1997 / 12:22:44 / cg"
1625
0ef643b30394 install autoloaded classes is now a method in Smalltalk
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
  2614
!
0ef643b30394 install autoloaded classes is now a method in Smalltalk
Claus Gittinger <cg@exept.de>
parents: 1620
diff changeset
  2615
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2616
libraryFileNameOfClass:aClassOrClassName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2617
    "for a given class, return the name of a classLibrary which contains
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2618
     binary code for it.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2619
     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
  2620
     for an entry for aClassOrClassName.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2621
     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
  2622
     the 2nd col.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2623
     Return nil if no entry is found.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2624
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2625
     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
  2626
     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
  2627
     Otherwise, the returned name is the classLibrary object of that class.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2628
     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
  2629
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2630
    |aStream line words n aClassName|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2631
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2632
    aClassOrClassName isBehavior ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2633
        aClassName := aClassOrClassName name
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2634
    ] ifFalse:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2635
        aClassName := aClassOrClassName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2636
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2637
    aClassName := aClassName asString.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2638
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2639
    #('include/liblist.stc')    "/ filenames
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2640
    with:#(2)                   "/ column
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2641
    do:[:fileName :col |
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2642
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2643
        aStream := self systemFileStreamFor:fileName.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2644
        aStream notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2645
            [aStream atEnd] whileFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2646
                line := aStream nextLine.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2647
                line notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2648
                    (line startsWith:'#') ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2649
                        words := line asCollectionOfWords.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2650
                        (n := words size) > 1 ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2651
                            (words at:1) = aClassName ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2652
                                n >= col ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2653
                                    aStream close.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2654
                                    ^ (words at:col) withoutSeparators
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2655
                                ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2656
                            ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2657
                        ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2658
                    ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2659
                ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2660
            ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2661
            aStream close
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2662
        ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2663
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2664
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2665
    ^ nil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2666
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2667
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2668
     Smalltalk libraryFileNameOfClass:'ClockView' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2669
     Smalltalk libraryFileNameOfClass:'Bag' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2670
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2671
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2672
    "Modified: 6.11.1995 / 15:41:39 / cg"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2673
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2674
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2675
loadBinaries
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2676
    "return true, if binaries should be loaded into the system,
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2677
     false if this should be suppressed. The default is false (for now)."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2678
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2679
    ^ LoadBinaries
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2680
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2681
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2682
loadBinaries:aBoolean
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2683
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  2684
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2685
    "turn on/off loading of binary objects"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2686
935
4317f75fa478 dont allow setting the loadBinaries flag, if there is no ObjectFileLoader
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2687
    aBoolean ifTrue:[
2123
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2688
        (ObjectFileLoader notNil and:[ObjectFileLoader canLoadObjectFiles]) ifTrue:[
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2689
            LoadBinaries := true.
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2690
            ^ self
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2691
        ].
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2692
        'Smalltalk [info]: this system does not support binary loading' infoPrintCR.
935
4317f75fa478 dont allow setting the loadBinaries flag, if there is no ObjectFileLoader
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2693
    ].
4317f75fa478 dont allow setting the loadBinaries flag, if there is no ObjectFileLoader
Claus Gittinger <cg@exept.de>
parents: 908
diff changeset
  2694
    LoadBinaries := false
2123
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2695
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2696
    "Modified: 10.1.1997 / 15:11:00 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2697
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2698
1850
37c85a045d5b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  2699
loadClassLibraryIfAbsent:name
37c85a045d5b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  2700
    "dynamically load a classLibrary, if not already loaded
37c85a045d5b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  2701
     and the system supports dynamic loading.
1956
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
  2702
     Return true, if the library is loaded, false if not.
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
  2703
     This entry is called without system specific filename
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
  2704
     extensions - it is portable among different architectures
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
  2705
     as long as corresponding files (x.so / x.dll / x.sl / x.o) 
4eed0b627d52 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1955
diff changeset
  2706
     are be present ..."
1850
37c85a045d5b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  2707
37c85a045d5b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  2708
    ObjectMemory 
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2709
        binaryModuleInfo 
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2710
            do:[:entry | 
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2711
                   entry type == #classLibrary ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2712
                       entry libraryName = name ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2713
                          ^ true        "/ already loaded
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2714
                       ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2715
                   ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2716
               ].
1850
37c85a045d5b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  2717
37c85a045d5b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  2718
    ^ self fileInClassLibrary:name
37c85a045d5b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  2719
37c85a045d5b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  2720
    "
37c85a045d5b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  2721
     Smalltalk loadClassLibraryIfAbsent:'libbasic'
37c85a045d5b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  2722
     Smalltalk loadClassLibraryIfAbsent:'libwidg3'
37c85a045d5b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  2723
    "
37c85a045d5b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  2724
37c85a045d5b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  2725
    "Modified: 31.10.1996 / 16:57:24 / cg"
37c85a045d5b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  2726
!
37c85a045d5b checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1847
diff changeset
  2727
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2728
logDoits
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2729
    "return true if doits should go into the changes file
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2730
     as well as changes - by default, this is off, since
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2731
     it can blow up the changes file enormously ...
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2732
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2733
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2734
    ^ LogDoits
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2735
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2736
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2737
     LogDoits := false
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2738
     LogDoits := true
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2739
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2740
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2741
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2742
logDoits:aBoolean
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2743
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  2744
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2745
    "turn on/off logging of doits in the changes file.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2746
     By default, this is off, since it can blow up the 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2747
     changes file enormously ...
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2748
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2749
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2750
    LogDoits := aBoolean
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2751
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2752
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2753
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2754
readAbbreviations
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2755
    "read classname to filename mappings from include/abbrev.stc.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2756
     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
  2757
1131
c12018d50e2d more checks for abbreviation conflicts
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
  2758
    |abbrevs aStream line words nm abbrev key oldAbbrev cls|
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2759
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2760
    CachedAbbreviations := abbrevs := IdentityDictionary new.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2761
    aStream := self systemFileStreamFor:'include/abbrev.stc'.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2762
    aStream notNil ifTrue:[
2123
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2763
        [aStream atEnd] whileFalse:[
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2764
            line := aStream nextLine.
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2765
            line notNil ifTrue:[
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2766
                (line startsWith:'#') ifFalse:[
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2767
                    words := line asCollectionOfWords.
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2768
                    words size >= 2 ifTrue:[
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2769
                        nm := (words at:1) withoutSeparators.
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2770
                        abbrev := (words at:2) withoutSeparators.
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2771
                        nm ~= abbrev ifTrue:[
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2772
                            key := nm asSymbol.    
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2773
                            oldAbbrev := abbrevs at:key ifAbsent:nil.
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2774
                            oldAbbrev notNil ifTrue:[
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2775
                                oldAbbrev ~= abbrev ifTrue:[
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2776
                                    StandAlone ifFalse:[
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2777
                                        ('Smalltalk [warning]: conflict for: ' , nm , ' in abbrev.stc (' , oldAbbrev , ' <-> ' , abbrev , ')') infoPrintCR
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2778
                                    ]
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2779
                                ].
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2780
                            ] ifFalse:[
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2781
                                cls := self classNamed:abbrev.
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2782
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2783
                                cls notNil ifTrue:[
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2784
                                    cls name ~= nm ifTrue:[
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2785
                                        "/ ok, there is a class named after this abbrev ...
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2786
                                        "/ this is only a conflict, if the other class has no
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2787
                                        "/ abbreviation (or the same).
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2788
                                        (abbrevs at:(cls name asSymbol) ifAbsent:cls name) = abbrev ifTrue:[
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2789
                                            cls isNamespace ifFalse:[
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2790
                                                StandAlone ifFalse:[
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2791
                                                    ('Smalltalk [warning]: conflict for: ' , cls name , ' in abbrev.stc (' , nm , ' -> ' , abbrev , ')') infoPrintCR
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2792
                                                ]
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2793
                                            ]
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2794
                                        ]
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2795
                                    ]
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2796
                                ].
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2797
                                abbrevs at:nm asSymbol put:abbrev.
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2798
                            ]
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2799
                        ]
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2800
                    ]
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2801
                ]
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2802
            ]
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2803
        ].
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2804
        aStream close
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2805
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2806
    ^ abbrevs
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  2807
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  2808
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2809
     Smalltalk readAbbreviations
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  2810
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2811
2123
6f9cb1ed9db5 new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 2090
diff changeset
  2812
    "Modified: 10.1.1997 / 15:11:28 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2813
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2814
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2815
realSystemPath
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2816
    "return the realSystemPath - thats the directorynames from
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2817
     SystemPath which exist and are readable"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2818
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2819
    RealSystemPath isNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2820
        RealSystemPath := SystemPath select:[:dirName |
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2821
            (OperatingSystem isDirectory:dirName)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2822
            and:[OperatingSystem isReadable:dirName]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2823
        ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2824
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2825
    ^ RealSystemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2826
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2827
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2828
resourceFileStreamFor:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2829
    "search aFileName in some standard places;
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2830
     return a readonly fileStream or nil if not found.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2831
     Searches in subdirectories named 'resource' in SystemPath"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2832
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2833
    |aString|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2834
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2835
    aString := self getResourceFileName:aFileName.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2836
    aString notNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2837
        ^ FileStream readonlyFileNamed:aString
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2838
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2839
    ^ nil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2840
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2841
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2842
searchPath:aPath for:aFileName in:aDirName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2843
    "search aPath for a subdirectory named aDirectory with a file
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2844
     named aFileName"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2845
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2846
    ((aFileName startsWith:'/') 
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2847
    or:[(aFileName startsWith:'./')
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2848
    or:[(aFileName startsWith:'../')]]) ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2849
        "/
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2850
        "/ dont use path for absolute or explicit .-relative file names
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2851
        "/
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2852
        ^ aFileName
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2853
    ].
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2854
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2855
    aPath do:[:dirName |
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2856
        |realName|
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2857
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2858
        (OperatingSystem isReadable:(realName := dirName , '/' , aDirName , '/' , aFileName)) ifTrue: [
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2859
            ^ realName
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2860
        ]
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2861
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2862
    ^ nil
1562
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2863
850a88ecff97 searchPath: dont use it, if fileName starts with "./" or "../"
Claus Gittinger <cg@exept.de>
parents: 1553
diff changeset
  2864
    "Modified: 18.7.1996 / 15:53:35 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2865
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2866
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2867
secureFileIn:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2868
    "read in the named file, looking for it at standard places.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2869
     Catch any error during fileIn. Return true if ok, false if failed"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2870
1114
ee7b97d3fa5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1100
diff changeset
  2871
    |retVal|
ee7b97d3fa5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1100
diff changeset
  2872
ee7b97d3fa5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1100
diff changeset
  2873
    retVal := false.
ee7b97d3fa5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1100
diff changeset
  2874
ee7b97d3fa5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1100
diff changeset
  2875
    (SignalSet with:AbortSignal with:Process terminateSignal)
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2876
        handle:[:ex |
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2877
            ex return
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2878
        ] do:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2879
            retVal := self fileIn:aFileName
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2880
        ].
1114
ee7b97d3fa5e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1100
diff changeset
  2881
    ^ retVal
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2882
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2883
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2884
silentFileIn:aFilename
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2885
    "same as fileIn:, but do not output 'compiled...'-messages on Transcript.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2886
     Main use is during startup."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2887
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2888
    |wasSilent|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2889
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2890
    wasSilent := self silentLoading:true.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2891
    [
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2892
        self fileIn:aFilename
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2893
    ] valueNowOrOnUnwindDo:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2894
        self silentLoading:wasSilent
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2895
    ]
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2896
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2897
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2898
sourceDirectoryNameOfClass:aClassOrClassName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2899
    "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
  2900
     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
  2901
     for an entry for aClassOrClassName.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2902
     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
  2903
     the 3rd col.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2904
     Return nil if no entry is found."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2905
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2906
    |aStream line words n aClassName|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2907
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2908
    aClassOrClassName isBehavior ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2909
        aClassName := aClassOrClassName name
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2910
    ] ifFalse:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2911
        aClassName := aClassOrClassName
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  2912
    ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2913
    aClassName := aClassName asString.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2914
728
50cf1c907c28 again search liblist for a classes source directory
Claus Gittinger <cg@exept.de>
parents: 713
diff changeset
  2915
    #('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
  2916
    with:#(3 2)                   "/ column
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2917
    do:[:fileName :col |
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2918
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2919
        aStream := self systemFileStreamFor:fileName.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2920
        aStream notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2921
            [aStream atEnd] whileFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2922
                line := aStream nextLine.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2923
                line notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2924
                    (line startsWith:'#') ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2925
                        words := line asCollectionOfWords.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2926
                        (n := words size) > 1 ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2927
                            (words at:1) = aClassName ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2928
                                n >= col ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2929
                                    aStream close.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2930
                                    ^ (words at:col) withoutSeparators
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2931
                                ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2932
                            ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2933
                        ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2934
                    ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2935
                ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2936
            ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2937
            aStream close
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2938
        ].
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2939
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2940
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2941
    ^ nil
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  2942
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  2943
    "
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2944
     Smalltalk sourceDirectoryNameOfClass:'ClockView' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2945
     Smalltalk sourceDirectoryNameOfClass:'Bag' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2946
     Smalltalk sourceDirectoryNameOfClass:'GLWireCubeDemoView' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2947
     Smalltalk sourceDirectoryNameOfClass:'SomeNonExistingClass' 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2948
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2949
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2950
    "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
  2951
    "Modified: 9.12.1995 / 23:54:14 / cg"
2033
c94698170f36 Close unused streams.
Stefan Vogel <sv@exept.de>
parents: 2029
diff changeset
  2952
    "Modified: 3.1.1997 / 11:26:44 / stefan"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2953
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2954
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2955
sourceFileStreamFor:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2956
    "search aFileName in some standard places;
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2957
     return a readonly fileStream or nil if not found.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2958
     Searches in subdirectories named 'source' in SystemPath"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2959
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2960
    |aString|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2961
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2962
    aString := self getSourceFileName:aFileName.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2963
    aString notNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2964
        ^ FileStream readonlyFileNamed:aString
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2965
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2966
    ^ nil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2967
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2968
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2969
systemFileStreamFor:aFileName
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2970
    "search aFileName in some standard places;
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2971
     return a readonly fileStream or nil if not found.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2972
     see comment in Smalltalk>>initSystemPath"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2973
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2974
    |aString|
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2975
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2976
    aString := self getSystemFileName:aFileName.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2977
    aString notNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  2978
        ^ FileStream readonlyFileNamed:aString
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2979
    ].
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2980
    ^ nil
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2981
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2982
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2983
systemPath
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2984
    "return a collection of directorynames, where smalltalk
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2985
     looks for system files 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2986
     (usually in subdirs such as resources, bitmaps, source etc.)
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2987
     see comment in Smalltalk>>initSystemPath."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2988
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2989
    ^ SystemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2990
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2991
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2992
     Smalltalk systemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2993
     Smalltalk systemPath addLast:'someOtherDirectoryPath'
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2994
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2995
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2996
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2997
systemPath:aPath
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  2998
    "set the collection of directorynames, where smalltalk
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  2999
     looks for system files 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3000
     (usually in subdirs such as resources, bitmaps, source etc.)
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3001
     see comment in Smalltalk>>initSystemPath."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3002
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3003
    SystemPath := aPath.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3004
    self flushPathCaches
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3005
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3006
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3007
     Smalltalk systemPath
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3008
     Smalltalk systemPath:(Smalltalk systemPath copy addLast:'someOtherDirectoryPath')
191
38d331e1e6b1 added compressSOurces
claus
parents: 162
diff changeset
  3009
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3010
! !
2
claus
parents: 1
diff changeset
  3011
2159
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3012
!Smalltalk class methodsFor:'system management-fileIn'!
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3013
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3014
fileIn:aFileName
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3015
    "read in the named file - look for it in some standard places;
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3016
     return true if ok, false if failed"
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3017
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3018
    ^ self fileIn:aFileName lazy:nil silent:nil logged:false 
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3019
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3020
    "
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3021
     Smalltalk fileIn:'source/TicTacToe.st'
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3022
    "
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3023
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3024
    "Created: 28.10.1995 / 17:06:28 / cg"
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3025
!
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3026
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3027
fileIn:aFileName lazy:lazy
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3028
    "read in the named file - look for it in some standard places;
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3029
     return true if ok, false if failed.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3030
     If lazy is true, no code is generated for methods, instead stubs
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3031
     are created which compile themself when first executed. This allows
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3032
     for much faster fileIn (but slows down the first execution later).
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3033
     Since no syntax checks are done when doing lazy fileIn, use this only for
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3034
     code which is known to be syntactically correct."
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3035
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3036
    ^ self fileIn:aFileName lazy:lazy silent:nil logged:false 
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3037
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3038
    "
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3039
     Smalltalk fileIn:'source/TicTacToe.st' lazy:true
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3040
    "
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3041
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3042
    "Created: 28.10.1995 / 17:06:36 / cg"
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3043
!
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3044
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3045
fileIn:aFileName lazy:lazy silent:silent
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3046
    "read in the named file - look for it in some standard places;
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3047
     return true if ok, false if failed.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3048
     If lazy is true, no code is generated for methods, instead stubs
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3049
     are created which compile themself when first executed. This allows
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3050
     for much faster fileIn (but slows down the first execution later).
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3051
     Since no syntax checks are done when doing lazy fileIn, use this only for
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3052
     code which is known to be syntactically correct.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3053
     If silent is true, no compiler messages are output to the transcript.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3054
     Giving nil for silent/lazy will use the current settings."
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3055
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3056
    ^ self fileIn:aFileName lazy:lazy silent:silent logged:false
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3057
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3058
    "Created: 28.10.1995 / 17:06:41 / cg"
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3059
!
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3060
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3061
fileIn:aFileName lazy:lazy silent:silent logged:logged
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3062
    "read in the named file - look for it in some standard places;
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3063
     return true if ok, false if failed.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3064
     If lazy is true, no code is generated for methods, instead stubs
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3065
     are created which compile themself when first executed. This allows
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3066
     for much faster fileIn (but slows down the first execution later).
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3067
     Since no syntax checks are done when doing lazy fileIn, use this only for
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3068
     code which is known to be syntactically correct.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3069
     If silent is true, no compiler messages are output to the transcript.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3070
     Giving nil for silent/lazy will use the current settings."
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3071
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3072
    |aStream path morePath bos|
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3073
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3074
    "
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3075
     an object or shared object ?
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3076
    "
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3077
    (ObjectFileLoader notNil
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3078
    and:[ObjectFileLoader hasValidBinaryExtension:aFileName]) ifTrue:[
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3079
        LoadBinaries ifFalse:[^ false].
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3080
        path := self getBinaryFileName:aFileName.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3081
        path isNil ifTrue:[^ false].
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3082
        ^ (ObjectFileLoader loadObjectFile:aFileName) notNil
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3083
    ].
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3084
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3085
    (aFileName endsWith:'.cls') ifTrue:[
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3086
        BinaryObjectStorage notNil ifTrue:[
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3087
            path := self getBinaryFileName:aFileName.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3088
            path isNil ifTrue:[^ false].
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3089
            aStream := path asFilename readStream.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3090
            aStream notNil ifTrue:[
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3091
                bos := BinaryObjectStorage onOld:aStream.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3092
                bos next.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3093
                bos close.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3094
                ^ true
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3095
            ].
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3096
            ^ false
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3097
        ]
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3098
    ].
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3099
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3100
    (aFileName startsWith:'source/') ifTrue:[
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3101
        aStream := self sourceFileStreamFor:(aFileName copyFrom:8)
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3102
    ] ifFalse:[
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3103
        (aFileName startsWith:'fileIn/') ifTrue:[
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3104
            aStream := self fileInFileStreamFor:(aFileName copyFrom:8)
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3105
        ] ifFalse:[
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3106
            aStream := self systemFileStreamFor:aFileName.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3107
            (aStream notNil and:[aFileName includes:$/]) ifTrue:[
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3108
                "/ temporarily prepend the files directory
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3109
                "/ to the searchPath.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3110
                "/ This allows fileIn-driver files to refer to local
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3111
                "/ files via a relative path, and drivers to fileIn other
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3112
                "/ drivers ...
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3113
                morePath := aStream pathName asFilename directoryName.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3114
            ]
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3115
        ]
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3116
    ].
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3117
    aStream isNil ifTrue:[^ false].
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3118
    ^ self fileInStream:aStream lazy:lazy silent:silent logged:logged addPath:morePath
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3119
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3120
    "
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3121
     Smalltalk fileIn:'source/TicTacToe.st' lazy:true silent:true
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3122
    "
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3123
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3124
    "Modified: 8.1.1997 / 17:58:31 / cg"
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3125
!
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3126
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3127
fileIn:aFileName logged:logged
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3128
    "read in the named file - look for it in some standard places;
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3129
     return true if ok, false if failed.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3130
     The argument logged controls, if the changefile is to be updated."
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3131
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3132
    ^ self fileIn:aFileName lazy:nil silent:nil logged:logged 
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3133
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3134
    "
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3135
     Smalltalk fileIn:'source/TicTacToe.st' logged:false
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3136
    "
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3137
!
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3138
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3139
fileInClass:aClassName
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3140
    "find a source/object file for aClassName and -if found - load it.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3141
     search is in some standard places trying driver-file (.ld), object-file (.o) and 
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3142
     finally source file (.st) in that order.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3143
     The file is first searched for using the class name, then the abbreviated name."
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3144
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3145
    ^ self fileInClass:aClassName initialize:true lazy:false silent:nil
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3146
!
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3147
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3148
fileInClass:aClassName fromObject:aFileName
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3149
    "read in the named object file and dynamic-link it into the system
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3150
     - look for it in some standard places.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3151
     Only install the named class from this object file.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3152
     Return true if ok, false if failed."
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3153
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3154
    |path ok|
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3155
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3156
    "
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3157
     check if the dynamic loader class is in
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3158
    "
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3159
    (LoadBinaries not or:[ObjectFileLoader isNil]) ifTrue:[^ false].
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3160
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3161
    (path := self getBinaryFileName:aFileName) isNil ifTrue:[^ false].
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3162
    ok := (ObjectFileLoader loadClass:aClassName fromObjectFile:path) notNil.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3163
    ok ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3164
        SilentLoading ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3165
            Transcript show:'  loaded ' , aClassName , ' from ' ; showCR:aFileName.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3166
        ]
2159
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3167
    ].
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3168
    ^ ok
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3169
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3170
    "
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3171
     Smalltalk fileInClass:'AbstractPath' fromObject:'../../goodies/Paths/AbstrPath.so' 
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3172
     Smalltalk fileInClass:'ClockView' fromObject:'../../libwidg3/libwidg3.so' 
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3173
    "
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3174
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3175
    "Modified: 10.9.1996 / 20:43:52 / cg"
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3176
!
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3177
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3178
fileInClass:aClassName initialize:doInit
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3179
    "find a source/object file for aClassName and -if found - load it.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3180
     search is in some standard places trying driver-file (.ld), object-file (.o) and 
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3181
     finally source file (.st) in that order.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3182
     The file is first searched for using the class name, then the abbreviated name."
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3183
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3184
    ^ self fileInClass:aClassName initialize:doInit lazy:false silent:nil
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3185
!
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3186
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3187
fileInClass:aClassName initialize:doInit lazy:loadLazy
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3188
    "find a source/object file for aClassName and -if found - load it.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3189
     search is in some standard places trying driver-file (.ld), object-file (.o) and 
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3190
     finally source file (.st) in that order.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3191
     The file is first searched for using the class name, then the abbreviated name."
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3192
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3193
     ^ self fileInClass:aClassName initialize:doInit lazy:loadLazy silent:nil
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3194
!
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3195
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3196
fileInClass:aClassName initialize:doInit lazy:loadLazy silent:beSilent 
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3197
    "find a source/object file for aClassName and -if found - load it.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3198
     This is the workhorse for autoloading.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3199
     Search is in some standard places, trying driver-file (.ld), object-file (.so / .o) and 
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3200
     finally source file (.st), in that order.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3201
     The file is first searched for using the class name, then the abbreviated name.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3202
     The argument doInit controlls if the class should be sent a #initialize after the
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3203
     load; loadLazy tells if it should be loaded lazyly. beSilent tells if the compiler
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3204
     should not send notes to the transcript; it can be true, false or nil, where
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3205
     nil uses the value from SilentLoading."
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3206
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3207
    |shortName libName newClass ok wasLazy wasSilent sharedLibExtension inStream mgr fn|
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3208
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3209
    wasLazy := Compiler compileLazy:loadLazy.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3210
    beSilent notNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3211
        wasSilent := self silentLoading:beSilent.
2159
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3212
    ].
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3213
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3214
    [
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3215
        Class withoutUpdatingChangesDo:
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3216
        [
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3217
            ok := false.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3218
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3219
            shortName := self fileNameForClass:aClassName.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3220
            "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3221
             first, look for a loader-driver file (in fileIn/xxx.ld)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3222
            "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3223
            (ok := self fileIn:('fileIn/' , shortName , '.ld') lazy:loadLazy silent:beSilent)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3224
            ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3225
                "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3226
                 try abbreviated driver-file (in fileIn/xxx.ld)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3227
                "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3228
                shortName ~= aClassName ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3229
                    ok := self fileIn:('fileIn/' , aClassName , '.ld') lazy:loadLazy silent:beSilent
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3230
                ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3231
                ok ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3232
                    "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3233
                     then, if dynamic linking is available, 
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3234
                    "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3235
                    (LoadBinaries and:[ObjectFileLoader notNil]) ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3236
                        sharedLibExtension := ObjectFileLoader sharedLibraryExtension.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3237
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3238
                        "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3239
                         first look for a class packages shared binary in binary/xxx.o
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3240
                        "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3241
                        libName := self libraryFileNameOfClass:aClassName.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3242
                        libName notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3243
                            (ok := self fileInClass:aClassName fromObject:(libName, sharedLibExtension))
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3244
                            ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3245
                                sharedLibExtension ~= '.o' ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3246
                                    ok := self fileInClass:aClassName fromObject:(libName, '.o')
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3247
                                ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3248
                            ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3249
                        ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3250
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3251
                        "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3252
                         then, look for a shared binary in binary/xxx.o
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3253
                        "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3254
                        ok ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3255
                            (ok := self fileInClass:aClassName fromObject:(shortName, sharedLibExtension))
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3256
                            ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3257
                                sharedLibExtension ~= '.o' ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3258
                                    ok := self fileInClass:aClassName fromObject:(shortName, '.o')
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3259
                                ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3260
                                ok ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3261
                                    shortName ~= aClassName ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3262
                                        (ok := self fileInClass:aClassName fromObject:(aClassName, sharedLibExtension))
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3263
                                        ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3264
                                            sharedLibExtension ~= '.o' ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3265
                                                ok := self fileInClass:aClassName fromObject:(aClassName, '.o')
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3266
                                            ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3267
                                        ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3268
                                    ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3269
                                ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3270
                            ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3271
                        ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3272
                    ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3273
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3274
                    "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3275
                     if that did not work, look for a compiled-bytecode file ...
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3276
                    "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3277
                    ok ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3278
                        (ok := self fileIn:(shortName , '.cls') lazy:loadLazy silent:beSilent)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3279
                        ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3280
                            shortName ~= aClassName ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3281
                                ok := self fileIn:(aClassName , '.cls') lazy:loadLazy silent:beSilent
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3282
                            ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3283
                        ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3284
                    ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3285
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3286
                    "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3287
                     if that did not work, look for an st-source file ...
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3288
                    "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3289
                    ok ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3290
                        fn := shortName , '.st'.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3291
                        (ok := self fileIn:fn lazy:loadLazy silent:beSilent)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3292
                        ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3293
                            shortName ~= aClassName ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3294
                                fn := aClassName , '.st'.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3295
                                ok := self fileIn:fn lazy:loadLazy silent:beSilent
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3296
                            ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3297
                            ok ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3298
                                "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3299
                                 ... and in the standard source-directory
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3300
                                "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3301
                                fn := 'source/' , shortName , '.st'.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3302
                                (ok := self fileIn:fn lazy:loadLazy silent:beSilent)
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3303
                                ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3304
                                    shortName ~= aClassName ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3305
                                        fn := 'source/' , aClassName , '.st'.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3306
                                        ok := self fileIn:fn lazy:loadLazy silent:beSilent
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3307
                                    ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3308
                                ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3309
                            ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3310
                        ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3311
                        ok ifFalse:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3312
                            "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3313
                             new: if there is a sourceCodeManager, ask it for the classes sourceCode
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3314
                            "
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3315
                            (mgr := Smalltalk at:#SourceCodeManager) notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3316
                                inStream := mgr getMostRecentSourceStreamForClassNamed:aClassName.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3317
                                inStream notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3318
                                    fn := nil.
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3319
                                    ok := self fileInStream:inStream lazy:loadLazy silent:beSilent logged:false addPath:nil. 
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3320
                                ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3321
                            ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3322
                        ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3323
                    ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3324
                ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3325
            ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3326
        ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3327
        ok ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3328
            newClass := self at:(aClassName asSymbol).
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3329
            newClass notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3330
                fn notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3331
                    newClass classFilename isNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3332
                        newClass setClassFilename:fn
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3333
                    ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3334
                ].
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3335
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3336
                doInit ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3337
                    newClass initialize
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3338
                ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3339
            ]
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3340
        ].
2159
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3341
    ] valueNowOrOnUnwindDo:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3342
        Compiler compileLazy:wasLazy. 
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3343
        wasSilent notNil ifTrue:[
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3344
            self silentLoading:wasSilent
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3345
        ]
2159
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3346
    ].
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3347
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3348
    ^ newClass
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3349
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3350
    "Modified: 11.11.1996 / 09:56:39 / cg"
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3351
!
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3352
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3353
fileInClassLibrary:aClassLibraryName
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3354
    "find an object file containing a binary class library in some standard places
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3355
     and load it. This install all of its contained classes.
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3356
     Return true if ok, false if not."
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3357
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3358
    ObjectFileLoader isNil ifTrue:[^ false].
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3359
    ^ (ObjectFileLoader 
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3360
            loadObjectFile:(aClassLibraryName , (ObjectFileLoader sharedLibraryExtension))
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3361
      ) notNil
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3362
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3363
    "
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3364
     Smalltalk fileInClassLibrary:'libtable'
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3365
     Smalltalk fileInClassLibrary:'binary/libwidg3'
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3366
    "
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3367
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3368
    "Modified: 8.1.1997 / 17:58:56 / cg"
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3369
! !
b9255998a855 category changes
Claus Gittinger <cg@exept.de>
parents: 2127
diff changeset
  3370
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  3371
!Smalltalk class methodsFor:'time-versions'!
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3372
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3373
configuration
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3374
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  3375
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3376
    "for developers only: return the configuration, with which
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3377
     this smalltalk was compiled."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3378
567
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  3379
%{  /* NOCONTEXT */
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3380
    extern char *__getConfigurationString();
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3381
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3382
    RETURN (__MKSTRING(__getConfigurationString() COMMA_SND));
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3383
%}
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3384
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3385
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3386
     Smalltalk configuration
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3387
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3388
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3389
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3390
copyrightString
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3391
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  3392
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3393
    "return a copyright string"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3394
567
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  3395
%{  /* NOCONTEXT */
829
fc386319f41c removed external function defs (soon no longer allowed)
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  3396
#ifndef __getCopyrightString
fc386319f41c removed external function defs (soon no longer allowed)
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  3397
    extern OBJ __getCopyrightString();
568
f5754db15abf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
  3398
#endif
f5754db15abf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
  3399
829
fc386319f41c removed external function defs (soon no longer allowed)
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  3400
    RETURN (__getCopyrightString());
567
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  3401
%}
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3402
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3403
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3404
     Smalltalk copyrightString
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3405
    "
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3406
!
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3407
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3408
distributorString
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3409
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  3410
567
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  3411
    "return a string describing the distributor of this software"
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  3412
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  3413
%{  /* NOCONTEXT */
829
fc386319f41c removed external function defs (soon no longer allowed)
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  3414
#ifndef __getDistributorString
fc386319f41c removed external function defs (soon no longer allowed)
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  3415
    extern OBJ __getDistributorString();
568
f5754db15abf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
  3416
#endif
f5754db15abf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 567
diff changeset
  3417
829
fc386319f41c removed external function defs (soon no longer allowed)
Claus Gittinger <cg@exept.de>
parents: 822
diff changeset
  3418
    RETURN (__getDistributorString());
567
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  3419
%}
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  3420
    "
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  3421
     Smalltalk distributorString
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  3422
    "
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  3423
!
da2f1b829453 added distributor string
Claus Gittinger <cg@exept.de>
parents: 544
diff changeset
  3424
1645
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3425
expirationTime
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3426
    "{ Pragma: +optSpace }"
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3427
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3428
    "for developers only: return the time when the system will expire.
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3429
     after this time it will not run any longer.
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3430
     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
  3431
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3432
    |exp|
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3433
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3434
%{  
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3435
    extern unsigned int __getExpirationTime();
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3436
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3437
    exp = __MKUINT(__getExpirationTime());
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3438
%}.
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3439
    exp == 0 ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3440
        ^ nil
1645
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3441
    ].
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3442
    ^ AbsoluteTime new fromOSTime:(exp * 1000). "OSTime is ms since 1970"
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3443
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3444
    "
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3445
     Smalltalk expirationTime
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3446
    "
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3447
!
fad0db6bebe2 New method: #expirationTime
Stefan Vogel <sv@exept.de>
parents: 1625
diff changeset
  3448
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3449
hello
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3450
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  3451
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3452
    "return a greeting string"
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3454
    "stupid: this should come from a resource file ...
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3455
     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
  3456
     Resource-stuff."
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3457
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3458
    |proto lang|
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3459
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3460
    lang := Language.
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3461
    (lang == #german or:[lang == #de]) ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3462
        proto := 'Willkommen bei %1 - Version %2 vom %3'
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3463
    ].
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3464
    (lang == #french or:[lang == #fr]) ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3465
        proto := 'Bienvenue à %1 - version %2 de %3'
2
claus
parents: 1
diff changeset
  3466
    ].
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3467
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3468
    "/ ... more needed here ...
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3469
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3470
    proto isNil ifTrue:[
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3471
        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
  3472
    ].
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3473
1412
7c0326f67a03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1410
diff changeset
  3474
    ^ proto bindWith:(Text string:'SmallTalk/X' emphasis:#bold)
2379
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3475
                with:(self versionString) 
ce467f2b5591 oops - empty strings cannot be completed
ca
parents: 2378
diff changeset
  3476
                with:(self versionDate)
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3477
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3478
    "
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3479
     Smalltalk language:#us.   
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3480
     Smalltalk hello     
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3481
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3482
     Smalltalk language:#de.   
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3483
     Smalltalk hello  
1412
7c0326f67a03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1410
diff changeset
  3484
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1419
diff changeset
  3485
     Transcript showCR:(Smalltalk hello)
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1419
diff changeset
  3486
     Stdout showCR:(Smalltalk hello)
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3487
    "
1307
cefe1b5d7cc1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1299
diff changeset
  3488
1412
7c0326f67a03 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1410
diff changeset
  3489
    "Modified: 18.5.1996 / 14:25:13 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3490
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3491
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3492
imageRestartTime
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3493
    "return a timestamp for the moment when this image was restarted.
1069
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3494
     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
  3495
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3496
    ^ ImageRestartTime
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3497
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3498
    "
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3499
     Smalltalk imageStartTime
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3500
     Smalltalk imageRestartTime
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3501
    "
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3502
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3503
    "Created: 13.12.1995 / 17:44:20 / cg"
1069
72db6bd8ce0a category changes
Claus Gittinger <cg@exept.de>
parents: 1004
diff changeset
  3504
    "Modified: 6.3.1996 / 11:56:35 / cg"
745
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3505
!
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3506
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3507
imageSaveTime
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3508
    "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
  3509
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  3510
    ^ ObjectMemory imageSaveTime
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  3511
!
eebf3ed54b23 reloadAllObjectFiles now called explicit (its too late via ObjMem changed)
Claus Gittinger <cg@exept.de>
parents: 1097
diff changeset
  3512
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3513
imageStartTime
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3514
    "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
  3515
     (i.e. the first initial start without an image)"
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3516
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3517
    ^ ImageStartTime
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3518
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3519
    "
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3520
     Smalltalk imageStartTime
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3521
     Smalltalk imageRestartTime
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3522
    "
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3523
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3524
    "Created: 13.12.1995 / 17:44:14 / cg"
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3525
    "Modified: 13.12.1995 / 17:45:47 / cg"
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3526
!
d16f199a1551 added imageStart & restart timestamps
Claus Gittinger <cg@exept.de>
parents: 736
diff changeset
  3527
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3528
majorVersionNr
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3529
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  3530
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3531
    "return the major version number.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3532
     This is only incremented for very fundamental changes,
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3533
     which make old object files totally incompatible
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3534
     (for example, if the layout/representation of fundamental
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3535
      classes changes)."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3536
1941
51332fe23542 bumped version to 3 (I guess, nameSpaces are a major step)
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3537
    ^ 3
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3538
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3539
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3540
     Smalltalk majorVersionNr
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3541
    "
1941
51332fe23542 bumped version to 3 (I guess, nameSpaces are a major step)
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3542
51332fe23542 bumped version to 3 (I guess, nameSpaces are a major step)
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3543
    "Modified: 8.11.1996 / 19:59:21 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3544
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3545
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3546
minorVersionNr
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3547
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  3548
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3549
    "return the minor version number.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3550
     This is incremented for changes which make some old object
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3551
     files incompatible, or the protocol changes such that some
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3552
     classes need rework."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3553
1941
51332fe23542 bumped version to 3 (I guess, nameSpaces are a major step)
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3554
    ^ 1
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3555
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3556
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3557
     Smalltalk minorVersionNr
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3558
    "
1941
51332fe23542 bumped version to 3 (I guess, nameSpaces are a major step)
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3559
2050
a0e9052cb198 bumped version - nameSpaces seem to be usable
Claus Gittinger <cg@exept.de>
parents: 2033
diff changeset
  3560
    "Modified: 4.1.1997 / 12:22:14 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3561
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3562
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3563
releaseIdentification
1552
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  3564
    "{ Pragma: +optSpace }"
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  3565
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  3566
    "for developers only: return the release 
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  3567
     (to further identify the version in case of errors)"
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  3568
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  3569
%{  /* NOCONTEXT */
1553
983c16ee1aab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
  3570
    extern OBJ __getRel();
983c16ee1aab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
  3571
983c16ee1aab *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1552
diff changeset
  3572
    RETURN (__getRel());
1552
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  3573
%}
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  3574
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  3575
    "
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  3576
     Smalltalk releaseIdentification
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  3577
    "
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  3578
!
58af83d72fd2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1551
diff changeset
  3579
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3580
releaseNr
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3581
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  3582
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3583
    "return the revision number.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3584
     Incremented for releases which fix bugs/add features but did not find
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3585
     their way to the outside world."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3586
1696
1f9146ddfe01 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1693
diff changeset
  3587
    ^ 1
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3588
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3589
    " 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3590
     Smalltalk releaseNr 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3591
    "
732
29a49feab799 release bump - that seems to be a good one
Claus Gittinger <cg@exept.de>
parents: 728
diff changeset
  3592
29a49feab799 release bump - that seems to be a good one
Claus Gittinger <cg@exept.de>
parents: 728
diff changeset
  3593
    "Created: 10.12.1995 / 01:42:19 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3594
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3595
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3596
revisionNr
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3597
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  3598
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3599
    "return the revision number.
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3600
     Incremented for releases which fix bugs/add features
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3601
     and represent a stable workable version which got published
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3602
     to the outside world."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3603
2546
5900d37bf004 bumped revisionNr (new delivery)
Claus Gittinger <cg@exept.de>
parents: 2535
diff changeset
  3604
    ^ 6
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3605
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3606
    " 
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3607
     Smalltalk revisionNr
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3608
    "
1941
51332fe23542 bumped version to 3 (I guess, nameSpaces are a major step)
Claus Gittinger <cg@exept.de>
parents: 1917
diff changeset
  3609
2317
ff8b15c81a16 bumped version - thats a good one (I hope)
Claus Gittinger <cg@exept.de>
parents: 2270
diff changeset
  3610
    "Modified: 29.1.1997 / 22:12:42 / cg"
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3611
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3612
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3613
timeStamp
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3614
    "return a string useful for timestamping a file.
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3615
     The returned string is padded with spaces for a constant
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3616
     length (to avoid changing a files size in fileOut with unchanged
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3617
     class)."
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3618
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3619
    ^ ('''From Smalltalk/X, Version:' , (Smalltalk versionString) , ' on '
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3620
       , Date today printString , ' at ' , Time now printString
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3621
       , '''') paddedTo:80 with:(Character space)
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3622
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3623
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3624
versionDate
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3625
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  3626
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3627
    "return the executables build date - thats the date when the smalltalk
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3628
     executable was built"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3629
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3630
%{  /* NOCONTEXT */
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3631
    extern char *__getBuildDateString();
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3632
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3633
    RETURN (__MKSTRING(__getBuildDateString() COMMA_SND) );
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3634
%}
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3635
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3636
     Smalltalk versionDate
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3637
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3638
!
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3639
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3640
versionString
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3641
    "{ Pragma: +optSpace }"
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1114
diff changeset
  3642
617
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3643
    "return the version string"
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3644
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3645
    ^ (self majorVersionNr printString ,
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3646
       '.',
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3647
       self minorVersionNr printString ,
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3648
       '.',
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3649
       self revisionNr printString)
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3650
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3651
    "
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3652
     Smalltalk versionString
427245e28240 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 597
diff changeset
  3653
    "
2
claus
parents: 1
diff changeset
  3654
! !
453
57381f377c3f fix logged-arg (was nil)
Claus Gittinger <cg@exept.de>
parents: 452
diff changeset
  3655
1750
36ff7e62388a care for privateClasses in remove
Claus Gittinger <cg@exept.de>
parents: 1713
diff changeset
  3656
!Smalltalk class methodsFor:'documentation'!
630
b785d23d7c5b version at the end
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
  3657
1568
2ed24cca3dac oops -checked in corrupt version
Claus Gittinger <cg@exept.de>
parents: 1567
diff changeset
  3658
version
2588
090cf1da8036 handle abort signal in readEvalPrint loop
Claus Gittinger <cg@exept.de>
parents: 2572
diff changeset
  3659
    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.237 1997-04-26 13:07:23 cg Exp $'
630
b785d23d7c5b version at the end
Claus Gittinger <cg@exept.de>
parents: 617
diff changeset
  3660
! !