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