WriteStream.st
author Stefan Vogel <sv@exept.de>
Tue, 20 Aug 2013 15:45:48 +0200
changeset 15653 197b5c750d10
parent 15646 1fdb5cf46a96
child 16201 0b2ca38fc441
child 18086 33a050555eb1
permissions -rw-r--r--
class: WriteStream changed: #nextPutAllUnicode: #nextPutUnicode: care for writing to TwoByteStrings
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
252
claus
parents: 95
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
"
5556
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5198
diff changeset
    12
"{ Package: 'stx:libbasic' }"
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5198
diff changeset
    13
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    14
PositionableStream subclass:#WriteStream
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1136
diff changeset
    15
	instanceVariableNames:''
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1136
diff changeset
    16
	classVariableNames:''
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1136
diff changeset
    17
	poolDictionaries:''
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1136
diff changeset
    18
	category:'Streams'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    19
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    20
1965
4ca38574df3b Fix typo.
Stefan Vogel <sv@exept.de>
parents: 1584
diff changeset
    21
!WriteStream class methodsFor:'documentation'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    22
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    23
copyright
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    24
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    25
 COPYRIGHT (c) 1989 by Claus Gittinger
252
claus
parents: 95
diff changeset
    26
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    27
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    28
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    29
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    31
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    32
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    33
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    34
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    35
!
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    36
68
59faa75185ba *** empty log message ***
claus
parents: 63
diff changeset
    37
documentation
59faa75185ba *** empty log message ***
claus
parents: 63
diff changeset
    38
