SharedPool.st
author Stefan Vogel <sv@exept.de>
Fri, 03 Aug 2012 17:52:47 +0200
changeset 14284 da05376dea2d
parent 14049 7f32280587a8
child 15633 d08f9fa63cc2
child 18011 deb0c3355881
permissions -rw-r--r--
Implement #displayOn: instead of #displayString
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8728
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
     1
"
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
     2
 COPYRIGHT (c) 2004 by eXept Software AG
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
     3
              All Rights Reserved
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
     4
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
     5
 This software is furnished under a license and may be used
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
     6
 only in accordance with the terms of that license and with the
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
     8
 be provided or otherwise made available to, or used by, any
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
     9
 other person.  No title to or ownership of the software is
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    10
 hereby transferred.
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    11
"
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
68e006f46d87 initial checkin
ca
parents:
diff changeset
    13
68e006f46d87 initial checkin
ca
parents:
diff changeset
    14
Object subclass:#SharedPool
68e006f46d87 initial checkin
ca
parents:
diff changeset
    15
	instanceVariableNames:''
68e006f46d87 initial checkin
ca
parents:
diff changeset
    16
	classVariableNames:''
68e006f46d87 initial checkin
ca
parents:
diff changeset
    17
	poolDictionaries:''
68e006f46d87 initial checkin
ca
parents:
diff changeset
    18
	category:'Kernel-Classes'
68e006f46d87 initial checkin
ca
parents:
diff changeset
    19
!
68e006f46d87 initial checkin
ca
parents:
diff changeset
    20
68e006f46d87 initial checkin
ca
parents:
diff changeset
    21
!SharedPool class methodsFor:'documentation'!
68e006f46d87 initial checkin
ca
parents:
diff changeset
    22
8728
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    23
copyright
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    24
"
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    25
 COPYRIGHT (c) 2004 by eXept Software AG
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    26
              All Rights Reserved
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    27
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    28
 This software is furnished under a license and may be used
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    29
 only in accordance with the terms of that license and with the
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    31
 be provided or otherwise made available to, or used by, any
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    32
 other person.  No title to or ownership of the software is
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    33
 hereby transferred.
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    34
"
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    35
!
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    36
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
    37
documentation
68e006f46d87 initial checkin
ca
parents:
diff changeset
    38
"
68e006f46d87 initial checkin
ca
parents:
diff changeset
    39
    A shared pool represents a set of bindings which are accessible to all classes
68e006f46d87 initial checkin
ca
parents:
diff changeset
    40
    which import the pool in its 'pool dictionaries'.
68e006f46d87 initial checkin
ca
parents:
diff changeset
    41
    SharedPool is NOT a dictionary but rather a name space.
68e006f46d87 initial checkin
ca
parents:
diff changeset
    42
    Bindings are represented by 'class variables' - as long as we have no better way to represent
12220
c26b8b402a71 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 12169
diff changeset
    43
    them at least. This is done to make stc happy (or at least, to not be forced to adapt it
c26b8b402a71 changed: #documentation
Claus Gittinger <cg@exept.de>
parents: 12169
diff changeset
    44
    to any new semantics).
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
    45
"
68e006f46d87 initial checkin
ca
parents:
diff changeset
    46
! !
68e006f46d87 initial checkin
ca
parents:
diff changeset
    47
