ArrayedCollection.st
author Claus Gittinger <cg@exept.de>
Wed, 07 May 2003 11:48:30 +0200
changeset 7254 c96b2f224aa2
parent 6752 3584b9380c85
child 8893 99996b25482e
permissions -rw-r--r--
added withSize:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     1
"
5
67342904af11 *** empty log message ***
claus
parents: 3
diff changeset
     2
 COPYRIGHT (c) 1989 by Claus Gittinger
155
edd7fc34e104 *** empty log message ***
claus
parents: 125
diff changeset
     3
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
5497
92bb94a53929 added: RecursiveCollectionStoreStringSignal
tm
parents: 2689
diff changeset
    13
"{ Package: 'stx:libbasic' }"
92bb94a53929 added: RecursiveCollectionStoreStringSignal
tm
parents: 2689
diff changeset
    14
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    15
SequenceableCollection subclass:#ArrayedCollection
1111
d8e423b7d5a1 commentary
Claus Gittinger <cg@exept.de>
parents: 990
diff changeset
    16
	instanceVariableNames:''
d8e423b7d5a1 commentary
Claus Gittinger <cg@exept.de>
parents: 990
diff changeset
    17
	classVariableNames:''
d8e423b7d5a1 commentary
Claus Gittinger <cg@exept.de>
parents: 990
diff changeset
    18
	poolDictionaries:''
d8e423b7d5a1 commentary
Claus Gittinger <cg@exept.de>
parents: 990
diff changeset
    19
	category:'Collections-Abstract'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    20
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    21
2125
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
    22
!ArrayedCollection class methodsFor:'documentation'!
82
0147b4f725ae *** empty log message ***
claus
parents: 68
diff changeset
    23
0147b4f725ae *** empty log message ***
claus
parents: 68
diff changeset
    24
copyright
0147b4f725ae *** empty log message ***
claus
parents: 68
diff changeset
    25
"
0147b4f725ae *** empty log message ***
claus
parents: 68
diff changeset
    26
 COPYRIGHT (c) 1989 by Claus Gittinger
155
edd7fc34e104 *** empty log message ***
claus
parents: 125
diff changeset
    27
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    28
82
0147b4f725ae *** empty log message ***
claus
parents: 68
diff changeset
    29
 This software is furnished under a license and may be used
0147b4f725ae *** empty log message ***
claus
parents: 68
diff changeset
    30
 only in accordance with the terms of that license and with the
0147b4f725ae *** empty log message ***
claus
parents: 68
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
0147b4f725ae *** empty log message ***
claus
parents: 68
diff changeset
    32
 be provided or otherwise made available to, or used by, any
0147b4f725ae *** empty log message ***
claus
parents: 68
diff changeset
    33
 other person.  No title to or ownership of the software is
0147b4f725ae *** empty log message ***
claus
parents: 68
diff changeset
    34
 hereby transferred.
0147b4f725ae *** empty log message ***
claus
parents: 68
diff changeset
    35
"
0147b4f725ae *** empty log message ***
claus
parents: 68
diff changeset
    36
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    37
82
0147b4f725ae *** empty log message ***
claus
parents: 68
diff changeset
    38
documentation
0147b4f725ae *** empty log message ***
claus
parents: 68
diff changeset
    39
"
249
claus
parents: 213
diff changeset
    40
    ArrayedCollection is an abstract superclass for all collections where 
1171
7b8924ce3424 commentary
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    41
    the elements can be accessed via an integer index,
7b8924ce3424 commentary
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    42
    AND the collection is a fixed size collection. 
7b8924ce3424 commentary
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    43
    Those fixed size collections cannot easily grow, since they store the 
7b8924ce3424 commentary
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    44
    elements directly within the object and a grow operation can only be done 
7b8924ce3424 commentary
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
    45
    by #becoming another object.
360
claus
parents: 359
diff changeset
    46
    (other collections keep a reference to the physical container, which
claus
parents: 359
diff changeset
    47
     can be easily replaced)
claus
parents: 359
diff changeset
    48
