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