MethodDictionary.st
author Stefan Vogel <sv@exept.de>
Fri, 20 Jan 2017 19:55:46 +0100
changeset 21266 afdca9f67ead
parent 19843 4ce3c7f4d168
child 21292 21faad473411
child 21370 7a58ed21b4d8
permissions -rw-r--r--
#REFACTORING by stefan class: MethodDictionary added: #speciesForCollecting removed: #collect: use inherited method from Collection
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
328
claus
parents:
diff changeset
     1
"
2183
a2811a1d1037 may not use replaceFrom:,
Claus Gittinger <cg@exept.de>
parents: 2110
diff changeset
     2
 COPYRIGHT (c) 1995 by eXept Software AG
2110
3c531e1ab7c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2109
diff changeset
     3
              All Rights Reserved
328
claus
parents:
diff changeset
     4
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
claus
parents:
diff changeset
    10
 hereby transferred.
claus
parents:
diff changeset
    11
"
5557
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 3460
diff changeset
    12
"{ Package: 'stx:libbasic' }"
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 3460
diff changeset
    13
19843
4ce3c7f4d168 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17251
diff changeset
    14
"{ NameSpace: Smalltalk }"
4ce3c7f4d168 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17251
diff changeset
    15
9481
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
    16
KeyedCollection variableSubclass:#MethodDictionary
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
    17
	instanceVariableNames:''
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
    18
	classVariableNames:''
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
    19
	poolDictionaries:''
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
    20
	category:'Kernel-Methods'
328
claus
parents:
diff changeset
    21
!
claus
parents:
diff changeset
    22
2109
c019b0e813ec oops removeKey:ifAbsent: should send #value to the block
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
    23
!MethodDictionary class methodsFor:'documentation'!
328
claus
parents:
diff changeset
    24
claus
parents:
diff changeset
    25
copyright
claus
parents:
diff changeset
    26
"
2183
a2811a1d1037 may not use replaceFrom:,
Claus Gittinger <cg@exept.de>
parents: 2110
diff changeset
    27
 COPYRIGHT (c) 1995 by eXept Software AG
2110
3c531e1ab7c1 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2109
diff changeset
    28
              All Rights Reserved
328
claus
parents:
diff changeset
    29
claus
parents:
diff changeset
    30
 This software is furnished under a license and may be used
claus
parents:
diff changeset
    31
 only in accordance with the terms of that license and with the
claus
parents:
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
claus
parents:
diff changeset
    33
 be provided or otherwise made available to, or used by, any
claus
parents:
diff changeset
    34
 other person.  No title to or ownership of the software is
claus
parents:
diff changeset
    35
 hereby transferred.
claus
parents:
diff changeset
    36
"
claus
parents:
diff changeset
    37
!
claus
parents:
diff changeset
    38
claus
parents:
diff changeset
    39
documentation
claus
parents:
diff changeset
    40
"
claus
parents:
diff changeset
    41
    Instances of MethodDictionary store selector/method associations
8467
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
    42
    in classes. Conceptionally, they behave like IdentityDictionaries, but are
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
    43
    implemented using a single array (instead of Dictionary, which uses
328
claus
parents:
diff changeset
    44
    two arrays to store keys and values separately).
claus
parents:
diff changeset
    45
    Also, they do not use hashing, since due to caching in the VM, hashing
claus
parents:
diff changeset
    46
    does not make too much of a difference in speed, but complicates the 
8467
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
    47
    VM implementation.
1465
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
    48
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
    49
    [author:]
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
    50
        Stefan Vogel
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
    51
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
    52
    [see also:]
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
    53
        Dictionary
8467
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
    54
        IdentityDictionary
1465
Claus Gittinger <cg@exept.de>
parents: 1461
diff changeset
    55
        Behavior Class
8467
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
    56
        Method 
f25892c63a56 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 5557
diff changeset
    57
        Symbol
328
claus
parents:
diff changeset
    58
"
claus
parents:
diff changeset
    59
! !
claus
parents:
diff changeset
    60
2109
c019b0e813ec oops removeKey:ifAbsent: should send #value to the block
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
    61
