SharedPool.st
author Stefan Vogel <sv@exept.de>
Tue, 28 Apr 2020 16:21:34 +0200
changeset 25373 f030619565e1
parent 24617 c76a07d160a4
permissions -rw-r--r--
#REFACTORING by stefan class: ArrayedCollection class changed: #with:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
24605
3ce84a9abdc9 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 21763
diff changeset
     1
"{ Encoding: utf8 }"
3ce84a9abdc9 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 21763
diff changeset
     2
8728
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
     3
"
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
     4
 COPYRIGHT (c) 2004 by eXept Software AG
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
     5
              All Rights Reserved
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
     6
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
     7
 This software is furnished under a license and may be used
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
     8
 only in accordance with the terms of that license and with the
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    10
 be provided or otherwise made available to, or used by, any
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    11
 other person.  No title to or ownership of the software is
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    12
 hereby transferred.
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    13
"
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
    14
"{ Package: 'stx:libbasic' }"
68e006f46d87 initial checkin
ca
parents:
diff changeset
    15
17386
fb11f2545133 class: SharedPool
Claus Gittinger <cg@exept.de>
parents: 15633
diff changeset
    16
"{ NameSpace: Smalltalk }"
fb11f2545133 class: SharedPool
Claus Gittinger <cg@exept.de>
parents: 15633
diff changeset
    17
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
    18
Object subclass:#SharedPool
68e006f46d87 initial checkin
ca
parents:
diff changeset
    19
	instanceVariableNames:''
68e006f46d87 initial checkin
ca
parents:
diff changeset
    20
	classVariableNames:''
68e006f46d87 initial checkin
ca
parents:
diff changeset
    21
	poolDictionaries:''
68e006f46d87 initial checkin
ca
parents:
diff changeset
    22
	category:'Kernel-Classes'
68e006f46d87 initial checkin
ca
parents:
diff changeset
    23
!
68e006f46d87 initial checkin
ca
parents:
diff changeset
    24
68e006f46d87 initial checkin
ca
parents:
diff changeset
    25
!SharedPool class methodsFor:'documentation'!
68e006f46d87 initial checkin
ca
parents:
diff changeset
    26
8728
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    27
copyright
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    28
"
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    29
 COPYRIGHT (c) 2004 by eXept Software AG
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    30
              All Rights Reserved
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    31
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    32
 This software is furnished under a license and may be used
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    33
 only in accordance with the terms of that license and with the
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    34
 inclusion of the above copyright notice.   This software may not
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    35
 be provided or otherwise made available to, or used by, any
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    36
 other person.  No title to or ownership of the software is
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    37
 hereby transferred.
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    38
"
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    39
!
d70396dc4e96 copyright
Claus Gittinger <cg@exept.de>
parents: 8551
diff changeset
    40
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
    41
documentation
68e006f46d87 initial checkin
ca
parents:
diff changeset
    42
"
68e006f46d87 initial checkin
ca
parents:
diff changeset
    43
    A shared pool represents a set of bindings which are accessible to all classes
68e006f46d87 initial checkin
ca
parents:
diff changeset
    44
    which import the pool in its 'pool dictionaries'.
68e006f46d87 initial checkin
ca
parents:
diff changeset
    45
    SharedPool is NOT a dictionary but rather a name space.
68e006f46d87 initial checkin
ca
parents:
diff changeset
    46
    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
    47
    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
    48
    to any new semantics).
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
    49
"
68e006f46d87 initial checkin
ca
parents:
diff changeset
    50
! !
68e006f46d87 initial checkin
ca
parents:
diff changeset
    51
13682
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    52
!SharedPool class methodsFor:'Compatibility-Squeak'!
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    53
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    54
bindingOf: varName
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    55
    "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
    56
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    57
    | aSymbol binding |
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    58
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    59
    "/ self shouldImplement.       "not yet finished"
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    60
    aSymbol := varName asSymbol.
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
    "First look in classVar dictionary."
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    63
    binding := self classPool bindingOf: aSymbol.
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    64
    binding notNil ifTrue:[^binding].
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    65
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    66
    "Next look in shared pools."
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    67
    self sharedPools do:[:pool |
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    68
        binding := pool bindingOf: aSymbol.
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    69
        binding notNil ifTrue:[^binding].
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
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    72
    "subclassing and environment are not preserved"
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    73
    ^nil
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    74
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    75
    "Modified: / 12-09-2011 / 09:40:36 / cg"
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    76
!
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
bindingsDo: aBlock
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    79
    self classVarNames do:[:eachKey |
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    80
        aBlock value:(eachKey -> (self classVarAt:eachKey))
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    81
    ].
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    82
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    83
    "Modified: / 12-09-2011 / 09:42:00 / cg"
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    84
! !
b8ba89085dc0 category of:
Claus Gittinger <cg@exept.de>
parents: 13681
diff changeset
    85
9091
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    86
!SharedPool class methodsFor:'Compatibility-V''Age'!
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    87
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    88
declareConstant:constantName value:value
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    89
    self == SharedPool ifTrue:[ self error ].
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 classVarNames includes:constantName) ifFalse:[
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    92
        self addClassVarName:constantName
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    93
    ].
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    94
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
    95
    self classVarAt:constantName put:value.
