SharedPool.st
author Claus Gittinger <cg@exept.de>
Wed, 05 Feb 2014 18:21:48 +0100
changeset 15971 33779a17bc1a
parent 15633 d08f9fa63cc2
child 17386 fb11f2545133
child 18084 ab5b38bd8f81
permissions -rw-r--r--
class: CharacterEncoder changed: #initialize merged in jv's changes
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
15633
d08f9fa63cc2 class: SharedPool
Stefan Vogel <sv@exept.de>
parents: 14284
diff changeset
   104
13181
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   105
!SharedPool class methodsFor:'code generation'!
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   106
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   107
initializeFrom:aDictionary
13207
5f62183ab0e9 comment/format in: #initializeFrom:
Claus Gittinger <cg@exept.de>
parents: 13181
diff changeset
   108
    "given a dictionary, generate my classvars and the init code"
13181
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   109
13211
c64d16143d54 changed: #initializeFrom:
Claus Gittinger <cg@exept.de>
parents: 13210
diff changeset
   110
    |sortedNames code|
13181
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   111
13211
c64d16143d54 changed: #initializeFrom:
Claus Gittinger <cg@exept.de>
parents: 13210
diff changeset
   112
    sortedNames := aDictionary keys asSortedCollection.
c64d16143d54 changed: #initializeFrom:
Claus Gittinger <cg@exept.de>
parents: 13210
diff changeset
   113
    self addClassVarNames:sortedNames.
13181
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   114
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   115
    code := String streamContents:[:s |
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   116
        s nextPutLine:'initialize'.
13211
c64d16143d54 changed: #initializeFrom:
Claus Gittinger <cg@exept.de>
parents: 13210
diff changeset
   117
        sortedNames do:[:k |
13181
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   118
            |v|
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   119
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   120
            v := aDictionary at:k.
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   121
            s nextPutLine:('    %1 := %2.' bindWith:k with:v storeString).
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   122
        ].
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   123
    ].
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   124
    self class compile:code classified:'initialization'
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   125
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   126
    "
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   127
     OLEStatusCodeConstants initializeFrom:aDictionary
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   128
    "
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   129
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   130
    "Created: / 21-12-2010 / 17:58:25 / cg"
13211
c64d16143d54 changed: #initializeFrom:
Claus Gittinger <cg@exept.de>
parents: 13210
diff changeset
   131
    "Modified: / 15-01-2011 / 14:20:58 / cg"
13181
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   132
! !
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   133
14049
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   134
!SharedPool class methodsFor:'dictionary protocol'!
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   135
15633
d08f9fa63cc2 class: SharedPool
Stefan Vogel <sv@exept.de>
parents: 14284
diff changeset
   136
associationsDo:aBlock
d08f9fa63cc2 class: SharedPool
Stefan Vogel <sv@exept.de>
parents: 14284
diff changeset
   137
    "enumerate all keys (= pool var names) with their value"
d08f9fa63cc2 class: SharedPool
Stefan Vogel <sv@exept.de>
parents: 14284
diff changeset
   138
d08f9fa63cc2 class: SharedPool
Stefan Vogel <sv@exept.de>
parents: 14284
diff changeset
   139
    ^ self keys do:[:key | aBlock value:(Association key:key value:(self at:key))]
d08f9fa63cc2 class: SharedPool
Stefan Vogel <sv@exept.de>
parents: 14284
diff changeset
   140
!
d08f9fa63cc2 class: SharedPool
Stefan Vogel <sv@exept.de>
parents: 14284
diff changeset
   141
14049
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   142
do:aBlock
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   143
    "enumerate all values"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   144
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   145
    ^ self keys do:[:key | aBlock value:(self at:key)]
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
    "Created: / 06-03-2012 / 17:07:54 / cg"
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
includesKey:aSymbol
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   151
    ^ self keys includes:aSymbol
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   152
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   153
    "
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   154
     OpenGLConstants includesKey:#GL3Bytes
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   155
    "
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
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   158
keyAtValue:value ifAbsent:exceptionValue
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   159
    self keysDo:[:k |
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   160
        (self at:k) == value ifTrue:[ ^ k ].
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   161
    ].
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   162
    ^ exceptionValue value
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   163
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   164
    "Created: / 08-09-2011 / 05:51:10 / cg"
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
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   167
keys
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   168
    "retrieve all keys (= pool var names)"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   169
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   170
    ^ self classVarNames
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
    "
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   173
     OpenGLConstants keys
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
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   176
    "Modified (comment): / 06-03-2012 / 17:09:11 / cg"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   177
!
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
keysAndValuesDo:aBlock
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   180
    "enumerate all keys (= pool var names) with their value"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   181
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   182
    ^ self keys do:[:key | aBlock value:key value:(self at:key)]
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   183
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   184
    "Created: / 06-03-2012 / 17:07:41 / cg"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   185
!
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
keysDo:aBlock
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   188
    "enumerate all keys (= pool var names)"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   189
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   190
    ^ self keys do:aBlock
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   191
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   192
    "Modified (comment): / 06-03-2012 / 17:08:54 / cg"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   193