13682
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    48
!SharedPool class methodsFor:'Compatibility-Squeak'!
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    49
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    50
bindingOf: varName
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    51
    "Answer the binding of some variable resolved in the scope of the receiver"
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    52
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    53
    | aSymbol binding |
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    54
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    55
    "/ self shouldImplement.       "not yet finished"
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    56
    aSymbol := varName asSymbol.
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    57
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    58
    "First look in classVar dictionary."
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    59
    binding := self classPool bindingOf: aSymbol.
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    60
    binding notNil ifTrue:[^binding].
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    61
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    62
    "Next look in shared pools."
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    63
    self sharedPools do:[:pool |
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    64
        binding := pool bindingOf: aSymbol.
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    65
        binding notNil ifTrue:[^binding].
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    66
    ].
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    67
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    68
    "subclassing and environment are not preserved"
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    69
    ^nil
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    70
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    71
    "Modified: / 12-09-2011 / 09:40:36 / cg"
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    72
!
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    73
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    74
bindingsDo: aBlock
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    75
    self classVarNames do:[:eachKey |
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    76
        aBlock value:(eachKey -> (self classVarAt:eachKey))
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    77
    ].
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    78
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    79
    "Modified: / 12-09-2011 / 09:42:00 / cg"
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    80
! !
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    81
9091
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    82
!SharedPool class methodsFor:'Compatibility-V''Age'!
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    83
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    84
declareConstant:constantName value:value
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    85
    self == SharedPool ifTrue:[ self error ].
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    86
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    87
    (self classVarNames includes:constantName) ifFalse:[
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    88
        self addClassVarName:constantName
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    89
    ].
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    90
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    91
    self classVarAt:constantName put:value.
13997
7aad3af21b76 added: #declareVariable:
Claus Gittinger <cg@exept.de>
parents: 13682
diff changeset
    92
!
7aad3af21b76 added: #declareVariable:
Claus Gittinger <cg@exept.de>
parents: 13682
diff changeset
    93
7aad3af21b76 added: #declareVariable:
Claus Gittinger <cg@exept.de>
parents: 13682
diff changeset
    94
declareVariable:varName
7aad3af21b76 added: #declareVariable:
Claus Gittinger <cg@exept.de>
parents: 13682
diff changeset
    95
    self == SharedPool ifTrue:[ self error ].
7aad3af21b76 added: #declareVariable:
Claus Gittinger <cg@exept.de>
parents: 13682
diff changeset
    96
7aad3af21b76 added: #declareVariable:
Claus Gittinger <cg@exept.de>
parents: 13682
diff changeset
    97
    (self classVarNames includes:varName) ifFalse:[
7aad3af21b76 added: #declareVariable:
Claus Gittinger <cg@exept.de>
parents: 13682
diff changeset
    98
        self addClassVarName:varName
7aad3af21b76 added: #declareVariable:
Claus Gittinger <cg@exept.de>
parents: 13682
diff changeset
    99
    ].
7aad3af21b76 added: #declareVariable:
Claus Gittinger <cg@exept.de>
parents: 13682
diff changeset
   100
7aad3af21b76 added: #declareVariable:
Claus Gittinger <cg@exept.de>
parents: 13682
diff changeset
   101
    "Created: / 07-02-2012 / 15:57:35 / cg"
9091
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
   102
! !
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
   103
13181
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   104
!SharedPool class methodsFor:'code generation'!
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   105
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   106
initializeFrom:aDictionary
13207
5f62183ab0e9 comment/format in: #initializeFrom:
Claus Gittinger <cg@exept.de>
parents: 13181
diff changeset
   107
    "given a dictionary, generate my classvars and the init code"
13181
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   108
13211
c64d16143d54 changed: #initializeFrom:
Claus Gittinger <cg@exept.de>
parents: 13210
diff changeset
   109
    |sortedNames code|
13181
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   110
13211
c64d16143d54 changed: #initializeFrom:
Claus Gittinger <cg@exept.de>
parents: 13210
diff changeset
   111
    sortedNames := aDictionary keys asSortedCollection.
c64d16143d54 changed: #initializeFrom:
Claus Gittinger <cg@exept.de>
parents: 13210
diff changeset
   112
    self addClassVarNames:sortedNames.