"
2883
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    39
    Streams for writing into.
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    40
    WriteStreams are especially useful, if big strings are to be constructed
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    41
    from pieces - create a writeStream, add the pieces (with #nextPut or
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    42
    #nextPutAll) and finally fetch the concatenated string via #contents.
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    43
    This is much better than constructing the big string by concatenating via
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    44
    the comma (,) operator, since less intermediate garbage objects are created.
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    45
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    46
    This implementation currently DOES change the 
261
afdf1e7184ad *** empty log message ***
claus
parents: 260
diff changeset
    47
    identity if the streamed-upon collection IF it cannot grow easily. 
afdf1e7184ad *** empty log message ***
claus
parents: 260
diff changeset
    48
    Collections which cannot grow easily are for example: Array, ByteArray and String.
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    49
    Thus it is slightly incompatible to ST-80 since 'aStream contents' does 
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    50
    not always return the original collection. This may change.
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1136
diff changeset
    51
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1136
diff changeset
    52
    [author:]
10281
47dd93edcfa5 comment
Claus Gittinger <cg@exept.de>
parents: 10070
diff changeset
    53
        Claus Gittinger
47dd93edcfa5 comment
Claus Gittinger <cg@exept.de>
parents: 10070
diff changeset
    54
47dd93edcfa5 comment
Claus Gittinger <cg@exept.de>
parents: 10070
diff changeset
    55
    [see also:]
47dd93edcfa5 comment
Claus Gittinger <cg@exept.de>
parents: 10070
diff changeset
    56
        CharacterWriteStream (if streaming for a unicode string)
68
59faa75185ba *** empty log message ***
claus
parents: 63
diff changeset
    57
"
2883
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    58
!
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    59
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    60
examples
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    61
"
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
    62
								[exBegin]
2883
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    63
     |s|
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    64
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    65
     s := WriteStream on:''.
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    66
     s nextPutAll:'hello';
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    67
       space;
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    68
       nextPutAll:'world'.
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    69
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    70
     s contents inspect
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
    71
								[exEnd]
2883
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    72
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
    73
								[exBegin]
2883
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    74
     |s|
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    75
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    76
     s := WriteStream on:''.
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    77
     s nextPutAll:'hello';
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    78
       space;
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    79
       nextPutAll:'world'.
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    80
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    81
     Transcript nextPutLine:(s contents)
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
    82
								[exEnd]
2883
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    83
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
    84
								[exBegin]
2883
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    85
     |s|
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    86
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    87
     s := '' writeStream.
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    88
     s nextPutAll:'hello';
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    89
       space;
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    90
       nextPutAll:'world'.
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    91
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    92
     Transcript nextPutLine:(s contents)
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
    93
								[exEnd]
2883
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    94
"
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
    95
345
claus
parents: 329
diff changeset
    96
! !
claus
parents: 329
diff changeset
    97
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7260
diff changeset
    98
!WriteStream methodsFor:'Compatibility-Dolphin'!
6325
6ea71ffec923 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5888
diff changeset
    99
6ea71ffec923 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5888
diff changeset
   100
display:someObject
6871
1c4a799a048c display: use printOn instead of printString.
Claus Gittinger <cg@exept.de>
parents: 6326
diff changeset
   101
    someObject printOn:self.
6325
6ea71ffec923 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5888
diff changeset
   102
! !
6ea71ffec923 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5888
diff changeset
   103
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   104
!WriteStream methodsFor:'accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   105
15179
3f99524b54cb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 14935
diff changeset
   106
clear
3f99524b54cb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 14935
diff changeset
   107
    "for compatibility with Transcript"
3f99524b54cb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 14935
diff changeset
   108
3f99524b54cb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 14935
diff changeset
   109
    self reset
3f99524b54cb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 14935
diff changeset
   110
!
3f99524b54cb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 14935
diff changeset
   111
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   112
contents
345
claus
parents: 329
diff changeset
   113
    "return the current contents (a collection) of the stream.
claus
parents: 329
diff changeset
   114
     Currently, this returns the actual collection if possible
claus
parents: 329
diff changeset
   115
     (and reset is implemented to create a new one) in contrast to
claus
parents: 329
diff changeset
   116
     ST80, where contents returns a copy and reset only sets the writePointer.
claus
parents: 329
diff changeset
   117
     The ST/X behavior creates less temporary garbage in the normal case
2410
eea60bba0412 Fix typos.
Stefan Vogel <sv@exept.de>
parents: 1965
diff changeset
   118
     (where things are written for the contents only) but may be incompatible
345
claus
parents: 329
diff changeset
   119
     with some applications. Time will show, if this is to be changed."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   120
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   121
    |lastIndex|
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   122
15347
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   123
    lastIndex := position.
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   124
    collection size == lastIndex ifFalse:[
15347
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   125
        collection isFixedSize ifTrue:[
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   126
            "
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   127
             grow is expensive - return a copy.
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   128
             (is this what users of writeStream expect ?)
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   129
            "
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   130
            collection := collection copyFrom:1 to:lastIndex
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   131
        ] ifFalse:[
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   132
            collection grow:lastIndex
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   133
        ]
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   134
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   135
    ^ collection
2410
eea60bba0412 Fix typos.
Stefan Vogel <sv@exept.de>
parents: 1965
diff changeset
   136
3087
609b8f05a250 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3031
diff changeset
   137
    "Modified: / 19.2.1997 / 08:57:28 / stefan"
609b8f05a250 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3031
diff changeset
   138
    "Modified: / 30.10.1997 / 16:21:23 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   139
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   140
5888
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   141
last
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   142
    "return the last element - report an error if the stream is empty"
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   143
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   144
    |position1Based|
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   145
15347
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   146
    position1Based := position + 1.
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   147
    ^ collection at:(position1Based - 1).
5888
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   148
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   149
    "
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   150
     |s|
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   151
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   152
     s := '' writeStream.
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   153
     s nextPut:$a.
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   154
     s last.       
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   155
     s nextPut:$b.
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   156
     s last.        
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   157
     s nextPut:$c.
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   158
     s last.        
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   159
    "
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   160
!
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   161
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   162
last:n
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   163
    "return the last n elements as species of the underlying collection;
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   164
     Report an error if the stream is empty"
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   165
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   166
    |position1Based|
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   167
15347
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   168
    position1Based := position + 1.
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   169
    ^ collection copyFrom:(position1Based - n) to:(position1Based - 1).
5888
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   170
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   171
    "
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   172
     |s|
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   173
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   174
     s := '' writeStream.
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   175
     s nextPut:$a.
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   176
     s last:1.       
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   177
     s nextPut:$b.
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   178
     s last:1.        
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   179
     s last:2.        
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   180
     s nextPut:$c.
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   181
     s last:1.        
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   182
     s last:2.        
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   183
     s last:3.        
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   184
    "
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   185
!
64d077a702c7 added #last and #last:
Claus Gittinger <cg@exept.de>
parents: 5556
diff changeset
   186
329
claus
parents: 293
diff changeset
   187
reset
345
claus
parents: 329
diff changeset
   188
    "reset the stream; write anew.
2410
eea60bba0412 Fix typos.
Stefan Vogel <sv@exept.de>
parents: 1965
diff changeset
   189
     See the comment in WriteStream>>contents"
329
claus
parents: 293
diff changeset
   190
claus
parents: 293
diff changeset
   191
    collection := collection species new:(collection size).
claus
parents: 293
diff changeset
   192
    super reset
2410
eea60bba0412 Fix typos.
Stefan Vogel <sv@exept.de>
parents: 1965
diff changeset
   193
eea60bba0412 Fix typos.
Stefan Vogel <sv@exept.de>
parents: 1965
diff changeset
   194
    "Modified: 19.2.1997 / 08:57:00 / stefan"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   195
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   196
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   197
!WriteStream methodsFor:'positioning'!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   198
15617
14d7a49d826f class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15478
diff changeset
   199
position:index0Based
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   200
    "redefined to allow positioning past the readLimit"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   201
7052
207cc9c62982 prep for 0-based stream position
Claus Gittinger <cg@exept.de>
parents: 7051
diff changeset
   202
    ((index0Based > collection size) or:[index0Based < 0]) ifTrue: [^ self positionError].
15347
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   203
    position := index0Based
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   204
! !
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   205
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   206
!WriteStream methodsFor:'private'!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   207
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   208
growCollection
2863
aec08a0c2c2e no need for unsigned compare against 0
Claus Gittinger <cg@exept.de>
parents: 2410
diff changeset
   209
    "grow the streamed collection to at least 10 elements"
aec08a0c2c2e no need for unsigned compare against 0
Claus Gittinger <cg@exept.de>
parents: 2410
diff changeset
   210
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   211
    self growCollection:10
2863
aec08a0c2c2e no need for unsigned compare against 0
Claus Gittinger <cg@exept.de>
parents: 2410
diff changeset
   212
aec08a0c2c2e no need for unsigned compare against 0
Claus Gittinger <cg@exept.de>
parents: 2410
diff changeset
   213
    "Modified: 19.8.1997 / 17:53:28 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   214
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   215
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   216
growCollection:minNewSize
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   217
    "grow the streamed collection to at least minNewSize"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   218
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   219
    |oldSize newSize newColl|
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   220
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   221
    oldSize := collection size.
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   222
    (oldSize == 0) ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   223
	newSize := minNewSize
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   224
    ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   225
	newSize := oldSize * 2.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   226
	(newSize < minNewSize) ifTrue:[newSize := minNewSize].
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   227
    ].
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   228
    collection isFixedSize ifTrue:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   229
	newColl := collection species new:newSize.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   230
	newColl replaceFrom:1 to:oldSize with:collection startingAt:1.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   231
	collection := newColl
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   232
    ] ifFalse:[
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   233
	collection grow:newSize
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   234
    ].
