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