13997
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
7aad3af21b76 added: #declareVariable:
Claus Gittinger <cg@exept.de>
parents: 13682
diff changeset
    98
declareVariable:varName
7aad3af21b76 added: #declareVariable:
Claus Gittinger <cg@exept.de>
parents: 13682
diff changeset
    99
    self == SharedPool ifTrue:[ self error ].
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
    (self classVarNames includes:varName) ifFalse:[
7aad3af21b76 added: #declareVariable:
Claus Gittinger <cg@exept.de>
parents: 13682
diff changeset
   102
        self addClassVarName:varName
7aad3af21b76 added: #declareVariable:
Claus Gittinger <cg@exept.de>
parents: 13682
diff changeset
   103
    ].
7aad3af21b76 added: #declareVariable:
Claus Gittinger <cg@exept.de>
parents: 13682
diff changeset
   104
7aad3af21b76 added: #declareVariable:
Claus Gittinger <cg@exept.de>
parents: 13682
diff changeset
   105
    "Created: / 07-02-2012 / 15:57:35 / cg"
9091
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
   106
! !
35b746ada800 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8728
diff changeset
   107
15633
d08f9fa63cc2 class: SharedPool
Stefan Vogel <sv@exept.de>
parents: 14284
diff changeset
   108
13181
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   109
!SharedPool class methodsFor:'code generation'!
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   110
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   111
initializeFrom:aDictionary
13207
5f62183ab0e9 comment/format in: #initializeFrom:
Claus Gittinger <cg@exept.de>
parents: 13181
diff changeset
   112
    "given a dictionary, generate my classvars and the init code"
13181
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   113
13211
c64d16143d54 changed: #initializeFrom:
Claus Gittinger <cg@exept.de>
parents: 13210
diff changeset
   114
    |sortedNames code|
13181
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   115
13211
c64d16143d54 changed: #initializeFrom:
Claus Gittinger <cg@exept.de>
parents: 13210
diff changeset
   116
    sortedNames := aDictionary keys asSortedCollection.
c64d16143d54 changed: #initializeFrom:
Claus Gittinger <cg@exept.de>
parents: 13210
diff changeset
   117
    self addClassVarNames:sortedNames.
13181
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   118
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   119
    code := String streamContents:[:s |
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   120
        s nextPutLine:'initialize'.
13211
c64d16143d54 changed: #initializeFrom:
Claus Gittinger <cg@exept.de>
parents: 13210
diff changeset
   121
        sortedNames do:[:k |
13181
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   122
            |v|
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   123
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   124
            v := aDictionary at:k.
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   125
            s nextPutLine:('    %1 := %2.' bindWith:k with:v storeString).
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   126
        ].
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   127
    ].
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   128
    self class compile:code classified:'initialization'
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   129
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   130
    "
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   131
     OLEStatusCodeConstants initializeFrom:aDictionary
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   132
    "
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   133
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   134
    "Created: / 21-12-2010 / 17:58:25 / cg"
13211
c64d16143d54 changed: #initializeFrom:
Claus Gittinger <cg@exept.de>
parents: 13210
diff changeset
   135
    "Modified: / 15-01-2011 / 14:20:58 / cg"
13181
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   136
! !
Claus Gittinger <cg@exept.de>
parents: 13097
diff changeset
   137
14049
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   138
!SharedPool class methodsFor:'dictionary protocol'!
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   139
15633
d08f9fa63cc2 class: SharedPool
Stefan Vogel <sv@exept.de>
parents: 14284
diff changeset
   140
associationsDo:aBlock
d08f9fa63cc2 class: SharedPool
Stefan Vogel <sv@exept.de>
parents: 14284
diff changeset
   141
    "enumerate all keys (= pool var names) with their value"