2863
aec08a0c2c2e no need for unsigned compare against 0
Claus Gittinger <cg@exept.de>
parents: 2410
diff changeset
   235
aec08a0c2c2e no need for unsigned compare against 0
Claus Gittinger <cg@exept.de>
parents: 2410
diff changeset
   236
    "Modified: 19.8.1997 / 17:53:11 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   237
! !
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   238
7260
edfa8d6a6046 method category rename
Claus Gittinger <cg@exept.de>
parents: 7113
diff changeset
   239
!WriteStream methodsFor:'private-accessing'!
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   240
11794
ad5fcc151a09 #on: - set readLimit to 0, so that setToEnd positions to end of written
Stefan Vogel <sv@exept.de>
parents: 11324
diff changeset
   241
on:aCollection
ad5fcc151a09 #on: - set readLimit to 0, so that setToEnd positions to end of written
Stefan Vogel <sv@exept.de>
parents: 11324
diff changeset
   242
    super on:aCollection.
ad5fcc151a09 #on: - set readLimit to 0, so that setToEnd positions to end of written
Stefan Vogel <sv@exept.de>
parents: 11324
diff changeset
   243
    readLimit := 0.
ad5fcc151a09 #on: - set readLimit to 0, so that setToEnd positions to end of written
Stefan Vogel <sv@exept.de>
parents: 11324
diff changeset
   244
!
ad5fcc151a09 #on: - set readLimit to 0, so that setToEnd positions to end of written
Stefan Vogel <sv@exept.de>
parents: 11324
diff changeset
   245
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   246
on:aCollection from:start to:last
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   247
    "create and return a new stream for writing onto aCollection, where
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   248
     writing is limited to the elements in the range start to last."
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   249
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   250
    super on:aCollection from:start to:last.
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   251
    writeLimit := last.
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   252
! !
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   253
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   254
!WriteStream methodsFor:'queries'!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   255
3098
4203b0d13fc8 added #isReadable (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
   256
isReadable 
4203b0d13fc8 added #isReadable (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
   257
    "return true if the receiver supports reading - thats not true"
4203b0d13fc8 added #isReadable (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
   258
4203b0d13fc8 added #isReadable (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
   259
    ^ false
4203b0d13fc8 added #isReadable (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
   260
4203b0d13fc8 added #isReadable (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
   261
    "Created: / 8.11.1997 / 14:06:07 / cg"
4203b0d13fc8 added #isReadable (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
   262
!
4203b0d13fc8 added #isReadable (ST80 compat)
Claus Gittinger <cg@exept.de>
parents: 3087
diff changeset
   263
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   264
isWritable
1405
f4ab59f3888a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   265
    "return true, if writing is supported by the recevier.
f4ab59f3888a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   266
     Always return true here"
f4ab59f3888a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   267
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   268
    ^ true
1405
f4ab59f3888a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   269
f4ab59f3888a checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   270
    "Modified: 16.5.1996 / 14:44:49 / cg"
3031
565ba030c404 added #size & #isEmpty
Claus Gittinger <cg@exept.de>
parents: 2899
diff changeset
   271
!
565ba030c404 added #size & #isEmpty
Claus Gittinger <cg@exept.de>
parents: 2899
diff changeset
   272
565ba030c404 added #size & #isEmpty
Claus Gittinger <cg@exept.de>
parents: 2899
diff changeset
   273
size
565ba030c404 added #size & #isEmpty
Claus Gittinger <cg@exept.de>
parents: 2899
diff changeset
   274
    "return the current size"
565ba030c404 added #size & #isEmpty
Claus Gittinger <cg@exept.de>
parents: 2899
diff changeset
   275
15347
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   276
    ^ position
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   277
! !
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   278
63
1f0cdefb013f *** empty log message ***
claus
parents: 10
diff changeset
   279
!WriteStream methodsFor:'reading'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   280
a27a279701f8 Initial revision
claus
parents:
diff changeset
   281
next
10
claus
parents: 5
diff changeset
   282
    "catch read access to write stream - report an error"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   283
10
claus
parents: 5
diff changeset
   284
    self shouldNotImplement
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   285
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   286
a27a279701f8 Initial revision
claus
parents:
diff changeset
   287
peek
10
claus
parents: 5
diff changeset
   288
    "catch read access to write stream - report an error"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   289
10
claus
parents: 5
diff changeset
   290
    self shouldNotImplement
63
1f0cdefb013f *** empty log message ***
claus
parents: 10
diff changeset
   291
! !
1f0cdefb013f *** empty log message ***
claus
parents: 10
diff changeset
   292
5556
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5198
diff changeset
   293
!WriteStream methodsFor:'testing'!
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5198
diff changeset
   294
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5198
diff changeset
   295
isEmpty
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5198
diff changeset
   296
    "return true, if the contents of the stream is empty"
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5198
diff changeset
   297
15617
14d7a49d826f class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15478
diff changeset
   298
    ^ self position == 0
5556
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5198
diff changeset
   299
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5198
diff changeset
   300
    "Created: 14.10.1997 / 20:44:37 / cg"
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5198
diff changeset
   301