13181
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   113
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   114
    code := String streamContents:[:s |
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   115
        s nextPutLine:'initialize'.
13211
c64d16143d54 changed: #initializeFrom:
Claus Gittinger <cg@exept.de>
parents: 13210
diff changeset
   116
        sortedNames do:[:k |
13181
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   117
            |v|
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   118
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   119
            v := aDictionary at:k.
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   120
            s nextPutLine:('    %1 := %2.' bindWith:k with:v storeString).
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   121
        ].
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   122
    ].
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   123
    self class compile:code classified:'initialization'
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   124
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   125
    "
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   126
     OLEStatusCodeConstants initializeFrom:aDictionary
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   127
    "
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   128
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   129
    "Created: / 21-12-2010 / 17:58:25 / cg"
13211
c64d16143d54 changed: #initializeFrom:
Claus Gittinger <cg@exept.de>
parents: 13210
diff changeset
   130
    "Modified: / 15-01-2011 / 14:20:58 / cg"
13181
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   131
! !
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   132
14049
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   133
!SharedPool class methodsFor:'dictionary protocol'!
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   134
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   135
do:aBlock
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   136
    "enumerate all values"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   137
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   138
    ^ self keys do:[:key | aBlock value:(self at:key)]
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   139
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   140
    "Created: / 06-03-2012 / 17:07:54 / cg"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   141
!
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   142
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   143
includesKey:aSymbol
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   144
    ^ self keys includes:aSymbol
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   145
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   146
    "
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   147
     OpenGLConstants includesKey:#GL3Bytes
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   148
    "
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   149
!
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   150
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   151
keyAtValue:value ifAbsent:exceptionValue
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   152
    self keysDo:[:k |
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   153
        (self at:k) == value ifTrue:[ ^ k ].
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   154
    ].
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   155
    ^ exceptionValue value
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   156
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   157
    "Created: / 08-09-2011 / 05:51:10 / cg"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   158
!
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   159
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   160
keys
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   161
    "retrieve all keys (= pool var names)"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   162
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   163
    ^ self classVarNames
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   164
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   165
    "
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   166
     OpenGLConstants keys
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   167
    "
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   168
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   169
    "Modified (comment): / 06-03-2012 / 17:09:11 / cg"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   170
!
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   171
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   172
keysAndValuesDo:aBlock
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   173
    "enumerate all keys (= pool var names) with their value"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   174
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   175
    ^ self keys do:[:key | aBlock value:key value:(self at:key)]
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   176
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   177
    "Created: / 06-03-2012 / 17:07:41 / cg"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   178
!
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   179
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   180
keysDo:aBlock
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   181
    "enumerate all keys (= pool var names)"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   182
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   183
    ^ self keys do:aBlock
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   184
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   185
    "Modified (comment): / 06-03-2012 / 17:08:54 / cg"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   186
! !
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   187
13097
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   188
!SharedPool class methodsFor:'misc ui support'!
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   189
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   190
iconInBrowserSymbol
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   191
    <resource: #programImage>
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   192
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   193
    self == SharedPool ifTrue:[^ super iconInBrowserSymbol].
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   194
    ^ #sharedPoolBrowserIcon
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   195
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   196
    "Created: / 14-10-2010 / 12:04:32 / cg"
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   197
! !
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   198
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
   199
!SharedPool class methodsFor:'name lookup'!
68e006f46d87 initial checkin
ca
parents:
diff changeset
   200
12169
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   201
at:name
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   202
    "retrieve a pool variable by name"
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   203
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   204
    ^ self at:name ifAbsent:[self errorKeyNotFound:name]
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   205
!
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   206
10853
72acafda369f dictionary compatible protocol added
Claus Gittinger <cg@exept.de>
parents: 9091
diff changeset
   207
at:name ifAbsent:aBlock
12169
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   208
    "retrieve a pool variable by name"
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   209
10853
72acafda369f dictionary compatible protocol added
Claus Gittinger <cg@exept.de>
parents: 9091
diff changeset
   210
    (self includesKey:name) ifFalse:[^ aBlock value].