d08f9fa63cc2 class: SharedPool
Stefan Vogel <sv@exept.de>
parents: 14284
diff changeset
   142
24617
c76a07d160a4 #QUALITY by exept
Claus Gittinger <cg@exept.de>
parents: 24605
diff changeset
   143
    self keys do:[:key | aBlock value:(Association key:key value:(self at:key))]
15633
d08f9fa63cc2 class: SharedPool
Stefan Vogel <sv@exept.de>
parents: 14284
diff changeset
   144
!
d08f9fa63cc2 class: SharedPool
Stefan Vogel <sv@exept.de>
parents: 14284
diff changeset
   145
14049
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   146
do:aBlock
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   147
    "enumerate all values"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   148
24605
3ce84a9abdc9 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 21763
diff changeset
   149
    self keys do:[:key | aBlock value:(self at:key)]
14049
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
    "Created: / 06-03-2012 / 17:07:54 / cg"
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
includesKey:aSymbol
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   155
    ^ self keys includes:aSymbol
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
     OpenGLConstants includesKey:#GL3Bytes
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
!
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
keyAtValue:value ifAbsent:exceptionValue
21364
802924ef3f04 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19204
diff changeset
   163
    "return the key (= pool var name) of a value.
802924ef3f04 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19204
diff changeset
   164
     This is a slow access, since the receiver is searched sequentially.
802924ef3f04 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19204
diff changeset
   165
     NOTICE:
802924ef3f04 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19204
diff changeset
   166
        The value is searched using identity compare;
802924ef3f04 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19204
diff changeset
   167
        use #keyAtEqualValue:ifAbsent: to compare for equality."
802924ef3f04 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19204
diff changeset
   168
        