! !
1056cc5d6ce0 category change
Claus Gittinger <cg@exept.de>
parents: 5198
diff changeset
   302
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   303
!WriteStream methodsFor:'writing'!
369
claus
parents: 359
diff changeset
   304
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   305
next:count put:anObject
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   306
    "append anObject count times to the receiver.
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   307
     Redefined to avoid count grows of the underlying collection -
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   308
     instead a single grow on the final size is performed."
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   309
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   310
    |final position1Based|
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   311
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   312
    (collection isNil or:[writeLimit notNil]) ifTrue:[
12131
0d83d34cdebc changed:
Claus Gittinger <cg@exept.de>
parents: 12130
diff changeset
   313
        super next:count put:anObject.
0d83d34cdebc changed:
Claus Gittinger <cg@exept.de>
parents: 12130
diff changeset
   314
        ^ self.
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   315
    ].
369
claus
parents: 359
diff changeset
   316
15347
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   317
    position1Based := position + 1.
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   318
    final := position1Based + count - 1.
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   319
    (final > collection size) ifTrue:[
7113
23182ef346a5 position fixes
Claus Gittinger <cg@exept.de>
parents: 7052
diff changeset
   320
        self growCollection:final
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   321
    ].
369
claus
parents: 359
diff changeset
   322
7113
23182ef346a5 position fixes
Claus Gittinger <cg@exept.de>
parents: 7052
diff changeset
   323
    position1Based to:final do:[:index |
23182ef346a5 position fixes
Claus Gittinger <cg@exept.de>
parents: 7052
diff changeset
   324
        collection at:index put:anObject.
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   325
    ].
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   326
    position1Based := position1Based + count.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   327
    (position1Based > readLimit) ifTrue:[readLimit := position1Based - 1].
15347
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   328
    position := position1Based - 1.
12131
0d83d34cdebc changed:
Claus Gittinger <cg@exept.de>
parents: 12130
diff changeset
   329
    "/ ^ anObject -- return self
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   330
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   331
5198
ca2c2f7ec69c added #next:putAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
   332
next:n putAll:aCollection startingAt:pos1
ca2c2f7ec69c added #next:putAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
   333
    "append some elements of the argument, aCollection to the stream."
ca2c2f7ec69c added #next:putAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
   334
ca2c2f7ec69c added #next:putAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
   335
    ^ self nextPutAll:aCollection startingAt:pos1 to:pos1+n-1
ca2c2f7ec69c added #next:putAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
   336
ca2c2f7ec69c added #next:putAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
   337
    "
ca2c2f7ec69c added #next:putAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
   338
     |s|
ca2c2f7ec69c added #next:putAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
   339
ca2c2f7ec69c added #next:putAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
   340
     s := '' writeStream.
ca2c2f7ec69c added #next:putAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
   341
     s nextPutAll:'hello '.
ca2c2f7ec69c added #next:putAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
   342
     s next:5 putAll:'1234world012345' startingAt:5.
ca2c2f7ec69c added #next:putAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
   343
     s contents   
ca2c2f7ec69c added #next:putAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
   344
    "
ca2c2f7ec69c added #next:putAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
   345
ca2c2f7ec69c added #next:putAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
   346
    "Modified: 12.7.1996 / 10:31:36 / cg"
ca2c2f7ec69c added #next:putAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
   347
!
ca2c2f7ec69c added #next:putAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 4406
diff changeset
   348
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   349
nextPut:anObject
1584
cad4f2c515c7 nextPut: slightly modified
Claus Gittinger <cg@exept.de>
parents: 1541
diff changeset
   350
    "append the argument, anObject to the stream.
2863
aec08a0c2c2e no need for unsigned compare against 0
Claus Gittinger <cg@exept.de>
parents: 2410
diff changeset
   351
     Specially tuned for appending to String, ByteArray and Array streams."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   352
63
1f0cdefb013f *** empty log message ***
claus
parents: 10
diff changeset
   353