72acafda369f dictionary compatible protocol added
Claus Gittinger <cg@exept.de>
parents: 9091
diff changeset
   211
    ^ self classVarAt:name
72acafda369f dictionary compatible protocol added
Claus Gittinger <cg@exept.de>
parents: 9091
diff changeset
   212
!
72acafda369f dictionary compatible protocol added
Claus Gittinger <cg@exept.de>
parents: 9091
diff changeset
   213
13661
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   214
at:name put:aValue
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   215
    "set a pool variable by name"
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   216
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   217
    ^ self classVarAt:name put:aValue
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   218
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   219
    "Created: / 08-09-2011 / 05:48:16 / cg"
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   220
!
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   221
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
   222
classBindingOf: varName
68e006f46d87 initial checkin
ca
parents:
diff changeset
   223
    "For initialization messages grant the regular scope"
68e006f46d87 initial checkin
ca
parents:
diff changeset
   224
11305
83f14d00b6a7 Change #halt: to #shouldImplement or #assert:
Stefan Vogel <sv@exept.de>
parents: 10853
diff changeset
   225
    self shouldImplement.       "not yet finished"
83f14d00b6a7 Change #halt: to #shouldImplement or #assert:
Stefan Vogel <sv@exept.de>
parents: 10853
diff changeset
   226
    ^ super bindingOf: varName
8551
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   227
! !
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   228
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   229
!SharedPool class methodsFor:'printing & storing'!
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   230
14284
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   231
displayOn:aGCOrStream
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   232
    "Compatibility
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   233
     append a printed desription on some stream (Dolphin,  Squeak)
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   234
     OR:
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   235
     display the receiver in a graphicsContext at 0@0 (ST80).
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   236
     This method allows for any object to be displayed in some view
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   237
     (although the fallBack is to display its printString ...)"
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   238
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   239
    "/ what a kludge - Dolphin and Squeak mean: printOn: a stream;
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   240
    "/ ST/X (and some old ST80's) mean: draw-yourself on a GC.
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   241
    aGCOrStream isStream ifFalse:[
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   242
        ^ super displayOn:aGCOrStream.
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   243
    ].
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   244
8551
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   245
    "return a printed represenation - here, a reminder is appended,
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   246
     that this is not a regular class"
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   247
14284
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   248
    self == NameSpace ifTrue:[
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   249
        super displayOn:aGCOrStream.
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   250
    ] ifFalse:[
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   251
        aGCOrStream 
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   252
            nextPutAll:self name;
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   253
            nextPutAll:' (* SharedPool *)'.
8551
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   254
    ].
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
   255
! !
68e006f46d87 initial checkin
ca
parents:
diff changeset
   256
68e006f46d87 initial checkin
ca
parents:
diff changeset
   257
!SharedPool class methodsFor:'queries'!
68e006f46d87 initial checkin
ca
parents:
diff changeset
   258
68e006f46d87 initial checkin
ca
parents:
diff changeset
   259
isSharedPool
68e006f46d87 initial checkin
ca
parents:
diff changeset
   260
    ^ self ~~ SharedPool
68e006f46d87 initial checkin
ca
parents:
diff changeset
   261
! !
68e006f46d87 initial checkin
ca
parents:
diff changeset
   262
68e006f46d87 initial checkin
ca
parents:
diff changeset
   263
!SharedPool class methodsFor:'documentation'!
68e006f46d87 initial checkin
ca
parents:
diff changeset
   264
68e006f46d87 initial checkin
ca
parents:
diff changeset
   265
version
14284
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   266
    ^ '$Header: /cvs/stx/stx/libbasic/SharedPool.st,v 1.21 2012-08-03 15:52:47 stefan Exp $'
12169
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   267
!
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   268
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   269
version_CVS
14284
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   270
    ^ '$Header: /cvs/stx/stx/libbasic/SharedPool.st,v 1.21 2012-08-03 15:52:47 stefan Exp $'
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
   271
! !