2146
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    49
    [Warning:] 
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    50
        currently, ST/X supports growing fix-size collections
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    51
        (such as Arrays, ByteArrays and Strings). However, this
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    52
        is done in a very slow way (using #become).
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    53
        Become is a very slow operation in a direct-pointer smalltalk
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    54
        system.
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    55
                                                                                \
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    56
        Therefore, you SHOULD rewrite any application that does this,
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    57
        to make use of OrderedCollections or any other collection which
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    58
        can grow faster.
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    59
        To remind you of that, a warning message is sent to the
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    60
        standard error whenever such an operation is performed (see #grow).
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    61
                                                                                \
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    62
        Also note, that some other smalltalk systems do NOT allow
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    63
        fix size collection to change their size, and that future
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    64
        ST/X versions may be changed to trigger an error (instead of a
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    65
        warning) in those situations.
1283
2c533653efa3 commentary
Claus Gittinger <cg@exept.de>
parents: 1171
diff changeset
    66
1289
3abde2c376de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1283
diff changeset
    67
    [author:]
2146
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    68
        Claus Gittinger
1289
3abde2c376de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1283
diff changeset
    69
1283
2c533653efa3 commentary
Claus Gittinger <cg@exept.de>
parents: 1171
diff changeset
    70
    [see also:]
2146
Claus Gittinger <cg@exept.de>
parents: 2125
diff changeset
    71
        OrderedCollection Array
82
0147b4f725ae *** empty log message ***
claus
parents: 68
diff changeset
    72
"
92
0c73b48551ac *** empty log message ***
claus
parents: 82
diff changeset
    73
! !
0c73b48551ac *** empty log message ***
claus
parents: 82
diff changeset
    74
2125
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
    75
!ArrayedCollection class methodsFor:'instance creation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    76
5626
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    77
newFrom:aCollection 
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    78
    "Return an instance of me containing the same elements as aCollection."
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    79
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    80
    |newArray idx sz|
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    81
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    82
    sz := aCollection size.
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    83
    newArray := self new:sz.
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    84
    aCollection isSequenceable ifTrue:[
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    85
        newArray replaceFrom:1 to:sz with:aCollection startingAt:1
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    86
    ] ifFalse:[
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    87
        idx := 1.
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    88
        aCollection do:[:element | 
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    89
            newArray at:idx put:element.
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    90
            idx := idx + 1.
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    91
        ].
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    92
    ].
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    93
    ^ newArray
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    94
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    95
    "
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    96
     Array newFrom: #[1 2 3]
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    97
     #[1 2 3] as: Array      
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    98
     #[1 2 3] as: ByteArray  
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
    99
     #($c  $h  $r) as: String 
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
   100
     #($c  $h  $r) as: Text
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
   101
    "
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
   102
!
91a2b608702f added #newFrom:
Claus Gittinger <cg@exept.de>
parents: 5557
diff changeset
   103
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   104
with:element
a27a279701f8 Initial revision
claus
parents:
diff changeset
   105
    "return a new SequenceableCollection with one element:anObject"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   106
a27a279701f8 Initial revision
claus
parents:
diff changeset
   107
    |newCollection|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   108
a27a279701f8 Initial revision
claus
parents:
diff changeset
   109
    newCollection := self new:1.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   110
    newCollection at:1 put:element.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   111
    ^newCollection
125
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   112
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   113
    "
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   114
     OrderedCollection with:1
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   115
     SortedCollection with:99 
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   116
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   117
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   118
a27a279701f8 Initial revision
claus
parents:
diff changeset
   119
with:first with:second
a27a279701f8 Initial revision
claus
parents:
diff changeset
   120
    "return a new SequenceableCollection with two elements"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   121
a27a279701f8 Initial revision
claus
parents:
diff changeset
   122
    |newCollection|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   123
a27a279701f8 Initial revision
claus
parents:
diff changeset
   124
    newCollection := self new:2.
2225
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   125
    newCollection at:1 put:first; at:2 put:second.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   126
    ^newCollection
125
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   127
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   128
    "
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   129
     OrderedCollection with:1 with:2
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   130
     SortedCollection with:99 with:3
2225
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   131
     Array with:1 with:2
125
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   132
    "
2225
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   133
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   134
    "Modified: 22.1.1997 / 19:35:43 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   135
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   136
2225
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   137
with:a1 with:a2 with:a3
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   138
    "return a new SequenceableCollection with three elements"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   139
a27a279701f8 Initial revision
claus
parents:
diff changeset
   140
    |newCollection|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   141
a27a279701f8 Initial revision
claus
parents:
diff changeset
   142
    newCollection := self new:3.
2225
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   143
    newCollection at:1 put:a1; at:2 put:a2; at:3 put:a3.
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   144
    ^ newCollection
125
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   145
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   146
    "
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   147
     OrderedCollection with:1 with:2 with:3
2225
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   148
     Array with:1 with:2 with:3
125
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   149
    "
2225
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   150
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   151
    "Modified: 22.1.1997 / 19:35:47 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   152
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   153
2225
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   154
with:a1 with:a2 with:a3 with:a4
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   155
    "return a new SequenceableCollection with four elements"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   156
a27a279701f8 Initial revision
claus
parents:
diff changeset
   157
    |newCollection|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   158
a27a279701f8 Initial revision
claus
parents:
diff changeset
   159
    newCollection := self new:4.
2225
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   160
    newCollection at:1 put:a1; at:2 put:a2; at:3 put:a3; at:4 put:a4.
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   161
    ^ newCollection
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   162
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   163
    "
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   164
     OrderedCollection with:1 with:2 with:3 with:4
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   165
     Array with:1 with:2 with:3 with:4
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   166
    "
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   167
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   168
    "Modified: 22.1.1997 / 19:35:52 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   169
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   170
2225
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   171
with:a1 with:a2 with:a3 with:a4 with:a5
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   172
    "return a new SequenceableCollection with five elements"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   173
a27a279701f8 Initial revision
claus
parents:
diff changeset
   174
    |newCollection|
a27a279701f8 Initial revision
claus
parents:
diff changeset
   175
a27a279701f8 Initial revision
claus
parents:
diff changeset
   176
    newCollection := self new:5.
2225
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   177
    newCollection at:1 put:a1; at:2 put:a2; at:3 put:a3; at:4 put:a4;
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   178
                  at:5 put:a5.
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   179
    ^ newCollection
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   180
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   181
    "
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   182
     OrderedCollection with:1 with:2 with:3 with:4 with:5
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   183
     Array with:1 with:2 with:3 with:4 with:5
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   184
    "
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   185
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   186
    "Modified: 22.1.1997 / 19:35:57 / cg"
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   187
!
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   188
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   189
with:a1 with:a2 with:a3 with:a4 with:a5 with:a6
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   190
    "return a new SequenceableCollection with six elements"
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   191
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   192
    |newCollection|
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   193
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   194
    newCollection := self new:6.
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   195
    newCollection at:1 put:a1; at:2 put:a2; at:3 put:a3; at:4 put:a4;
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   196
                  at:5 put:a5; at:6 put:a6.
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   197
    ^ newCollection
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   198
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   199
    "
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   200
     OrderedCollection with:1 with:2 with:3 with:4 with:5 with:6
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   201
     Array with:1 with:2 with:3 with:4 with:5 with:6
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   202
    "
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   203
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   204
    "Modified: 22.1.1997 / 19:36:03 / cg"
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   205
!
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   206
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   207
with:a1 with:a2 with:a3 with:a4 with:a5 with:a6 with:a7
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   208
    "return a new SequenceableCollection with seven elements"
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   209
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   210
    |newCollection|
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   211
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   212
    newCollection := self new:7.
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   213
    newCollection at:1 put:a1; at:2 put:a2; at:3 put:a3; at:4 put:a4;
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   214
                  at:5 put:a5; at:6 put:a6; at:7 put:a7.
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   215
    ^ newCollection
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   216
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   217
    "
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   218
     OrderedCollection with:1 with:2 with:3 with:4 with:5 with:6 with:7
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   219
     Array with:1 with:2 with:3 with:4 with:5 with:6 with:7
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   220
    "
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   221
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   222
    "Modified: 22.1.1997 / 19:36:20 / cg"
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   223
!
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   224
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   225
with:a1 with:a2 with:a3 with:a4 with:a5 with:a6 with:a7 with:a8
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   226
    "return a new SequenceableCollection with eight elements"
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   227
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   228
    |newCollection|
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   229
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   230
    newCollection := self new:8.
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   231
    newCollection at:1 put:a1; at:2 put:a2; at:3 put:a3; at:4 put:a4;
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   232
                  at:5 put:a5; at:6 put:a6; at:7 put:a7; at:8 put:a8.
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   233
    ^ newCollection
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   234
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   235
    "
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   236
     OrderedCollection with:1 with:2 with:3 with:4 with:5 with:6 with:7 with:8
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   237
     Array with:1 with:2 with:3 with:4 with:5 with:6 with:7 with:8
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   238
    "
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   239
53313e47007a added with:with: type of instance creation messages
Claus Gittinger <cg@exept.de>
parents: 2146
diff changeset
   240
    "Modified: 22.1.1997 / 19:35:21 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   241
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   242
a27a279701f8 Initial revision
claus
parents:
diff changeset
   243
withAll:aCollection
a27a279701f8 Initial revision
claus
parents:
diff changeset
   244
    "return a new Collection with all elements taken from the argument,
a27a279701f8 Initial revision
claus
parents:
diff changeset
   245
     aCollection"
a27a279701f8 Initial revision
claus
parents:
diff changeset
   246
a27a279701f8 Initial revision
claus
parents:
diff changeset
   247
    |newCollection newSize
a27a279701f8 Initial revision
claus
parents:
diff changeset
   248
     index "{ Class: SmallInteger }" |
a27a279701f8 Initial revision
claus
parents:
diff changeset
   249
a27a279701f8 Initial revision
claus
parents:
diff changeset
   250
    newSize := aCollection size.
a27a279701f8 Initial revision
claus
parents:
diff changeset
   251
    newCollection := self new:newSize.
359
claus
parents: 356
diff changeset
   252
    aCollection isSequenceable ifTrue:[
1998
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1579
diff changeset
   253
	"/
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1579
diff changeset
   254
	"/ aCollection has indexed elements
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1579
diff changeset
   255
	"/ a block-replace may be faster
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1579
diff changeset
   256
	"/
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1579
diff changeset
   257
	newCollection replaceFrom:1 to:newSize with:aCollection startingAt:1
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   258
    ] ifFalse:[
1998
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1579
diff changeset
   259
	"/
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1579
diff changeset
   260
	"/ must enumerate the elements individually
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1579
diff changeset
   261
	"/
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1579
diff changeset
   262
	index := 1.
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1579
diff changeset
   263
	aCollection do:[:element |
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1579
diff changeset
   264
	    newCollection at:index put:element.
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1579
diff changeset
   265
	    index := index + 1
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1579
diff changeset
   266
	]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   267
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   268
    ^ newCollection
125
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   269
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   270
    "
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   271
     OrderedCollection withAll:#(1 2 3 4 5)
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   272
     SortedCollection withAll:#(99 17 53 1 101) 
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   273
    "
1171
7b8924ce3424 commentary
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   274
7b8924ce3424 commentary
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   275
    "Modified: 13.4.1996 / 12:14:38 / cg"
7254
c96b2f224aa2 added withSize:
Claus Gittinger <cg@exept.de>
parents: 6752
diff changeset
   276
!
c96b2f224aa2 added withSize:
Claus Gittinger <cg@exept.de>
parents: 6752
diff changeset
   277
c96b2f224aa2 added withSize:
Claus Gittinger <cg@exept.de>
parents: 6752
diff changeset
   278
withSize:size
c96b2f224aa2 added withSize:
Claus Gittinger <cg@exept.de>
parents: 6752
diff changeset
   279
    "return a new collection of size.
c96b2f224aa2 added withSize:
Claus Gittinger <cg@exept.de>
parents: 6752
diff changeset
   280
     For variable size collections, this is different from #new:,
c96b2f224aa2 added withSize:
Claus Gittinger <cg@exept.de>
parents: 6752
diff changeset
   281
     in that #new: creates an empty collection with preallocated size,
c96b2f224aa2 added withSize:
Claus Gittinger <cg@exept.de>
parents: 6752
diff changeset
   282
     while #withSize: creates a non empty one."
c96b2f224aa2 added withSize:
Claus Gittinger <cg@exept.de>
parents: 6752
diff changeset
   283
c96b2f224aa2 added withSize:
Claus Gittinger <cg@exept.de>
parents: 6752
diff changeset
   284
    ^ self new:size.
c96b2f224aa2 added withSize:
Claus Gittinger <cg@exept.de>
parents: 6752
diff changeset
   285
c96b2f224aa2 added withSize:
Claus Gittinger <cg@exept.de>
parents: 6752
diff changeset
   286
    "
c96b2f224aa2 added withSize:
Claus Gittinger <cg@exept.de>
parents: 6752
diff changeset
   287
     (OrderedCollection new:10)  
c96b2f224aa2 added withSize:
Claus Gittinger <cg@exept.de>
parents: 6752
diff changeset
   288
     (OrderedCollection withSize:10) 
c96b2f224aa2 added withSize:
Claus Gittinger <cg@exept.de>
parents: 6752
diff changeset
   289
     (Array new:10) 
c96b2f224aa2 added withSize:
Claus Gittinger <cg@exept.de>
parents: 6752
diff changeset
   290
     (Array withSize:10) 
c96b2f224aa2 added withSize:
Claus Gittinger <cg@exept.de>
parents: 6752
diff changeset
   291
    "
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   292
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   293
2125
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
   294
!ArrayedCollection class methodsFor:'queries'!
68
59faa75185ba *** empty log message ***
claus
parents: 28
diff changeset
   295
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   296
growIsCheap
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   297
    "return true, if this collection can easily grow
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   298
     (i.e. without a need for become:).
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   299
     Since this is the superclass of all indexed fix-size collections,
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   300
     return false here."
68
59faa75185ba *** empty log message ***
claus
parents: 28
diff changeset
   301
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   302
    ^ false
2
claus
parents: 1
diff changeset
   303
! !
claus
parents: 1
diff changeset
   304
249
claus
parents: 213
diff changeset
   305
!ArrayedCollection methodsFor:'copying'!
claus
parents: 213
diff changeset
   306
claus
parents: 213
diff changeset
   307
copyEmptyAndGrow:size
claus
parents: 213
diff changeset
   308
    "return a new instance of the receivers species with size
claus
parents: 213
diff changeset
   309
     nilled elements and any named instance variables copied."
claus
parents: 213
diff changeset
   310
claus
parents: 213
diff changeset
   311
    "special case for Array, which has no named instance vars"
claus
parents: 213
diff changeset
   312
356
claus
parents: 333
diff changeset
   313
    |cls|
claus
parents: 333
diff changeset
   314
claus
parents: 333
diff changeset
   315
    (cls := self class) instSize == 0 ifTrue:[
claus
parents: 333
diff changeset
   316
	^ cls new:size
249
claus
parents: 213
diff changeset
   317
    ].
claus
parents: 213
diff changeset
   318
    ^ super copyEmptyAndGrow:size
claus
parents: 213
diff changeset
   319
! !
claus
parents: 213
diff changeset
   320
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   321
!ArrayedCollection methodsFor:'error handling'!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   322
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   323
fixedSizeError
1998
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1579
diff changeset
   324
    "{ Pragma: +optSpace }"
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1579
diff changeset
   325
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   326
    "report an error that size of the collection cannot be changed.
1171
7b8924ce3424 commentary
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   327
     This is not used right now (instead, a warning is sent to stderr
1579
6993e41d4e6f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1428
diff changeset
   328
     in the #grow method); however, future versions of ST/X may no longer
1171
7b8924ce3424 commentary
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   329
     allow fixed size collection to grow.
7b8924ce3424 commentary
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   330
     Read the documentation on why things are that way ..."
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   331
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   332
    ^ self error:'cannot change size'
1171
7b8924ce3424 commentary
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   333
1579
6993e41d4e6f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1428
diff changeset
   334
    "Modified: 18.7.1996 / 21:39:09 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   335
! !
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   336
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   337
!ArrayedCollection methodsFor:'printing & storing'!
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   338
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   339
storeOn:aStream
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   340
    "output a printed representation (which can be re-read with readFrom:)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   341
     onto the argument aStream. Redefined to output index access."
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   342
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   343
    |index "{ Class: SmallInteger }"|
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   344
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   345
    thisContext isRecursive ifTrue:[
5498
489dc2e6bd4f RecursiveStoreStringSignal lifted to Object
tm
parents: 5497
diff changeset
   346
        Object recursiveStoreStringSignal raiseRequestWith:self.
2290
80404098824a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2225
diff changeset
   347
        'ArrayedCollection [error]: storeOn: of self referencing collection.' errorPrintCR.
80404098824a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2225
diff changeset
   348
        aStream nextPutAll:'#recursive'.
80404098824a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2225
diff changeset
   349
        ^ self
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   350
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   351
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   352
    aStream nextPutAll:'(('; nextPutAll:self class name; nextPutAll:' new:'.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   353
    self size printOn:aStream.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   354
    aStream nextPutAll:')'.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   355
    index := 1.
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   356
    self do:[:element |
2290
80404098824a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2225
diff changeset
   357
        aStream nextPutAll:' at:'. index printOn:aStream. aStream nextPutAll:' put:('.
80404098824a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2225
diff changeset
   358
        element storeOn:aStream.
80404098824a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2225
diff changeset
   359
        aStream nextPutAll:');'.
80404098824a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2225
diff changeset
   360
        index := index + 1
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   361
    ].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   362
    index > 1 ifTrue:[aStream nextPutAll:' yourself'].
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   363
    aStream nextPut:$)
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   364
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   365
    "
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   366
     (Array with:(1@2) with:(1->2)) storeString    
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   367
    "
1414
1bbf1ff2fc31 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1289
diff changeset
   368
2290
80404098824a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2225
diff changeset
   369
    "Modified: 28.1.1997 / 00:39:59 / cg"
602
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   370
! !
771ab7a8c4bf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 599
diff changeset
   371
5557
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
   372
!ArrayedCollection methodsFor:'queries'!
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
   373
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
   374
size
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
   375
    "redefined to re-enable size->basicSize forwarding
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
   376
     (it is caught in SequencableCollection)"
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
   377
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
   378
    ^ self basicSize
6548
e47779f9bbfa +#speciesForAdding
Claus Gittinger <cg@exept.de>
parents: 5626
diff changeset
   379
!
e47779f9bbfa +#speciesForAdding
Claus Gittinger <cg@exept.de>
parents: 5626
diff changeset
   380
e47779f9bbfa +#speciesForAdding
Claus Gittinger <cg@exept.de>
parents: 5626
diff changeset
   381
speciesForAdding
e47779f9bbfa +#speciesForAdding
Claus Gittinger <cg@exept.de>
parents: 5626
diff changeset
   382
     "redefined here, since grow is not cheap.
e47779f9bbfa +#speciesForAdding
Claus Gittinger <cg@exept.de>
parents: 5626
diff changeset
   383
      Used by functions which create a growing collection (see collect:with:, for example)"
e47779f9bbfa +#speciesForAdding
Claus Gittinger <cg@exept.de>
parents: 5626
diff changeset
   384
e47779f9bbfa +#speciesForAdding
Claus Gittinger <cg@exept.de>
parents: 5626
diff changeset
   385
    ^ OrderedCollection
5557
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
   386
! !
f5f8d236027c category change
Claus Gittinger <cg@exept.de>
parents: 5498
diff changeset
   387
2
claus
parents: 1
diff changeset
   388
!ArrayedCollection methodsFor:'resizing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   389
2
claus
parents: 1
diff changeset
   390
grow:newSize
125
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   391
    "grow the receiver i.e. cut off everything after newSize.
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   392
     Warning: this may be a slow operation due to the use of become 
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   393
     - you should write your collection classes to avoid the use of become. 
155
edd7fc34e104 *** empty log message ***
claus
parents: 125
diff changeset
   394
     You have been warned."
2
claus
parents: 1
diff changeset
   395
6752
3584b9380c85 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6751
diff changeset
   396
    |newArray oldSize sender|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   397
27
d98f9dd437f7 *** empty log message ***
claus
parents: 5
diff changeset
   398
    oldSize := self size.
d98f9dd437f7 *** empty log message ***
claus
parents: 5
diff changeset
   399
    (newSize ~~ oldSize) ifTrue:[
2125
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
   400
        InfoPrinting ifTrue:[
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
   401
            "/
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
   402
            "/ output a warning - you should rewrite your application
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
   403
            "/ to use some collection which implements grow: more efficient
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
   404
            "/ (i.e. use OrderedCollection instead of Array ..)
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
   405
            "/
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
   406
            'ArrayedCollection [info]: slow grow operation (' infoPrint.
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
   407
            self class name infoPrint. ') via ' infoPrint.
6752
3584b9380c85 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6751
diff changeset
   408
            sender := thisContext sender.
3584b9380c85 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6751
diff changeset
   409
            sender methodPrintString infoPrint. 
3584b9380c85 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6751
diff changeset
   410
            ' from ' infoPrint. sender sender methodPrintString infoPrintCR.
2125
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
   411
        ].
360
claus
parents: 359
diff changeset
   412
2125
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
   413
        newArray := self species new:newSize.
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
   414
        newArray replaceFrom:1 to:(newSize min:oldSize) with:self.
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
   415
        self become:newArray.
2
claus
parents: 1
diff changeset
   416
    ]
125
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   417
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   418
    "
590
3ffb78fb2716 report sender in slow grow warning
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   419
     #(1 2 3 4 5 6) add:7
3ffb78fb2716 report sender in slow grow warning
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   420
     #(1 2 3 4 5 6) remove:5 
125
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   421
     #(1 2 3 4 5 6) copy grow:3  
155
edd7fc34e104 *** empty log message ***
claus
parents: 125
diff changeset
   422
     #(1 2 3 4 5 6) copy grow:10  
125
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   423
     'hello world' copy grow:5   
155
edd7fc34e104 *** empty log message ***
claus
parents: 125
diff changeset
   424
     'hello' copy grow:20   
125
5fdcb4b2567f *** empty log message ***
claus
parents: 92
diff changeset
   425
    "
1428
2c3e439f08cc printNL -> printCR
Claus Gittinger <cg@exept.de>
parents: 1414
diff changeset
   426
2125
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
   427
    "Modified: 10.1.1997 / 15:14:43 / cg"
360
claus
parents: 359
diff changeset
   428
!
claus
parents: 359
diff changeset
   429
claus
parents: 359
diff changeset
   430
removeAll
1998
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1579
diff changeset
   431
    "{ Pragma: +optSpace }"
9749a5f87238 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1579
diff changeset
   432
1164
38c54a4f1273 commentary
Claus Gittinger <cg@exept.de>
parents: 1111
diff changeset
   433
    "remove all elements from the receiver. Returns the receiver.
38c54a4f1273 commentary
Claus Gittinger <cg@exept.de>
parents: 1111
diff changeset
   434
1111
d8e423b7d5a1 commentary
Claus Gittinger <cg@exept.de>
parents: 990
diff changeset
   435
     For ArrayedCollections (which are actually fixed-size collections),
d8e423b7d5a1 commentary
Claus Gittinger <cg@exept.de>
parents: 990
diff changeset
   436
     this is a slow operation, since a #become: is required to update
d8e423b7d5a1 commentary
Claus Gittinger <cg@exept.de>
parents: 990
diff changeset
   437
     all owners. Better use a collection which is prepared for growing
d8e423b7d5a1 commentary
Claus Gittinger <cg@exept.de>
parents: 990
diff changeset
   438
     (i.e. an OrderedCollection).
d8e423b7d5a1 commentary
Claus Gittinger <cg@exept.de>
parents: 990
diff changeset
   439
     We output a warning message here, to remind you about that."
d8e423b7d5a1 commentary
Claus Gittinger <cg@exept.de>
parents: 990
diff changeset
   440
2125
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
   441
    'ArrayedCollection [info]: slow removeAll operation (' infoPrint.
1428
2c3e439f08cc printNL -> printCR
Claus Gittinger <cg@exept.de>
parents: 1414
diff changeset
   442
    self class name infoPrint. ')' infoPrintCR.
360
claus
parents: 359
diff changeset
   443
claus
parents: 359
diff changeset
   444
    self become:(self copyEmpty)
claus
parents: 359
diff changeset
   445
claus
parents: 359
diff changeset
   446
    "
claus
parents: 359
diff changeset
   447
     #(1 2 3 4 5) copy removeAll    
claus
parents: 359
diff changeset
   448
     #(1 2 3 4 5) removeAll    
claus
parents: 359
diff changeset
   449
    "
1111
d8e423b7d5a1 commentary
Claus Gittinger <cg@exept.de>
parents: 990
diff changeset
   450
2125
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
   451
    "Modified: 10.1.1997 / 15:14:55 / cg"
2
claus
parents: 1
diff changeset
   452
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   453
2125
b438ee11118f new infoMessage scheme
Claus Gittinger <cg@exept.de>
parents: 1998
diff changeset
   454
!ArrayedCollection class methodsFor:'documentation'!
628
7aa563e4c64a version at the end
Claus Gittinger <cg@exept.de>
parents: 602
diff changeset
   455
7aa563e4c64a version at the end
Claus Gittinger <cg@exept.de>
parents: 602
diff changeset
   456
version
7254
c96b2f224aa2 added withSize:
Claus Gittinger <cg@exept.de>
parents: 6752
diff changeset
   457
    ^ '$Header: /cvs/stx/stx/libbasic/ArrayedCollection.st,v 1.53 2003-05-07 09:48:30 cg Exp $'
628
7aa563e4c64a version at the end
Claus Gittinger <cg@exept.de>
parents: 602
diff changeset
   458
! !