14049
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   169
    self keysDo:[:k |
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   170
        (self at:k) == value ifTrue:[ ^ k ].
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
    ^ exceptionValue value
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   173
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   174
    "Created: / 08-09-2011 / 05:51:10 / cg"
21364
802924ef3f04 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19204
diff changeset
   175
    "Modified (comment): / 07-02-2017 / 11:06:57 / cg"
14049
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
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   178
keys
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   179
    "retrieve all keys (= pool var names)"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   180
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   181
    ^ self classVarNames
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
    "
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   184
     OpenGLConstants keys
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
    "Modified (comment): / 06-03-2012 / 17:09:11 / cg"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   188
!
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
keysAndValuesDo:aBlock
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   191
    "enumerate all keys (= pool var names) with their value"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   192
17386
fb11f2545133 class: SharedPool
Claus Gittinger <cg@exept.de>
parents: 15633
diff changeset
   193
    self keys do:[:key | aBlock value:key value:(self at:key)]
14049
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   194
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   195
    "Created: / 06-03-2012 / 17:07:41 / cg"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   196
!
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   197
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   198
keysDo:aBlock
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   199
    "enumerate all keys (= pool var names)"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   200
17386
fb11f2545133 class: SharedPool
Claus Gittinger <cg@exept.de>
parents: 15633
diff changeset
   201
    self keys do:aBlock
14049
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   202
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   203
    "Modified (comment): / 06-03-2012 / 17:08:54 / cg"
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   204
! !
7f32280587a8 dictionary protocol
Claus Gittinger <cg@exept.de>
parents: 13997
diff changeset
   205
13097
d07ec91b3105 added: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 13005
diff changeset
   206
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
   207
!SharedPool class methodsFor:'name lookup'!
68e006f46d87 initial checkin
ca
parents:
diff changeset
   208
12169
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   209
at:name
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   210
    "retrieve a pool variable by name"
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   211
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   212
    ^ self at:name ifAbsent:[self errorKeyNotFound:name]
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   213
!
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   214
10853
72acafda369f dictionary compatible protocol added
Claus Gittinger <cg@exept.de>
parents: 9091
diff changeset
   215
at:name ifAbsent:aBlock
12169
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   216
    "retrieve a pool variable by name"
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   217
10853
72acafda369f dictionary compatible protocol added
Claus Gittinger <cg@exept.de>
parents: 9091
diff changeset
   218
    (self includesKey:name) ifFalse:[^ aBlock value].
72acafda369f dictionary compatible protocol added
Claus Gittinger <cg@exept.de>
parents: 9091
diff changeset
   219
    ^ self classVarAt:name
72acafda369f dictionary compatible protocol added
Claus Gittinger <cg@exept.de>
parents: 9091
diff changeset
   220
!
72acafda369f dictionary compatible protocol added
Claus Gittinger <cg@exept.de>
parents: 9091
diff changeset
   221
13661
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   222
at:name put:aValue
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   223
    "set a pool variable by name"
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   224
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   225
    ^ self classVarAt:name put:aValue
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   226
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   227
    "Created: / 08-09-2011 / 05:48:16 / cg"
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   228
!
Claus Gittinger <cg@exept.de>
parents: 13211
diff changeset
   229
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
   230
classBindingOf: varName
68e006f46d87 initial checkin
ca
parents:
diff changeset
   231
    "For initialization messages grant the regular scope"
68e006f46d87 initial checkin
ca
parents:
diff changeset
   232
11305
83f14d00b6a7 Change #halt: to #shouldImplement or #assert:
Stefan Vogel <sv@exept.de>
parents: 10853
diff changeset
   233
    self shouldImplement.       "not yet finished"
83f14d00b6a7 Change #halt: to #shouldImplement or #assert:
Stefan Vogel <sv@exept.de>
parents: 10853
diff changeset
   234
    ^ super bindingOf: varName
8551
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   235
! !
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   236
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   237
!SharedPool class methodsFor:'printing & storing'!
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   238
14284
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   239
displayOn:aGCOrStream
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   240
    "Compatibility
21763
8e1c7289a30a #OTHER by mawalch
mawalch
parents: 21364
diff changeset
   241
     append a printed description on some stream (Dolphin, Squeak)
14284
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   242
     OR:
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   243
     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
   244
     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
   245
     (although the fallBack is to display its printString ...)"
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   246
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   247
    "/ 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
   248
    "/ 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
   249
    aGCOrStream isStream ifFalse:[
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   250
        ^ super displayOn:aGCOrStream.
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   251
    ].
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   252
21763
8e1c7289a30a #OTHER by mawalch
mawalch
parents: 21364
diff changeset
   253
    "return a printed representation - here, a reminder is appended,
8551
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   254
     that this is not a regular class"
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   255
14284
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   256
    self == NameSpace ifTrue:[
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   257
        super displayOn:aGCOrStream.
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   258
    ] ifFalse:[
21763
8e1c7289a30a #OTHER by mawalch
mawalch
parents: 21364
diff changeset
   259
        aGCOrStream
14284
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   260
            nextPutAll:self name;
da05376dea2d Implement #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 14049
diff changeset
   261
            nextPutAll:' (* SharedPool *)'.
8551
de314b9f8fa3 sharedPools
ca
parents: 8538
diff changeset
   262
    ].
21763
8e1c7289a30a #OTHER by mawalch
mawalch
parents: 21364
diff changeset
   263
8e1c7289a30a #OTHER by mawalch
mawalch
parents: 21364
diff changeset
   264
    "Modified (comment): / 17-05-2017 / 16:48:54 / mawalch"
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
   265
! !
68e006f46d87 initial checkin
ca
parents:
diff changeset
   266
68e006f46d87 initial checkin
ca
parents:
diff changeset
   267
!SharedPool class methodsFor:'queries'!
68e006f46d87 initial checkin
ca
parents:
diff changeset
   268
68e006f46d87 initial checkin
ca
parents:
diff changeset
   269
isSharedPool
68e006f46d87 initial checkin
ca
parents:
diff changeset
   270
    ^ self ~~ SharedPool
68e006f46d87 initial checkin
ca
parents:
diff changeset
   271
! !
68e006f46d87 initial checkin
ca
parents:
diff changeset
   272
68e006f46d87 initial checkin
ca
parents:
diff changeset
   273
!SharedPool class methodsFor:'documentation'!
68e006f46d87 initial checkin
ca
parents:
diff changeset
   274
68e006f46d87 initial checkin
ca
parents:
diff changeset
   275
version
19204
bdb9f988ab4d comment/format in: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 17386
diff changeset
   276
    ^ '$Header$'
12169
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   277
!
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   278
8fcbd9a9237e added: #at:
Claus Gittinger <cg@exept.de>
parents: 11305
diff changeset
   279
version_CVS
19204
bdb9f988ab4d comment/format in: #iconInBrowserSymbol
Claus Gittinger <cg@exept.de>
parents: 17386
diff changeset
   280
    ^ '$Header$'
8538
68e006f46d87 initial checkin
ca
parents:
diff changeset
   281
! !
15633
d08f9fa63cc2 class: SharedPool
Stefan Vogel <sv@exept.de>
parents: 14284
diff changeset
   282