! !
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   194
13097
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   195
!SharedPool class methodsFor:'misc ui support'!
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   196
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   197
iconInBrowserSymbol
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   198
    <resource: #programImage>
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   199
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   200
    self == SharedPool ifTrue:[^ super iconInBrowserSymbol].
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   201
    ^ #sharedPoolBrowserIcon
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   202
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   203
    "Created: / 14-10-2010 / 12:04:32 / cg"
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   204
! !
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   205
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
   206
!SharedPool class methodsFor:'name lookup'!
68e006f46d87 initial checkin
ca
parents:
diff changeset
   207
12169
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   208
at:name
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   209
    "retrieve a pool variable by name"
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   210
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   211
    ^ self at:name ifAbsent:[self errorKeyNotFound:name]
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   212
!
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   213
10853
72acafda369f dictionary compatible protocol added
Claus Gittinger <cg@exept.de>
parents: 9091
diff changeset
   214
at:name ifAbsent:aBlock
12169
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   215
    "retrieve a pool variable by name"
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   216
10853
72acafda369f dictionary compatible protocol added
Claus Gittinger <cg@exept.de>
parents: 9091
diff changeset
   217
    (self includesKey:name) ifFalse:[^ aBlock value].
72acafda369f dictionary compatible protocol added
Claus Gittinger <cg@exept.de>
parents: 9091
diff changeset
   218
    ^ self classVarAt:name
72acafda369f dictionary compatible protocol added
Claus Gittinger <cg@exept.de>
parents: 9091
diff changeset
   219
!
72acafda369f dictionary compatible protocol added
Claus Gittinger <cg@exept.de>
parents: 9091
diff changeset
   220
13661
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   221
at:name put:aValue
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   222
    "set a pool variable by name"
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   223
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   224
    ^ self classVarAt:name put:aValue
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   225
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   226
    "Created: / 08-09-2011 / 05:48:16 / cg"
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   227
!
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   228
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
   229
classBindingOf: varName
68e006f46d87 initial checkin
ca
parents:
diff changeset
   230
    "For initialization messages grant the regular scope"
68e006f46d87 initial checkin
ca
parents:
diff changeset
   231
11305
83f14d00b6a7 Change #halt: to #shouldImplement or #assert:
Stefan Vogel <sv@exept.de>
parents: 10853
diff changeset
   232
    self shouldImplement.       "not yet finished"
83f14d00b6a7 Change #halt: to #shouldImplement or #assert:
Stefan Vogel <sv@exept.de>
parents: 10853
diff changeset
   233
    ^ super bindingOf: varName
8551
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   234
! !
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   235
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   236
!SharedPool class methodsFor:'printing & storing'!
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   237
14284
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   238
displayOn:aGCOrStream
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   239
    "Compatibility
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   240
     append a printed desription on some stream (Dolphin,  Squeak)
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   241
     OR:
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   242
     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
   243
     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
   244
     (although the fallBack is to display its printString ...)"
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   245
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   246
    "/ 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
   247
    "/ 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
   248
    aGCOrStream isStream ifFalse:[
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
    ].
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   251
8551
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   252
    "return a printed represenation - here, a reminder is appended,
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   253
     that this is not a regular class"
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   254
14284
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   255
    self == NameSpace ifTrue:[
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   256
        super displayOn:aGCOrStream.
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   257
    ] ifFalse:[
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   258
        aGCOrStream 
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   259
            nextPutAll:self name;
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   260
            nextPutAll:' (* SharedPool *)'.
8551
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   261
    ].
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
   262
! !
68e006f46d87 initial checkin
ca
parents:
diff changeset
   263
68e006f46d87 initial checkin
ca
parents:
diff changeset
   264
!SharedPool class methodsFor:'queries'!
68e006f46d87 initial checkin
ca
parents:
diff changeset
   265
68e006f46d87 initial checkin
ca
parents:
diff changeset
   266
isSharedPool
68e006f46d87 initial checkin
ca
parents:
diff changeset
   267
    ^ self ~~ SharedPool
68e006f46d87 initial checkin
ca
parents:
diff changeset
   268
! !
68e006f46d87 initial checkin
ca
parents:
diff changeset
   269
68e006f46d87 initial checkin
ca
parents:
diff changeset
   270
!SharedPool class methodsFor:'documentation'!
68e006f46d87 initial checkin
ca
parents:
diff changeset
   271
68e006f46d87 initial checkin
ca
parents:
diff changeset
   272
version
15633
d08f9fa63cc2 class: SharedPool
Stefan Vogel <sv@exept.de>
parents: 14284
diff changeset
   273
    ^ '$Header: /cvs/stx/stx/libbasic/SharedPool.st,v 1.22 2013-08-16 17:43:34 stefan Exp $'
12169
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   274
!
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   275
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   276
version_CVS
15633
d08f9fa63cc2 class: SharedPool
Stefan Vogel <sv@exept.de>
parents: 14284
diff changeset
   277
    ^ '$Header: /cvs/stx/stx/libbasic/SharedPool.st,v 1.22 2013-08-16 17:43:34 stefan Exp $'
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
   278
! !
15633
d08f9fa63cc2 class: SharedPool
Stefan Vogel <sv@exept.de>
parents: 14284
diff changeset
   279