%{  /* NOCONTEXT */
1f0cdefb013f *** empty log message ***
claus
parents: 10
diff changeset
   354
8293
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   355
#ifndef NO_PRIM_STREAM
63
1f0cdefb013f *** empty log message ***
claus
parents: 10
diff changeset
   356
    REGISTER int pos;
1f0cdefb013f *** empty log message ***
claus
parents: 10
diff changeset
   357
    unsigned ch;
1f0cdefb013f *** empty log message ***
claus
parents: 10
diff changeset
   358
    OBJ coll;
2883
ee0eb799bd3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2864
diff changeset
   359
    OBJ p, wL, rL;
1584
cad4f2c515c7 nextPut: slightly modified
Claus Gittinger <cg@exept.de>
parents: 1541
diff changeset
   360
    int __readLimit = -1;
63
1f0cdefb013f *** empty log message ***
claus
parents: 10
diff changeset
   361
1136
898af060dfde underline cleanup
Claus Gittinger <cg@exept.de>
parents: 838
diff changeset
   362
    coll = __INST(collection);
898af060dfde underline cleanup
Claus Gittinger <cg@exept.de>
parents: 838
diff changeset
   363
    p = __INST(position);
63
1f0cdefb013f *** empty log message ***
claus
parents: 10
diff changeset
   364
293
31df3850e98c *** empty log message ***
claus
parents: 261
diff changeset
   365
    if (__isNonNilObject(coll) && __isSmallInteger(p)) {
8293
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   366
        pos = __intVal(p);
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   367
        /* make 1-based */
15347
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   368
        pos = pos + 1;
8293
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   369
        wL = __INST(writeLimit);
63
1f0cdefb013f *** empty log message ***
claus
parents: 10
diff changeset
   370
8293
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   371
        if ((wL == nil)
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   372
         || (__isSmallInteger(wL) && (pos <= __intVal(wL)))) {
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   373
            OBJ cls;
252
claus
parents: 95
diff changeset
   374
8293
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   375
            cls = __qClass(coll);
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   376
8293
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   377
            rL = __INST(readLimit);
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   378
            if (__isSmallInteger(rL)) {
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   379
                __readLimit = __intVal(rL);
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   380
            }
293
31df3850e98c *** empty log message ***
claus
parents: 261
diff changeset
   381
8293
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   382
            if (cls == @global(String)) {
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   383
                if (__isCharacter(anObject) 
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   384
                 && ((ch = __intVal(__characterVal(anObject))) <= 255) /* ch is unsigned */
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   385
                 && (pos <= __stringSize(coll))) {
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   386
                    __StringInstPtr(coll)->s_element[pos-1] = ch;
8615
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   387
advancePositionAndReturn: ;            
8293
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   388
                    if ((__readLimit >= 0) && (pos >= __readLimit)) {
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8868
diff changeset
   389
                        __INST(readLimit) = __mkSmallInteger(pos);
8293
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   390
                    }
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8868
diff changeset
   391
                    __INST(position) = __mkSmallInteger(__intVal(__INST(position)) + 1);
8293
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   392
                    RETURN ( anObject );
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   393
                }
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   394
            } else if (cls == @global(ByteArray)) {
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   395
                if (__isSmallInteger(anObject) 
8296
5c989a1551fa *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 8293
diff changeset
   396
                 && ((ch = __intVal(anObject)) <= 0xFF) /* ch is unsigned */
8293
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   397
                 && (pos <= __byteArraySize(coll))) {
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   398
                    __ByteArrayInstPtr(coll)->ba_element[pos-1] = ch;
8615
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   399
                    goto advancePositionAndReturn;
8293
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   400
                }
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   401
            } else if (cls == @global(Array)) {
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   402
                if (pos <= __arraySize(coll)) {
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   403
                     __ArrayInstPtr(coll)->a_element[pos-1] = anObject;
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   404
                    __STORE(coll, anObject);
8615
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   405
                    goto advancePositionAndReturn;
8293
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   406
                }
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   407
            } else if (cls == @global(Unicode16String)) {
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   408
                if (__isCharacter(anObject) 
8296
5c989a1551fa *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 8293
diff changeset
   409
                 && ((ch = __intVal(__characterVal(anObject))) <= 0xFFFF) /* ch is unsigned */
8293
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   410
                 && (pos <= __unicode16StringSize(coll))) {
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   411
                     __Unicode16StringInstPtr(coll)->s_element[pos-1] = ch;
8615
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   412
                    goto advancePositionAndReturn;
8293
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   413
                }
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   414
            } else if (cls == @global(Unicode32String)) {
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   415
                if (__isCharacter(anObject) 
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   416
                 && (pos <= __unicode32StringSize(coll))) {
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   417
                     __Unicode32StringInstPtr(coll)->s_element[pos-1] = __intVal(__characterVal(anObject));
8615
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   418
                    goto advancePositionAndReturn;
8293
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   419
                }
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   420
            }
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   421
        }
63
1f0cdefb013f *** empty log message ***
claus
parents: 10
diff changeset
   422
    }
2894
344aec8ba014 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2883
diff changeset
   423
#endif
260
cefb485445a7 *** empty log message ***
claus
parents: 252
diff changeset
   424
%}.
293
31df3850e98c *** empty log message ***
claus
parents: 261
diff changeset
   425
    (writeLimit isNil
15347
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   426
    or:[(position + 1) <= writeLimit]) ifTrue:[
15354
21ebb380b376 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15347
diff changeset
   427
        (position >= collection size) ifTrue:[self growCollection].
15347
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   428
        collection at:(position + 1) put:anObject.
15354
21ebb380b376 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15347
diff changeset
   429
        (position >= readLimit) ifTrue:[readLimit := (position + 1)].
8293
dcffeb2c11e0 Optimize #nextPut: on UnicodeStrings
Stefan Vogel <sv@exept.de>
parents: 7686
diff changeset
   430
        position := position + 1.
838
67a53cceaab1 no global refs
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
   431
    ] ifFalse:[
8320
229adaeaf183 Use exception classes instead of class vars
Stefan Vogel <sv@exept.de>
parents: 8296
diff changeset
   432
        WriteError raiseErrorString:'write beyond writeLimit'
293
31df3850e98c *** empty log message ***
claus
parents: 261
diff changeset
   433
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   434
    ^anObject
a27a279701f8 Initial revision
claus
parents:
diff changeset
   435
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   436
a27a279701f8 Initial revision
claus
parents:
diff changeset
   437
nextPutAll:aCollection
63
1f0cdefb013f *** empty log message ***
claus
parents: 10
diff changeset
   438
    "append all elements of the argument, aCollection to the stream.
1f0cdefb013f *** empty log message ***
claus
parents: 10
diff changeset
   439
     Redefined to avoid count grows of the underlying collection -
1f0cdefb013f *** empty log message ***
claus
parents: 10
diff changeset
   440
     instead a single grow on the final size is performed."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   441
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   442
    |nMore final position1Based|
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   443
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
   444
    collection isNil ifTrue:[
12130
5af9bdd94754 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 11794
diff changeset
   445
        super nextPutAll:aCollection.
5af9bdd94754 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 11794
diff changeset
   446
        ^ self
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
   447
    ].
13628
1300284a66af changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 12131
diff changeset
   448
    aCollection isSequenceable ifFalse:[
1300284a66af changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 12131
diff changeset
   449
        super nextPutAll:aCollection.
1300284a66af changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 12131
diff changeset
   450
        ^ self.
1300284a66af changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 12131
diff changeset
   451
    ].
77
6c38ca59927f *** empty log message ***
claus
parents: 68
diff changeset
   452
15347
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   453
    position1Based := position + 1.
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   454
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   455
    nMore := aCollection size.
9499
01ee6017569e check for non-colelction in nextPutAll:
fm
parents: 9311
diff changeset
   456
    nMore == 0 ifTrue:[
01ee6017569e check for non-colelction in nextPutAll:
fm
parents: 9311
diff changeset
   457
        "/ for the programmer..
01ee6017569e check for non-colelction in nextPutAll:
fm
parents: 9311
diff changeset
   458
        aCollection isCollection ifFalse:[
10070
ee4e2cf0a591 non-collection argument error is proceedable
fm
parents: 9499
diff changeset
   459
            self error:'invalid argument (not a collection)' mayProceed:true
9499
01ee6017569e check for non-colelction in nextPutAll:
fm
parents: 9311
diff changeset
   460
        ].
01ee6017569e check for non-colelction in nextPutAll:
fm
parents: 9311
diff changeset
   461
    ].
01ee6017569e check for non-colelction in nextPutAll:
fm
parents: 9311
diff changeset
   462
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   463
    final := position1Based + nMore - 1.
293
31df3850e98c *** empty log message ***
claus
parents: 261
diff changeset
   464
    (writeLimit notNil
31df3850e98c *** empty log message ***
claus
parents: 261
diff changeset
   465
    and:[final > writeLimit]) ifTrue:[
7686
290cda6075ac String new -> uninitializedNew: / basicNew:
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
   466
        final := writeLimit.
290cda6075ac String new -> uninitializedNew: / basicNew:
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
   467
        nMore := final - position1Based + 1
293
31df3850e98c *** empty log message ***
claus
parents: 261
diff changeset
   468
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   469
    (final > collection size) ifTrue:[
7686
290cda6075ac String new -> uninitializedNew: / basicNew:
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
   470
        self growCollection:final
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   471
    ].
7686
290cda6075ac String new -> uninitializedNew: / basicNew:
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
   472
    collection 
290cda6075ac String new -> uninitializedNew: / basicNew:
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
   473
        replaceFrom:position1Based
290cda6075ac String new -> uninitializedNew: / basicNew:
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
   474
        to:final
290cda6075ac String new -> uninitializedNew: / basicNew:
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
   475
        with:aCollection 
290cda6075ac String new -> uninitializedNew: / basicNew:
Claus Gittinger <cg@exept.de>
parents: 7620
diff changeset
   476
        startingAt:1.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   477
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   478
    position1Based := position1Based + nMore.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   479
    (position1Based > readLimit) ifTrue:[readLimit := position1Based - 1].
15347
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   480
    position := position1Based - 1.
12130
5af9bdd94754 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 11794
diff changeset
   481
    "/ ^ aCollection -- self
13628
1300284a66af changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 12131
diff changeset
   482
1300284a66af changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 12131
diff changeset
   483
    "Modified: / 04-09-2011 / 20:03:32 / cg"
1539
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   484
!
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   485
15478
647e6a7a2deb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15354
diff changeset
   486
nextPutAll:n from:aCollection startingAt:pos1
647e6a7a2deb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15354
diff changeset
   487
    "append some elements of the argument, aCollection to the stream."
647e6a7a2deb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15354
diff changeset
   488
647e6a7a2deb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15354
diff changeset
   489
    ^ self nextPutAll:aCollection startingAt:pos1 to:pos1+n-1
647e6a7a2deb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15354
diff changeset
   490
647e6a7a2deb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15354
diff changeset
   491
    "
647e6a7a2deb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15354
diff changeset
   492
     |s|
647e6a7a2deb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15354
diff changeset
   493
647e6a7a2deb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15354
diff changeset
   494
     s := '' writeStream.
647e6a7a2deb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15354
diff changeset
   495
     s nextPutAll:'hello '.
647e6a7a2deb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15354
diff changeset
   496
     s next:5 putAll:'1234world012345' startingAt:5.
647e6a7a2deb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15354
diff changeset
   497
     s contents   
647e6a7a2deb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15354
diff changeset
   498
    "
647e6a7a2deb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15354
diff changeset
   499
647e6a7a2deb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15354
diff changeset
   500
    "Modified: 12.7.1996 / 10:31:36 / cg"
647e6a7a2deb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15354
diff changeset
   501
!
647e6a7a2deb class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15354
diff changeset
   502
1539
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   503
nextPutAll:aCollection startingAt:pos1 to:pos2
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   504
    "append some elements of the argument, aCollection to the stream.
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   505
     Redefined to avoid count grows of the underlying collection -
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   506
     instead a single grow on the final size is performed."
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   507
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   508
    |nMore final position1Based|
1539
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   509
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   510
    collection isNil ifTrue:[
12131
0d83d34cdebc changed:
Claus Gittinger <cg@exept.de>
parents: 12130
diff changeset
   511
        ^ super nextPutAll:aCollection startingAt:pos1 to:pos2
1539
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   512
    ].
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   513
15347
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   514
    position1Based := position + 1.
1539
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   515
    nMore := pos2 - pos1 + 1.
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   516
    final := position1Based + nMore - 1.
1539
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   517
    (writeLimit notNil
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   518
    and:[final > writeLimit]) ifTrue:[
12131
0d83d34cdebc changed:
Claus Gittinger <cg@exept.de>
parents: 12130
diff changeset
   519
        final := writeLimit.
0d83d34cdebc changed:
Claus Gittinger <cg@exept.de>
parents: 12130
diff changeset
   520
        nMore := final - position1Based + 1
1539
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   521
    ].
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   522
    (final > collection size) ifTrue:[
12131
0d83d34cdebc changed:
Claus Gittinger <cg@exept.de>
parents: 12130
diff changeset
   523
        self growCollection:final
1539
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   524
    ].
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   525
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   526
    collection replaceFrom:position1Based
12131
0d83d34cdebc changed:
Claus Gittinger <cg@exept.de>
parents: 12130
diff changeset
   527
                        to:final
0d83d34cdebc changed:
Claus Gittinger <cg@exept.de>
parents: 12130
diff changeset
   528
                      with:aCollection 
0d83d34cdebc changed:
Claus Gittinger <cg@exept.de>
parents: 12130
diff changeset
   529
                startingAt:pos1.
1539
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   530
7051
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   531
    position1Based := position1Based + nMore.
984d8271d06b preps for 0-based stream positions
Claus Gittinger <cg@exept.de>
parents: 6871
diff changeset
   532
    (position1Based > readLimit) ifTrue:[readLimit := position1Based - 1].
15347
bf763ed0a879 class: WriteStream
Claus Gittinger <cg@exept.de>
parents: 15179
diff changeset
   533
    position := position1Based - 1.
12131
0d83d34cdebc changed:
Claus Gittinger <cg@exept.de>
parents: 12130
diff changeset
   534
    "/ ^ aCollection -- return self
1539
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   535
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   536
    "
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   537
     |s|
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   538
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   539
     s := '' writeStream.
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   540
     s nextPutAll:'hello '.
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   541
     s nextPutAll:'1234world012345' startingAt:5 to:9.
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   542
     s contents
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   543
    "
b1ac096a81e3 added #nextPutAll:startingAt:to:
Claus Gittinger <cg@exept.de>
parents: 1405
diff changeset
   544
1541
6ed5feddc4ed checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1539
diff changeset
   545
    "Modified: 12.7.1996 / 10:31:36 / cg"
8361
726a906f1901 tuned nextPutBytes
Claus Gittinger <cg@exept.de>
parents: 8320
diff changeset
   546
!
726a906f1901 tuned nextPutBytes
Claus Gittinger <cg@exept.de>
parents: 8320
diff changeset
   547
11324
670872419b37 Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 10281
diff changeset
   548
nextPutAllUnicode:aString
670872419b37 Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 10281
diff changeset
   549
    "normal streams can not handle multi-byte characters, so convert them to utf8"
670872419b37 Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 10281
diff changeset
   550
15653
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   551
    "this code is not perfect if you use both #nextPutAll: and #nextPutAllUnicode:
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   552
     with the same stream, since 8-bit characters (with the highest bits set) 
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   553
     are not stored as UTF, so we get some inconsistent string"
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   554
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   555
    collection isString ifTrue:[
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   556
        collection bitsPerCharacter == 16 ifTrue:[
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   557
            self nextPutAllUtf16:aString.
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   558
        ] ifFalse:[
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   559
            self nextPutAllUtf8:aString.
11324
670872419b37 Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 10281
diff changeset
   560
        ].
670872419b37 Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 10281
diff changeset
   561
    ] ifFalse:[
670872419b37 Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 10281
diff changeset
   562
        self nextPutAll:aString
670872419b37 Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 10281
diff changeset
   563
    ].
13738
e11fccebb0c3 changed: #nextPutAllUnicode:
Claus Gittinger <cg@exept.de>
parents: 13628
diff changeset
   564
e11fccebb0c3 changed: #nextPutAllUnicode:
Claus Gittinger <cg@exept.de>
parents: 13628
diff changeset
   565
    "Modified: / 28-09-2011 / 16:15:52 / cg"
11324
670872419b37 Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 10281
diff changeset
   566
!
670872419b37 Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 10281
diff changeset
   567
8615
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   568
nextPutByte:anObject
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   569
    "append the argument, anObject to the stream.
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   570
     Specially tuned for appending to String and ByteArray streams."
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   571
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   572
%{  /* NOCONTEXT */
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   573
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   574
#ifndef NO_PRIM_STREAM
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   575
    REGISTER int pos;
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   576
    OBJ coll;
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   577
    OBJ p, wL, rL;
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   578
    int __readLimit = -1;
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   579
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   580
    coll = __INST(collection);
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   581
    p = __INST(position);
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   582
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   583
    if (__isNonNilObject(coll) && __isSmallInteger(p) && __isSmallInteger(anObject)) {
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   584
        unsigned ch;
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   585
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   586
        ch = __intVal(anObject);
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   587
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   588
        pos = __intVal(p);
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   589
        /* make 1-based */
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   590
        pos = pos + 1 - __intVal( @global(PositionableStream:ZeroPosition));
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   591
        wL = __INST(writeLimit);
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   592
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   593
        if ((wL == nil)
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   594
         || (__isSmallInteger(wL) && (pos <= __intVal(wL)))) {
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   595
            OBJ cls;
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   596
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   597
            cls = __qClass(coll);
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   598
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   599
            rL = __INST(readLimit);
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   600
            if (__isSmallInteger(rL)) {
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   601
                __readLimit = __intVal(rL);
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   602
            }
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   603
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   604
            if (cls == @global(String)) {
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   605
                if ((pos <= __stringSize(coll))
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   606
                 && (ch <= 0xFF)) { /* ch is unsigned */
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   607
                    __StringInstPtr(coll)->s_element[pos-1] = ch;
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   608
    advancePositionAndReturn: ;            
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   609
                    if ((__readLimit >= 0) && (pos >= __readLimit)) {
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8868
diff changeset
   610
                        __INST(readLimit) = __mkSmallInteger(pos);
8615
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   611
                    }
8913
b9498d27a554 64bit; mkSmallInteger
Claus Gittinger <cg@exept.de>
parents: 8868
diff changeset
   612
                    __INST(position) = __mkSmallInteger(__intVal(__INST(position)) + 1);
8615
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   613
                    RETURN ( anObject );
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   614
                }
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   615
            } else if (cls == @global(ByteArray)) {
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   616
                if ((pos <= __byteArraySize(coll))
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   617
                 && (ch <= 0xFF)) { /* ch is unsigned */
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   618
                    __ByteArrayInstPtr(coll)->ba_element[pos-1] = ch;
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   619
                    goto advancePositionAndReturn;
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   620
                }
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   621
            }
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   622
        }
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   623
    }
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   624
#endif
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   625
%}.
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   626
    ^ super nextPutByte:anObject
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   627
!
df60f835f2e0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8437
diff changeset
   628
8361
726a906f1901 tuned nextPutBytes
Claus Gittinger <cg@exept.de>
parents: 8320
diff changeset
   629
nextPutBytes:count from:anObject startingAt:start
726a906f1901 tuned nextPutBytes
Claus Gittinger <cg@exept.de>
parents: 8320
diff changeset
   630
    "write count bytes from an object starting at index start.
726a906f1901 tuned nextPutBytes
Claus Gittinger <cg@exept.de>
parents: 8320
diff changeset
   631
     Return the number of bytes written.
726a906f1901 tuned nextPutBytes
Claus Gittinger <cg@exept.de>
parents: 8320
diff changeset
   632
     The object must have non-pointer indexed instvars 
726a906f1901 tuned nextPutBytes
Claus Gittinger <cg@exept.de>
parents: 8320
diff changeset
   633
     (i.e. be a ByteArray, String, Float- or DoubleArray).     
726a906f1901 tuned nextPutBytes
Claus Gittinger <cg@exept.de>
parents: 8320
diff changeset
   634
     Use with care - non object oriented i/o.
726a906f1901 tuned nextPutBytes
Claus Gittinger <cg@exept.de>
parents: 8320
diff changeset
   635
     This is provided for compatibility with externalStream;
726a906f1901 tuned nextPutBytes
Claus Gittinger <cg@exept.de>
parents: 8320
diff changeset
   636
     to support binary storage"
726a906f1901 tuned nextPutBytes
Claus Gittinger <cg@exept.de>
parents: 8320
diff changeset
   637
11794
ad5fcc151a09 #on: - set readLimit to 0, so that setToEnd positions to end of written
Stefan Vogel <sv@exept.de>
parents: 11324
diff changeset
   638
    anObject isByteCollection ifTrue:[
8361
726a906f1901 tuned nextPutBytes
Claus Gittinger <cg@exept.de>
parents: 8320
diff changeset
   639
        self nextPutAll:anObject startingAt:start to:(start + count - 1).
726a906f1901 tuned nextPutBytes
Claus Gittinger <cg@exept.de>
parents: 8320
diff changeset
   640
        ^ count.
726a906f1901 tuned nextPutBytes
Claus Gittinger <cg@exept.de>
parents: 8320
diff changeset
   641
    ].
726a906f1901 tuned nextPutBytes
Claus Gittinger <cg@exept.de>
parents: 8320
diff changeset
   642
    ^ super nextPutBytes:count from:anObject startingAt:start
11324
670872419b37 Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 10281
diff changeset
   643
!
670872419b37 Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 10281
diff changeset
   644
670872419b37 Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 10281
diff changeset
   645
nextPutUnicode:aCharacter
670872419b37 Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 10281
diff changeset
   646
    "normal streams can not handle multi-byte characters, so convert them to utf8"
670872419b37 Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 10281
diff changeset
   647
15653
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   648
    "this code is not perfect if you use both #nextPut: and #nextPutUnicode:
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   649
     with the same stream, since 8-bit characters (with the highest bits set) 
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   650
     are not stored as UTF, so we get some inconsistent string"
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   651
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   652
    collection isString ifTrue:[
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   653
        collection bitsPerCharacter == 16 ifTrue:[
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   654
            self nextPutUtf16:aCharacter.
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   655
        ] ifFalse:[
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   656
            self nextPutUtf8:aCharacter.
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   657
        ].
11324
670872419b37 Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 10281
diff changeset
   658
    ] ifFalse:[
670872419b37 Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 10281
diff changeset
   659
        self nextPut:aCharacter.
670872419b37 Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 10281
diff changeset
   660
    ].
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   661
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   662
1965
4ca38574df3b Fix typo.
Stefan Vogel <sv@exept.de>
parents: 1584
diff changeset
   663
!WriteStream class methodsFor:'documentation'!
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   664
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   665
version
15653
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   666
    ^ '$Header: /cvs/stx/stx/libbasic/WriteStream.st,v 1.82 2013-08-20 13:45:48 stefan Exp $'
12130
5af9bdd94754 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 11794
diff changeset
   667
!
5af9bdd94754 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 11794
diff changeset
   668
5af9bdd94754 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 11794
diff changeset
   669
version_CVS
15653
197b5c750d10 class: WriteStream
Stefan Vogel <sv@exept.de>
parents: 15646
diff changeset
   670
    ^ '$Header: /cvs/stx/stx/libbasic/WriteStream.st,v 1.82 2013-08-20 13:45:48 stefan Exp $'
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 611
diff changeset
   671
! !
14935
1da1e979948c setCollection: moved
Claus Gittinger <cg@exept.de>
parents: 14562
diff changeset
   672