!MethodDictionary class methodsFor:'instance creation'!
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    62
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    63
new:sz 
2897
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
    64
    "create and return a new methodDictionary holding sz
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
    65
     key->value associations"
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
    66
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    67
    ^ self basicNew:(sz * 2)
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    68
!
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    69
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    70
withAll:aDictionary
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    71
    "create a MethodDictionary from another Dictionary"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    72
1519
dd761a313ead added a typeHint
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
    73
    |newDict i "{ Class: SmallInteger }" |
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    74
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    75
    newDict := self new:aDictionary size.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    76
    i := 1.
1519
dd761a313ead added a typeHint
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
    77
    aDictionary keysAndValuesDo:[:key :value |
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    78
        newDict basicAt:i   put:key.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    79
        newDict basicAt:i+1 put:value.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    80
        i := i+2.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    81
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    82
    ^ newDict
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    83
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    84
    "
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    85
        |d|
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    86
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    87
        d := Dictionary withKeys:#(a b c d e) andValues:#(1 2 3 4 5).
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    88
        MethodDictionary withAll:d.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    89
    "
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    90
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    91
    "Created: 12.6.1996 / 13:46:43 / stefan"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    92
    "Modified: 12.6.1996 / 13:56:36 / stefan"
1519
dd761a313ead added a typeHint
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
    93
    "Modified: 3.7.1996 / 11:05:55 / cg"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    94
!
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    95
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    96
withKeys:keys andValues:values
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    97
    "create a MethodDictionary from a key (selector) array and value (method) array"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
    98
2897
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
    99
    |inst 
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
   100
     sz "{ Class: SmallInteger }"
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
   101
     idx "{ Class: SmallInteger }" |
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   102
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   103
    sz := keys size.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   104
    inst := self new:sz.
2897
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
   105
    idx := 2.
1519
dd761a313ead added a typeHint
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   106
    1 to:sz do:[:i |
2897
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
   107
        inst basicAt:(idx-1)  put:(keys   at:i).
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
   108
        inst basicAt:(idx)    put:(values at:i).
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
   109
	idx := idx + 2.
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   110
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   111
    ^ inst
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   112
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   113
    "Created: 12.6.1996 / 13:46:43 / stefan"
1519
dd761a313ead added a typeHint
Claus Gittinger <cg@exept.de>
parents: 1508
diff changeset
   114
    "Modified: 3.7.1996 / 11:05:34 / cg"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   115
! !
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   116
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   117
2109
c019b0e813ec oops removeKey:ifAbsent: should send #value to the block
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
   118
!MethodDictionary class methodsFor:'queries'!
328
claus
parents:
diff changeset
   119
claus
parents:
diff changeset
   120
isBuiltInClass
claus
parents:
diff changeset
   121
    "this class is known by the run-time-system"
claus
parents:
diff changeset
   122
claus
parents:
diff changeset
   123
    ^ self == MethodDictionary
9481
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   124
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   125
    "Modified: / 08-08-2006 / 16:06:26 / cg"
328
claus
parents:
diff changeset
   126
! !
claus
parents:
diff changeset
   127
claus
parents:
diff changeset
   128
!MethodDictionary methodsFor:'accessing'!
claus
parents:
diff changeset
   129
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   130
associationAt:key 
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   131
    "return an association consisting of aKey and the element indexed 
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   132
     by aKey - 
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   133
     report an error, if no element is stored under aKey."
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   134
2897
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
   135
    ^ Association key:key value:(self at:key)
328
claus
parents:
diff changeset
   136
!
claus
parents:
diff changeset
   137
claus
parents:
diff changeset
   138
at:key ifAbsent:exceptionBlock
claus
parents:
diff changeset
   139
    "return the element indexed by aKey - 
claus
parents:
diff changeset
   140
     return result of exceptionBlock if no element is stored under aKey"
claus
parents:
diff changeset
   141
claus
parents:
diff changeset
   142
    |sz "{ Class: SmallInteger }"|
claus
parents:
diff changeset
   143
claus
parents:
diff changeset
   144
    sz := self basicSize.
claus
parents:
diff changeset
   145
    1 to:sz by:2 do:[:i |
2897
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
   146
        (self basicAt:i) == key ifTrue:[^ self basicAt:(i + 1)]
328
claus
parents:
diff changeset
   147
    ].
claus
parents:
diff changeset
   148
    ^ exceptionBlock value
claus
parents:
diff changeset
   149
!
claus
parents:
diff changeset
   150
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   151
at:key put:value 
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   152
    "set the value for a given key, which is supposed to be a symbol.
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   153
     In contrast to dictionaries, we allow adding elements only, if there is an
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   154
     empty slot (nil key) present."
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   155
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   156
    |slot sz "{ Class: SmallInteger }"|
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   157
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   158
    sz := self basicSize.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   159
    1 to:sz by:2 do:[:i |
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   160
        slot := self basicAt:i.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   161
        (slot == key) ifTrue:[
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   162
            ^ self basicAt:(i + 1) put:value
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   163
        ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   164
        slot isNil ifTrue:[
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   165
            self basicAt:i put:key.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   166
            ^ self basicAt:(i + 1) put:value
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   167
        ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   168
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   169
    ^ self errorKeyNotFound:key
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   170
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   171
    "Modified: 7.6.1996 / 09:39:04 / stefan"
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   172
    "Modified: 23.1.1997 / 13:59:29 / cg"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   173
!
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   174
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   175
at:key putOrAppend:value 
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   176
    "set the value for a given key, which is supposed to be a symbol.
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   177
     In contrast to dictionaries, we allow adding elements only, if there is an
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   178
     empty slot (nil key) present.
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   179
     Otherwise a new MethodDictionary is created & returned"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   180
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   181
    |slot emptySlot newDict sz "{ Class: SmallInteger }"|
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   182
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   183
    sz := self basicSize.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   184
    1 to:sz by:2 do:[:i |
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   185
        slot := self basicAt:i.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   186
        (slot == key) ifTrue:[
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   187
            self basicAt:(i + 1) put:value .
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   188
            ^ self.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   189
        ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   190
        slot isNil ifTrue:[
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   191
            emptySlot := i.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   192
        ]
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   193
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   194
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   195
    emptySlot notNil ifTrue:[
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   196
        self basicAt:emptySlot       put:key.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   197
        self basicAt:(emptySlot + 1) put:value.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   198
        ^ self.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   199
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   200
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   201
    "/ not enough room for new entry, copy to new dictionary
2406
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   202
    newDict := self class new:sz//2+1.
2183
a2811a1d1037 may not use replaceFrom:,
Claus Gittinger <cg@exept.de>
parents: 2110
diff changeset
   203
a2811a1d1037 may not use replaceFrom:,
Claus Gittinger <cg@exept.de>
parents: 2110
diff changeset
   204
"/ cannot do this ...
a2811a1d1037 may not use replaceFrom:,
Claus Gittinger <cg@exept.de>
parents: 2110
diff changeset
   205
"/    newDict replaceFrom:1 to:sz with:self startingAt:1.
a2811a1d1037 may not use replaceFrom:,
Claus Gittinger <cg@exept.de>
parents: 2110
diff changeset
   206
"/ must use basicAt
a2811a1d1037 may not use replaceFrom:,
Claus Gittinger <cg@exept.de>
parents: 2110
diff changeset
   207
    1 to:sz do:[:i |
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   208
        newDict basicAt:i put:(self basicAt:i).
2183
a2811a1d1037 may not use replaceFrom:,
Claus Gittinger <cg@exept.de>
parents: 2110
diff changeset
   209
    ].
a2811a1d1037 may not use replaceFrom:,
Claus Gittinger <cg@exept.de>
parents: 2110
diff changeset
   210
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   211
    newDict basicAt:(sz+1) put:key.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   212
    newDict basicAt:(sz+2) put:value.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   213
    ^ newDict.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   214
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   215
    "Created: 7.6.1996 / 15:01:54 / stefan"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   216
    "Modified: 7.6.1996 / 17:32:40 / stefan"
2246
57451418f10a make certain, loops are inlined
Claus Gittinger <cg@exept.de>
parents: 2183
diff changeset
   217
    "Modified: 23.1.1997 / 14:00:03 / cg"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   218
!
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   219
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   220
keyAtValue:value ifAbsent:exceptionBlock
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   221
    "return the first key with value - 
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   222
     return result of exceptionBlock if no key can be found"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   223
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   224
    |sz "{ Class: SmallInteger }"|
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   225
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   226
    sz := self basicSize.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   227
    2 to:sz by:2 do:[:i |
2897
0b6b43d0a300 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2798
diff changeset
   228
        (self basicAt:i) == value ifTrue:[^ self basicAt:(i - 1)]
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   229
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   230
    ^ exceptionBlock value
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   231
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   232
    "Created: 7.6.1996 / 14:53:57 / stefan"
9481
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   233
! !
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   234
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   235
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   236
!MethodDictionary methodsFor:'enumerating'!
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   237
17251
43078c56ed69 class: MethodDictionary
Claus Gittinger <cg@exept.de>
parents: 13514
diff changeset
   238
do:aBlock
43078c56ed69 class: MethodDictionary
Claus Gittinger <cg@exept.de>
parents: 13514
diff changeset
   239
    "evaluate aBlock for each value (i.e. each method)"
43078c56ed69 class: MethodDictionary
Claus Gittinger <cg@exept.de>
parents: 13514
diff changeset
   240
43078c56ed69 class: MethodDictionary
Claus Gittinger <cg@exept.de>
parents: 13514
diff changeset
   241
    |key value sz "{ Class: SmallInteger }"|
43078c56ed69 class: MethodDictionary
Claus Gittinger <cg@exept.de>
parents: 13514
diff changeset
   242
43078c56ed69 class: MethodDictionary
Claus Gittinger <cg@exept.de>
parents: 13514
diff changeset
   243
    sz := self basicSize.
43078c56ed69 class: MethodDictionary
Claus Gittinger <cg@exept.de>
parents: 13514
diff changeset
   244
    1 to:sz by:2 do:[:i |
43078c56ed69 class: MethodDictionary
Claus Gittinger <cg@exept.de>
parents: 13514
diff changeset
   245
        key := self basicAt:i. 
43078c56ed69 class: MethodDictionary
Claus Gittinger <cg@exept.de>
parents: 13514
diff changeset
   246
        key notNil ifTrue:[
43078c56ed69 class: MethodDictionary
Claus Gittinger <cg@exept.de>
parents: 13514
diff changeset
   247
            value := self basicAt:(i+1).
43078c56ed69 class: MethodDictionary
Claus Gittinger <cg@exept.de>
parents: 13514
diff changeset
   248
            value notNil ifTrue:[
43078c56ed69 class: MethodDictionary
Claus Gittinger <cg@exept.de>
parents: 13514
diff changeset
   249
                aBlock value:value.
43078c56ed69 class: MethodDictionary
Claus Gittinger <cg@exept.de>
parents: 13514
diff changeset
   250
            ]
43078c56ed69 class: MethodDictionary
Claus Gittinger <cg@exept.de>
parents: 13514
diff changeset
   251
        ]
43078c56ed69 class: MethodDictionary
Claus Gittinger <cg@exept.de>
parents: 13514
diff changeset
   252
    ].
43078c56ed69 class: MethodDictionary
Claus Gittinger <cg@exept.de>
parents: 13514
diff changeset
   253
!
43078c56ed69 class: MethodDictionary
Claus Gittinger <cg@exept.de>
parents: 13514
diff changeset
   254
9481
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   255
keysAndValuesDo:aBlock
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   256
    "evaluate the 2 arg block aBlock for each key (i.e. each selector)
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   257
     and each value (i.e. each method)"
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   258
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   259
    |key value sz "{ Class: SmallInteger }"|
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   260
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   261
    sz := self basicSize.
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   262
    1 to:sz by:2 do:[:i |
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   263
        key := self basicAt:i. value := self basicAt:(i+1).
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   264
        key notNil ifTrue:[
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   265
            value notNil ifTrue:[
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   266
                aBlock value:key value:value.
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   267
            ]
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   268
        ]
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   269
    ].
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   270
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   271
    "Created: / 07-06-1996 / 09:27:42 / stefan"
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   272
    "Modified: / 08-08-2006 / 16:11:30 / cg"
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   273
! !
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   274
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   275
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   276
!MethodDictionary methodsFor:'private'!
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   277
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   278
compressed
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   279
    "compress - return either the myself or a new, compressed MethodDictionary"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   280
9481
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   281
    |newDict tally key mySize
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   282
     dstIndex "{ Class: SmallInteger }" 
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   283
     sz       "{ Class: SmallInteger }" |
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   284
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   285
    sz := self basicSize.
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   286
    mySize := sz // 2.
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   287
    tally := 0.
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   288
    1 to:sz by:2 do:[:i |
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   289
        (self basicAt:i) notNil ifTrue:[
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   290
            tally := tally + 1
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   291
        ]
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   292
    ].
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   293
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   294
    tally == mySize ifTrue:[^ self].
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   295
9481
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   296
    newDict := self species new:tally.
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   297
    dstIndex := 1.
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   298
    1 to:sz by:2 do:[:i |
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   299
        key := self basicAt:i.
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   300
        key notNil ifTrue:[
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   301
           newDict basicAt:dstIndex   put:key.
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   302
           newDict basicAt:dstIndex+1 put:(self basicAt:i+1).
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   303
           dstIndex := dstIndex + 2.
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   304
        ]
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   305
    ].
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   306
    ^ newDict
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   307
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   308
    "Modified: / 05-08-2004 / 20:05:44 / stefan"
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   309
! !
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   310
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   311
!MethodDictionary methodsFor:'queries'!
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   312
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   313
size
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   314
    "return the number of elements (associations) in the receiver"
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   315
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   316
    ^ self basicSize // 2
21266
afdca9f67ead #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 19843
diff changeset
   317
!
afdca9f67ead #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 19843
diff changeset
   318
afdca9f67ead #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 19843
diff changeset
   319
speciesForCollecting
afdca9f67ead #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 19843
diff changeset
   320
    ^ Bag
afdca9f67ead #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 19843
diff changeset
   321
afdca9f67ead #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 19843
diff changeset
   322
    "Created: / 20-01-2017 / 18:07:53 / stefan"
9481
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   323
! !
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   324
08aa83ec59c2 inheritance changed
Claus Gittinger <cg@exept.de>
parents: 9444
diff changeset
   325
!MethodDictionary methodsFor:'removing'!
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   326
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   327
removeKey:key ifAbsent:failBlock
19843
4ce3c7f4d168 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17251
diff changeset
   328
    "remove key from dictionary, 
4ce3c7f4d168 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17251
diff changeset
   329
     return the value previously stored there.
4ce3c7f4d168 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17251
diff changeset
   330
     If it was not in the collection return the result
4ce3c7f4d168 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17251
diff changeset
   331
     from evaluating failBlock.
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   332
     We actually do not remove it, but set it to nil."
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   333
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   334
    |value sz "{ Class: SmallInteger }"|
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   335
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   336
    sz := self basicSize.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   337
    1 to:sz by:2 do:[:i |
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   338
        (self basicAt:i) == key ifTrue:[
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   339
           value := self basicAt:(i + 1).
9444
c7134e0aa248 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8467
diff changeset
   340
           self basicAt:i put:nil. 
c7134e0aa248 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8467
diff changeset
   341
           self basicAt:(i+1) put:nil.
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   342
           ^ value
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   343
        ]
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   344
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   345
2109
c019b0e813ec oops removeKey:ifAbsent: should send #value to the block
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
   346
    ^ failBlock value.
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   347
9444
c7134e0aa248 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8467
diff changeset
   348
    "Created: / 07-06-1996 / 15:57:56 / stefan"
c7134e0aa248 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8467
diff changeset
   349
    "Modified: / 16-07-2006 / 13:08:41 / cg"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   350
!
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   351
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   352
removeKeyAndCompress:key
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   353
    "remove key from dictionary. 
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   354
     A new, compressed MethodDictionary will be returned,
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   355
     or nil, if key is not present."
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   356
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   357
    |newDict dstIndex sz "{ Class: SmallInteger }"|
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   358
2402
fc35bd8b4343 #identityIndexOf: is not allowed;
Claus Gittinger <cg@exept.de>
parents: 2386
diff changeset
   359
    sz := self basicSize.
fc35bd8b4343 #identityIndexOf: is not allowed;
Claus Gittinger <cg@exept.de>
parents: 2386
diff changeset
   360
    1 to:sz by:2 do:[:i |
fc35bd8b4343 #identityIndexOf: is not allowed;
Claus Gittinger <cg@exept.de>
parents: 2386
diff changeset
   361
        (self basicAt:i) == key ifTrue:[
fc35bd8b4343 #identityIndexOf: is not allowed;
Claus Gittinger <cg@exept.de>
parents: 2386
diff changeset
   362
            dstIndex := i
fc35bd8b4343 #identityIndexOf: is not allowed;
Claus Gittinger <cg@exept.de>
parents: 2386
diff changeset
   363
        ]
fc35bd8b4343 #identityIndexOf: is not allowed;
Claus Gittinger <cg@exept.de>
parents: 2386
diff changeset
   364
    ].
fc35bd8b4343 #identityIndexOf: is not allowed;
Claus Gittinger <cg@exept.de>
parents: 2386
diff changeset
   365
fc35bd8b4343 #identityIndexOf: is not allowed;
Claus Gittinger <cg@exept.de>
parents: 2386
diff changeset
   366
    dstIndex isNil ifTrue:[^ self].
1508
960d6e7e563b removeKeyAndCompress - failed if key was not present.
Claus Gittinger <cg@exept.de>
parents: 1485
diff changeset
   367
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   368
    sz := self basicSize.
2406
ca517087511a oops - ever growing dictionary
ca
parents: 2402
diff changeset
   369
    newDict := self class new:(sz//2-1).
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   370
    dstIndex := 1.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   371
    1 to:sz by:2 do:[:i |
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   372
        (self basicAt:i) ~~ key ifTrue:[
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   373
           newDict basicAt:dstIndex   put:(self basicAt:i).
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   374
           newDict basicAt:dstIndex+1 put:(self basicAt:i+1).
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   375
           dstIndex := dstIndex + 2.
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   376
        ]
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   377
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   378
    dstIndex > sz ifTrue:[
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   379
        ^ nil
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   380
    ].
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   381
    ^ newDict
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   382
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   383
    "Created: 7.6.1996 / 15:57:56 / stefan"
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   384
    "Modified: 7.6.1996 / 16:47:02 / stefan"
2402
fc35bd8b4343 #identityIndexOf: is not allowed;
Claus Gittinger <cg@exept.de>
parents: 2386
diff changeset
   385
    "Modified: 12.2.1997 / 19:47:23 / cg"
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   386
! !
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   387
2109
c019b0e813ec oops removeKey:ifAbsent: should send #value to the block
Claus Gittinger <cg@exept.de>
parents: 1703
diff changeset
   388
!MethodDictionary class methodsFor:'documentation'!
328
claus
parents:
diff changeset
   389
1461
dd25bb1e9973 Use methodDictionary instead of selector/method arrays.
Stefan Vogel <sv@exept.de>
parents: 530
diff changeset
   390
version
19843
4ce3c7f4d168 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17251
diff changeset
   391
    ^ '$Header$'
13514
Claus Gittinger <cg@exept.de>
parents: 13513
diff changeset
   392
!
Claus Gittinger <cg@exept.de>
parents: 13513
diff changeset
   393
Claus Gittinger <cg@exept.de>
parents: 13513
diff changeset
   394
version_CVS
19843
4ce3c7f4d168 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 17251
diff changeset
   395
    ^ '$Header$'
328
claus
parents:
diff changeset
   396
! !
17251
43078c56ed69 class: MethodDictionary
Claus Gittinger <cg@exept.de>
parents: 13514
diff changeset
   397