Stream.st
author Claus Gittinger <cg@exept.de>
Thu, 15 May 2014 10:25:03 +0200
changeset 16454 ea42dcd0ad0a
parent 16453 690e4afd2a5d
child 16472 6d33536e4fa4
permissions -rw-r--r--
class: Stream comment/format in: #nextPutLine: category of: #close
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
216
a8abff749575 *** empty log message ***
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
"
5392
deafa504029a moved chunkSeparator from PositionableStream
Claus Gittinger <cg@exept.de>
parents: 5072
diff changeset
    12
"{ Package: 'stx:libbasic' }"
deafa504029a moved chunkSeparator from PositionableStream
Claus Gittinger <cg@exept.de>
parents: 5072
diff changeset
    13
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    14
Object subclass:#Stream
970
3b59c9b38dbb ST80 compatibility: generate signal at end of stream when instance variable
Stefan Vogel <sv@exept.de>
parents: 846
diff changeset
    15
	instanceVariableNames:'signalAtEnd'
846
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
    16
	classVariableNames:'StreamErrorSignal PositionErrorSignal ReadErrorSignal
5392
deafa504029a moved chunkSeparator from PositionableStream
Claus Gittinger <cg@exept.de>
parents: 5072
diff changeset
    17
		WriteErrorSignal EndOfStreamSignal LineTooLongErrorSignal
deafa504029a moved chunkSeparator from PositionableStream
Claus Gittinger <cg@exept.de>
parents: 5072
diff changeset
    18
		ChunkSeparator'
743
8d31a7568e44 nextPutLine:
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
    19
	poolDictionaries:''
8d31a7568e44 nextPutLine:
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
    20
	category:'Streams'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    21
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    22
1949
5fd7fa45a817 commentary
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
    23
!Stream class methodsFor:'documentation'!
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    24
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    25
copyright
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    26
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    27
 COPYRIGHT (c) 1989 by Claus Gittinger
216
a8abff749575 *** empty log message ***
claus
parents: 95
diff changeset
    28
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    29
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    30
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    31
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    33
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    34
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    35
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    36
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    37
!
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    38
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    39
documentation
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    40
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    41
    An abstract class defining common behavior for all stream-like objects.
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    42
    See concrete subclasses for more detail.
345
claus
parents: 339
diff changeset
    43
1404
8da8d767bb18 comments
Claus Gittinger <cg@exept.de>
parents: 1403
diff changeset
    44
    The protocol as implemented here is often only provided as a fallBack
8da8d767bb18 comments
Claus Gittinger <cg@exept.de>
parents: 1403
diff changeset
    45
    for very uncommon cases. Much of it is redefined for performance.
8da8d767bb18 comments
Claus Gittinger <cg@exept.de>
parents: 1403
diff changeset
    46
    (In streams which know more about their internal representation ...)
8da8d767bb18 comments
Claus Gittinger <cg@exept.de>
parents: 1403
diff changeset
    47
8da8d767bb18 comments
Claus Gittinger <cg@exept.de>
parents: 1403
diff changeset
    48
345
claus
parents: 339
diff changeset
    49
    Subclasses should (at least) implement:
6373
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    50
	#next           (if readable)
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    51
	#nextPut:       (if writable)
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    52
	#contents
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    53
	#atEnd
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    54
	#isReadable
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    55
	#isWritable
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
    56
1404
8da8d767bb18 comments
Claus Gittinger <cg@exept.de>
parents: 1403
diff changeset
    57
    Peekable & Positionable streams should (at least) implement:
6373
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    58
	#peek
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    59
	#position
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    60
	#position:
1404
8da8d767bb18 comments
Claus Gittinger <cg@exept.de>
parents: 1403
diff changeset
    61
8da8d767bb18 comments
Claus Gittinger <cg@exept.de>
parents: 1403
diff changeset
    62
3590
d22de87c7fbd removed endOfStreamQuery - instead, handle unhandled exception
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
    63
    [instance variables:]
6373
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    64
	signalAtEnd             <nil | Boolean> controls behavior when a read
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    65
						is attempted past the end-of-stream
8309
63dc3e0f5e51 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
    66
						if true, the endOfStreamSignal is raised.
6373
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    67
						if false, nil is returned.
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    68
						if nil (the default), the signal
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    69
						is raised, but if there is no handler,
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    70
						nil is returned.
3590
d22de87c7fbd removed endOfStreamQuery - instead, handle unhandled exception
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
    71
        
8309
63dc3e0f5e51 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
    72
    [Class variables / Exceptions:]
63dc3e0f5e51 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
    73
	StreamError             <Exception>     parent of all stream errors
63dc3e0f5e51 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
    74
63dc3e0f5e51 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
    75
	PositionError           <Exception>     position attemted on a stream
6373
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    76
						which does not support positioning,
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    77
						or if the position is invalid.
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    78
8309
63dc3e0f5e51 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
    79
	ReadError               <Exception>     raised on read errors
63dc3e0f5e51 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
    80
63dc3e0f5e51 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
    81
	WriteError              <Exception>     raised on write errors
6373
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    82
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    83
	EndOfStreamSignal       <Signal>        raised at end of stream if signalAtEnd
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    84
						is enabled.
970
3b59c9b38dbb ST80 compatibility: generate signal at end of stream when instance variable
Stefan Vogel <sv@exept.de>
parents: 846
diff changeset
    85
1295
83f594f05c52 documentation
Claus Gittinger <cg@exept.de>
parents: 1119
diff changeset
    86
    [author:]
6373
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
    87
	Claus Gittinger
88
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    88
"
81dacba7a63a *** empty log message ***
claus
parents: 77
diff changeset
    89
! !
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    90
1949
5fd7fa45a817 commentary
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
    91
!Stream class methodsFor:'initialization'!
593
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
    92
5991
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
    93
initSignals
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
    94
    StreamErrorSignal := StreamError.
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
    95
    StreamErrorSignal notifierString:'Stream error'.
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
    96
8071
311e72cba17b class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8054
diff changeset
    97
    PositionErrorSignal := PositionError.
6314
e1aad938d629 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6313
diff changeset
    98
    PositionErrorSignal notifierString:'stream has no concept of a position'.
5991
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
    99
8071
311e72cba17b class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8054
diff changeset
   100
    ReadErrorSignal := ReadError.
5991
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
   101
    ReadErrorSignal notifierString:'read error'.
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
   102
8071
311e72cba17b class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8054
diff changeset
   103
    WriteErrorSignal := WriteError.
5991
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
   104
    WriteErrorSignal notifierString:'write error'.
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
   105
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
   106
    LineTooLongErrorSignal := QuerySignal new.
8515
bad8a3282584 Use EndOfStreamNotification
Stefan Vogel <sv@exept.de>
parents: 8507
diff changeset
   107
    LineTooLongErrorSignal parent:StreamError.
5991
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
   108
    LineTooLongErrorSignal nameClass:self message:#lineTooLongErrorSignal.
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
   109
    LineTooLongErrorSignal notifierString:'line too long'.
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
   110
8515
bad8a3282584 Use EndOfStreamNotification
Stefan Vogel <sv@exept.de>
parents: 8507
diff changeset
   111
    EndOfStreamSignal := EndOfStreamNotification.
5991
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
   112
    EndOfStreamSignal notifierString:'end of stream'.
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
   113
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
   114
    "Created: / 7.9.2001 / 14:15:13 / cg"
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
   115
    "Modified: / 7.9.2001 / 14:15:27 / cg"
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
   116
!
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
   117
593
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   118
initialize
5392
deafa504029a moved chunkSeparator from PositionableStream
Claus Gittinger <cg@exept.de>
parents: 5072
diff changeset
   119
    ChunkSeparator := $!!.
deafa504029a moved chunkSeparator from PositionableStream
Claus Gittinger <cg@exept.de>
parents: 5072
diff changeset
   120
8309
63dc3e0f5e51 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
   121
    LineTooLongErrorSignal isNil ifTrue:[
6373
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
   122
	self initSignals
593
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   123
    ]
3590
d22de87c7fbd removed endOfStreamQuery - instead, handle unhandled exception
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
   124
3911
6d4ff4cc4216 Make some signals proceedable.
Stefan Vogel <sv@exept.de>
parents: 3877
diff changeset
   125
    "Modified: / 1.11.1998 / 15:57:37 / stefan"
5991
4e4a6af1a2e5 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5960
diff changeset
   126
    "Modified: / 7.9.2001 / 14:15:51 / cg"
593
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   127
! !
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   128
1949
5fd7fa45a817 commentary
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
   129
!Stream class methodsFor:'instance creation'!
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   130
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   131
new
1119
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1117
diff changeset
   132
    "{ Pragma: +optSpace }"
956d62a5656c compile seldom used methods with optSpace (is this a good idea ?)
Claus Gittinger <cg@exept.de>
parents: 1117
diff changeset
   133
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   134
    "report an error - Streams are created using on:-messages"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   135
4530
793b116fef3e error: vs. error:mayProceed:
Claus Gittinger <cg@exept.de>
parents: 4467
diff changeset
   136
    self error:'Streams cannot be created with new'
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   137
! !
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   138
1949
5fd7fa45a817 commentary
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
   139
!Stream class methodsFor:'Signal constants'!
593
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   140
970
3b59c9b38dbb ST80 compatibility: generate signal at end of stream when instance variable
Stefan Vogel <sv@exept.de>
parents: 846
diff changeset
   141
endOfStreamSignal
3b59c9b38dbb ST80 compatibility: generate signal at end of stream when instance variable
Stefan Vogel <sv@exept.de>
parents: 846
diff changeset
   142
    "return the signal raised if read past end of stream is attemted"
3b59c9b38dbb ST80 compatibility: generate signal at end of stream when instance variable
Stefan Vogel <sv@exept.de>
parents: 846
diff changeset
   143
8515
bad8a3282584 Use EndOfStreamNotification
Stefan Vogel <sv@exept.de>
parents: 8507
diff changeset
   144
    ^ EndOfStreamNotification
970
3b59c9b38dbb ST80 compatibility: generate signal at end of stream when instance variable
Stefan Vogel <sv@exept.de>
parents: 846
diff changeset
   145
!
3b59c9b38dbb ST80 compatibility: generate signal at end of stream when instance variable
Stefan Vogel <sv@exept.de>
parents: 846
diff changeset
   146
6348
202f389800c7 Add #incompleteNextCountSignal
Stefan Vogel <sv@exept.de>
parents: 6314
diff changeset
   147
incompleteNextCountSignal
202f389800c7 Add #incompleteNextCountSignal
Stefan Vogel <sv@exept.de>
parents: 6314
diff changeset
   148
    "return the signal raised if not all requested elements are returned"
202f389800c7 Add #incompleteNextCountSignal
Stefan Vogel <sv@exept.de>
parents: 6314
diff changeset
   149
202f389800c7 Add #incompleteNextCountSignal
Stefan Vogel <sv@exept.de>
parents: 6314
diff changeset
   150
    ^ IncompleteNextCountError
202f389800c7 Add #incompleteNextCountSignal
Stefan Vogel <sv@exept.de>
parents: 6314
diff changeset
   151
!
202f389800c7 Add #incompleteNextCountSignal
Stefan Vogel <sv@exept.de>
parents: 6314
diff changeset
   152
3877
16673e28625b added LineTooLongErrorSignal
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   153
lineTooLongErrorSignal
16673e28625b added LineTooLongErrorSignal
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   154
    "return the signal raised if a line is read which is too long (>32k)"
16673e28625b added LineTooLongErrorSignal
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   155
16673e28625b added LineTooLongErrorSignal
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   156
    ^ LineTooLongErrorSignal
16673e28625b added LineTooLongErrorSignal
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   157
16673e28625b added LineTooLongErrorSignal
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   158
    "Created: / 15.10.1998 / 12:11:14 / cg"
16673e28625b added LineTooLongErrorSignal
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   159
!
16673e28625b added LineTooLongErrorSignal
Claus Gittinger <cg@exept.de>
parents: 3593
diff changeset
   160
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   161
positionErrorSignal
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   162
    "return the signal raised if positioning is requested for
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   163
     a stream which does not support that kind of operation"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   164
8309
63dc3e0f5e51 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
   165
    ^ PositionError
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   166
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   167
820
6d934f5d6cbc moved readErrorSignal / writeErrorSignal up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
   168
readErrorSignal
6d934f5d6cbc moved readErrorSignal / writeErrorSignal up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
   169
    "return the signal raised on read errors"
6d934f5d6cbc moved readErrorSignal / writeErrorSignal up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
   170
8309
63dc3e0f5e51 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
   171
    ^ ReadError
820
6d934f5d6cbc moved readErrorSignal / writeErrorSignal up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
   172
!
6d934f5d6cbc moved readErrorSignal / writeErrorSignal up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
   173
593
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   174
streamErrorSignal
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   175
    "return the parent of all stream errors;
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   176
     handling this one also handles all other errors.
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   177
     Also, this one may be raised for errors not related to read/write
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   178
     operations, such as failed ioctls in externalStream etc."
19d568779cf7 moved StreamErrorSignal into Stream;
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   179
8309
63dc3e0f5e51 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
   180
    ^ StreamError
820
6d934f5d6cbc moved readErrorSignal / writeErrorSignal up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
   181
!
6d934f5d6cbc moved readErrorSignal / writeErrorSignal up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
   182
6d934f5d6cbc moved readErrorSignal / writeErrorSignal up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
   183
writeErrorSignal
6d934f5d6cbc moved readErrorSignal / writeErrorSignal up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
   184
    "return the signal raised on write errors"
6d934f5d6cbc moved readErrorSignal / writeErrorSignal up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 743
diff changeset
   185
8309
63dc3e0f5e51 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
   186
    ^ WriteError
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   187
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   188
5392
deafa504029a moved chunkSeparator from PositionableStream
Claus Gittinger <cg@exept.de>
parents: 5072
diff changeset
   189
!Stream class methodsFor:'constants'!
deafa504029a moved chunkSeparator from PositionableStream
Claus Gittinger <cg@exept.de>
parents: 5072
diff changeset
   190
deafa504029a moved chunkSeparator from PositionableStream
Claus Gittinger <cg@exept.de>
parents: 5072
diff changeset
   191
chunkSeparator
deafa504029a moved chunkSeparator from PositionableStream
Claus Gittinger <cg@exept.de>
parents: 5072
diff changeset
   192
    "return the chunk-separation character"
deafa504029a moved chunkSeparator from PositionableStream
Claus Gittinger <cg@exept.de>
parents: 5072
diff changeset
   193
deafa504029a moved chunkSeparator from PositionableStream
Claus Gittinger <cg@exept.de>
parents: 5072
diff changeset
   194
    ^ ChunkSeparator
deafa504029a moved chunkSeparator from PositionableStream
Claus Gittinger <cg@exept.de>
parents: 5072
diff changeset
   195
! !
deafa504029a moved chunkSeparator from PositionableStream
Claus Gittinger <cg@exept.de>
parents: 5072
diff changeset
   196
16197
9e2f05c2fd42 class: Stream
Stefan Vogel <sv@exept.de>
parents: 16086
diff changeset
   197
9e2f05c2fd42 class: Stream
Stefan Vogel <sv@exept.de>
parents: 16086
diff changeset
   198
16453
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
   199
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   200
!Stream methodsFor:'accessing'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   201
a27a279701f8 Initial revision
claus
parents:
diff changeset
   202
contents
11693
ccc2aa0c962d nope - contents
Claus Gittinger <cg@exept.de>
parents: 11692
diff changeset
   203
    "return the entire contents of the stream.
ccc2aa0c962d nope - contents
Claus Gittinger <cg@exept.de>
parents: 11692
diff changeset
   204
     For a readStream, that is the rest (i.e. upToEnd),
ccc2aa0c962d nope - contents
Claus Gittinger <cg@exept.de>
parents: 11692
diff changeset
   205
     for a writeStream, that is the collected data. As we do not know here,
ccc2aa0c962d nope - contents
Claus Gittinger <cg@exept.de>
parents: 11692
diff changeset
   206
     what we are, this is the responsibility of a subclass..."
ccc2aa0c962d nope - contents
Claus Gittinger <cg@exept.de>
parents: 11692
diff changeset
   207
ccc2aa0c962d nope - contents
Claus Gittinger <cg@exept.de>
parents: 11692
diff changeset
   208
    ^ self subclassResponsibility
970
3b59c9b38dbb ST80 compatibility: generate signal at end of stream when instance variable
Stefan Vogel <sv@exept.de>
parents: 846
diff changeset
   209
!
3b59c9b38dbb ST80 compatibility: generate signal at end of stream when instance variable
Stefan Vogel <sv@exept.de>
parents: 846
diff changeset
   210
3b59c9b38dbb ST80 compatibility: generate signal at end of stream when instance variable
Stefan Vogel <sv@exept.de>
parents: 846
diff changeset
   211
signalAtEnd
3105
1c9b9e9a47bc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3104
diff changeset
   212
    "return the signalAtEnd flag setting. 
1c9b9e9a47bc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3104
diff changeset
   213
     If true, reading past the end will always raise an EndOfStream exception. 
1c9b9e9a47bc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3104
diff changeset
   214
     If false, no exception is raised and nil is returned from all reading messages.
1c9b9e9a47bc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3104
diff changeset
   215
     If nil (default), the exception is raised if there is a handler; otherwise, nil is returned.
1c9b9e9a47bc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3104
diff changeset
   216
     The default is nil (for ST80 compatibility) i.e. to only raise a signal if there is a handler."
970
3b59c9b38dbb ST80 compatibility: generate signal at end of stream when instance variable
Stefan Vogel <sv@exept.de>
parents: 846
diff changeset
   217
3b59c9b38dbb ST80 compatibility: generate signal at end of stream when instance variable
Stefan Vogel <sv@exept.de>
parents: 846
diff changeset
   218
    ^ signalAtEnd
3b59c9b38dbb ST80 compatibility: generate signal at end of stream when instance variable
Stefan Vogel <sv@exept.de>
parents: 846
diff changeset
   219
3b59c9b38dbb ST80 compatibility: generate signal at end of stream when instance variable
Stefan Vogel <sv@exept.de>
parents: 846
diff changeset
   220
    "Created: 5.2.1996 / 18:24:53 / stefan"
1402
82462d153a7d added #nextAlphaNumericWord (completing the protocol); added comments
Claus Gittinger <cg@exept.de>
parents: 1401
diff changeset
   221
    "Modified: 15.5.1996 / 17:35:55 / cg"
970
3b59c9b38dbb ST80 compatibility: generate signal at end of stream when instance variable
Stefan Vogel <sv@exept.de>
parents: 846
diff changeset
   222
!
3b59c9b38dbb ST80 compatibility: generate signal at end of stream when instance variable
Stefan Vogel <sv@exept.de>
parents: 846
diff changeset
   223
1402
82462d153a7d added #nextAlphaNumericWord (completing the protocol); added comments
Claus Gittinger <cg@exept.de>
parents: 1401
diff changeset
   224
signalAtEnd:aBoolean
82462d153a7d added #nextAlphaNumericWord (completing the protocol); added comments
Claus Gittinger <cg@exept.de>
parents: 1401
diff changeset
   225
    "set the signalAtEnd flag setting. If true, reading past the end
82462d153a7d added #nextAlphaNumericWord (completing the protocol); added comments
Claus Gittinger <cg@exept.de>
parents: 1401
diff changeset
   226
     will raise an EndOfStream exception. If false, no exception is
82462d153a7d added #nextAlphaNumericWord (completing the protocol); added comments
Claus Gittinger <cg@exept.de>
parents: 1401
diff changeset
   227
     raised and nil is returned from all reading messages.
3590
d22de87c7fbd removed endOfStreamQuery - instead, handle unhandled exception
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
   228
     The default is to raise a signal, but return nil if
d22de87c7fbd removed endOfStreamQuery - instead, handle unhandled exception
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
   229
     not handled."
970
3b59c9b38dbb ST80 compatibility: generate signal at end of stream when instance variable
Stefan Vogel <sv@exept.de>
parents: 846
diff changeset
   230
1402
82462d153a7d added #nextAlphaNumericWord (completing the protocol); added comments
Claus Gittinger <cg@exept.de>
parents: 1401
diff changeset
   231
    signalAtEnd := aBoolean.
970
3b59c9b38dbb ST80 compatibility: generate signal at end of stream when instance variable
Stefan Vogel <sv@exept.de>
parents: 846
diff changeset
   232
3591
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   233
    "default behavior: return nil if unhandled ...
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   234
     |s|
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   235
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   236
     s := '12' readStream.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   237
     Transcript showCR:s next.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   238
     Transcript showCR:s next.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   239
     Transcript showCR:s next.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   240
     Transcript showCR:s next.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   241
    "
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   242
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   243
    "... raise error if handled.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   244
     |s|
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   245
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   246
     s := '12' readStream.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   247
     Stream endOfStreamSignal handle:[:ex |
6373
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
   248
	Transcript showCR:'end reached'.
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
   249
	ex return
3591
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   250
     ] do:[
6373
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
   251
	Transcript showCR:s next.
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
   252
	Transcript showCR:s next.
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
   253
	Transcript showCR:s next.
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
   254
	Transcript showCR:s next.
3591
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   255
     ]
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   256
    "
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   257
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   258
    "force raise (useful for debugging):
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   259
     |s|
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   260
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   261
     s := '12' readStream.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   262
     s signalAtEnd:true.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   263
     Transcript showCR:s next.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   264
     Transcript showCR:s next.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   265
     Transcript showCR:s next.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   266
     Transcript showCR:s next.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   267
    "
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   268
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   269
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   270
    "force no-raise (useful for compatibility with other systems):
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   271
     |s|
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   272
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   273
     s := '12' readStream.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   274
     s signalAtEnd:false.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   275
     Stream endOfStreamSignal handle:[:ex |
6373
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
   276
	Transcript showCR:'end reached'.
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
   277
	ex return
3591
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   278
     ] do:[
6373
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
   279
	Transcript showCR:s next.
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
   280
	Transcript showCR:s next.
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
   281
	Transcript showCR:s next.
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
   282
	Transcript showCR:s next.
3591
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   283
     ]
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   284
    "
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   285
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   286
    "Modified: / 16.6.1998 / 16:04:41 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   287
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   288
8630
e7f77fb0a44a added selector asStream
penk
parents: 8622
diff changeset
   289
!Stream methodsFor:'converting'!
e7f77fb0a44a added selector asStream
penk
parents: 8622
diff changeset
   290
16086
9b40fde96544 class: Stream
Claus Gittinger <cg@exept.de>
parents: 16085
diff changeset
   291
asLineNumberReadStream
9b40fde96544 class: Stream
Claus Gittinger <cg@exept.de>
parents: 16085
diff changeset
   292
    ^ LineNumberReadStream on:self
9b40fde96544 class: Stream
Claus Gittinger <cg@exept.de>
parents: 16085
diff changeset
   293
!
9b40fde96544 class: Stream
Claus Gittinger <cg@exept.de>
parents: 16085
diff changeset
   294
8630
e7f77fb0a44a added selector asStream
penk
parents: 8622
diff changeset
   295
asStream
e7f77fb0a44a added selector asStream
penk
parents: 8622
diff changeset
   296
    ^ self
e7f77fb0a44a added selector asStream
penk
parents: 8622
diff changeset
   297
! !
e7f77fb0a44a added selector asStream
penk
parents: 8622
diff changeset
   298
1401
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   299
!Stream methodsFor:'emphasis'!
1398
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   300
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   301
bold
1448
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   302
    "set emphasis to #bold.
1398
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   303
     this allows Streams to be used interchangeable with printStreams"
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   304
1448
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   305
    self emphasis:#bold.
1398
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   306
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   307
    "Created: 14.5.1996 / 17:37:37 / cg"
1448
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   308
    "Modified: 3.6.1996 / 16:57:17 / cg"
1398
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   309
!
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   310
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   311
boldItalic
1448
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   312
    "set emphasis to #boldItalic
1398
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   313
     this allows Streams to be used interchangeable with printStreams"
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   314
1448
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   315
    self emphasis:#(bold italic).
1398
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   316
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   317
    "Created: 14.5.1996 / 17:37:47 / cg"
1448
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   318
    "Modified: 3.6.1996 / 17:15:22 / cg"
1398
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   319
!
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   320
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   321
emphasis
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   322
    "ignored here - allows Streams to be used interchangable with
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   323
     text streams"
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   324
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   325
    ^ nil
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   326
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   327
    "Created: 14.5.1996 / 17:39:45 / cg"
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   328
!
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   329
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   330
emphasis:anEmphasis
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   331
    "ignored here.
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   332
     this allows Streams to be used interchangeable with printStreams"
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   333
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   334
    ^ self
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   335
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   336
    "Created: 14.5.1996 / 17:38:07 / cg"
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   337
!
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   338
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   339
italic 
1448
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   340
    "set emphasis to #italic.
1398
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   341
     this allows Streams to be used interchangeable with printStreams"
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   342
1448
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   343
    self emphasis:#italic.
1398
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   344
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   345
    "Created: 14.5.1996 / 17:37:55 / cg"
1448
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   346
    "Modified: 3.6.1996 / 17:15:32 / cg"
1398
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   347
!
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   348
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   349
normal
1448
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   350
    "set emphasis to #normal.
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   351
     this allows Streams to be used interchangeable with printStreams"
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   352
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   353
    self emphasis:nil
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   354
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   355
    "Created: 14.5.1996 / 17:37:59 / cg"
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   356
    "Modified: 3.6.1996 / 17:15:35 / cg"
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   357
!
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   358
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   359
strikeout
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   360
    "set emphasis to #strikeout.
1398
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   361
     this allows Streams to be used interchangeable with printStreams"
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   362
1448
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   363
    self emphasis:#strikeout.
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   364
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   365
    "Modified: 3.6.1996 / 16:57:56 / cg"
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   366
    "Created: 3.6.1996 / 17:15:45 / cg"
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   367
!
1398
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   368
1448
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   369
underline
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   370
    "set emphasis to #underline.
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   371
     this allows Streams to be used interchangeable with printStreams"
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   372
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   373
    self emphasis:#underline.
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   374
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   375
    "Created: 3.6.1996 / 17:00:03 / cg"
0d59ce5c4915 reduce all emphasis change messages to single #emphasis:
Claus Gittinger <cg@exept.de>
parents: 1447
diff changeset
   376
    "Modified: 3.6.1996 / 17:15:38 / cg"
14347
5ec269043202 added: #withEmphasis:do:
Claus Gittinger <cg@exept.de>
parents: 14303
diff changeset
   377
!
5ec269043202 added: #withEmphasis:do:
Claus Gittinger <cg@exept.de>
parents: 14303
diff changeset
   378
5ec269043202 added: #withEmphasis:do:
Claus Gittinger <cg@exept.de>
parents: 14303
diff changeset
   379
withEmphasis:anEmphasis do:aBlock
5ec269043202 added: #withEmphasis:do:
Claus Gittinger <cg@exept.de>
parents: 14303
diff changeset
   380
    "evaluate aBlock while my emphasis has been changed to anEmphasis.
5ec269043202 added: #withEmphasis:do:
Claus Gittinger <cg@exept.de>
parents: 14303
diff changeset
   381
     Emphasis is ignored here, but implemented in some subclasses (PrinterStream, TextCollector etc.)."
5ec269043202 added: #withEmphasis:do:
Claus Gittinger <cg@exept.de>
parents: 14303
diff changeset
   382
5ec269043202 added: #withEmphasis:do:
Claus Gittinger <cg@exept.de>
parents: 14303
diff changeset
   383
    |oldEmphasis|
5ec269043202 added: #withEmphasis:do:
Claus Gittinger <cg@exept.de>
parents: 14303
diff changeset
   384
5ec269043202 added: #withEmphasis:do:
Claus Gittinger <cg@exept.de>
parents: 14303
diff changeset
   385
    oldEmphasis := self emphasis.
5ec269043202 added: #withEmphasis:do:
Claus Gittinger <cg@exept.de>
parents: 14303
diff changeset
   386
    [
5ec269043202 added: #withEmphasis:do:
Claus Gittinger <cg@exept.de>
parents: 14303
diff changeset
   387
        self emphasis:anEmphasis.
5ec269043202 added: #withEmphasis:do:
Claus Gittinger <cg@exept.de>
parents: 14303
diff changeset
   388
        aBlock value
5ec269043202 added: #withEmphasis:do:
Claus Gittinger <cg@exept.de>
parents: 14303
diff changeset
   389
    ] ensure:[
5ec269043202 added: #withEmphasis:do:
Claus Gittinger <cg@exept.de>
parents: 14303
diff changeset
   390
        self emphasis:oldEmphasis.
5ec269043202 added: #withEmphasis:do:
Claus Gittinger <cg@exept.de>
parents: 14303
diff changeset
   391
    ].
5ec269043202 added: #withEmphasis:do:
Claus Gittinger <cg@exept.de>
parents: 14303
diff changeset
   392
5ec269043202 added: #withEmphasis:do:
Claus Gittinger <cg@exept.de>
parents: 14303
diff changeset
   393
    "Created: / 06-09-2012 / 16:12:55 / cg"
1398
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   394
! !
6c594289c589 emphasis stuff moved up in the hierarchy
Claus Gittinger <cg@exept.de>
parents: 1371
diff changeset
   395
1401
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   396
!Stream methodsFor:'enumerating'!
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   397
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   398
do:aBlock
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   399
    "evaluate the argument, aBlock for all remaining elements,
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   400
     up to the end of the stream"
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   401
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   402
    [self atEnd] whileFalse:[
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   403
	aBlock value:(self next)
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   404
    ]
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   405
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   406
    "
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   407
     |s|
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   408
     s := ReadStream on:#(1 2 3 4 5 6 7 8 9).
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   409
     s next.
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   410
     s next.
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1414
diff changeset
   411
     s do:[:element | Transcript showCR:element]
1401
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   412
    "
6384
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   413
!
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   414
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   415
linesDo:aBlock
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   416
    "evaluate the argument, aBlock for all lines,
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   417
     up to the end of the stream"
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   418
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   419
    [self atEnd] whileFalse:[
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   420
        aBlock value:(self nextLine)
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   421
    ]
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   422
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   423
    "
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   424
     |s|
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   425
     s := '/etc/hosts' asFilename readStream.
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   426
     s linesDo:[:line | Transcript showCR:line].
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   427
     s close
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   428
    "
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   429
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   430
    "
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   431
     Filename readingFile:'/etc/hosts' 
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   432
     do:[:s |
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   433
         s linesDo:[:line | Transcript showCR:line].
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   434
     ].
ac56e28add2c + linesDo:
Claus Gittinger <cg@exept.de>
parents: 6373
diff changeset
   435
    "
1401
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   436
! !
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   437
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   438
!Stream methodsFor:'error handling'!
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   439
7104
c88669d779f5 More openErrorSignal change preparations
Stefan Vogel <sv@exept.de>
parents: 7013
diff changeset
   440
checkNilFileStream
c88669d779f5 More openErrorSignal change preparations
Stefan Vogel <sv@exept.de>
parents: 7013
diff changeset
   441
    "Do nothing if this is a valid FileStream
c88669d779f5 More openErrorSignal change preparations
Stefan Vogel <sv@exept.de>
parents: 7013
diff changeset
   442
     (i.e. the previous open operation was successful).
c88669d779f5 More openErrorSignal change preparations
Stefan Vogel <sv@exept.de>
parents: 7013
diff changeset
   443
     Also implemented in UndefinedObject, to raise an Error there.
c88669d779f5 More openErrorSignal change preparations
Stefan Vogel <sv@exept.de>
parents: 7013
diff changeset
   444
c88669d779f5 More openErrorSignal change preparations
Stefan Vogel <sv@exept.de>
parents: 7013
diff changeset
   445
     This is an aid for converting from the old error reporting (returning nil)
8309
63dc3e0f5e51 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
   446
     to the new error reporting (with real Exceptions).
7104
c88669d779f5 More openErrorSignal change preparations
Stefan Vogel <sv@exept.de>
parents: 7013
diff changeset
   447
c88669d779f5 More openErrorSignal change preparations
Stefan Vogel <sv@exept.de>
parents: 7013
diff changeset
   448
     It will vanish as soon as the conversion has been done"
c88669d779f5 More openErrorSignal change preparations
Stefan Vogel <sv@exept.de>
parents: 7013
diff changeset
   449
c88669d779f5 More openErrorSignal change preparations
Stefan Vogel <sv@exept.de>
parents: 7013
diff changeset
   450
    ^ self
c88669d779f5 More openErrorSignal change preparations
Stefan Vogel <sv@exept.de>
parents: 7013
diff changeset
   451
!
c88669d779f5 More openErrorSignal change preparations
Stefan Vogel <sv@exept.de>
parents: 7013
diff changeset
   452
1401
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   453
pastEnd
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   454
    "someone tried to read after the end of the stream.
3104
4b817b05cde0 vw compatible readPastEnd: only raise the signal if its handled;
Claus Gittinger <cg@exept.de>
parents: 3084
diff changeset
   455
     If signalAtEnd == true, raise a signal. If its false, return nil.
4b817b05cde0 vw compatible readPastEnd: only raise the signal if its handled;
Claus Gittinger <cg@exept.de>
parents: 3084
diff changeset
   456
     Otherwise raise the signal, but only if handled; otherwise return nil."
1401
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   457
8622
f92ae83ff3dd Mark #pastEnd: as obsolete.
Stefan Vogel <sv@exept.de>
parents: 8614
diff changeset
   458
    <resource: #obsolete>
f92ae83ff3dd Mark #pastEnd: as obsolete.
Stefan Vogel <sv@exept.de>
parents: 8614
diff changeset
   459
9061
20af48b9b295 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9001
diff changeset
   460
    self obsoleteMethodWarning:'use #pastEndRead'.
10181
b84033d6da20 pastEnd return value
Claus Gittinger <cg@exept.de>
parents: 9407
diff changeset
   461
    ^ self pastEndRead
b84033d6da20 pastEnd return value
Claus Gittinger <cg@exept.de>
parents: 9407
diff changeset
   462
b84033d6da20 pastEnd return value
Claus Gittinger <cg@exept.de>
parents: 9407
diff changeset
   463
    "Modified: / 18-11-2006 / 15:36:44 / cg"
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8598
diff changeset
   464
!
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8598
diff changeset
   465
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8598
diff changeset
   466
pastEndRead
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8598
diff changeset
   467
    "someone tried to read after the end of the stream.
8992
0feb5e68e5a7 Raise EndOfStreamError when signalAtEnd: is set to true
Stefan Vogel <sv@exept.de>
parents: 8988
diff changeset
   468
     If signalAtEnd == true, raise a signal. 
0feb5e68e5a7 Raise EndOfStreamError when signalAtEnd: is set to true
Stefan Vogel <sv@exept.de>
parents: 8988
diff changeset
   469
     If it is false, return nil.
0feb5e68e5a7 Raise EndOfStreamError when signalAtEnd: is set to true
Stefan Vogel <sv@exept.de>
parents: 8988
diff changeset
   470
     Otherwise raise a notification, which is ignored if not handled; 
0feb5e68e5a7 Raise EndOfStreamError when signalAtEnd: is set to true
Stefan Vogel <sv@exept.de>
parents: 8988
diff changeset
   471
     otherwise return nil."
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8598
diff changeset
   472
13380
27e3cfa617a4 changed: #pastEndRead
Stefan Vogel <sv@exept.de>
parents: 13330
diff changeset
   473
    |shouldSignalAtEnd|
27e3cfa617a4 changed: #pastEndRead
Stefan Vogel <sv@exept.de>
parents: 13330
diff changeset
   474
27e3cfa617a4 changed: #pastEndRead
Stefan Vogel <sv@exept.de>
parents: 13330
diff changeset
   475
    shouldSignalAtEnd := self signalAtEnd.
27e3cfa617a4 changed: #pastEndRead
Stefan Vogel <sv@exept.de>
parents: 13330
diff changeset
   476
27e3cfa617a4 changed: #pastEndRead
Stefan Vogel <sv@exept.de>
parents: 13330
diff changeset
   477
    shouldSignalAtEnd == true ifTrue:[
8992
0feb5e68e5a7 Raise EndOfStreamError when signalAtEnd: is set to true
Stefan Vogel <sv@exept.de>
parents: 8988
diff changeset
   478
        "raise - a hard error..."
0feb5e68e5a7 Raise EndOfStreamError when signalAtEnd: is set to true
Stefan Vogel <sv@exept.de>
parents: 8988
diff changeset
   479
        ^ EndOfStreamError raiseRequestFrom:self
3104
4b817b05cde0 vw compatible readPastEnd: only raise the signal if its handled;
Claus Gittinger <cg@exept.de>
parents: 3084
diff changeset
   480
    ].
13380
27e3cfa617a4 changed: #pastEndRead
Stefan Vogel <sv@exept.de>
parents: 13330
diff changeset
   481
    shouldSignalAtEnd == false ifTrue:[
8515
bad8a3282584 Use EndOfStreamNotification
Stefan Vogel <sv@exept.de>
parents: 8507
diff changeset
   482
        "never raise ..."
bad8a3282584 Use EndOfStreamNotification
Stefan Vogel <sv@exept.de>
parents: 8507
diff changeset
   483
        ^ nil
1401
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   484
    ].
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   485
8992
0feb5e68e5a7 Raise EndOfStreamError when signalAtEnd: is set to true
Stefan Vogel <sv@exept.de>
parents: 8988
diff changeset
   486
    "EndOfStreamNotification is ignored, if there is no handler.
0feb5e68e5a7 Raise EndOfStreamError when signalAtEnd: is set to true
Stefan Vogel <sv@exept.de>
parents: 8988
diff changeset
   487
     In this case, nil is returned"
0feb5e68e5a7 Raise EndOfStreamError when signalAtEnd: is set to true
Stefan Vogel <sv@exept.de>
parents: 8988
diff changeset
   488
0feb5e68e5a7 Raise EndOfStreamError when signalAtEnd: is set to true
Stefan Vogel <sv@exept.de>
parents: 8988
diff changeset
   489
    ^ EndOfStreamNotification raiseRequestFrom:self
0feb5e68e5a7 Raise EndOfStreamError when signalAtEnd: is set to true
Stefan Vogel <sv@exept.de>
parents: 8988
diff changeset
   490
0feb5e68e5a7 Raise EndOfStreamError when signalAtEnd: is set to true
Stefan Vogel <sv@exept.de>
parents: 8988
diff changeset
   491
0feb5e68e5a7 Raise EndOfStreamError when signalAtEnd: is set to true
Stefan Vogel <sv@exept.de>
parents: 8988
diff changeset
   492
    " ... no handler, no raise
3591
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   493
     |s|
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   494
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   495
     s := '12' readStream.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   496
     Transcript showCR:s next.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   497
     Transcript showCR:s next.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   498
     Transcript showCR:s next.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   499
     Transcript showCR:s next.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   500
    "
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   501
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   502
    "... raise error if handled.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   503
     |s|
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   504
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   505
     s := '12' readStream.
8992
0feb5e68e5a7 Raise EndOfStreamError when signalAtEnd: is set to true
Stefan Vogel <sv@exept.de>
parents: 8988
diff changeset
   506
     EndOfStreamNotification handle:[:ex |
8515
bad8a3282584 Use EndOfStreamNotification
Stefan Vogel <sv@exept.de>
parents: 8507
diff changeset
   507
        Transcript showCR:'end reached'.
bad8a3282584 Use EndOfStreamNotification
Stefan Vogel <sv@exept.de>
parents: 8507
diff changeset
   508
        ex return
3591
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   509
     ] do:[
8515
bad8a3282584 Use EndOfStreamNotification
Stefan Vogel <sv@exept.de>
parents: 8507
diff changeset
   510
        Transcript showCR:s next.
bad8a3282584 Use EndOfStreamNotification
Stefan Vogel <sv@exept.de>
parents: 8507
diff changeset
   511
        Transcript showCR:s next.
bad8a3282584 Use EndOfStreamNotification
Stefan Vogel <sv@exept.de>
parents: 8507
diff changeset
   512
        Transcript showCR:s next.
bad8a3282584 Use EndOfStreamNotification
Stefan Vogel <sv@exept.de>
parents: 8507
diff changeset
   513
        Transcript showCR:s next.
3591
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   514
     ]
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   515
    "
3104
4b817b05cde0 vw compatible readPastEnd: only raise the signal if its handled;
Claus Gittinger <cg@exept.de>
parents: 3084
diff changeset
   516
3591
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   517
    "force raise (useful for debugging):
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   518
     |s|
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   519
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   520
     s := '12' readStream.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   521
     s signalAtEnd:true.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   522
     Transcript showCR:s next.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   523
     Transcript showCR:s next.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   524
     Transcript showCR:s next.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   525
     Transcript showCR:s next.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   526
    "
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   527
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   528
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   529
    "force no-raise (useful for compatibility with other systems):
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   530
     |s|
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   531
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   532
     s := '12' readStream.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   533
     s signalAtEnd:false.
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   534
     Stream endOfStreamSignal handle:[:ex |
8515
bad8a3282584 Use EndOfStreamNotification
Stefan Vogel <sv@exept.de>
parents: 8507
diff changeset
   535
        Transcript showCR:'end reached'.
bad8a3282584 Use EndOfStreamNotification
Stefan Vogel <sv@exept.de>
parents: 8507
diff changeset
   536
        ex return
3591
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   537
     ] do:[
8515
bad8a3282584 Use EndOfStreamNotification
Stefan Vogel <sv@exept.de>
parents: 8507
diff changeset
   538
        Transcript showCR:s next.
bad8a3282584 Use EndOfStreamNotification
Stefan Vogel <sv@exept.de>
parents: 8507
diff changeset
   539
        Transcript showCR:s next.
bad8a3282584 Use EndOfStreamNotification
Stefan Vogel <sv@exept.de>
parents: 8507
diff changeset
   540
        Transcript showCR:s next.
bad8a3282584 Use EndOfStreamNotification
Stefan Vogel <sv@exept.de>
parents: 8507
diff changeset
   541
        Transcript showCR:s next.
3591
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   542
     ]
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   543
    "
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   544
15f2bc77be70 comment;
Claus Gittinger <cg@exept.de>
parents: 3590
diff changeset
   545
    "Modified: / 16.6.1998 / 16:04:13 / cg"
1401
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   546
! !
ee3de5b5742d checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1398
diff changeset
   547
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   548
!Stream methodsFor:'misc'!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   549
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   550
binary
1402
82462d153a7d added #nextAlphaNumericWord (completing the protocol); added comments
Claus Gittinger <cg@exept.de>
parents: 1401
diff changeset
   551
    "switch to binary mode. In binary mode, reading of text streams
82462d153a7d added #nextAlphaNumericWord (completing the protocol); added comments
Claus Gittinger <cg@exept.de>
parents: 1401
diff changeset
   552
     returns byte-valued integers instead of characters; writing expects
82462d153a7d added #nextAlphaNumericWord (completing the protocol); added comments
Claus Gittinger <cg@exept.de>
parents: 1401
diff changeset
   553
     byte-valued integers respectively.
82462d153a7d added #nextAlphaNumericWord (completing the protocol); added comments
Claus Gittinger <cg@exept.de>
parents: 1401
diff changeset
   554
     Ignored here, but added to make internalStreams protocol compatible 
82462d153a7d added #nextAlphaNumericWord (completing the protocol); added comments
Claus Gittinger <cg@exept.de>
parents: 1401
diff changeset
   555
     with externalStreams."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   556
1402
82462d153a7d added #nextAlphaNumericWord (completing the protocol); added comments
Claus Gittinger <cg@exept.de>
parents: 1401
diff changeset
   557
    "Modified: 15.5.1996 / 17:38:36 / cg"
1665
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   558
!
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   559
7497
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7483
diff changeset
   560
blocking:aBoolean
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7483
diff changeset
   561
    "set non-blocking mode.
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7483
diff changeset
   562
     Ignored, since internal streams never block"
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7483
diff changeset
   563
7498
9637184b10fe ExternalStream>>blocking: returns previous blocking status
Stefan Vogel <sv@exept.de>
parents: 7497
diff changeset
   564
    ^ false.
7497
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7483
diff changeset
   565
!
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7483
diff changeset
   566
8507
9d392516725c more external stream compatibility
Stefan Vogel <sv@exept.de>
parents: 8338
diff changeset
   567
eolMode:aSymbol
9d392516725c more external stream compatibility
Stefan Vogel <sv@exept.de>
parents: 8338
diff changeset
   568
    "Ignored here, but added to make internalStreams protocol compatible 
9d392516725c more external stream compatibility
Stefan Vogel <sv@exept.de>
parents: 8338
diff changeset
   569
     with externalStreams."
9d392516725c more external stream compatibility
Stefan Vogel <sv@exept.de>
parents: 8338
diff changeset
   570
!
9d392516725c more external stream compatibility
Stefan Vogel <sv@exept.de>
parents: 8338
diff changeset
   571
9d392516725c more external stream compatibility
Stefan Vogel <sv@exept.de>
parents: 8338
diff changeset
   572
lineEndCRLF
9d392516725c more external stream compatibility
Stefan Vogel <sv@exept.de>
parents: 8338
diff changeset
   573
    "Ignored here, but added to make internalStreams protocol compatible 
9d392516725c more external stream compatibility
Stefan Vogel <sv@exept.de>
parents: 8338
diff changeset
   574
     with externalStreams."
9d392516725c more external stream compatibility
Stefan Vogel <sv@exept.de>
parents: 8338
diff changeset
   575
!
9d392516725c more external stream compatibility
Stefan Vogel <sv@exept.de>
parents: 8338
diff changeset
   576
9d392516725c more external stream compatibility
Stefan Vogel <sv@exept.de>
parents: 8338
diff changeset
   577
lineEndTransparent
9d392516725c more external stream compatibility
Stefan Vogel <sv@exept.de>
parents: 8338
diff changeset
   578
    "Ignored here, but added to make internalStreams protocol compatible 
9d392516725c more external stream compatibility
Stefan Vogel <sv@exept.de>
parents: 8338
diff changeset
   579
     with externalStreams."
9d392516725c more external stream compatibility
Stefan Vogel <sv@exept.de>
parents: 8338
diff changeset
   580
!
9d392516725c more external stream compatibility
Stefan Vogel <sv@exept.de>
parents: 8338
diff changeset
   581
14434
82419864bb2a added: #stream
Claus Gittinger <cg@exept.de>
parents: 14360
diff changeset
   582
stream
82419864bb2a added: #stream
Claus Gittinger <cg@exept.de>
parents: 14360
diff changeset
   583
    "for compatibility with encodedStream"
82419864bb2a added: #stream
Claus Gittinger <cg@exept.de>
parents: 14360
diff changeset
   584
82419864bb2a added: #stream
Claus Gittinger <cg@exept.de>
parents: 14360
diff changeset
   585
    ^ self
82419864bb2a added: #stream
Claus Gittinger <cg@exept.de>
parents: 14360
diff changeset
   586
!
82419864bb2a added: #stream
Claus Gittinger <cg@exept.de>
parents: 14360
diff changeset
   587
1665
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   588
text
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   589
    "switch to text mode. 
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   590
     Ignored here, but added to make internalStreams protocol compatible 
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   591
     with externalStreams."
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   592
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   593
    "Modified: 15.5.1996 / 17:38:36 / cg"
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   594
    "Created: 13.9.1996 / 18:33:26 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   595
! !
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   596
8768
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   597
!Stream methodsFor:'misc functions'!
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   598
9001
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   599
copy:numberOfBytes into:outStream bufferSize:bufferSize
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   600
    "read from the receiver, and write all data up to count or the end to another stream.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   601
     Return the number of bytes which have been transferred"
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   602
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   603
    |bufferSpecies buffer bytesWritten readCount writeCount count freeBuffer remaining|
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   604
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   605
    bytesWritten := 0.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   606
    bufferSpecies := self contentsSpecies.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   607
    bufferSpecies == ByteArray ifTrue:[
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   608
        buffer:= ExternalBytes unprotectedNew:bufferSize.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   609
        freeBuffer := true.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   610
    ] ifFalse:[
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   611
        buffer := self contentsSpecies new:bufferSize.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   612
        freeBuffer := false.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   613
    ].
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   614
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   615
    remaining := numberOfBytes.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   616
    "Note: atEnd will block if reading from an empty pipe or socket"
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   617
    [remaining ~~ 0 and:[self atEnd]] whileFalse:[ 
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   618
        readCount := self nextAvailableBytes:(bufferSize min:remaining) into:buffer startingAt:1.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   619
        readCount > 0 ifTrue:[
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   620
            writeCount := 0.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   621
            [
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   622
                count := outStream nextPutBytes:readCount-writeCount
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   623
                                    from:buffer 
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   624
                                    startingAt:writeCount+1.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   625
                bytesWritten := bytesWritten + count.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   626
                writeCount := writeCount + count.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   627
                writeCount < readCount ifTrue:[
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   628
                    outStream writeWait.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   629
                    true.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   630
                ] ifFalse:[
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   631
                    false
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   632
                ].
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   633
            ] whileTrue.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   634
            remaining := remaining - writeCount.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   635
        ].
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   636
    ].
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   637
    freeBuffer ifTrue:[ buffer free ].
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   638
    ^ bytesWritten
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   639
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   640
    "
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   641
      'hello world' readStream copyToEndInto:'/tmp/mist' asFilename writeStream.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   642
      'hello world' readStream copyToEndInto:#[] writeStream.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   643
      ('/tmp/mist' asFilename readStream binary; yourself) copyToEndInto:#[] writeStream
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   644
      #[1 2 3 4 5 6 7] readStream copyToEndInto:'/tmp/mist' asFilename writeStream.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   645
      #[1 2 3 4 5 6 7] readStream copyToEndInto:'' writeStream.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   646
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   647
    "
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   648
!
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   649
11745
82af78b9c252 +copyToEndFrom:
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
   650
copyToEndFrom:inStream
82af78b9c252 +copyToEndFrom:
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
   651
    "read from inStream, and write all data up to the end to the receiver.
82af78b9c252 +copyToEndFrom:
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
   652
     Return the number of bytes which have been transferred.
82af78b9c252 +copyToEndFrom:
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
   653
     Same functionality as copyToEnd:, but reversed arg and receiver
82af78b9c252 +copyToEndFrom:
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
   654
     (useful in a cascade message of the writeStream)"
82af78b9c252 +copyToEndFrom:
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
   655
82af78b9c252 +copyToEndFrom:
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
   656
    ^ inStream copyToEndInto:self
82af78b9c252 +copyToEndFrom:
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
   657
!
82af78b9c252 +copyToEndFrom:
Claus Gittinger <cg@exept.de>
parents: 11693
diff changeset
   658
8768
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   659
copyToEndInto:outStream
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   660
    "read from the receiver, and write all data up to the end to another stream.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   661
     Return the number of bytes which have been transferred"
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   662
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   663
    ^ self copyToEndInto:outStream bufferSize:(128*1024)
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   664
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   665
"/ data rate to USB2.0 stick (Win32):
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   666
"/   120 KB/s       8Kb SingleBuffer
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   667
"/   741 KB/s      64Kb SingleBuffer
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   668
"/  1345 KB/s     128Kb SingleBuffer
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   669
"/  2087 KB/s     256Kb SingleBuffer
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   670
"/  3573 KB/s    1024Kb SingleBuffer
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   671
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   672
"/|t retVal|
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   673
"/
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   674
"/t := Time millisecondsToRun:[
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   675
"/    retVal := self copyToEndInto:outStream bufferSize:(64*1024).
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   676
"/].
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   677
"/
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   678
"/Transcript showCR:('%1 KB copied in %2s (%3 KB/s)' 
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   679
"/        bindWith:((retVal/1024)asFixedPoint:2) 
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   680
"/        with:((t/1000)asFixedPoint:2)
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   681
"/        with:((retVal/1024/(t/1000))asFixedPoint:2)).
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   682
"/^ retVal.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   683
"/
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   684
!
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   685
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   686
copyToEndInto:outStream bufferSize:bufferSize
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   687
    "read from the receiver, and write all data up to the end to another stream.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   688
     Return the number of bytes which have been transferred"
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   689
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   690
    |bufferSpecies buffer bytesWritten readCount writeCount count freeBuffer|
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   691
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   692
    bytesWritten := 0.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   693
    bufferSpecies := self contentsSpecies.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   694
    bufferSpecies == ByteArray ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   695
        buffer:= ExternalBytes unprotectedNew:bufferSize.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   696
        freeBuffer := true.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   697
    ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   698
        buffer := self contentsSpecies new:bufferSize.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   699
        freeBuffer := false.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   700
    ].
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   701
9001
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   702
    "Note: atEnd will block if reading from an empty pipe or socket"
8768
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   703
    [self atEnd] whileFalse:[ 
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   704
        readCount := self nextAvailableBytes:bufferSize into:buffer startingAt:1.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   705
        readCount > 0 ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   706
            writeCount := 0.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   707
            [
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   708
                count := outStream nextPutBytes:readCount-writeCount
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   709
                                    from:buffer 
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   710
                                    startingAt:writeCount+1.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   711
                bytesWritten := bytesWritten + count.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   712
                writeCount := writeCount + count.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   713
                writeCount < readCount ifTrue:[
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   714
                    outStream writeWait.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   715
                    true.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   716
                ] ifFalse:[
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   717
                    false
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   718
                ].
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   719
            ] whileTrue.
9001
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   720
        ] 
8768
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   721
    ].
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   722
    freeBuffer ifTrue:[ buffer free ].
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   723
    ^ bytesWritten
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   724
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   725
    "
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   726
      'hello world' readStream copyToEndInto:'/tmp/mist' asFilename writeStream.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   727
      'hello world' readStream copyToEndInto:#[] writeStream.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   728
      ('/tmp/mist' asFilename readStream binary; yourself) copyToEndInto:#[] writeStream
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   729
      #[1 2 3 4 5 6 7] readStream copyToEndInto:'/tmp/mist' asFilename writeStream.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   730
      #[1 2 3 4 5 6 7] readStream copyToEndInto:'' writeStream.
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   731
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   732
    "
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   733
! !
Claus Gittinger <cg@exept.de>
parents: 8767
diff changeset
   734
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   735
!Stream methodsFor:'non homogenous reading'!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   736
7497
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7483
diff changeset
   737
nextAvailableBytes:numBytes into:aCollection startingAt:initialIndex
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7483
diff changeset
   738
    "for compatibility with ExternalStream"
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7483
diff changeset
   739
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7483
diff changeset
   740
    ^ self nextBytes:numBytes into:aCollection startingAt:initialIndex
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7483
diff changeset
   741
!
cc29afd51151 Do not block when writing to pipes
Stefan Vogel <sv@exept.de>
parents: 7483
diff changeset
   742
8988
2e82cf20dbbd define #nextByte as subclassResponsibility
Stefan Vogel <sv@exept.de>
parents: 8970
diff changeset
   743
nextByte
2e82cf20dbbd define #nextByte as subclassResponsibility
Stefan Vogel <sv@exept.de>
parents: 8970
diff changeset
   744
    "return the next byte of the stream
9266
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
   745
     - we do not know here how to do it, it should be redefined in subclass"
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
   746
15839
d481a336d590 class: Stream
Stefan Vogel <sv@exept.de>
parents: 15778
diff changeset
   747
    ^ self next asInteger
8988
2e82cf20dbbd define #nextByte as subclassResponsibility
Stefan Vogel <sv@exept.de>
parents: 8970
diff changeset
   748
!
2e82cf20dbbd define #nextByte as subclassResponsibility
Stefan Vogel <sv@exept.de>
parents: 8970
diff changeset
   749
2714
cee1fce8c9de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2587
diff changeset
   750
nextBytes:count
11249
1718c59b850f comment
Claus Gittinger <cg@exept.de>
parents: 11138
diff changeset
   751
    "read the next count bytes and return it as a byteArray.
1718c59b850f comment
Claus Gittinger <cg@exept.de>
parents: 11138
diff changeset
   752
     If EOF is encountered while reading, a truncated byteArray is returned. 
1718c59b850f comment
Claus Gittinger <cg@exept.de>
parents: 11138
diff changeset
   753
     If EOF is already reached before the first byte can be read,
15839
d481a336d590 class: Stream
Stefan Vogel <sv@exept.de>
parents: 15778
diff changeset
   754
     an error is raised."
2714
cee1fce8c9de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2587
diff changeset
   755
cee1fce8c9de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2587
diff changeset
   756
    |data n|
cee1fce8c9de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2587
diff changeset
   757
7187
0623295facbf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7118
diff changeset
   758
    data := ByteArray uninitializedNew:count.
2714
cee1fce8c9de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2587
diff changeset
   759
    n := self nextBytes:count into:data startingAt:1.
cee1fce8c9de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2587
diff changeset
   760
    n ~~ count ifTrue:[
7187
0623295facbf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7118
diff changeset
   761
        n == 0 ifTrue:[
15839
d481a336d590 class: Stream
Stefan Vogel <sv@exept.de>
parents: 15778
diff changeset
   762
            ^ self pastEndRead.
7187
0623295facbf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7118
diff changeset
   763
        ].
0623295facbf *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7118
diff changeset
   764
        data := data copyTo:n
2714
cee1fce8c9de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2587
diff changeset
   765
    ].
cee1fce8c9de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2587
diff changeset
   766
    ^ data
cee1fce8c9de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2587
diff changeset
   767
3346
d65b28fd6538 oops - fix in #nextBytes:
Claus Gittinger <cg@exept.de>
parents: 3315
diff changeset
   768
    "Created: / 21.6.1997 / 11:18:57 / cg"
d65b28fd6538 oops - fix in #nextBytes:
Claus Gittinger <cg@exept.de>
parents: 3315
diff changeset
   769
    "Modified: / 30.3.1998 / 18:04:58 / cg"
2714
cee1fce8c9de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2587
diff changeset
   770
!
cee1fce8c9de checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2587
diff changeset
   771
2576
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   772
nextBytes:count into:anObject
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   773
    "read the next count bytes into an object and return the number of
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   774
     bytes read. On EOF, 0 is returned.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   775
     If the receiver is some socket/pipe-like stream, an exception
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   776
     is raised if the connection is broken.
1665
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   777
2576
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   778
     The object must have non-pointer indexed instvars (i.e. it must be 
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   779
     a ByteArray, String, Float- or DoubleArray).
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   780
     If anObject is a string or byteArray and reused, this provides the
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   781
     fastest possible physical I/O (since no new objects are allocated).
1665
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   782
2576
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   783
     Use with care - non object oriented i/o.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   784
     Warning: in general, you cannot use this method to pass data from other 
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   785
     architectures since it does not care for byte order or float representation."
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   786
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   787
    ^ self nextBytes:count into:anObject startingAt:1
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   788
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   789
    "Modified: 22.4.1997 / 10:41:39 / cg"
1665
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   790
!
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   791
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   792
nextBytes:numBytes into:aCollection startingAt:initialIndex
2152
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   793
    "return the next numBytes from the stream. If the end is
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   794
     reached before, only that many bytes are copyied into the
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   795
     collection.
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   796
     Returns the number of bytes that have been actually read.
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   797
     The receiver must support reading of binary bytes.
1665
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   798
9001
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
   799
     Notice: this method is provided here for protocol completeness
7506
108901b3ee22 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7505
diff changeset
   800
             with externalStreams - it is normally not used with other
108901b3ee22 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7505
diff changeset
   801
             streams."
2152
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   802
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   803
    |n "{Class: SmallInteger }"
15839
d481a336d590 class: Stream
Stefan Vogel <sv@exept.de>
parents: 15778
diff changeset
   804
     dstIndex|
d481a336d590 class: Stream
Stefan Vogel <sv@exept.de>
parents: 15778
diff changeset
   805
d481a336d590 class: Stream
Stefan Vogel <sv@exept.de>
parents: 15778
diff changeset
   806
    numBytes == 0 ifTrue:[
d481a336d590 class: Stream
Stefan Vogel <sv@exept.de>
parents: 15778
diff changeset
   807
        ^ 0.
d481a336d590 class: Stream
Stefan Vogel <sv@exept.de>
parents: 15778
diff changeset
   808
    ].
1665
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   809
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   810
    dstIndex := initialIndex.
2152
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   811
    n := 0.
7506
108901b3ee22 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7505
diff changeset
   812
8815
88c21d3f2c9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8768
diff changeset
   813
    [self atEnd] whileFalse:[
15839
d481a336d590 class: Stream
Stefan Vogel <sv@exept.de>
parents: 15778
diff changeset
   814
        aCollection byteAt:dstIndex put:self nextByte.
d481a336d590 class: Stream
Stefan Vogel <sv@exept.de>
parents: 15778
diff changeset
   815
        n := n + 1.
8815
88c21d3f2c9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8768
diff changeset
   816
        n == numBytes ifTrue:[
88c21d3f2c9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8768
diff changeset
   817
            ^ n
7506
108901b3ee22 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7505
diff changeset
   818
        ].
8815
88c21d3f2c9c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8768
diff changeset
   819
        dstIndex := dstIndex + 1.
1665
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   820
    ].
2152
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   821
    ^ n
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   822
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   823
    "
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   824
     |s n buffer|
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   825
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   826
     buffer := ByteArray new:10.
1665
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   827
2152
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   828
     s := ReadStream on:#[1 2 3 4 5 6 7 8 9].
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   829
     s next:3.
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   830
     n := s nextBytes:9 into:buffer startingAt:1.
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   831
     Transcript showCR:('n = %1; buffer = <%2>' bindWith:n with:buffer)
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   832
    "
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
   833
2576
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   834
    "Modified: 22.4.1997 / 10:43:08 / cg"
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   835
!
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   836
2587
f4bbb1d8ea35 added block-read
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
   837
nextBytes:numBytes into:aCollection startingAt:initialIndex blockSize:blockSize
f4bbb1d8ea35 added block-read
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
   838
    "like nextBytes:into:startingAt:, but read in blocks of the given size.
f4bbb1d8ea35 added block-read
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
   839
     This leads to better beahvior when reading large chunks from a slow device,
f4bbb1d8ea35 added block-read
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
   840
     such as a cdrom drive (since a single unix-read is not interruptable)."
f4bbb1d8ea35 added block-read
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
   841
f4bbb1d8ea35 added block-read
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
   842
    |nR oR n|
f4bbb1d8ea35 added block-read
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
   843
f4bbb1d8ea35 added block-read
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
   844
    nR := numBytes.
f4bbb1d8ea35 added block-read
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
   845
    oR := initialIndex.
f4bbb1d8ea35 added block-read
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
   846
    [nR > 0] whileTrue:[
3154
fe3af716a704 added #throughAny:
Claus Gittinger <cg@exept.de>
parents: 3112
diff changeset
   847
	n := nR.
fe3af716a704 added #throughAny:
Claus Gittinger <cg@exept.de>
parents: 3112
diff changeset
   848
	n > blockSize ifTrue:[n := blockSize].
fe3af716a704 added #throughAny:
Claus Gittinger <cg@exept.de>
parents: 3112
diff changeset
   849
	n := self nextBytes:n into:aCollection startingAt:oR.
fe3af716a704 added #throughAny:
Claus Gittinger <cg@exept.de>
parents: 3112
diff changeset
   850
	n == 0 ifTrue:[
fe3af716a704 added #throughAny:
Claus Gittinger <cg@exept.de>
parents: 3112
diff changeset
   851
	    ^ numBytes - nR
fe3af716a704 added #throughAny:
Claus Gittinger <cg@exept.de>
parents: 3112
diff changeset
   852
	].
fe3af716a704 added #throughAny:
Claus Gittinger <cg@exept.de>
parents: 3112
diff changeset
   853
	oR := oR + n.
fe3af716a704 added #throughAny:
Claus Gittinger <cg@exept.de>
parents: 3112
diff changeset
   854
	nR := nR - n
2587
f4bbb1d8ea35 added block-read
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
   855
    ].
f4bbb1d8ea35 added block-read
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
   856
    ^ numBytes
f4bbb1d8ea35 added block-read
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
   857
f4bbb1d8ea35 added block-read
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
   858
    "Created: 24.4.1997 / 21:09:34 / cg"
f4bbb1d8ea35 added block-read
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
   859
    "Modified: 24.4.1997 / 21:19:50 / cg"
f4bbb1d8ea35 added block-read
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
   860
!
f4bbb1d8ea35 added block-read
Claus Gittinger <cg@exept.de>
parents: 2576
diff changeset
   861
2576
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   862
nextBytesInto:anObject
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   863
    "read bytes into an object, regardless of binary/text mode.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   864
     The number of bytes to read is defined by the objects size.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   865
     Return the number of bytes read. On EOF, 0 is returned.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   866
     If the receiver is some socket/pipe-like stream, an exception
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   867
     is raised if the connection is broken.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   868
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   869
     The object to read into must have non-pointer indexed instvars 
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   870
     (i.e. it must be a ByteArray, String, Float- or DoubleArray).     
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   871
     If anObject is a string or byteArray and reused, this provides the
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   872
     fastest possible physical I/O (since no new objects are allocated).
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   873
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   874
     Use with care - non object oriented i/o.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   875
     Warning: in general, you cannot use this method to pass data from other 
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   876
     architectures since it does not care for byte order or float representation."
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   877
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   878
    ^ self nextBytes:(anObject byteSize) into:anObject startingAt:1
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   879
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   880
    " to read 100 bytes from a stream:
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   881
    
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   882
     |b aStream|
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   883
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   884
     aStream := 'smalltalk.rc' asFilename readStream.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   885
     b := ByteArray new:100.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   886
     aStream nextBytesInto:b.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   887
     aStream close.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   888
     b inspect
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   889
    "
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   890
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   891
    "
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   892
     |s aStream|
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   893
     aStream := 'smalltalk.rc' asFilename readStream.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   894
     s := String new:100.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   895
     aStream nextBytesInto:s.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   896
     aStream close.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   897
     s inspect
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   898
    "
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   899
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   900
    "Modified: 22.4.1997 / 10:42:02 / cg"
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
   901
    "Created: 22.4.1997 / 10:42:26 / cg"
1665
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   902
!
928e9a308cea added ExternalStream compatibility protocol
Claus Gittinger <cg@exept.de>
parents: 1548
diff changeset
   903
6360
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   904
nextHyperMSB:msbFlag
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   905
    "return a signed hyper (8 bytes) from the stream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   906
     The receiver must support reading of binary bytes.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   907
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   908
     The msbFlag argument controls if the integer is to be read with
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   909
     most-significant-byte-first (true) or least-first (false).
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   910
     This interface is provided to allow talking to external programs,
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   911
     where its known that the byte order is some definite one.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   912
     If you dont care (i.e. talk to other smalltalks) or you can control the
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   913
     order, please use the corresponding xxxNet methods, which use a standard
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   914
     network byte order."
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   915
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   916
    |uval|
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   917
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   918
    uval := self nextUnsignedHyperMSB:msbFlag.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   919
    "change from unsigned 0..FF..FF to signed -80..00..7FF..FF"
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   920
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   921
    uval >= 16r8000000000000000 ifTrue:[
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   922
      ^ uval - 16r10000000000000000 
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   923
    ].
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   924
    ^ uval
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   925
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   926
    "
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   927
     |bytes s|
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   928
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   929
     bytes := #[16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF].
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   930
     s := bytes readStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   931
     Transcript showCR:(s nextHyperMSB:true) hexPrintString.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   932
     s reset.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   933
     Transcript showCR:(s nextHyperMSB:false) hexPrintString.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   934
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   935
     bytes := #[16r10 16r00 16r00 16r00 16r00 16r00 16r00 16r00].
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   936
     s := bytes readStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   937
     Transcript showCR:(s nextHyperMSB:true) hexPrintString.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   938
     s reset.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   939
     Transcript showCR:(s nextHyperMSB:false) hexPrintString.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   940
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   941
     bytes := #[16r12 16r34 16r56 16r78 16r9a 16rbc 16rde 16rf0].
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   942
     s := bytes readStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   943
     Transcript showCR:(s nextHyperMSB:true) hexPrintString.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   944
     s reset.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   945
     Transcript showCR:(s nextHyperMSB:false) hexPrintString.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   946
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   947
     bytes := #[16rFe 16rdc 16rba 16r98 16r76 16r54 16r32 16r10].
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   948
     s := bytes readStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   949
     Transcript showCR:(s nextHyperMSB:true) hexPrintString.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   950
     s reset.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   951
     Transcript showCR:(s nextHyperMSB:false) hexPrintString.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   952
    "
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   953
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   954
    "Modified: / 14.1.1998 / 15:40:41 / cg"
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   955
!
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
   956
11616
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
   957
nextIEEEDouble
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
   958
    "read an 8-byte IEEE double precision float number"
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
   959
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
   960
    ^ Float readBinaryIEEEDoubleFrom:self
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
   961
!
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
   962
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
   963
nextIEEESingle
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
   964
    "read a 4-byte IEEE single precision float number"
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
   965
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
   966
    ^ ShortFloat readBinaryIEEESingleFrom:self
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
   967
!
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
   968
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   969
nextLongMSB:msbFlag
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   970
    "return a signed long (4 bytes) from the stream.
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
   971
     The receiver must support reading of binary bytes.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
   972
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
   973
     The msbFlag argument controls if the integer is to be read with
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
   974
     most-significant-byte-first (true) or least-first (false).
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
   975
     This interface is provided to allow talking to external programs,
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
   976
     where its known that the byte order is some definite one.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
   977
     If you dont care (i.e. talk to other smalltalks) or you can control the
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
   978
     order, please use the corresponding xxxNet methods, which use a standard
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
   979
     network byte order."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   980
6355
fb179369bd9f #nextUnsignedLong:MSB: was wrong for lsb case
Claus Gittinger <cg@exept.de>
parents: 6348
diff changeset
   981
    |b1 b2 b3 b4 uval "{ Class: SmallInteger }" val|
fb179369bd9f #nextUnsignedLong:MSB: was wrong for lsb case
Claus Gittinger <cg@exept.de>
parents: 6348
diff changeset
   982
9266
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
   983
    b1 := self nextByte.
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
   984
    b2 := self nextByte.
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
   985
    b3 := self nextByte.
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
   986
    b4 := self nextByte.
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   987
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   988
    msbFlag ifTrue:[
9266
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
   989
        "most significant first"
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
   990
        uval := (b1 bitShift:8) bitOr:b2.
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
   991
        uval := (uval bitShift:8) bitOr:b3.
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
   992
        val := (uval bitShift:8) bitOr:b4.
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   993
    ] ifFalse:[
9266
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
   994
        "least significant first"
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
   995
        uval := (b4 bitShift:8) bitOr:b3.
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
   996
        uval := (uval bitShift:8) bitOr:b2.
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
   997
        val := (uval bitShift:8) bitOr:b1.
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   998
    ].
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   999
    "change from unsigned 0..FFFFFFFF to signed -80000000..7FFFFFFF"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1000
3176
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1001
    val >= 16r80000000 ifTrue:[
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1002
      ^ val - 16r100000000 
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1003
    ].
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1004
    ^ val
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1005
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1006
    "
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1007
     |bytes s|
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1008
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1009
     bytes := #[16rFF 16rFF 16rFF 16rFF].
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1010
     s := bytes readStream.
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1011
     Transcript showCR:(s nextLongMSB:true).
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1012
     s reset.
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1013
     Transcript showCR:(s nextLongMSB:false).
1117
f64e35e18e65 typed variable in nextPutNumber
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1014
3176
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1015
     bytes := #[16r12 16r34 16r56 16r78].
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1016
     s := bytes readStream.
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1017
     Transcript showCR:(s nextLongMSB:true).
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1018
     s reset.
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1019
     Transcript showCR:(s nextLongMSB:false).
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1020
3176
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1021
     bytes := #[16r89 16rab 16rcd 16ref].
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1022
     s := bytes readStream.
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1023
     Transcript showCR:(s nextLongMSB:true).
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1024
     s reset.
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1025
     Transcript showCR:(s nextLongMSB:false).
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1026
    "
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1027
a54a89fb0e5b fixed nextLong
Claus Gittinger <cg@exept.de>
parents: 3172
diff changeset
  1028
    "Modified: / 14.1.1998 / 15:40:41 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1029
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1030
846
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1031
nextLongNet
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1032
    "return a signed long (4 bytes) in network byte order from the stream.
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1033
     The receiver must support reading of binary bytes."
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1034
8894
63cd83aa44e8 No need to ask Socket>>#networkXXXOrderIsMSB, because the return value is
Stefan Vogel <sv@exept.de>
parents: 8815
diff changeset
  1035
    ^ self nextLongMSB:true
846
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1036
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1037
    "Created: 10.1.1996 / 19:49:28 / cg"
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1038
!
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1039
12129
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1040
nextNumber:numBytes 
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1041
    "Return the next n bytes as a positive Integer; bytes are taken msb-first."
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1042
12129
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1043
    ^ self nextUnsigned:numBytes MSB:true
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1044
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1045
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1046
nextShortMSB:msbFlag
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1047
    "return a signed short (2 bytes) from the stream.
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1048
     The receiver must support reading of binary bytes.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1049
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1050
     The msbFlag argument controls if the integer is to be read with
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1051
     most-significant-byte-first (true) or least-first (false).
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1052
     This interface is provided to allow talking to external programs,
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1053
     where its known that the byte order is some definite one.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1054
     If you dont care (i.e. talk to other smalltalks) or you can control the
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1055
     order, please use the corresponding xxxNet methods, which use a standard
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1056
     network byte order."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1057
6355
fb179369bd9f #nextUnsignedLong:MSB: was wrong for lsb case
Claus Gittinger <cg@exept.de>
parents: 6348
diff changeset
  1058
    |b1 b2 uval "{ Class: SmallInteger }"|
fb179369bd9f #nextUnsignedLong:MSB: was wrong for lsb case
Claus Gittinger <cg@exept.de>
parents: 6348
diff changeset
  1059
9266
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1060
    b1 := self nextByte.
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1061
    b2 := self nextByte.
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1062
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1063
    msbFlag ifTrue:[
9266
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1064
        "most significant first"
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1065
        uval := b1 bitShift:8.
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1066
        uval := uval bitOr:b2.
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1067
    ] ifFalse:[
9266
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1068
        "least significant first"
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1069
        uval := b2 bitShift:8.
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1070
        uval := uval bitOr:b1.
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1071
    ].
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1072
    "change from unsigned 0..FFFF to signed -8000..7FFF"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1073
    uval >= 16r8000 ifTrue:[
9266
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1074
        ^ uval - 16r10000 
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1075
    ].
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1076
    ^ uval
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1077
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1078
    "Modified: 11.7.1996 / 10:07:04 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1079
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1080
846
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1081
nextShortNet
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1082
    "return a signed short (2 bytes) in network byte order from the stream.
8894
63cd83aa44e8 No need to ask Socket>>#networkXXXOrderIsMSB, because the return value is
Stefan Vogel <sv@exept.de>
parents: 8815
diff changeset
  1083
     The receiver must support reading of binary bytes.
63cd83aa44e8 No need to ask Socket>>#networkXXXOrderIsMSB, because the return value is
Stefan Vogel <sv@exept.de>
parents: 8815
diff changeset
  1084
     Network byte order is MSB per definition"
63cd83aa44e8 No need to ask Socket>>#networkXXXOrderIsMSB, because the return value is
Stefan Vogel <sv@exept.de>
parents: 8815
diff changeset
  1085
63cd83aa44e8 No need to ask Socket>>#networkXXXOrderIsMSB, because the return value is
Stefan Vogel <sv@exept.de>
parents: 8815
diff changeset
  1086
    ^ self nextShortMSB:true
63cd83aa44e8 No need to ask Socket>>#networkXXXOrderIsMSB, because the return value is
Stefan Vogel <sv@exept.de>
parents: 8815
diff changeset
  1087
846
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1088
    "Created: 10.1.1996 / 19:49:41 / cg"
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1089
!
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1090
4588
657e1c1715a5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4530
diff changeset
  1091
nextSignedByte
657e1c1715a5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4530
diff changeset
  1092
    "return a signed byte (-128..127) from the stream.
657e1c1715a5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4530
diff changeset
  1093
     The receiver must support reading of binary bytes."
657e1c1715a5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4530
diff changeset
  1094
657e1c1715a5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4530
diff changeset
  1095
    |uval "{ Class: SmallInteger }"|
657e1c1715a5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4530
diff changeset
  1096
9266
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1097
    uval := self nextByte.
4588
657e1c1715a5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4530
diff changeset
  1098
    "change from unsigned 0..FF to signed -80..7F"
657e1c1715a5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4530
diff changeset
  1099
    uval >= 16r80 ifTrue:[
9266
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1100
        ^ uval - 16r100 
4588
657e1c1715a5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4530
diff changeset
  1101
    ].
657e1c1715a5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4530
diff changeset
  1102
    ^ uval
657e1c1715a5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4530
diff changeset
  1103
657e1c1715a5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4530
diff changeset
  1104
    "
657e1c1715a5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4530
diff changeset
  1105
     #[16rFF 16r80 16r7F 16r01] readStream nextSignedByte
657e1c1715a5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4530
diff changeset
  1106
    "
657e1c1715a5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4530
diff changeset
  1107
!
657e1c1715a5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4530
diff changeset
  1108
12129
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1109
nextUnsigned:numBytes MSB:msbFlag
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1110
    "return a numBytes-sized unsigned (numBytes bytes) from the stream as an Integer.
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1111
     The receiver must support reading of binary bytes.
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1112
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1113
     The msbFlag argument controls if the integer is to be read with
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1114
     most-significant-byte-first (true) or least-first (false).
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1115
     This interface is provided to allow talking to external programs,
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1116
     where its known that the byte order is some definite one.
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1117
     If you dont care (i.e. talk to other smalltalks) or you can control the
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1118
     order, please use the corresponding xxxNet methods, which use a standard
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1119
     network byte order."
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1120
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1121
    |val shift|
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1122
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1123
    "claus: this method is central in binaryStorage -
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1124
     therefore it has been tuned a bit (and needs even more tuning)"
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1125
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1126
    numBytes == 1 ifTrue:[
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1127
        ^ self nextByte
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1128
    ].
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1129
    numBytes == 2 ifTrue:[
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1130
        ^ self nextUnsignedShortMSB:msbFlag
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1131
    ].
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1132
    numBytes == 3 ifTrue:[
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1133
        val := self nextUnsignedShortMSB:msbFlag.
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1134
        msbFlag ifTrue:[
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1135
            ^ (val bitShift:8) + self nextByte
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1136
        ].
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1137
        ^ val + (self nextByte bitShift:16)
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1138
    ].
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1139
    numBytes == 4 ifTrue:[
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1140
        ^ self nextUnsignedLongMSB:msbFlag
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1141
    ].
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1142
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1143
    val := 0.
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1144
    msbFlag ifTrue:[
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1145
        numBytes timesRepeat:[
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1146
            val := (val bitShift:8) + self nextByte
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1147
        ].
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1148
    ] ifFalse:[
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1149
        shift := 0.
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1150
        numBytes timesRepeat:[
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1151
            val := val + (self nextByte bitShift:shift).
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1152
            shift := shift + 8.
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1153
        ].
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1154
    ].
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1155
    ^ val
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1156
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1157
    "
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1158
     |s|
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1159
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1160
     s := #[ 16r01 16r02 16r03 16r04 16r05 ] readStream.
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1161
     (s nextUnsigned:3 MSB:true) hexPrintString.           
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1162
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1163
     s := #[ 16r01 16r02 16r03 16r04 16r05 ] readStream.
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1164
     (s nextUnsigned:3 MSB:false) hexPrintString.      
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1165
    "
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1166
!
cc5fccca0451 added: #nextUnsigned:MSB:
Claus Gittinger <cg@exept.de>
parents: 12093
diff changeset
  1167
6360
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1168
nextUnsignedHyperMSB:msbFlag
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1169
    "return an unsigned hyper (8 bytes) from the stream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1170
     The receiver must support reading of binary bytes.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1171
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1172
     The msbFlag argument controls if the integer is to be read with
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1173
     most-significant-byte-first (true) or least-first (false).
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1174
     This interface is provided to allow talking to external programs,
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1175
     where its known that the byte order is some definite one.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1176
     If you dont care (i.e. talk to other smalltalks) or you can control the
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1177
     order, please use the corresponding xxxNet methods, which use a standard
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1178
     network byte order."
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1179
6373
d6ffb0101dde workaround bitShift-bitOr codeGenerator bug in stc
Claus Gittinger <cg@exept.de>
parents: 6360
diff changeset
  1180
    |bytes uval t|
6360
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1181
9266
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1182
    bytes := self nextBytes:8.
6360
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1183
    uval := 0.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1184
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1185
    msbFlag ifTrue:[
9266
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1186
        "most significant first"
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1187
        1 to:8 do:[:i |
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1188
            t := (uval bitShift:8).
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1189
            uval := t bitOr:(bytes at:i).
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1190
        ].
6360
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1191
    ] ifFalse:[
9266
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1192
        "least significant first"
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1193
        8 to:1 by:-1 do:[:i |
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1194
            t := (uval bitShift:8).
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1195
            uval := t bitOr:(bytes at:i).
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1196
        ].
6360
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1197
    ].
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1198
    ^ uval
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1199
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1200
    "
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1201
     |bytes s|
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1202
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1203
     bytes := #[16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF 16rFF].
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1204
     s := bytes readStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1205
     Transcript showCR:(s nextUnsignedHyperMSB:true) hexPrintString.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1206
     s reset.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1207
     Transcript showCR:(s nextUnsignedHyperMSB:false) hexPrintString.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1208
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1209
     bytes := #[16r10 16r00 16r00 16r00 16r00 16r00 16r00 16r00].
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1210
     s := bytes readStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1211
     Transcript showCR:(s nextUnsignedHyperMSB:true) hexPrintString.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1212
     s reset.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1213
     Transcript showCR:(s nextUnsignedHyperMSB:false) hexPrintString.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1214
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1215
     bytes := #[16r12 16r34 16r56 16r78 16r9a 16rbc 16rde 16rf0].
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1216
     s := bytes readStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1217
     Transcript showCR:(s nextUnsignedHyperMSB:true) hexPrintString.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1218
     s reset.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1219
     Transcript showCR:(s nextUnsignedHyperMSB:false) hexPrintString.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1220
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1221
     bytes := #[16rFe 16rdc 16rba 16r98 16r76 16r54 16r32 16r10].
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1222
     s := bytes readStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1223
     Transcript showCR:(s nextUnsignedHyperMSB:true) hexPrintString.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1224
     s reset.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1225
     Transcript showCR:(s nextUnsignedHyperMSB:false) hexPrintString.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1226
    "
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1227
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1228
    "Modified: / 14.1.1998 / 15:40:41 / cg"
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1229
!
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1230
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1231
nextUnsignedLongMSB:msbFlag
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1232
    "return an unsigned long (4 bytes) from the stream.
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1233
     The receiver must support reading of binary bytes.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1234
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1235
     The msbFlag argument controls if the integer is to be read with
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1236
     most-significant-byte-first (true) or least-first (false).
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1237
     This interface is provided to allow talking to external programs,
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1238
     where its known that the byte order is some definite one.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1239
     If you dont care (i.e. talk to other smalltalks) or you can control the
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1240
     order, please use the corresponding xxxNet methods, which use a standard
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1241
     network byte order."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1242
6355
fb179369bd9f #nextUnsignedLong:MSB: was wrong for lsb case
Claus Gittinger <cg@exept.de>
parents: 6348
diff changeset
  1243
    |b1 b2 b3 b4 val|
fb179369bd9f #nextUnsignedLong:MSB: was wrong for lsb case
Claus Gittinger <cg@exept.de>
parents: 6348
diff changeset
  1244
9266
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1245
    b1 := self nextByte.
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1246
    b2 := self nextByte.
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1247
    b3 := self nextByte.
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1248
    b4 := self nextByte.
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1249
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1250
    msbFlag ifTrue:[
9266
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1251
        val := b1.
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1252
        val := (val bitShift:8) bitOr:b2.
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1253
        val := (val bitShift:8) bitOr:b3.
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1254
        val := (val * 256) + b4.
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1255
        ^ val
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1256
    ].
6355
fb179369bd9f #nextUnsignedLong:MSB: was wrong for lsb case
Claus Gittinger <cg@exept.de>
parents: 6348
diff changeset
  1257
    val := b4.
fb179369bd9f #nextUnsignedLong:MSB: was wrong for lsb case
Claus Gittinger <cg@exept.de>
parents: 6348
diff changeset
  1258
    val := (val bitShift:8) bitOr:b3.
fb179369bd9f #nextUnsignedLong:MSB: was wrong for lsb case
Claus Gittinger <cg@exept.de>
parents: 6348
diff changeset
  1259
    val := (val bitShift:8) bitOr:b2.
fb179369bd9f #nextUnsignedLong:MSB: was wrong for lsb case
Claus Gittinger <cg@exept.de>
parents: 6348
diff changeset
  1260
    val := (val * 256) + b1.
fb179369bd9f #nextUnsignedLong:MSB: was wrong for lsb case
Claus Gittinger <cg@exept.de>
parents: 6348
diff changeset
  1261
    ^ val
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1262
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1263
    "Modified: 11.7.1996 / 10:07:13 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1264
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1265
846
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1266
nextUnsignedLongNet
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1267
    "return an unsigned long (4 bytes) in network byte order from the stream.
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1268
     The receiver must support reading of binary bytes."
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1269
8894
63cd83aa44e8 No need to ask Socket>>#networkXXXOrderIsMSB, because the return value is
Stefan Vogel <sv@exept.de>
parents: 8815
diff changeset
  1270
    ^ self nextUnsignedLongMSB:true
846
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1271
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1272
    "Created: 10.1.1996 / 19:49:02 / cg"
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1273
    "Modified: 10.1.1996 / 19:49:50 / cg"
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1274
!
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1275
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1276
nextUnsignedShortMSB:msbFlag
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1277
    "return an unsigned short (2 bytes) from the stream.
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1278
     The receiver must support reading of binary bytes.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1279
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1280
     The msbFlag argument controls if the integer is to be read with
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1281
     most-significant-byte-first (true) or least-first (false).
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1282
     This interface is provided to allow talking to external programs,
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1283
     where its known that the byte order is some definite one.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1284
     If you dont care (i.e. talk to other smalltalks) or you can control the
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1285
     order, please use the corresponding xxxNet methods, which use a standard
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1286
     network byte order."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1287
6355
fb179369bd9f #nextUnsignedLong:MSB: was wrong for lsb case
Claus Gittinger <cg@exept.de>
parents: 6348
diff changeset
  1288
    |b1 b2|
fb179369bd9f #nextUnsignedLong:MSB: was wrong for lsb case
Claus Gittinger <cg@exept.de>
parents: 6348
diff changeset
  1289
9266
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1290
    b1 := self nextByte.
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1291
    b2 := self nextByte.
6355
fb179369bd9f #nextUnsignedLong:MSB: was wrong for lsb case
Claus Gittinger <cg@exept.de>
parents: 6348
diff changeset
  1292
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1293
    msbFlag ifTrue:[
9266
3563ddfd55d2 use nextByte to access bytes (for InternalStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 9070
diff changeset
  1294
        ^ (b1 bitShift:8) bitOr:b2
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1295
    ].
6355
fb179369bd9f #nextUnsignedLong:MSB: was wrong for lsb case
Claus Gittinger <cg@exept.de>
parents: 6348
diff changeset
  1296
    ^ (b2 bitShift:8) bitOr:b1
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1297
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1298
    "Modified: 11.7.1996 / 10:07:20 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1299
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1300
846
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1301
nextUnsignedShortNet
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1302
    "return an unsigned short (2 bytes) in network byte order from the stream.
8894
63cd83aa44e8 No need to ask Socket>>#networkXXXOrderIsMSB, because the return value is
Stefan Vogel <sv@exept.de>
parents: 8815
diff changeset
  1303
     The receiver must support reading of binary bytes.
63cd83aa44e8 No need to ask Socket>>#networkXXXOrderIsMSB, because the return value is
Stefan Vogel <sv@exept.de>
parents: 8815
diff changeset
  1304
     Network byte order is MSB per definition"
63cd83aa44e8 No need to ask Socket>>#networkXXXOrderIsMSB, because the return value is
Stefan Vogel <sv@exept.de>
parents: 8815
diff changeset
  1305
63cd83aa44e8 No need to ask Socket>>#networkXXXOrderIsMSB, because the return value is
Stefan Vogel <sv@exept.de>
parents: 8815
diff changeset
  1306
    ^ self nextUnsignedShortMSB:true
846
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1307
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1308
    "Created: 10.1.1996 / 19:50:02 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1309
! !
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1310
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1311
!Stream methodsFor:'non homogenous writing'!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1312
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1313
nextLongPut:aNumber
846
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1314
    "for ST-80 compatibility:
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1315
     Write the argument, aNumber as a long (four bytes). 
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1316
     The most significant byte is sent first."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1317
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1318
    ^ self nextPutLong:aNumber MSB:true
846
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1319
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1320
    "Modified: 10.1.1996 / 19:38:54 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1321
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1322
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1323
nextNumber:n put:v 
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1324
    "Append to the receiver the argument, v, which is a positive Integer,
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1325
     as the next n bytes. Bytes are written msb first. 
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1326
     Possibly pad with leading zeros.
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1327
     The receiver must support writing of binary bytes."
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1328
1117
f64e35e18e65 typed variable in nextPutNumber
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1329
    |vlen "{ Class: SmallInteger }"
f64e35e18e65 typed variable in nextPutNumber
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1330
     i    "{ Class: SmallInteger }"|
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1331
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1332
    "claus: this method is central in binaryStorage -
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1333
     therefore it has been tuned a bit (and needs even more tuning)"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1334
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1335
    v class == SmallInteger ifTrue:[  "- this is a hint to stc"
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1336
        n == 1 ifTrue:[
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1337
            (v between:0 and:16rFF) ifTrue:[
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1338
                self nextPutByte:v.
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1339
                ^ self
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1340
            ].
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1341
        ].
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1342
        n == 2 ifTrue:[
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1343
            (v between:0 and:16rFFFF) ifTrue:[
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1344
                self nextPutByte:(v bitShift:-8); nextPutByte:(v bitAnd:16rFF).
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1345
                ^ self
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1346
            ].
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1347
        ].
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1348
        n == 3 ifTrue:[
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1349
            (v between:0 and:16rFFFFFF) ifTrue:[
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1350
                self nextPutByte:((v bitShift:-16) bitAnd:16rFF).
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1351
                self nextPutByte:((v bitShift:-8) bitAnd:16rFF).
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1352
                self nextPutByte:(v bitAnd:16rFF).
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1353
                ^ self
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1354
            ].
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1355
        ].
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1356
        n == 4 ifTrue:[
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1357
            (v >= 0) ifTrue:[
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1358
                self nextPutByte:((v bitShift:-24) bitAnd:16rFF).
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1359
                self nextPutByte:((v bitShift:-16) bitAnd:16rFF).
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1360
                self nextPutByte:((v bitShift:-8) bitAnd:16rFF).
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1361
                self nextPutByte:(v bitAnd:16rFF).
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1362
                ^ self
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1363
            ].
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1364
        ].
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1365
    ].
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1366
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1367
    "
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1368
     arbitrary long
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1369
    "
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1370
    n < (vlen := v digitLength) ifTrue: [
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1371
        "
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1372
         the number is too big to be repesented in n bytes
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1373
        "
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1374
        self error:'number too big'
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1375
    ].
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1376
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1377
    "pad with leading zeros"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1378
    i := n.
1117
f64e35e18e65 typed variable in nextPutNumber
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1379
    [i > vlen] whileTrue:[
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1380
        self nextPutByte:0. 
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1381
        i := i - 1
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1382
    ].
1117
f64e35e18e65 typed variable in nextPutNumber
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1383
f64e35e18e65 typed variable in nextPutNumber
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1384
    i == 1 ifTrue:[
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1385
        ^ self nextPutByte:v
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1386
    ].
1117
f64e35e18e65 typed variable in nextPutNumber
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1387
f64e35e18e65 typed variable in nextPutNumber
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1388
    [i > 0] whileTrue:[
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1389
        self nextPutByte:(v digitAt:i). 
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1390
        i := i - 1
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1391
    ]
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1392
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1393
    "Modified: / 22-06-2006 / 11:31:13 / fm"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1394
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1395
15654
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1396
nextPutAllUtf16:aString
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1397
    "write a string as UTF-16 bytes"
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1398
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1399
    aString do:[:eachCharacter|
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1400
        self nextPutUtf16:eachCharacter.
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1401
    ].
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1402
!
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1403
11322
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1404
nextPutAllUtf8:aString
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1405
    "normal streams can not handle multi-byte characters, so convert them to utf8"
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1406
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1407
    aString do:[:eachCharacter|
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1408
        self nextPutUtf8:eachCharacter.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1409
    ].
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1410
!
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1411
2576
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1412
nextPutByte:aByteValue
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1413
    "write a byte. 
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1414
     Same as nextPut: here; for protocol compatibility with externalStream."
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1415
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1416
    self nextPut:aByteValue
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1417
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1418
    "Created: / 22-04-1997 / 10:43:55 / cg"
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1419
    "Modified: / 23-06-2006 / 12:19:47 / fm"
2576
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1420
!
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1421
12093
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  1422
nextPutBytes:anObject
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  1423
    "write bytes from an object; the number of bytes is defined by
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  1424
     the objects size.
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  1425
     Return the number of bytes written or nil on error.
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  1426
     The object must have non-pointer indexed instvars 
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  1427
     (i.e. be a ByteArray, String, Float- or DoubleArray).     
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  1428
     Use with care - non object oriented i/o.
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  1429
     Warning: in general, you cannot use this method to pass non-byte data to other 
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  1430
     architectures since it does not care for byte order or float representation."
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  1431
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  1432
    ^ self nextPutBytes:(anObject size) from:anObject startingAt:1
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  1433
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  1434
    "Created: 22.4.1997 / 10:44:18 / cg"
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  1435
!
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  1436
2576
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1437
nextPutBytes:count from:anObject
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1438
    "write count bytes from an object.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1439
     Return the number of bytes written or nil on error.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1440
     The object must have non-pointer indexed instvars 
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1441
     (i.e. be a ByteArray, String, Float- or DoubleArray).     
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1442
     Use with care - non object oriented i/o.
12093
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  1443
     Warning: in general, you cannot use this method to pass non-byte data to other 
2576
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1444
     architectures since it does not care for byte order or float representation."
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1445
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1446
    ^ self nextPutBytes:count from:anObject startingAt:1
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1447
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1448
    "Created: 22.4.1997 / 10:43:59 / cg"
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1449
!
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1450
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1451
nextPutBytes:count from:anObject startingAt:start
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1452
    "write count bytes from an object starting at index start.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1453
     Return the number of bytes written.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1454
     The object must have non-pointer indexed instvars 
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1455
     (i.e. be a ByteArray, String, Float- or DoubleArray).     
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1456
     Use with care - non object oriented i/o.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1457
     This is provided for compatibility with externalStream;
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1458
     to support binary storage"
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1459
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1460
    |idx|
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1461
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1462
    idx := start.
7506
108901b3ee22 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7505
diff changeset
  1463
    self isBinary ifTrue:[
108901b3ee22 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7505
diff changeset
  1464
        1 to:count do:[:i |
108901b3ee22 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7505
diff changeset
  1465
            self nextPutByte:(anObject byteAt:idx).
108901b3ee22 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7505
diff changeset
  1466
            idx := idx + 1
108901b3ee22 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7505
diff changeset
  1467
        ].
108901b3ee22 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7505
diff changeset
  1468
    ] ifFalse:[
108901b3ee22 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7505
diff changeset
  1469
        1 to:count do:[:i |
108901b3ee22 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7505
diff changeset
  1470
            self nextPut:(anObject at:idx).
108901b3ee22 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7505
diff changeset
  1471
            idx := idx + 1
108901b3ee22 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7505
diff changeset
  1472
        ].
108901b3ee22 *** empty log message ***
Stefan Vogel <sv@exept.de>
parents: 7505
diff changeset
  1473
    ].    
2576
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1474
    ^ count
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1475
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1476
    "Created: 22.4.1997 / 10:44:09 / cg"
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1477
!
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1478
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1479
nextPutBytesFrom:anObject
12093
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  1480
    "write bytes from an object; the number of bytes is defined by the objects size.
2576
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1481
     Return the number of bytes written or nil on error.
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1482
     The object must have non-pointer indexed instvars 
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1483
     (i.e. be a ByteArray, String, Float- or DoubleArray).     
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1484
     Use with care - non object oriented i/o.
12093
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  1485
     Warning: in general, you cannot use this method to pass non-byte data to other 
2576
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1486
     architectures since it does not care for byte order or float representation."
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1487
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1488
    ^ self nextPutBytes:(anObject size) from:anObject startingAt:1
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1489
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1490
    "Created: 22.4.1997 / 10:44:18 / cg"
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1491
!
9985af974304 added non-homogenous read/write stuff;
Claus Gittinger <cg@exept.de>
parents: 2443
diff changeset
  1492
6360
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1493
nextPutHyper:aNumber MSB:msbFlag
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1494
    "Write the argument, aNumber as a hyper (8 bytes). 
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1495
     If msbFlag is true, data is written most-significant byte first; 
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1496
     otherwise least first. 
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1497
     Returns the receiver on ok, nil on error.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1498
     The receiver must support writing of binary bytes.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1499
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1500
     This interface is provided to allow talking to external programs,
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1501
     where its known that the byte order is some definite one.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1502
     If you dont care (i.e. talk to other smalltalks) or you can control the
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1503
     order, please use the corresponding xxxNet methods, which use a standard
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1504
     network byte order."
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1505
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1506
    msbFlag ifTrue:[
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1507
        1 to:8 do:[:i |
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1508
            self nextPutByte:(aNumber digitByteAt:8+1-i)
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1509
        ].
6360
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1510
    ] ifFalse:[
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1511
        1 to:8 do:[:i |
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1512
            self nextPutByte:(aNumber digitByteAt:i)
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1513
        ].
6360
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1514
    ].
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1515
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1516
    "
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1517
     |s bytes|
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1518
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1519
     s := #[] writeStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1520
     s nextPutHyper:16r123456789abcdef0 MSB:false.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1521
     bytes := s contents.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1522
     s := bytes readStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1523
     (s nextHyperMSB:false) hexPrintString.   
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1524
    "
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1525
    "
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1526
     |s bytes|
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1527
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1528
     s := #[] writeStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1529
     s nextPutHyper:16r123456789abcdef0 MSB:true.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1530
     bytes := s contents.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1531
     s := bytes readStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1532
     (s nextHyperMSB:true) hexPrintString.   
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1533
.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1534
    "
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1535
    "
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1536
     |s bytes|
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1537
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1538
     s := #[] writeStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1539
     s nextPutHyper:16r-8000000000000000 MSB:true.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1540
     bytes := s contents.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1541
     s := bytes readStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1542
     (s nextHyperMSB:true) hexPrintString.    
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1543
    "
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1544
    "
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1545
     |s bytes|
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1546
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1547
     s := #[] writeStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1548
     s nextPutHyper:16r-8000000000000000 MSB:false.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1549
     bytes := s contents.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1550
     s := bytes readStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1551
     (s nextHyperMSB:false) hexPrintString.   
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1552
    "
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1553
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1554
    "Modified: / 01-11-1997 / 18:30:52 / cg"
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1555
    "Modified: / 22-06-2006 / 11:31:37 / fm"
6360
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1556
!
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1557
11616
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
  1558
nextPutIEEEDouble:aFloat
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
  1559
    "write an 8-byte IEEE double precision float number"
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
  1560
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
  1561
    Float storeBinaryIEEEDouble:aFloat on:self
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
  1562
!
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
  1563
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
  1564
nextPutIEEESingle:aFloat
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
  1565
    "write a 4-byte IEEE single precision float number"
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
  1566
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
  1567
    ShortFloat storeBinaryIEEESingle:aFloat on:self
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
  1568
!
0ca41183ee3e added IEESingle and IEEDouble readers and writers
Claus Gittinger <cg@exept.de>
parents: 11322
diff changeset
  1569
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1570
nextPutLong:aNumber MSB:msbFlag
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1571
    "Write the argument, aNumber as a long (four bytes). 
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1572
     If msbFlag is true, data is written most-significant byte first; 
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1573
     otherwise least first. 
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1574
     Returns the receiver on ok, nil on error.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1575
     The receiver must support writing of binary bytes.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1576
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1577
     This interface is provided to allow talking to external programs,
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1578
     where its known that the byte order is some definite one.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1579
     If you dont care (i.e. talk to other smalltalks) or you can control the
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1580
     order, please use the corresponding xxxNet methods, which use a standard
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1581
     network byte order."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1582
5960
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1583
    |hh hl lh ll b1 b2 b3 b4|
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1584
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1585
    ll := aNumber digitByteAt:1.
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1586
    lh := aNumber digitByteAt:2.
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1587
    hl := aNumber digitByteAt:3.
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1588
    hh := aNumber digitByteAt:4.
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1589
    msbFlag ifTrue:[
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1590
        "high byte first"
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1591
        b1 := hh.
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1592
        b2 := hl.
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1593
        b3 := lh.
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1594
        b4 := ll.
2332
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  1595
    ] ifFalse:[
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1596
        "low word first"
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1597
        b1 := ll.
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1598
        b2 := lh.
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1599
        b3 := hl.
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1600
        b4 := hh.
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1601
    ].
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1602
    self nextPutByte:b1.
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1603
    self nextPutByte:b2.
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1604
    self nextPutByte:b3.
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1605
    self nextPutByte:b4.
5960
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1606
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1607
    "
6360
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1608
     |s bytes|
5960
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1609
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1610
     s := #[] writeStream.
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1611
     s nextPutLong:16r12345678 MSB:false.
6360
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1612
     bytes := s contents.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1613
     s := bytes readStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1614
     (s nextLongMSB:false) hexPrintString.   
5960
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1615
    "
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1616
    "
6360
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1617
     |s bytes|
5960
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1618
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1619
     s := #[] writeStream.
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1620
     s nextPutLong:16r12345678 MSB:true.
6360
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1621
     bytes := s contents.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1622
     s := bytes readStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1623
     (s nextLongMSB:true) hexPrintString.   
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1624
.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1625
    "
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1626
    "
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1627
     |s bytes|
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1628
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1629
     s := #[] writeStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1630
     s nextPutLong:16r-80000000 MSB:true.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1631
     bytes := s contents.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1632
     s := bytes readStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1633
     (s nextLongMSB:true) hexPrintString.   
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1634
    "
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1635
    "
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1636
     |s bytes|
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1637
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1638
     s := #[] writeStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1639
     s nextPutLong:16r-80000000 MSB:false.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1640
     bytes := s contents.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1641
     s := bytes readStream.
9bb87d3988c5 read/write of hypers (8byte ints)
Claus Gittinger <cg@exept.de>
parents: 6355
diff changeset
  1642
     (s nextLongMSB:false) hexPrintString.   
5960
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1643
    "
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1644
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1645
    "Modified: / 01-11-1997 / 18:30:52 / cg"
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1646
    "Modified: / 22-06-2006 / 11:31:43 / fm"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1647
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1648
846
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1649
nextPutLongNet:aNumber
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1650
    "Write the argument, aNumber as a long (four bytes) in the network byte order.
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1651
     Returns the receiver on ok, nil on error.
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1652
     The receiver must support writing of binary bytes."
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1653
8894
63cd83aa44e8 No need to ask Socket>>#networkXXXOrderIsMSB, because the return value is
Stefan Vogel <sv@exept.de>
parents: 8815
diff changeset
  1654
    ^ self nextPutLong:aNumber MSB:true
846
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1655
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1656
    "Modified: 10.1.1996 / 19:47:10 / cg"
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1657
    "Created: 10.1.1996 / 19:50:23 / cg"
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1658
!
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1659
15654
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1660
nextPutShort:anIntegerOrCharacter MSB:msbFlag
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1661
    "Write the argument, anIntegerOrCharacter as a short (two bytes). 
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1662
     If msbFlag is true, data is written most-significant byte first; 
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1663
     otherwise least first. 
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1664
     Returns the receiver on ok, nil on error.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1665
     The receiver must support writing of binary bytes.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1666
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1667
     This interface is provided to allow talking to external programs,
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1668
     where its known that the byte order is some definite one.
15654
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1669
     If you don't care (i.e. talk to other smalltalks) or you can control the
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1670
     order, please use the corresponding xxxNet methods, which use a standard
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  1671
     network byte order."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1672
2332
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  1673
    |iNum "{ Class: SmallInteger }" hi lo b1 b2|
1117
f64e35e18e65 typed variable in nextPutNumber
Claus Gittinger <cg@exept.de>
parents: 970
diff changeset
  1674
15654
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1675
    iNum := anIntegerOrCharacter asInteger.
5960
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1676
    lo := iNum digitByteAt:1.
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1677
    hi := iNum digitByteAt:2.
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1678
    msbFlag ifTrue:[
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1679
        "high word first"
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1680
        b1 := hi.
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1681
        b2 := lo.
2332
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  1682
    ] ifFalse:[
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1683
        "low word first"
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1684
        b1 := lo.
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1685
        b2 := hi.
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1686
    ].
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1687
    self nextPutByte:b1.
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1688
    self nextPutByte:b2.
5960
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1689
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1690
    "
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1691
     |s|
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1692
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1693
     s := #[] writeStream.
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1694
     s nextPutShort:16r1234 MSB:false.
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1695
     s contents.  
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1696
    "
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1697
    "
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1698
     |s|
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1699
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1700
     s := #[] writeStream.
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1701
     s nextPutShort:16r1234 MSB:true.
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1702
     s contents.
54bbf6451b83 statements after return
Claus Gittinger <cg@exept.de>
parents: 5873
diff changeset
  1703
    "
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1704
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1705
    "Modified: / 22-06-2006 / 11:30:26 / fm"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1706
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1707
846
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1708
nextPutShortNet:aNumber
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1709
    "Write the argument, aNumber as a short (two bytes) in the network byte order.
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1710
     Returns the receiver on ok, nil on error.
8894
63cd83aa44e8 No need to ask Socket>>#networkXXXOrderIsMSB, because the return value is
Stefan Vogel <sv@exept.de>
parents: 8815
diff changeset
  1711
     The receiver must support writing of binary bytes.
63cd83aa44e8 No need to ask Socket>>#networkXXXOrderIsMSB, because the return value is
Stefan Vogel <sv@exept.de>
parents: 8815
diff changeset
  1712
     Network byte order is MSB per definition"
63cd83aa44e8 No need to ask Socket>>#networkXXXOrderIsMSB, because the return value is
Stefan Vogel <sv@exept.de>
parents: 8815
diff changeset
  1713
8970
9f62098c6416 fix #nextPutShortNet:
Stefan Vogel <sv@exept.de>
parents: 8894
diff changeset
  1714
    ^ self nextPutShort:aNumber MSB:true.
846
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1715
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1716
    "Created: 10.1.1996 / 19:50:33 / cg"
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1717
!
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1718
15652
22283f3d2b89 class: Stream
Stefan Vogel <sv@exept.de>
parents: 15642
diff changeset
  1719
nextPutUtf16:aCharacter
22283f3d2b89 class: Stream
Stefan Vogel <sv@exept.de>
parents: 15642
diff changeset
  1720
    "append my UTF-16 representation to the argument, aStream.
15654
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1721
     UTF-16 can encode only characters with code points between 0 to 16r10FFFF.
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1722
     The collection must be able to store 2-byte values (TwoByteString, OrderedCollection)"
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1723
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1724
    |codePoint|
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1725
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1726
    codePoint := aCharacter codePoint.
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1727
    (codePoint <= 16rD7FF
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1728
      or:[codePoint >= 16rE000 and:[codePoint <= 16rFFFF]]) ifTrue:[
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1729
        self nextPut:aCharacter.
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1730
    ] ifFalse:[codePoint <= 16r10FFFF ifTrue:[
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1731
        |highBits lowBits|
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1732
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1733
        codePoint := codePoint - 16r100000.
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1734
        highBits := codePoint bitShift:-10.
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1735
        lowBits := codePoint bitAnd:16r3FF.
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1736
        self nextPut:(Character codePoint:highBits+16rD800).
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1737
        self nextPut:(Character codePoint:lowBits+16rDC00).
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1738
    ] ifFalse:[
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1739
        EncodingError raiseWith:aCharacter errorString:'Character cannot be encoded as UTF-16'.
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1740
    ]].
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1741
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1742
    "
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1743
        ((WriteStream on:Unicode16String new)
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1744
            nextPutUtf16:$B;
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1745
            nextPutUtf16:$Ä; 
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1746
            nextPutUtf16:(Character codePoint:16r10CCCC)
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1747
            yourself) contents
e4bfb1d6b3df class: Stream
Stefan Vogel <sv@exept.de>
parents: 15652
diff changeset
  1748
    "
15652
22283f3d2b89 class: Stream
Stefan Vogel <sv@exept.de>
parents: 15642
diff changeset
  1749
!
22283f3d2b89 class: Stream
Stefan Vogel <sv@exept.de>
parents: 15642
diff changeset
  1750
11322
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1751
nextPutUtf8:aCharacter
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1752
    "append my UTF-8 representation to the argument, aStream.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1753
     Up to 31 bits can be encoded in up to 6 bytes.
14593
e94f975fd01b class: Stream
Stefan Vogel <sv@exept.de>
parents: 14434
diff changeset
  1754
     However, currently, characters are limited to 31 bits."
11322
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1755
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1756
    |codePoint b1 b2 b3 b4 b5 v|
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1757
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1758
    codePoint := aCharacter codePoint.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1759
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1760
    codePoint <= 16r7F ifTrue:[
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1761
        self nextPut:aCharacter.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1762
        ^ self.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1763
    ].
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1764
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1765
    b1 := Character codePoint:((codePoint bitAnd:16r3F) bitOr:2r10000000).
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1766
    v := codePoint bitShift:-6.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1767
    v <= 16r1F ifTrue:[
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1768
        self nextPut:(Character value:(v bitOr:2r11000000)).
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1769
        self nextPut:b1.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1770
        ^ self.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1771
    ].
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1772
    b2 := Character codePoint:((v bitAnd:16r3F) bitOr:2r10000000).
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1773
    v := v bitShift:-6.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1774
    v <= 16r0F ifTrue:[
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1775
        self nextPut:(Character value:(v bitOr:2r11100000)).
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1776
        self nextPut:b2; nextPut:b1.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1777
        ^ self.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1778
    ].
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1779
    b3 := Character codePoint:((v bitAnd:16r3F) bitOr:2r10000000).
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1780
    v := v bitShift:-6.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1781
    v <= 16r07 ifTrue:[
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1782
        self nextPut:(Character value:(v bitOr:2r11110000)).
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1783
        self nextPut:b3; nextPut:b2; nextPut:b1.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1784
        ^ self.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1785
    ].
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1786
    b4 := Character codePoint:((v bitAnd:16r3F) bitOr:2r10000000).
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1787
    v := v bitShift:-6.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1788
    v <= 16r03 ifTrue:[
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1789
        self nextPut:(Character value:(v bitOr:2r11111000)).
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1790
        self nextPut:b4; nextPut:b3; nextPut:b2; nextPut:b1.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1791
        ^ self.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1792
    ].
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1793
    b5 := Character codePoint:((v bitAnd:16r3F) bitOr:2r10000000).
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1794
    v := v bitShift:-6.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1795
    v <= 16r01 ifTrue:[
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1796
        self nextPut:(Character value:(v bitOr:2r11111100)).
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1797
        self nextPut:b5; nextPut:b4; nextPut:b3; nextPut:b2; nextPut:b1.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1798
        ^ self.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1799
    ].
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1800
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1801
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1802
    self error:'codePoint > 31bit in #nextPutUtf8:'.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1803
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1804
    "
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1805
      (String streamContents:[:s| 
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1806
            s nextPutUtf8:$a.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1807
            s nextPutUtf8:$ü.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1808
            s nextPutUtf8: (Character value:16r1fff).
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1809
            s nextPutUtf8: (Character value:16rffff).
14593
e94f975fd01b class: Stream
Stefan Vogel <sv@exept.de>
parents: 14434
diff changeset
  1810
            s nextPutUtf8: (Character value:16r1ffffff).
11322
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1811
            s nextPutUtf8: (Character value:16r800).
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1812
      ])
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1813
            asByteArray
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1814
            
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1815
    "
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1816
!
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  1817
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1818
nextPutWord:aNumber
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1819
    "write the argument, aNumber as a signed short (two bytes);
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1820
     write msb-first for compatibility with other smalltalks.
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1821
     The receiver must support writing of binary bytes.
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1822
     I dont know if it should be named nextPutWord: or nextWordPut:;
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1823
     one of them will vanish ..."
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1824
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1825
    ^ self nextPutShort:aNumber MSB:true
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1826
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1827
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1828
nextTwoBytesPut: anInteger
15397
3e7f6d3661ef class: Stream
Stefan Vogel <sv@exept.de>
parents: 15165
diff changeset
  1829
        <resource: #obsolete>
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1830
        "Write anInteger as the next two bytes of the
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1831
         receiver stream."
15397
3e7f6d3661ef class: Stream
Stefan Vogel <sv@exept.de>
parents: 15165
diff changeset
  1832
3e7f6d3661ef class: Stream
Stefan Vogel <sv@exept.de>
parents: 15165
diff changeset
  1833
    self obsoleteMethodWarning:'use #nextPutShort:MSB:'.
3e7f6d3661ef class: Stream
Stefan Vogel <sv@exept.de>
parents: 15165
diff changeset
  1834
9407
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1835
    self
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1836
        nextPutByte: (anInteger bitAnd: 255);
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1837
        nextPutByte: ((anInteger bitShift: -8) bitAnd: 255)
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1838
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1839
    "Created: / 21-06-2006 / 19:42:10 / fm"
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1840
!
86add177f7f9 use nextPutByte when writing binary integer data
fm
parents: 9357
diff changeset
  1841
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1842
nextWordPut:aNumber
846
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1843
    "for ST-80 compatibility:
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1844
     Write the argument, aNumber as a short (two bytes). 
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1845
     The most significant byte is sent first."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1846
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1847
    ^ self nextPutShort:aNumber MSB:true
846
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1848
4117b296633d network byte order read/write methods added
Claus Gittinger <cg@exept.de>
parents: 820
diff changeset
  1849
    "Modified: 10.1.1996 / 19:39:19 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1850
! !
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1851
16454
ea42dcd0ad0a class: Stream
Claus Gittinger <cg@exept.de>
parents: 16453
diff changeset
  1852
!Stream methodsFor:'open / close'!
ea42dcd0ad0a class: Stream
Claus Gittinger <cg@exept.de>
parents: 16453
diff changeset
  1853
ea42dcd0ad0a class: Stream
Claus Gittinger <cg@exept.de>
parents: 16453
diff changeset
  1854
close
ea42dcd0ad0a class: Stream
Claus Gittinger <cg@exept.de>
parents: 16453
diff changeset
  1855
    "close the stream - nothing done here.
ea42dcd0ad0a class: Stream
Claus Gittinger <cg@exept.de>
parents: 16453
diff changeset
  1856
     Added for compatibility with external streams."
ea42dcd0ad0a class: Stream
Claus Gittinger <cg@exept.de>
parents: 16453
diff changeset
  1857
ea42dcd0ad0a class: Stream
Claus Gittinger <cg@exept.de>
parents: 16453
diff changeset
  1858
    ^ self
ea42dcd0ad0a class: Stream
Claus Gittinger <cg@exept.de>
parents: 16453
diff changeset
  1859
! !
ea42dcd0ad0a class: Stream
Claus Gittinger <cg@exept.de>
parents: 16453
diff changeset
  1860
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1861
!Stream methodsFor:'private'!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1862
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1863
contentsSpecies
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1864
    "this should return the class of which an instance is
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1865
     returned by the #contents method. Here, Array is returned,
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1866
     since the abstract Stream-class has no idea of the underlying 
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1867
     collection class. 
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1868
     It is redefined in some subclasses - for example, to return String."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1869
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1870
    ^ Array
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1871
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1872
    "Modified: 15.5.1996 / 17:53:31 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1873
! !
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1874
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1875
!Stream methodsFor:'queries'!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1876
15719
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  1877
current
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  1878
    "for compatibility with Transcript - allow Transcript current,
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  1879
     even if redirected to the standardError"
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  1880
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  1881
    self == Transcript ifTrue:[
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  1882
        ^ self
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  1883
    ].
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  1884
    "/ this will raise an DNU error, usually.
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  1885
    ^ super current
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  1886
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  1887
    "Modified (comment): / 29-08-2013 / 11:09:21 / cg"
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  1888
!
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  1889
15590
599f382cedc7 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15397
diff changeset
  1890
inputStream
599f382cedc7 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15397
diff changeset
  1891
    "return the receiver.
599f382cedc7 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15397
diff changeset
  1892
     for compatibility with filtering streams"
599f382cedc7 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15397
diff changeset
  1893
599f382cedc7 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15397
diff changeset
  1894
    self isReadable ifFalse:[ ^ nil ].
599f382cedc7 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15397
diff changeset
  1895
    ^ self
599f382cedc7 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15397
diff changeset
  1896
!
599f382cedc7 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15397
diff changeset
  1897
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1898
isBinary
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1899
    "return true, if in binary mode. Always returns false here,
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1900
     to make internalStreams protocol compatible with externalStreams."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1901
7503
ddabde2900d2 Use contentsSpecies
Stefan Vogel <sv@exept.de>
parents: 7502
diff changeset
  1902
    ^ self contentsSpecies == ByteArray
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1903
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1904
    "Modified: 15.5.1996 / 17:53:51 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1905
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1906
11948
88407e1c3dc2 +isOpen
Claus Gittinger <cg@exept.de>
parents: 11863
diff changeset
  1907
isOpen
88407e1c3dc2 +isOpen
Claus Gittinger <cg@exept.de>
parents: 11863
diff changeset
  1908
    "for compatibility with externalStream:
88407e1c3dc2 +isOpen
Claus Gittinger <cg@exept.de>
parents: 11863
diff changeset
  1909
     return true, if this stream is open."
88407e1c3dc2 +isOpen
Claus Gittinger <cg@exept.de>
parents: 11863
diff changeset
  1910
88407e1c3dc2 +isOpen
Claus Gittinger <cg@exept.de>
parents: 11863
diff changeset
  1911
    ^ true
88407e1c3dc2 +isOpen
Claus Gittinger <cg@exept.de>
parents: 11863
diff changeset
  1912
!
88407e1c3dc2 +isOpen
Claus Gittinger <cg@exept.de>
parents: 11863
diff changeset
  1913
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1914
isReadable
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1915
    "return true, if reading is supported by the recevier.
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1916
     This has to be redefined in concrete subclasses."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1917
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1918
    ^ self subclassResponsibility
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1919
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1920
    "Modified: 15.5.1996 / 17:54:31 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1921
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1922
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1923
isWritable
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1924
    "return true, if writing is supported by the recevier.
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1925
     This has to be redefined in concrete subclasses."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1926
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1927
    ^ self subclassResponsibility
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1928
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1929
    "Modified: 15.5.1996 / 17:54:54 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1930
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1931
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1932
lineLength
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1933
    "return the lineLength which `looks good' when pretty printed
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1934
     text is sent to this stream.
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1935
     This has NO meaning whatsoever to regular streams;
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1936
     however, it may be used as a layout hint for prettyprinting functions
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1937
     - for compatibility with TextCollectors, which returns its views actual
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1938
       line length, and allows the prettyprinter to wrap at that position."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1939
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1940
    ^ 80
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1941
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  1942
    "Modified: 15.5.1996 / 17:57:01 / cg"
3493
87864e021c20 added #pageFormat for printerStream protocol compatibility.
Claus Gittinger <cg@exept.de>
parents: 3462
diff changeset
  1943
!
87864e021c20 added #pageFormat for printerStream protocol compatibility.
Claus Gittinger <cg@exept.de>
parents: 3462
diff changeset
  1944
5395
8766e18acdb5 dummy lineNumber support
Claus Gittinger <cg@exept.de>
parents: 5392
diff changeset
  1945
lineNumber
15591
e5f526f1c829 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15590
diff changeset
  1946
    "return the current lineNumber if known
e5f526f1c829 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15590
diff changeset
  1947
     (for compatibility with LineNumberReadStream)"
5395
8766e18acdb5 dummy lineNumber support
Claus Gittinger <cg@exept.de>
parents: 5392
diff changeset
  1948
8766e18acdb5 dummy lineNumber support
Claus Gittinger <cg@exept.de>
parents: 5392
diff changeset
  1949
    ^ nil
8766e18acdb5 dummy lineNumber support
Claus Gittinger <cg@exept.de>
parents: 5392
diff changeset
  1950
!
8766e18acdb5 dummy lineNumber support
Claus Gittinger <cg@exept.de>
parents: 5392
diff changeset
  1951
8645
92b28f10ab85 terminal stuff added
penk
parents: 8630
diff changeset
  1952
numberOfTerminalCols
92b28f10ab85 terminal stuff added
penk
parents: 8630
diff changeset
  1953
    ^ self lineLength
92b28f10ab85 terminal stuff added
penk
parents: 8630
diff changeset
  1954
!
92b28f10ab85 terminal stuff added
penk
parents: 8630
diff changeset
  1955
92b28f10ab85 terminal stuff added
penk
parents: 8630
diff changeset
  1956
numberOfTerminalLines
92b28f10ab85 terminal stuff added
penk
parents: 8630
diff changeset
  1957
    ^ 24
92b28f10ab85 terminal stuff added
penk
parents: 8630
diff changeset
  1958
!
92b28f10ab85 terminal stuff added
penk
parents: 8630
diff changeset
  1959
15590
599f382cedc7 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15397
diff changeset
  1960
outputStream
599f382cedc7 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15397
diff changeset
  1961
    "return the receiver.
599f382cedc7 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15397
diff changeset
  1962
     for compatibility with filtering streams"
599f382cedc7 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15397
diff changeset
  1963
599f382cedc7 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15397
diff changeset
  1964
    self isWritable ifFalse:[ ^ nil ].
599f382cedc7 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15397
diff changeset
  1965
    ^ self
599f382cedc7 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15397
diff changeset
  1966
!
599f382cedc7 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15397
diff changeset
  1967
3493
87864e021c20 added #pageFormat for printerStream protocol compatibility.
Claus Gittinger <cg@exept.de>
parents: 3462
diff changeset
  1968
pageFormat
87864e021c20 added #pageFormat for printerStream protocol compatibility.
Claus Gittinger <cg@exept.de>
parents: 3462
diff changeset
  1969
    "return the pageFormat - nil here.
87864e021c20 added #pageFormat for printerStream protocol compatibility.
Claus Gittinger <cg@exept.de>
parents: 3462
diff changeset
  1970
     This has NO meaning whatsoever to regular streams;
87864e021c20 added #pageFormat for printerStream protocol compatibility.
Claus Gittinger <cg@exept.de>
parents: 3462
diff changeset
  1971
     however, it has been added for protocol compatibility with printerStreams"
87864e021c20 added #pageFormat for printerStream protocol compatibility.
Claus Gittinger <cg@exept.de>
parents: 3462
diff changeset
  1972
87864e021c20 added #pageFormat for printerStream protocol compatibility.
Claus Gittinger <cg@exept.de>
parents: 3462
diff changeset
  1973
    ^ nil
87864e021c20 added #pageFormat for printerStream protocol compatibility.
Claus Gittinger <cg@exept.de>
parents: 3462
diff changeset
  1974
87864e021c20 added #pageFormat for printerStream protocol compatibility.
Claus Gittinger <cg@exept.de>
parents: 3462
diff changeset
  1975
    "Modified: / 15.5.1996 / 17:57:01 / cg"
87864e021c20 added #pageFormat for printerStream protocol compatibility.
Claus Gittinger <cg@exept.de>
parents: 3462
diff changeset
  1976
    "Created: / 29.5.1998 / 16:57:48 / cg"
8645
92b28f10ab85 terminal stuff added
penk
parents: 8630
diff changeset
  1977
!
92b28f10ab85 terminal stuff added
penk
parents: 8630
diff changeset
  1978
14303
b6c666a01a4d added: #size
Claus Gittinger <cg@exept.de>
parents: 14263
diff changeset
  1979
size
b6c666a01a4d added: #size
Claus Gittinger <cg@exept.de>
parents: 14263
diff changeset
  1980
    "return the number of elements in the streamed collection."
b6c666a01a4d added: #size
Claus Gittinger <cg@exept.de>
parents: 14263
diff changeset
  1981
b6c666a01a4d added: #size
Claus Gittinger <cg@exept.de>
parents: 14263
diff changeset
  1982
    self subclassResponsibility
b6c666a01a4d added: #size
Claus Gittinger <cg@exept.de>
parents: 14263
diff changeset
  1983
b6c666a01a4d added: #size
Claus Gittinger <cg@exept.de>
parents: 14263
diff changeset
  1984
    "Created: / 05-08-2012 / 18:38:12 / cg"
b6c666a01a4d added: #size
Claus Gittinger <cg@exept.de>
parents: 14263
diff changeset
  1985
!
b6c666a01a4d added: #size
Claus Gittinger <cg@exept.de>
parents: 14263
diff changeset
  1986
8645
92b28f10ab85 terminal stuff added
penk
parents: 8630
diff changeset
  1987
terminalType
92b28f10ab85 terminal stuff added
penk
parents: 8630
diff changeset
  1988
    ^ 'dump'
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1989
! !
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  1990
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  1991
!Stream methodsFor:'reading'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1992
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1993
next
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1994
    "return the next element of the stream
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1995
     - we do not know here how to do it, it must be redefined in subclass"
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1996
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1997
    ^ self subclassResponsibility
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1998
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  1999
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2000
next:count
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2001
    "return the next count elements of the stream as aCollection,
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2002
     which depends on the streams type - (see #contentsSpecies)."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2003
329
claus
parents: 308
diff changeset
  2004
    |answerStream 
285
ad6dfa61182e *** empty log message ***
claus
parents: 275
diff changeset
  2005
     cnt  "{ Class: SmallInteger }" |
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2006
285
ad6dfa61182e *** empty log message ***
claus
parents: 275
diff changeset
  2007
    cnt := count.
7467
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2008
    answerStream := WriteStream on:(self contentsSpecies new:cnt).
12426
809a7dda4bd7 changed:
Stefan Vogel <sv@exept.de>
parents: 12401
diff changeset
  2009
    1 to:cnt do:[:index | |next|
809a7dda4bd7 changed:
Stefan Vogel <sv@exept.de>
parents: 12401
diff changeset
  2010
        next := self next.
809a7dda4bd7 changed:
Stefan Vogel <sv@exept.de>
parents: 12401
diff changeset
  2011
        next isNil ifTrue:[
809a7dda4bd7 changed:
Stefan Vogel <sv@exept.de>
parents: 12401
diff changeset
  2012
            "if next did not raise EndOfStreamError, we have to do it"
809a7dda4bd7 changed:
Stefan Vogel <sv@exept.de>
parents: 12401
diff changeset
  2013
            EndOfStreamError raiseRequestFrom:self.
12623
389426d8f6eb changed: #next:
Stefan Vogel <sv@exept.de>
parents: 12527
diff changeset
  2014
            "if you proceed, you get what we have already collected"
389426d8f6eb changed: #next:
Stefan Vogel <sv@exept.de>
parents: 12527
diff changeset
  2015
            ^ answerStream contents
12426
809a7dda4bd7 changed:
Stefan Vogel <sv@exept.de>
parents: 12401
diff changeset
  2016
        ].
809a7dda4bd7 changed:
Stefan Vogel <sv@exept.de>
parents: 12401
diff changeset
  2017
        answerStream nextPut:next.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2018
    ].
329
claus
parents: 308
diff changeset
  2019
    ^ answerStream contents
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2020
275
a76029ddaa98 *** empty log message ***
claus
parents: 216
diff changeset
  2021
    "
a76029ddaa98 *** empty log message ***
claus
parents: 216
diff changeset
  2022
     (ReadStream on:#(1 2 3 4 5)) next:3
a76029ddaa98 *** empty log message ***
claus
parents: 216
diff changeset
  2023
     (ReadStream on:'hello') next:3
a76029ddaa98 *** empty log message ***
claus
parents: 216
diff changeset
  2024
    "
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2025
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2026
    "Modified: 15.5.1996 / 17:57:58 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2027
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2028
7467
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2029
next:count into:aWriteStream
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2030
    "put the next count elements of the stream into aWriteStream"
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2031
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2032
    |cnt  "{ Class: SmallInteger }" |
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2033
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2034
    cnt := count.
12426
809a7dda4bd7 changed:
Stefan Vogel <sv@exept.de>
parents: 12401
diff changeset
  2035
    1 to:cnt do:[:index |  |next|
809a7dda4bd7 changed:
Stefan Vogel <sv@exept.de>
parents: 12401
diff changeset
  2036
        next := self next.
809a7dda4bd7 changed:
Stefan Vogel <sv@exept.de>
parents: 12401
diff changeset
  2037
        next isNil ifTrue:[
809a7dda4bd7 changed:
Stefan Vogel <sv@exept.de>
parents: 12401
diff changeset
  2038
            "if next did not raise EndOfStreamError, we have to do it"
809a7dda4bd7 changed:
Stefan Vogel <sv@exept.de>
parents: 12401
diff changeset
  2039
            EndOfStreamError raiseRequestFrom:self.
809a7dda4bd7 changed:
Stefan Vogel <sv@exept.de>
parents: 12401
diff changeset
  2040
        ].
809a7dda4bd7 changed:
Stefan Vogel <sv@exept.de>
parents: 12401
diff changeset
  2041
        aWriteStream nextPut:next.
7467
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2042
    ].
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2043
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2044
    "
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2045
      |writeStream|
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2046
      writeStream := #() writeStream.
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2047
      #(1 2 3 4 5) readStream next:3 into:writeStream.
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2048
      writeStream contents.
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2049
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2050
      |writeStream|
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2051
      writeStream := '' writeStream.
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2052
      'hello' readStream next:3 into:writeStream.
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2053
      writeStream contents.
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2054
    "
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2055
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2056
    "Modified: 15.5.1996 / 17:57:58 / cg"
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2057
!
8c4475cadbd0 Optimize #next:
Stefan Vogel <sv@exept.de>
parents: 7350
diff changeset
  2058
285
ad6dfa61182e *** empty log message ***
claus
parents: 275
diff changeset
  2059
nextAvailable:count
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2060
    "return the next count elements of the stream as aCollection.
285
ad6dfa61182e *** empty log message ***
claus
parents: 275
diff changeset
  2061
     If the stream reaches the end before count elements have been read,
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2062
     return what is available. (i.e. a shorter collection).
3590
d22de87c7fbd removed endOfStreamQuery - instead, handle unhandled exception
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  2063
     The type of collection is specified in #contentsSpecies."
285
ad6dfa61182e *** empty log message ***
claus
parents: 275
diff changeset
  2064
345
claus
parents: 339
diff changeset
  2065
    |answerStream
285
ad6dfa61182e *** empty log message ***
claus
parents: 275
diff changeset
  2066
     cnt  "{ Class: SmallInteger }"|
ad6dfa61182e *** empty log message ***
claus
parents: 275
diff changeset
  2067
ad6dfa61182e *** empty log message ***
claus
parents: 275
diff changeset
  2068
    cnt := count.
10358
5a679e45aeaa Speed up #nextAvailable: and #skipThrough:
Stefan Vogel <sv@exept.de>
parents: 10181
diff changeset
  2069
    answerStream := WriteStream on:(self contentsSpecies new:cnt).
285
ad6dfa61182e *** empty log message ***
claus
parents: 275
diff changeset
  2070
    1 to:cnt do:[:index |
10358
5a679e45aeaa Speed up #nextAvailable: and #skipThrough:
Stefan Vogel <sv@exept.de>
parents: 10181
diff changeset
  2071
        self atEnd ifTrue:[
5a679e45aeaa Speed up #nextAvailable: and #skipThrough:
Stefan Vogel <sv@exept.de>
parents: 10181
diff changeset
  2072
            ^ answerStream contents
5a679e45aeaa Speed up #nextAvailable: and #skipThrough:
Stefan Vogel <sv@exept.de>
parents: 10181
diff changeset
  2073
        ].
5a679e45aeaa Speed up #nextAvailable: and #skipThrough:
Stefan Vogel <sv@exept.de>
parents: 10181
diff changeset
  2074
        answerStream nextPut:(self next)
285
ad6dfa61182e *** empty log message ***
claus
parents: 275
diff changeset
  2075
    ].
329
claus
parents: 308
diff changeset
  2076
    ^ answerStream contents
285
ad6dfa61182e *** empty log message ***
claus
parents: 275
diff changeset
  2077
ad6dfa61182e *** empty log message ***
claus
parents: 275
diff changeset
  2078
    "
3590
d22de87c7fbd removed endOfStreamQuery - instead, handle unhandled exception
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  2079
     (ReadStream on:#(1 2 3 4 5)) nextAvailable:3 
285
ad6dfa61182e *** empty log message ***
claus
parents: 275
diff changeset
  2080
     (ReadStream on:#(1 2 3 4 5)) nextAvailable:10 
ad6dfa61182e *** empty log message ***
claus
parents: 275
diff changeset
  2081
     (ReadStream on:'hello') nextAvailable:3
ad6dfa61182e *** empty log message ***
claus
parents: 275
diff changeset
  2082
     (ReadStream on:'hello') nextAvailable:10 
ad6dfa61182e *** empty log message ***
claus
parents: 275
diff changeset
  2083
    "
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2084
3590
d22de87c7fbd removed endOfStreamQuery - instead, handle unhandled exception
Claus Gittinger <cg@exept.de>
parents: 3586
diff changeset
  2085
    "Modified: / 16.6.1998 / 15:52:41 / cg"
285
ad6dfa61182e *** empty log message ***
claus
parents: 275
diff changeset
  2086
!
ad6dfa61182e *** empty log message ***
claus
parents: 275
diff changeset
  2087
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2088
nextMatchFor:anObject
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2089
    "read an element from the receiver, return true if it was equal to
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2090
     the argument, anObject; false otherwise."
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2091
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2092
    ^ (self next = anObject)
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2093
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2094
    "
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2095
     |s|
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2096
     s := ReadStream on:#(1 2 3 4 5 6 7 8).
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2097
     s nextMatchFor:2
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2098
    "
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2099
    "
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2100
     |s|
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2101
     s := ReadStream on:#(1 2 3 4 5 6 7 8).
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2102
     s nextMatchFor:2.
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2103
     s nextMatchFor:2
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2104
    "
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2105
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2106
    "Modified: 15.5.1996 / 17:58:57 / cg"
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2107
!
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2108
6862
46016b628d45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6857
diff changeset
  2109
nextOrNil
46016b628d45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6857
diff changeset
  2110
    "like #next, this returns the next element, if available.
7118
10b067555add *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7104
diff changeset
  2111
     If nothing is available, this does never raise a read-beyond end signal.
6862
46016b628d45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6857
diff changeset
  2112
     Instead, nil is returned immediately."
46016b628d45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6857
diff changeset
  2113
46016b628d45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6857
diff changeset
  2114
    self atEnd ifTrue:[^ nil].
46016b628d45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6857
diff changeset
  2115
    ^ self next
46016b628d45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6857
diff changeset
  2116
!
46016b628d45 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6857
diff changeset
  2117
7242
997111e3b608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7187
diff changeset
  2118
skip:numberToSkip 
997111e3b608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7187
diff changeset
  2119
    "skip numberToSkip objects, return the receiver"
345
claus
parents: 339
diff changeset
  2120
16208
eab134bd8b94 class: Stream
Stefan Vogel <sv@exept.de>
parents: 16197
diff changeset
  2121
    "don't know how to unread ..."
7242
997111e3b608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7187
diff changeset
  2122
    numberToSkip < 0 ifTrue:[
8309
63dc3e0f5e51 class based exceptions
Claus Gittinger <cg@exept.de>
parents: 8071
diff changeset
  2123
        PositionError raiseRequest.
7242
997111e3b608 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7187
diff changeset
  2124
        ^ self
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2125
    ].
16208
eab134bd8b94 class: Stream
Stefan Vogel <sv@exept.de>
parents: 16197
diff changeset
  2126
    numberToSkip timesRepeat:[self next]
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2127
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2128
    "
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2129
     |s|
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2130
     s := ReadStream on:#(1 2 3 4 5 6 7 8).
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2131
     s skip:4.
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2132
     s next
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2133
    "
4467
8ddf534d7d81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3911
diff changeset
  2134
8ddf534d7d81 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3911
diff changeset
  2135
    "Modified: / 30.7.1999 / 12:12:10 / cg"
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2136
!
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2137
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2138
skipFor:anObject
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2139
    "skip all objects up-to and including anObject; 
15639
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2140
     read and return the element after anObject."
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2141
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2142
    (self skipThrough:anObject) notNil ifTrue:[
15639
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2143
        ^ self next
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2144
    ].
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2145
    ^ nil
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2146
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2147
    "
15639
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2148
     |s next rest|
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2149
     s := ReadStream on:#(1 2 3 4 5 6 7 8).
15639
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2150
     next := s skipFor:4.      
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2151
     rest := s upToEnd.   
6010
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2152
    "
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2153
    "
15639
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2154
     |s next rest|
6010
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2155
     s := ReadStream on:'12345678'.
15639
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2156
     next := s skipFor:$4.
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2157
     rest := s upToEnd.
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2158
    "
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2159
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2160
    "Modified: 15.5.1996 / 17:59:23 / cg"
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2161
!
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2162
10360
f8a5e7c8c8d8 new: #skipLine (was only in ExternalStream)
Stefan Vogel <sv@exept.de>
parents: 10359
diff changeset
  2163
skipLine
f8a5e7c8c8d8 new: #skipLine (was only in ExternalStream)
Stefan Vogel <sv@exept.de>
parents: 10359
diff changeset
  2164
    "read the next line (characters up to newline) skip only;
f8a5e7c8c8d8 new: #skipLine (was only in ExternalStream)
Stefan Vogel <sv@exept.de>
parents: 10359
diff changeset
  2165
     return nil if EOF reached, self otherwise.
f8a5e7c8c8d8 new: #skipLine (was only in ExternalStream)
Stefan Vogel <sv@exept.de>
parents: 10359
diff changeset
  2166
     Not allowed in binary mode."
f8a5e7c8c8d8 new: #skipLine (was only in ExternalStream)
Stefan Vogel <sv@exept.de>
parents: 10359
diff changeset
  2167
f8a5e7c8c8d8 new: #skipLine (was only in ExternalStream)
Stefan Vogel <sv@exept.de>
parents: 10359
diff changeset
  2168
    ^ self skipThrough:Character cr
f8a5e7c8c8d8 new: #skipLine (was only in ExternalStream)
Stefan Vogel <sv@exept.de>
parents: 10359
diff changeset
  2169
!
f8a5e7c8c8d8 new: #skipLine (was only in ExternalStream)
Stefan Vogel <sv@exept.de>
parents: 10359
diff changeset
  2170
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2171
skipThrough:anObject
6010
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2172
    "skip all objects up-to and including anObject. 
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2173
     Return the receiver if skip was successful, 
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2174
     otherwise (i.e. if not found) return nil and leave the stream positioned at the end.
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2175
     The next read operation will return the element after anObject."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2176
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2177
    |nextElement|
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2178
10358
5a679e45aeaa Speed up #nextAvailable: and #skipThrough:
Stefan Vogel <sv@exept.de>
parents: 10181
diff changeset
  2179
    [
5a679e45aeaa Speed up #nextAvailable: and #skipThrough:
Stefan Vogel <sv@exept.de>
parents: 10181
diff changeset
  2180
        nextElement := self nextOrNil.
5a679e45aeaa Speed up #nextAvailable: and #skipThrough:
Stefan Vogel <sv@exept.de>
parents: 10181
diff changeset
  2181
        (nextElement isNil and:[self atEnd]) ifTrue:[
5a679e45aeaa Speed up #nextAvailable: and #skipThrough:
Stefan Vogel <sv@exept.de>
parents: 10181
diff changeset
  2182
             ^ nil.
5a679e45aeaa Speed up #nextAvailable: and #skipThrough:
Stefan Vogel <sv@exept.de>
parents: 10181
diff changeset
  2183
        ].
5a679e45aeaa Speed up #nextAvailable: and #skipThrough:
Stefan Vogel <sv@exept.de>
parents: 10181
diff changeset
  2184
        nextElement = anObject
5a679e45aeaa Speed up #nextAvailable: and #skipThrough:
Stefan Vogel <sv@exept.de>
parents: 10181
diff changeset
  2185
    ] whileFalse.
2
claus
parents: 1
diff changeset
  2186
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2187
    "
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2188
     |s|
10358
5a679e45aeaa Speed up #nextAvailable: and #skipThrough:
Stefan Vogel <sv@exept.de>
parents: 10181
diff changeset
  2189
     s := ReadStream on:#(1 nil 2 3 4 5 6 7 8).
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2190
     s skipThrough:4.
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2191
     s next
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2192
    "
6010
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2193
    "
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2194
     |s|
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2195
     s := ReadStream on:#(1 2 3 4 5 6 7 8).
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2196
     s skipThrough:4.
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2197
     s skipThrough:4.
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2198
     s next     
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2199
    "
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2200
    "
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2201
     |s|
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2202
     s := ReadStream on:'12345678'.
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2203
     s skipThrough:$4.
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2204
     s next     
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2205
    "
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2206
    "
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2207
     |s|
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2208
     s := ReadStream on:'12345678'.
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2209
     s skipThrough:$4.
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2210
     s skipThrough:$4.
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2211
     s next     
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2212
    "
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2213
    "
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2214
     |s|
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2215
     s := ReadStream on:'12345678'.
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2216
     s skipThrough:$4.
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2217
     s skipThrough:$4.
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2218
     s atEnd     
6113ea11b7b7 comment
Claus Gittinger <cg@exept.de>
parents: 5991
diff changeset
  2219
    "
77
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  2220
!
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  2221
2152
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2222
skipThroughAll:aCollection
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2223
    "skip for and through the sequence given by the argument, aCollection;
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2224
     return nil if not found, the receiver otherwise. 
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2225
     On a successful match, the next read will return elements after aCollection;
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2226
     if no match was found, the receiver will be positioned at the end."
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2227
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2228
    |buffer l first idx|
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2229
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2230
    l := aCollection size.
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2231
    first := aCollection at:1.
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2232
    [self atEnd] whileFalse:[
2332
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2233
	buffer isNil ifTrue:[
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2234
	    buffer := self nextAvailable:l.
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2235
	].
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2236
	buffer = aCollection ifTrue:[
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2237
	    ^ self
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2238
	].
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2239
	idx := buffer indexOf:first startingAt:2.
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2240
	idx == 0 ifTrue:[
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2241
	    buffer := nil
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2242
	] ifFalse:[
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2243
	    buffer := (buffer copyFrom:idx) , (self nextAvailable:(idx - 1))
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2244
	]
2152
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2245
    ].
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2246
    ^ nil
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2247
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2248
    "
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2249
     |s|
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2250
     s := ReadStream on:'12345678901234567890'.
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2251
     s skipThroughAll:'901'.
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2252
     s upToEnd                    
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2253
    "
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2254
    "
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2255
     |s|
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2256
     s := ReadStream on:'12345678901234567890'.
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2257
     s skipThroughAll:'1234'.
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2258
     s upToEnd                    
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2259
    "
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2260
    "
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2261
     |s|
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2262
     s := ReadStream on:'12345678901234567890'.
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2263
     s skipThroughAll:'999'.
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2264
     s atEnd                    
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2265
    "
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2266
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2267
    "Created: 11.1.1997 / 18:55:13 / cg"
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2268
    "Modified: 11.1.1997 / 19:09:06 / cg"
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2269
!
6a42beaf7cc5 added a skipThroughAll:, which does not depend on being positionable.
Claus Gittinger <cg@exept.de>
parents: 1949
diff changeset
  2270
15639
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2271
skipUntil:aBlock
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2272
    "skip all elements for which aBlock returns false. 
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2273
     Return true if more elements can be read, false if eof has been reached."
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2274
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2275
    [self atEnd] whileFalse:[
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2276
        (aBlock value: self peek) ifTrue:[^ true].
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2277
        self next
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2278
    ].
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2279
    ^ false
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2280
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2281
    "
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2282
     #(1 2 3 4 5 6 7 8 9 10) readStream
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2283
        skipUntil:[:el | el >= 5];
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2284
        next
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2285
    "
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2286
!
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2287
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2288
skipWhile:aBlock
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2289
    "skip all elements for which aBlock returns true. Return true if more elements can be read,
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2290
     false if eof has been reached."
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2291
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2292
    [self atEnd] whileFalse:[
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2293
	(aBlock value: self peek) ifFalse:[^ true].
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2294
	self next
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2295
    ].
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2296
    ^ false
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2297
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2298
    "
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2299
     #(1 2 3 4 5 6 7 8 9 10) readStream
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2300
	skipWhile:[:el | el <= 5];
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2301
	next
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2302
    "
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2303
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2304
    "Created: / 23-09-2011 / 13:32:40 / cg"
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2305
!
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2306
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2307
through:anObject
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2308
    "read a collection of all objects up-to anObject and return these
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2309
     elements, including anObject. 
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2310
     The next read operation will return the element after anObject.
1409
7197d2f20482 commentary
Claus Gittinger <cg@exept.de>
parents: 1404
diff changeset
  2311
     If anObject is not encountered, all elements up to the end are read
7197d2f20482 commentary
Claus Gittinger <cg@exept.de>
parents: 1404
diff changeset
  2312
     and returned.
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2313
     Compare this with #upTo: which also reads up to some object
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2314
     and also positions behind it, but does not include it in the returned
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2315
     value."
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2316
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2317
    |answerStream element|
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2318
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2319
    answerStream := WriteStream on:(self contentsSpecies new).
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2320
    [self atEnd] whileFalse:[
2332
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2321
	element := self next.
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2322
	answerStream nextPut:element.
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2323
	(element = anObject) ifTrue: [
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2324
	    ^ answerStream contents
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2325
	]
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2326
    ].
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2327
    ^ answerStream contents
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2328
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2329
    "
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2330
     |s|
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2331
     s := ReadStream on:#(1 2 3 4 5 6 7 8).
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1414
diff changeset
  2332
     Transcript showCR:(s through:4).  
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1414
diff changeset
  2333
     Transcript showCR:s next
1409
7197d2f20482 commentary
Claus Gittinger <cg@exept.de>
parents: 1404
diff changeset
  2334
7197d2f20482 commentary
Claus Gittinger <cg@exept.de>
parents: 1404
diff changeset
  2335
     |s|
7197d2f20482 commentary
Claus Gittinger <cg@exept.de>
parents: 1404
diff changeset
  2336
     s := ReadStream on:#(1 2 3 4 5 6 7 8).
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1414
diff changeset
  2337
     Transcript showCR:(s through:9).  
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1414
diff changeset
  2338
     Transcript showCR:s next
1409
7197d2f20482 commentary
Claus Gittinger <cg@exept.de>
parents: 1404
diff changeset
  2339
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2340
     |s|
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2341
     s := ReadStream on:'hello world'.
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1414
diff changeset
  2342
     Transcript showCR:(s through:Character space).
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1414
diff changeset
  2343
     Transcript showCR:(s upToEnd)
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2344
    "
1409
7197d2f20482 commentary
Claus Gittinger <cg@exept.de>
parents: 1404
diff changeset
  2345
7197d2f20482 commentary
Claus Gittinger <cg@exept.de>
parents: 1404
diff changeset
  2346
    "Modified: 17.5.1996 / 08:51:40 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2347
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2348
1548
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2349
throughAll:aCollection
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2350
    "read & return a collection of all objects up-to and including 
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2351
     a subcollection given by aCollection.
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2352
     (i.e. read until a ``substring'' is encountered.)
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2353
     The next read operation will return the element after aCollection.
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2354
     If aCollection is not encountered, all elements up to the end are read
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2355
     and returned."
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2356
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2357
    |answerStream element last rslt|
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2358
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2359
    last := aCollection last.
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2360
    answerStream := WriteStream on:(self contentsSpecies new).
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2361
    [self atEnd] whileFalse:[
2332
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2362
	element := self next.
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2363
	answerStream nextPut:element.
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2364
	element == last ifTrue:[
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2365
	    ((rslt := answerStream contents) endsWith:aCollection) ifTrue:[
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2366
		^ rslt
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2367
	    ]
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2368
	].
1548
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2369
    ].
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2370
    ^ answerStream contents
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2371
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2372
    "
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2373
     |s|
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2374
     s := ReadStream on:#(1 2 3 4 5 6 7 8).
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2375
     Transcript showCR:(s throughAll:#(4 4 4)).  
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2376
     Transcript showCR:s next
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2377
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2378
     |s|
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2379
     s := ReadStream on:#(1 2 3 4 5 6 7 8).
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2380
     Transcript showCR:(s throughAll:#(4 5 6)).  
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2381
     Transcript showCR:s next
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2382
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2383
     |s|
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2384
     s := ReadStream on:'hello world, this is some text'.
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2385
     Transcript showCR:(s throughAll:'world').  
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2386
     Transcript showCR:(s throughAll:'some').  
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2387
     Transcript showCR:s upToEnd.
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2388
    "
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2389
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2390
    "Modified: 15.7.1996 / 09:08:07 / cg"
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2391
!
9186c76bc571 added #throughAll:
Claus Gittinger <cg@exept.de>
parents: 1538
diff changeset
  2392
3169
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2393
throughAny:aCollection
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2394
    "read & return a collection of all objects up-to and including 
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2395
     an element contained in aCollection.
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2396
     (i.e. read until any from aCollection is encountered.)
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2397
     If no such character is encountered, all elements up to the end are read
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2398
     and returned."
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2399
9070
d2fa6678eaa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9061
diff changeset
  2400
    |answerStream element|
d2fa6678eaa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9061
diff changeset
  2401
3169
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2402
    answerStream := WriteStream on:(self contentsSpecies new).
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2403
    [self atEnd] whileFalse:[
9070
d2fa6678eaa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9061
diff changeset
  2404
        element := self next.
d2fa6678eaa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9061
diff changeset
  2405
        answerStream nextPut:element.
d2fa6678eaa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9061
diff changeset
  2406
        (aCollection includes:element) ifTrue:[
d2fa6678eaa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9061
diff changeset
  2407
            ^ answerStream contents
d2fa6678eaa6 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9061
diff changeset
  2408
        ].
3169
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2409
    ].
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2410
    ^ answerStream contents
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2411
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2412
    "
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2413
     |s|
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2414
     s := ReadStream on:#(1 2 3 4 5 6 7 8).
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2415
     Transcript showCR:(s throughAny:#(3 4 5)).  
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2416
     Transcript showCR:s next
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2417
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2418
     |s|
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2419
     s := ReadStream on:'hello world, this is some text'.
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2420
     Transcript showCR:(s throughAny:'wt').  
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2421
     Transcript showCR:(s throughAny:'wt').  
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2422
     Transcript showCR:s upToEnd.
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2423
    "
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2424
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2425
    "Modified: / 11.1.1998 / 15:28:04 / cg"
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2426
!
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2427
15639
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2428
throughElementForWhich:aBlock
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2429
    "read elements until aBlock returns true for an element. 
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2430
     Return the collected elements including that element.
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2431
     Leave the stream positioned for the next read to return the element after that one."                                                             
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2432
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2433
    |answerStream element|
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2434
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2435
    answerStream := WriteStream on:(self contentsSpecies new).
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2436
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2437
    [self atEnd] whileFalse:[
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2438
        element := self next.
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2439
        answerStream nextPut:element.
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2440
        (aBlock value:element) ifTrue: [
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2441
            ^ answerStream contents
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2442
        ]
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2443
    ].
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2444
    ^ answerStream contents
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2445
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2446
    "
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2447
     #(1 2 3 4 5 6 7 8 9 10) readStream
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2448
        throughElementForWhich:[:el | el > 5];
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2449
    "
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2450
!
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2451
427
claus
parents: 384
diff changeset
  2452
upTo:anObject
claus
parents: 384
diff changeset
  2453
    "read a collection of all objects up-to anObject and return these
claus
parents: 384
diff changeset
  2454
     elements, but excluding anObject. 
claus
parents: 384
diff changeset
  2455
     The next read operation will return the element after anObject.
3169
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2456
     (i.e. anObject is considered a separator, which is skipped)
3172
f73912c49864 Implement #upToAll: consistent with #upTo: and #upToAny: in Stream.
Stefan Vogel <sv@exept.de>
parents: 3169
diff changeset
  2457
     Similar to #through:, but the matching object is not included in the
3169
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2458
     returned collection.
1409
7197d2f20482 commentary
Claus Gittinger <cg@exept.de>
parents: 1404
diff changeset
  2459
     If anObject is not encountered, all elements up to the end are read
7197d2f20482 commentary
Claus Gittinger <cg@exept.de>
parents: 1404
diff changeset
  2460
     and returned.
427
claus
parents: 384
diff changeset
  2461
     Compare this with #through: which also reads up to some object
claus
parents: 384
diff changeset
  2462
     and also positions behind it, but DOES include it in the returned
claus
parents: 384
diff changeset
  2463
     value."
claus
parents: 384
diff changeset
  2464
11659
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2465
    |answerStream|
427
claus
parents: 384
diff changeset
  2466
claus
parents: 384
diff changeset
  2467
    answerStream := WriteStream on:(self contentsSpecies new).
11659
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2468
    self upTo:anObject into:answerStream.
427
claus
parents: 384
diff changeset
  2469
    ^ answerStream contents
claus
parents: 384
diff changeset
  2470
claus
parents: 384
diff changeset
  2471
    "
claus
parents: 384
diff changeset
  2472
     |s|
claus
parents: 384
diff changeset
  2473
     s := ReadStream on:#(1 2 3 4 5 6 7 8).
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1414
diff changeset
  2474
     Transcript showCR:(s upTo:4).  
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1414
diff changeset
  2475
     Transcript showCR:s next
427
claus
parents: 384
diff changeset
  2476
3169
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2477
     compare the above to:
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2478
     |s|
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2479
     s := ReadStream on:#(1 2 3 4 5 6 7 8).
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2480
     Transcript showCR:(s through:4).  
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2481
     Transcript showCR:s next
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2482
427
claus
parents: 384
diff changeset
  2483
     |s|
1409
7197d2f20482 commentary
Claus Gittinger <cg@exept.de>
parents: 1404
diff changeset
  2484
     s := ReadStream on:#(1 2 3 4 5 6 7 8).
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1414
diff changeset
  2485
     Transcript showCR:(s upTo:9).  
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1414
diff changeset
  2486
     Transcript showCR:s next
1409
7197d2f20482 commentary
Claus Gittinger <cg@exept.de>
parents: 1404
diff changeset
  2487
7197d2f20482 commentary
Claus Gittinger <cg@exept.de>
parents: 1404
diff changeset
  2488
     |s|
427
claus
parents: 384
diff changeset
  2489
     s := ReadStream on:'hello world'.
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1414
diff changeset
  2490
     Transcript showCR:(s upTo:Character space).
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1414
diff changeset
  2491
     Transcript showCR:(s upToEnd)
427
claus
parents: 384
diff changeset
  2492
15778
156086f56ddc class: Stream
Claus Gittinger <cg@exept.de>
parents: 15719
diff changeset
  2493
     (ReadStream on:'12345678905') upTo:$5; next 
156086f56ddc class: Stream
Claus Gittinger <cg@exept.de>
parents: 15719
diff changeset
  2494
427
claus
parents: 384
diff changeset
  2495
     (ReadStream on:'12345678905') upTo:$5; upTo:$5 
claus
parents: 384
diff changeset
  2496
claus
parents: 384
diff changeset
  2497
     (ReadStream on:'123456') upTo:$7     
claus
parents: 384
diff changeset
  2498
claus
parents: 384
diff changeset
  2499
     (ReadStream on:#(1 2 3 4 5 6)) upTo:4  
claus
parents: 384
diff changeset
  2500
claus
parents: 384
diff changeset
  2501
     (ReadStream on:'line 1
10359
fd64609603d8 speed up #upTo:
Stefan Vogel <sv@exept.de>
parents: 10358
diff changeset
  2502
                     line 2') upTo:Character cr  
427
claus
parents: 384
diff changeset
  2503
claus
parents: 384
diff changeset
  2504
     'Makefile' asFilename readStream upTo:Character cr;upTo:Character cr  
claus
parents: 384
diff changeset
  2505
    "
1409
7197d2f20482 commentary
Claus Gittinger <cg@exept.de>
parents: 1404
diff changeset
  2506
3169
cef3b9a6de2c moved upToAll: to positionableStream.
Claus Gittinger <cg@exept.de>
parents: 3154
diff changeset
  2507
    "Modified: / 12.1.1998 / 21:58:38 / cg"
3172
f73912c49864 Implement #upToAll: consistent with #upTo: and #upToAny: in Stream.
Stefan Vogel <sv@exept.de>
parents: 3169
diff changeset
  2508
    "Modified: / 15.1.1998 / 23:28:47 / stefan"
f73912c49864 Implement #upToAll: consistent with #upTo: and #upToAny: in Stream.
Stefan Vogel <sv@exept.de>
parents: 3169
diff changeset
  2509
!
f73912c49864 Implement #upToAll: consistent with #upTo: and #upToAny: in Stream.
Stefan Vogel <sv@exept.de>
parents: 3169
diff changeset
  2510
11659
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2511
upTo:anObject into:aStream
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2512
    "read a collection of all objects up-to anObject and append these
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2513
     elements to aStream, but excluding anObject. 
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2514
     The next read operation will return the element after anObject.
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2515
     (i.e. anObject is considered a separator, which is skipped)
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2516
     Similar to #through:, but the matching object is not included in the returned collection.
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2517
     If anObject is not encountered, all elements up to the end are read and returned.
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2518
     Compare this with #through: which also reads up to some object
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2519
     and also positions behind it, but DOES include it in the returned value."
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2520
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2521
    |element|
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2522
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2523
    [
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2524
        element := self nextOrNil.
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2525
        ((element isNil and:[self atEnd]) or:[element = anObject]) ifTrue:[
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2526
            true
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2527
        ] ifFalse:[
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2528
            aStream nextPut:element.
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2529
            false
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2530
        ].
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2531
    ] whileFalse.
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2532
!
62ff00153390 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11649
diff changeset
  2533
3586
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2534
upToAllExcluding:aCollection
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2535
    "read a collection of all objects up-to a element which is contained in
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2536
     aCollection and return these elements, but excluding the matching one.
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2537
     The next read operation will return the element after aCollection.
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2538
     If no such element is encountered, all elements up to the end are read
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2539
     and returned.
6494
5b3d8667c22a comment
Claus Gittinger <cg@exept.de>
parents: 6384
diff changeset
  2540
     See also #throughAll: which also reads up to some object
3586
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2541
     and also positions behind it, but DOES include it in the returned
6494
5b3d8667c22a comment
Claus Gittinger <cg@exept.de>
parents: 6384
diff changeset
  2542
     value.
5b3d8667c22a comment
Claus Gittinger <cg@exept.de>
parents: 6384
diff changeset
  2543
     See also #upToAll:, which returns the same, but leaves the
5b3d8667c22a comment
Claus Gittinger <cg@exept.de>
parents: 6384
diff changeset
  2544
     read pointer before the matched subcollection."
3586
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2545
16197
9e2f05c2fd42 class: Stream
Stefan Vogel <sv@exept.de>
parents: 16086
diff changeset
  2546
    |answerStream element last|
3586
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2547
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2548
    last := aCollection last.
16197
9e2f05c2fd42 class: Stream
Stefan Vogel <sv@exept.de>
parents: 16086
diff changeset
  2549
    answerStream := ReadWriteStream on:(self contentsSpecies new).
9e2f05c2fd42 class: Stream
Stefan Vogel <sv@exept.de>
parents: 16086
diff changeset
  2550
    [(element := self nextOrNil) notNil] whileTrue:[
6494
5b3d8667c22a comment
Claus Gittinger <cg@exept.de>
parents: 6384
diff changeset
  2551
        answerStream nextPut:element.
5b3d8667c22a comment
Claus Gittinger <cg@exept.de>
parents: 6384
diff changeset
  2552
        element == last ifTrue:[
16306
9ee00c386cf9 class: Stream
Claus Gittinger <cg@exept.de>
parents: 16208
diff changeset
  2553
            (answerStream contents endsWith:aCollection) ifTrue:[
16197
9e2f05c2fd42 class: Stream
Stefan Vogel <sv@exept.de>
parents: 16086
diff changeset
  2554
                |pos|
9e2f05c2fd42 class: Stream
Stefan Vogel <sv@exept.de>
parents: 16086
diff changeset
  2555
                pos := answerStream position.
9e2f05c2fd42 class: Stream
Stefan Vogel <sv@exept.de>
parents: 16086
diff changeset
  2556
                answerStream resetPosition.
9e2f05c2fd42 class: Stream
Stefan Vogel <sv@exept.de>
parents: 16086
diff changeset
  2557
                ^ answerStream next:pos-aCollection size.
6494
5b3d8667c22a comment
Claus Gittinger <cg@exept.de>
parents: 6384
diff changeset
  2558
            ]
5b3d8667c22a comment
Claus Gittinger <cg@exept.de>
parents: 6384
diff changeset
  2559
        ].
3586
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2560
    ].
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2561
    ^ answerStream contents
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2562
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2563
    "
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2564
     |s|
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2565
     s := ReadStream on:'hello world world'.
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2566
     Transcript show:'<'; show:(s upToAllExcluding:'wo'); showCR:'>'.
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2567
     Transcript show:'<'; show:(s upToAllExcluding:'wo'); showCR:'>'.
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2568
     Transcript show:'<'; show:(s upToEnd); showCR:'>'.
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2569
    "
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2570
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2571
    "Created: / 15.6.1998 / 19:11:31 / cg"
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2572
!
1945e7328f9e added #upToAllExcluding:
Claus Gittinger <cg@exept.de>
parents: 3493
diff changeset
  2573
2894
344aec8ba014 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2714
diff changeset
  2574
upToAny:aCollectionOfObjects
2420
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2575
    "read a collection of all objects up-to a element which is contained in
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2576
     aCollectionOfObjects and return these elements, but excluding the matching one. 
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2577
     The next read operation will return the element after anObject.
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2578
     If no such element is encountered, all elements up to the end are read
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2579
     and returned.
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2580
     Compare this with #throughAll: which also reads up to some object
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2581
     and also positions behind it, but DOES include it in the returned
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2582
     value."
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2583
12527
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2584
    |result|
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2585
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2586
    result := self upToBeforeAny:aCollectionOfObjects.
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2587
    self atEnd ifFalse:[
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2588
        self next.
2420
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2589
    ].
12527
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2590
    ^ result
2420
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2591
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2592
    "
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2593
     |s|
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2594
     s := ReadStream on:'hello world'.
3154
fe3af716a704 added #throughAny:
Claus Gittinger <cg@exept.de>
parents: 3112
diff changeset
  2595
     Transcript showCR:(s upToAny:(Array with:Character space)).
2420
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2596
     Transcript showCR:(s upToEnd)
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2597
3154
fe3af716a704 added #throughAny:
Claus Gittinger <cg@exept.de>
parents: 3112
diff changeset
  2598
     'Makefile' asFilename readStream upToAny:($A to:$Z)  
fe3af716a704 added #throughAny:
Claus Gittinger <cg@exept.de>
parents: 3112
diff changeset
  2599
    "
2420
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2600
3154
fe3af716a704 added #throughAny:
Claus Gittinger <cg@exept.de>
parents: 3112
diff changeset
  2601
    "Created: / 30.8.1997 / 03:02:05 / cg"
fe3af716a704 added #throughAny:
Claus Gittinger <cg@exept.de>
parents: 3112
diff changeset
  2602
    "Modified: / 11.1.1998 / 15:19:18 / cg"
2420
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2603
!
44eb406d78b3 added #upToAll:
Claus Gittinger <cg@exept.de>
parents: 2332
diff changeset
  2604
12527
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2605
upToBeforeAny:aCollectionOfObjects
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2606
    "read a collection of all objects up-to a element which is contained in
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2607
     aCollectionOfObjects and return these elements, but excluding the matching one. 
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2608
     The next read operation will return the matching element.
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2609
     If no such element is encountered, all elements up to the end are read
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2610
     and returned.
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2611
     This returns the exact same as upToAny: would, but leaves the streams position so that
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2612
     the next read returns the matching delimiter instead of skipping it.
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2613
     Caveat: this is the one which should have been called upTo: in the first place;
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2614
     however, it seems now too late for a change."
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2615
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2616
    |answerStream element|
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2617
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2618
    answerStream := WriteStream on:(self contentsSpecies new).
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2619
    [self atEnd] whileFalse:[
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2620
        element := self peek.
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2621
        (aCollectionOfObjects includes:element) ifTrue: [
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2622
            ^ answerStream contents
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2623
        ].
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2624
        answerStream nextPut:element.
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2625
        self next.
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2626
    ].
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2627
    ^ answerStream contents
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2628
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2629
    "
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2630
     |s|
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2631
     s := ReadStream on:'hello world'.
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2632
     Transcript showCR:(s upToBeforeAny:(Array with:Character space)).
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2633
     Transcript showCR:(s upToEnd)    
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2634
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2635
     'Make.proto' asFilename readStream upToBeforeAny:($A to:$Z)  
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2636
    "
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2637
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2638
    "Created: / 30.8.1997 / 03:02:05 / cg"
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2639
    "Modified: / 11.1.1998 / 15:19:18 / cg"
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2640
!
9dbc4cb5d02d added: #upToBeforeAny:
Claus Gittinger <cg@exept.de>
parents: 12426
diff changeset
  2641
15639
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2642
upToElementForWhich:aBlock
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2643
    "read elements until aBlock returns true for an element. 
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2644
     Return the collected elements excluding that element.
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2645
     Leave the stream positioned for the next read to return that element."                                                             
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2646
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2647
    |answerStream next|
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2648
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2649
    answerStream := WriteStream on:(self contentsSpecies new).
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2650
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2651
    [
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2652
        self atEnd 
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2653
        or:[ (aBlock value: (next := self peek)) ]
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2654
    ] whileFalse:[
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2655
        answerStream nextPut:next.
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2656
        self next.
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2657
    ].
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2658
    ^ answerStream contents
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2659
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2660
    "
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2661
     #(1 2 3 4 5 6 7 8 9 10) readStream
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2662
        upToElementForWhich:[:el | el > 5]
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2663
    "
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2664
!
b42d4956c6a0 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15591
diff changeset
  2665
77
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  2666
upToEnd
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  2667
    "return a collection of the elements up-to the end.
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2668
     Return an empty collection, if the stream-end is already at the end."
77
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  2669
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  2670
    |answerStream|
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  2671
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  2672
    answerStream := WriteStream on:(self contentsSpecies new).
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  2673
    [self atEnd] whileFalse:[
2332
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  2674
	answerStream nextPut:(self next)
77
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  2675
    ].
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  2676
    ^ answerStream contents
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  2677
275
a76029ddaa98 *** empty log message ***
claus
parents: 216
diff changeset
  2678
    "
a76029ddaa98 *** empty log message ***
claus
parents: 216
diff changeset
  2679
     (ReadStream on:'1234567890') upToEnd
a76029ddaa98 *** empty log message ***
claus
parents: 216
diff changeset
  2680
     ('123456' readStream) next; next; upToEnd
427
claus
parents: 384
diff changeset
  2681
     ('1 23456' readStream) upTo:Character space; upToEnd 
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2682
     ('12' readStream) next; next; upToEnd  
275
a76029ddaa98 *** empty log message ***
claus
parents: 216
diff changeset
  2683
    "
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2684
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2685
    "Modified: 15.5.1996 / 18:00:39 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2686
! !
77
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  2687
6857
4540eeb3c958 category change
Claus Gittinger <cg@exept.de>
parents: 6494
diff changeset
  2688
!Stream methodsFor:'reading-strings'!
3084
bf7811414895 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  2689
bf7811414895 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  2690
nextLine
bf7811414895 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  2691
    "return the characters upTo (but excluding) the next cr (carriage return)
bf7811414895 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  2692
     character (i.e. read a single line of text).
13329
fd9a0be4f0f9 changed: #nextLine
Stefan Vogel <sv@exept.de>
parents: 13027
diff changeset
  2693
     If the previous-to-last character is a cr, this is also removed,
fd9a0be4f0f9 changed: #nextLine
Stefan Vogel <sv@exept.de>
parents: 13027
diff changeset
  2694
     so its possible to read alien (i.e. ms-dos) text as well.
3084
bf7811414895 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  2695
     Added for protocol compatibility with externalStreams."
bf7811414895 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  2696
13329
fd9a0be4f0f9 changed: #nextLine
Stefan Vogel <sv@exept.de>
parents: 13027
diff changeset
  2697
    |answerStream|
fd9a0be4f0f9 changed: #nextLine
Stefan Vogel <sv@exept.de>
parents: 13027
diff changeset
  2698
3462
7b574ec5ee62 care for EOF in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3461
diff changeset
  2699
    self atEnd ifTrue:[
8614
88421fbd4ab6 pastEnd -> pastEndRead
Claus Gittinger <cg@exept.de>
parents: 8598
diff changeset
  2700
        ^ self pastEndRead
3462
7b574ec5ee62 care for EOF in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3461
diff changeset
  2701
    ].
13329
fd9a0be4f0f9 changed: #nextLine
Stefan Vogel <sv@exept.de>
parents: 13027
diff changeset
  2702
    answerStream := WriteStream on:(self contentsSpecies new).
fd9a0be4f0f9 changed: #nextLine
Stefan Vogel <sv@exept.de>
parents: 13027
diff changeset
  2703
    self upTo:Character cr into:answerStream.
13330
a83d54a7d977 changed: #nextLine
Stefan Vogel <sv@exept.de>
parents: 13329
diff changeset
  2704
    (answerStream size > 0 and:[answerStream last = Character return]) ifTrue:[
13329
fd9a0be4f0f9 changed: #nextLine
Stefan Vogel <sv@exept.de>
parents: 13027
diff changeset
  2705
        answerStream backStep.
fd9a0be4f0f9 changed: #nextLine
Stefan Vogel <sv@exept.de>
parents: 13027
diff changeset
  2706
    ].
fd9a0be4f0f9 changed: #nextLine
Stefan Vogel <sv@exept.de>
parents: 13027
diff changeset
  2707
    ^ answerStream contents
fd9a0be4f0f9 changed: #nextLine
Stefan Vogel <sv@exept.de>
parents: 13027
diff changeset
  2708
        
3084
bf7811414895 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  2709
3462
7b574ec5ee62 care for EOF in #nextLine
Claus Gittinger <cg@exept.de>
parents: 3461
diff changeset
  2710
    "Modified: / 19.5.1998 / 17:26:25 / cg"
3084
bf7811414895 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  2711
! !
bf7811414895 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2894
diff changeset
  2712
12623
389426d8f6eb changed: #next:
Stefan Vogel <sv@exept.de>
parents: 12527
diff changeset
  2713
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2714
!Stream methodsFor:'testing'!
77
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  2715
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2716
atEnd
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2717
    "return true if the end of the stream has been reached;
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2718
     - we do not know here how to do it, it must be redefined in subclass"
77
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  2719
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2720
    ^ self subclassResponsibility
9294
ce562886ee59 +notEmpty
Claus Gittinger <cg@exept.de>
parents: 9266
diff changeset
  2721
!
ce562886ee59 +notEmpty
Claus Gittinger <cg@exept.de>
parents: 9266
diff changeset
  2722
ce562886ee59 +notEmpty
Claus Gittinger <cg@exept.de>
parents: 9266
diff changeset
  2723
isEmpty
ce562886ee59 +notEmpty
Claus Gittinger <cg@exept.de>
parents: 9266
diff changeset
  2724
    "return true, if the contents of the stream is empty"
ce562886ee59 +notEmpty
Claus Gittinger <cg@exept.de>
parents: 9266
diff changeset
  2725
ce562886ee59 +notEmpty
Claus Gittinger <cg@exept.de>
parents: 9266
diff changeset
  2726
    ^ self subclassResponsibility
ce562886ee59 +notEmpty
Claus Gittinger <cg@exept.de>
parents: 9266
diff changeset
  2727
!
ce562886ee59 +notEmpty
Claus Gittinger <cg@exept.de>
parents: 9266
diff changeset
  2728
14092
Stefan Vogel <sv@exept.de>
parents: 13380
diff changeset
  2729
isEmptyOrNil
Stefan Vogel <sv@exept.de>
parents: 13380
diff changeset
  2730
    "return true, if the contents of the stream is empty
Stefan Vogel <sv@exept.de>
parents: 13380
diff changeset
  2731
     (we already know, that we are not nil)"
Stefan Vogel <sv@exept.de>
parents: 13380
diff changeset
  2732
Stefan Vogel <sv@exept.de>
parents: 13380
diff changeset
  2733
    ^ self isEmpty
Stefan Vogel <sv@exept.de>
parents: 13380
diff changeset
  2734
!
Stefan Vogel <sv@exept.de>
parents: 13380
diff changeset
  2735
15048
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2736
isEncodedStream
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2737
    ^ false
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2738
!
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2739
16085
b2331a389345 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15839
diff changeset
  2740
isLineNumberReadStream
b2331a389345 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15839
diff changeset
  2741
    ^ false
b2331a389345 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15839
diff changeset
  2742
!
b2331a389345 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15839
diff changeset
  2743
15048
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2744
isPositionable
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2745
    "return true, if the stream supports positioning (some do not).
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2746
     Since this is an abstract class, false is returned here - just to make certain."
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2747
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2748
    ^ false
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2749
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2750
    "Modified: 15.5.1996 / 17:54:16 / cg"
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2751
!
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2752
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2753
isPrinterStream
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2754
    "return true, if this is a printerStream.
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2755
     Since this is an abstract class, false is returned here."
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2756
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2757
    ^ false
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2758
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2759
    "Modified: 15.5.1996 / 17:54:16 / cg"
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2760
    "Created: 3.6.1996 / 12:05:35 / cg"
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2761
!
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2762
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2763
isStream
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2764
    "return true, if the receiver is some kind of Stream. Always return true here."
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2765
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2766
    ^ true
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2767
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2768
    "Modified: 15.5.1996 / 17:54:48 / cg"
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2769
!
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2770
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2771
isTerminalStream
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2772
    ^ false
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2773
!
ccc1e3a06733 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14792
diff changeset
  2774
15719
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  2775
isTextCollector
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  2776
    ^ false
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  2777
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  2778
    "
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  2779
     Transcript isTextCollector
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  2780
    "
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  2781
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  2782
    "Created: / 29-08-2013 / 11:33:10 / cg"
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  2783
!
00329934f79f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15711
diff changeset
  2784
9294
ce562886ee59 +notEmpty
Claus Gittinger <cg@exept.de>
parents: 9266
diff changeset
  2785
notEmpty
ce562886ee59 +notEmpty
Claus Gittinger <cg@exept.de>
parents: 9266
diff changeset
  2786
    "return true, if the contents of the stream is not empty"
ce562886ee59 +notEmpty
Claus Gittinger <cg@exept.de>
parents: 9266
diff changeset
  2787
ce562886ee59 +notEmpty
Claus Gittinger <cg@exept.de>
parents: 9266
diff changeset
  2788
    ^ self isEmpty not
14092
Stefan Vogel <sv@exept.de>
parents: 13380
diff changeset
  2789
!
Stefan Vogel <sv@exept.de>
parents: 13380
diff changeset
  2790
Stefan Vogel <sv@exept.de>
parents: 13380
diff changeset
  2791
notEmptyOrNil
Stefan Vogel <sv@exept.de>
parents: 13380
diff changeset
  2792
    "return true, if the contents of the stream is empty
Stefan Vogel <sv@exept.de>
parents: 13380
diff changeset
  2793
     (we already know, that we are not nil)"
Stefan Vogel <sv@exept.de>
parents: 13380
diff changeset
  2794
Stefan Vogel <sv@exept.de>
parents: 13380
diff changeset
  2795
    ^ self isEmpty not
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2796
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2797
11750
d588fc627354 new: #visitStream:with:
Stefan Vogel <sv@exept.de>
parents: 11745
diff changeset
  2798
!Stream methodsFor:'visiting'!
d588fc627354 new: #visitStream:with:
Stefan Vogel <sv@exept.de>
parents: 11745
diff changeset
  2799
d588fc627354 new: #visitStream:with:
Stefan Vogel <sv@exept.de>
parents: 11745
diff changeset
  2800
acceptVisitor:aVisitor with:aParameter
d588fc627354 new: #visitStream:with:
Stefan Vogel <sv@exept.de>
parents: 11745
diff changeset
  2801
    ^ aVisitor visitStream:self with:aParameter
d588fc627354 new: #visitStream:with:
Stefan Vogel <sv@exept.de>
parents: 11745
diff changeset
  2802
! !
d588fc627354 new: #visitStream:with:
Stefan Vogel <sv@exept.de>
parents: 11745
diff changeset
  2803
12399
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2804
!Stream methodsFor:'waiting for I/O'!
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2805
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2806
readWait
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2807
    "suspend the current process, until the receiver
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2808
     becomes ready for reading. If data is already available,
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2809
     return immediate.
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2810
     The other threads are not affected by the wait."
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2811
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2812
    ^ self readWaitWithTimeoutMs:nil
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2813
!
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2814
12401
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2815
readWaitTimeoutMs:timeout
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2816
    "ST-80 compatibility"
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2817
    ^ self readWaitWithTimeoutMs:timeout
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2818
!
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2819
16402
e0ad30a9882d class: Stream
Stefan Vogel <sv@exept.de>
parents: 16306
diff changeset
  2820
readWaitWithTimeout:secondsOrTimeDuration
12399
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2821
    "suspend the current process, until the receiver
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2822
     becomes ready for reading or a timeout (in seconds) expired.
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2823
     If data is already available, return immediate.
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2824
     With nil seconds, wait forever.
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2825
     Return true if a timeout occured (i.e. false, if data is available).
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2826
     The other threads are not affected by the wait."
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2827
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2828
    |ms|
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2829
16402
e0ad30a9882d class: Stream
Stefan Vogel <sv@exept.de>
parents: 16306
diff changeset
  2830
    secondsOrTimeDuration notNil ifTrue:[
e0ad30a9882d class: Stream
Stefan Vogel <sv@exept.de>
parents: 16306
diff changeset
  2831
        secondsOrTimeDuration isNumber ifTrue:[
e0ad30a9882d class: Stream
Stefan Vogel <sv@exept.de>
parents: 16306
diff changeset
  2832
            ms := secondsOrTimeDuration * 1000.
e0ad30a9882d class: Stream
Stefan Vogel <sv@exept.de>
parents: 16306
diff changeset
  2833
        ] ifFalse:[
e0ad30a9882d class: Stream
Stefan Vogel <sv@exept.de>
parents: 16306
diff changeset
  2834
            ms := secondsOrTimeDuration getMilliseconds.
e0ad30a9882d class: Stream
Stefan Vogel <sv@exept.de>
parents: 16306
diff changeset
  2835
        ]
12399
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2836
    ].
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2837
    ^ self readWaitWithTimeoutMs:ms
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2838
!
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2839
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2840
readWaitWithTimeoutMs:millis
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2841
    "suspend the current process, until the receiver
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2842
     becomes ready for reading or a timeout (in milliseconds) expired.
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2843
     If data is already available, return immediate.
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2844
     With nil millis, wait forever.
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2845
     Return true if a timeout occured (i.e. false, if data is available).
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2846
     The other threads are not affected by the wait."
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2847
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2848
    ^ false "/ never have to wait
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2849
!
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2850
12401
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2851
readWriteWait
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2852
    "suspend the current process, until the receiver
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2853
     becomes ready for writing or reading.
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2854
     Return immediate if the receiver is already ready.
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2855
     The other threads are not affected by the wait."
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2856
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2857
    self readWriteWaitWithTimeoutMs:nil
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2858
!
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2859
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2860
readWriteWaitWithTimeoutMs:millis
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2861
    ^ false "/ never have to wait
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2862
!
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2863
12399
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2864
writeWait
12401
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2865
    "suspend the current process, until the receiver
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2866
     becomes ready for writing.
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2867
     Return immediate if the receiver is already ready.
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2868
     The other threads are not affected by the wait."
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2869
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2870
    self writeWaitWithTimeoutMs:nil
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2871
!
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2872
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2873
writeWaitTimeoutMs:timeout
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2874
    "ST-80 compatibility"
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2875
    ^ self writeWaitWithTimeoutMs:timeout
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2876
!
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2877
16402
e0ad30a9882d class: Stream
Stefan Vogel <sv@exept.de>
parents: 16306
diff changeset
  2878
writeWaitWithTimeout:secondsOrTimeDuration
12401
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2879
    "suspend the current process, until the receiver
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2880
     becomes ready for writing or a timeout (in seconds) expired.
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2881
     Return true if a timeout occured (i.e. false, if data is available).
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2882
     Return immediate if the receiver is already ready.
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2883
     The other threads are not affected by the wait."
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2884
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2885
    |ms|
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2886
16402
e0ad30a9882d class: Stream
Stefan Vogel <sv@exept.de>
parents: 16306
diff changeset
  2887
    secondsOrTimeDuration notNil ifTrue:[
e0ad30a9882d class: Stream
Stefan Vogel <sv@exept.de>
parents: 16306
diff changeset
  2888
        secondsOrTimeDuration isNumber ifTrue:[
e0ad30a9882d class: Stream
Stefan Vogel <sv@exept.de>
parents: 16306
diff changeset
  2889
            ms := secondsOrTimeDuration * 1000.
e0ad30a9882d class: Stream
Stefan Vogel <sv@exept.de>
parents: 16306
diff changeset
  2890
        ] ifFalse:[
e0ad30a9882d class: Stream
Stefan Vogel <sv@exept.de>
parents: 16306
diff changeset
  2891
            ms := secondsOrTimeDuration getMilliseconds.
e0ad30a9882d class: Stream
Stefan Vogel <sv@exept.de>
parents: 16306
diff changeset
  2892
        ]
12401
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2893
    ].
84223c619f50 refactored wait functions
Claus Gittinger <cg@exept.de>
parents: 12399
diff changeset
  2894
    ^ self writeWaitWithTimeoutMs:ms
12399
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2895
!
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2896
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2897
writeWaitWithTimeoutMs:millis
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2898
    ^ false "/ never have to wait
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2899
! !
ffc319eb520c category of:5 methods
Claus Gittinger <cg@exept.de>
parents: 12394
diff changeset
  2900
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  2901
!Stream methodsFor:'writing'!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2902
339
claus
parents: 335
diff changeset
  2903
commit
1462
7196fe152248 Cleanup #flush and #commit handling.
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2904
    "alias for flush -- ST80 compatibility"
339
claus
parents: 335
diff changeset
  2905
1462
7196fe152248 Cleanup #flush and #commit handling.
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2906
    ^ self flush
7196fe152248 Cleanup #flush and #commit handling.
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2907
7196fe152248 Cleanup #flush and #commit handling.
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2908
    "Modified: 7.5.1996 / 23:55:39 / stefan"
339
claus
parents: 335
diff changeset
  2909
!
claus
parents: 335
diff changeset
  2910
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2911
cr
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2912
    "append a carriage-return to the stream.
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2913
     This is only allowed, if the receiver supports writing."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2914
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2915
    self nextPut:(Character cr)
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2916
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2917
    "Modified: 15.5.1996 / 18:01:21 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2918
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2919
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2920
crTab
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2921
    "append a carriage-return followed by a tab to the stream.
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2922
     Same as crtab for ST/X backward compatibility.
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2923
     This is only allowed, if the receiver supports writing."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2924
5873
1ed3dd2e1b17 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5823
diff changeset
  2925
    <resource:#obsolete>
1ed3dd2e1b17 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5823
diff changeset
  2926
9061
20af48b9b295 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9001
diff changeset
  2927
    self obsoleteMethodWarning:'use #crtab'.
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2928
    self crtab
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2929
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2930
    "Modified: 15.5.1996 / 18:01:28 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2931
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2932
9001
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
  2933
crlf
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
  2934
    "append a CR LF to the stream.
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
  2935
     This is only allowed, if the receiver supports writing."
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
  2936
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
  2937
    self nextPut:(Character return);
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
  2938
         nextPut:(Character lf).
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
  2939
!
222d4f37e474 new: #crlf
Stefan Vogel <sv@exept.de>
parents: 8992
diff changeset
  2940
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2941
crtab
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2942
    "append a carriage-return followed by a tab to the stream.
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2943
     This is only allowed, if the receiver supports writing."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2944
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2945
    self crtab:1
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2946
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2947
    "Modified: 15.5.1996 / 18:01:35 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2948
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2949
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2950
crtab:n
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2951
    "append a carriage-return followed by n tabs to the stream.
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2952
     This is only allowed, if the receiver supports writing."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2953
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2954
    self nextPut:(Character cr).
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2955
    self next:n put:(Character tab)
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2956
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2957
    "Modified: 15.5.1996 / 18:01:39 / cg"
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2958
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2959
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2960
endEntry
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2961
    "ignored here - for compatibility with Transcript"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2962
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2963
    ^ self
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2964
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2965
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2966
ff
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2967
    "append a form-feed (new-pagee) to the receiver-stream.
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2968
     This is only allowed, if the receiver supports writing."
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2969
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  2970
    self nextPut:(Character ff)
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2971
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  2972
    "Modified: 15.5.1996 / 18:01:47 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2973
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  2974
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2975
flush
1462
7196fe152248 Cleanup #flush and #commit handling.
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2976
    "write out all unbuffered data - ignored here, but added
7196fe152248 Cleanup #flush and #commit handling.
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2977
     to make internalStreams protocol compatible with externalStreams"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2978
1462
7196fe152248 Cleanup #flush and #commit handling.
Stefan Vogel <sv@exept.de>
parents: 1448
diff changeset
  2979
    "Modified: 7.5.1996 / 23:54:53 / stefan"
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2980
!
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  2981
16453
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
  2982
format:formatSpec with:args
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
  2983
    "convenient formatted printing:
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
  2984
        %1..%9  - positional parameters from args-collection
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
  2985
        %(name) - named parameter from args-dictionary
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
  2986
        %%      - escape for %
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
  2987
        %<cr>   - cr (also tab, nl)"
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
  2988
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
  2989
    formatSpec expandPlaceholders:$% with:args on:self
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
  2990
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
  2991
    "
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
  2992
     1 to: 10 do:[:i |
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
  2993
        Transcript 
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
  2994
            format:'[%1] Hello %2 World - this is %3%<cr>' 
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
  2995
            with:{i . 'my' . 'nice'}
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
  2996
     ].
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
  2997
    "
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
  2998
!
690e4afd2a5d class: Stream
Claus Gittinger <cg@exept.de>
parents: 16402
diff changeset
  2999
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3000
next:count put:anObject
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3001
    "put the argument, anObject count times onto the receiver.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3002
     This is only allowed, if the receiver supports writing."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3003
345
claus
parents: 339
diff changeset
  3004
    |n "{ Class: SmallInteger }"|
claus
parents: 339
diff changeset
  3005
claus
parents: 339
diff changeset
  3006
    n := count.
claus
parents: 339
diff changeset
  3007
    n timesRepeat:[self nextPut:anObject].
12132
160c15005022 changed: #next:put:
Claus Gittinger <cg@exept.de>
parents: 12129
diff changeset
  3008
    "/ ^ anObject -- return self
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3009
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3010
    "
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3011
     |s|
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3012
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3013
     s := WriteStream on:#().
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3014
     s nextPut:1.
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3015
     s next:5 put:2.
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3016
     s nextPut:3.
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3017
     s contents
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3018
    "
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3019
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3020
    "Modified: 11.7.1996 / 10:00:13 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3021
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3022
14792
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3023
next:count putAll:aCollection
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3024
    "put all elements from the argument, aCollection count times onto the receiver.
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3025
     This is only allowed, if the receiver supports writing."
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3026
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3027
    |n "{ Class: SmallInteger }"|
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3028
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3029
    n := count.
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3030
    n timesRepeat:[self nextPutAll:aCollection].
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3031
    "/ ^ anObject -- return self
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3032
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3033
    "
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3034
     |s|
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3035
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3036
     s := WriteStream on:(String new).
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3037
     s next:5 putAll:'Hello'.
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3038
     s contents
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3039
    "
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3040
!
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3041
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3042
nextPut:anObject
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3043
    "put the argument, anObject onto the receiver
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3044
     - we do not know here how to do it, it must be redefined in subclass"
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3045
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3046
    ^ self subclassResponsibility
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3047
!
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3048
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3049
nextPutAll:aCollection
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3050
    "put all elements of the argument, aCollection onto the receiver.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3051
     This is only allowed, if the receiver supports writing."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3052
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3053
    aCollection do:[:element |
12134
e05cb7604107 changed: #nextPutAll:
Claus Gittinger <cg@exept.de>
parents: 12132
diff changeset
  3054
        self nextPut:element
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3055
    ].
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3056
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3057
    "
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3058
     |s|
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3059
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3060
     s := WriteStream on:#().
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3061
     s nextPutAll:(1 to:5).
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3062
     s nextPutAll:#('one' 'two' 'three').
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3063
     s contents
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3064
    "
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3065
    "
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3066
     |s|
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3067
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3068
     s := WriteStream on:(String new).
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3069
     s nextPutAll:($a to:$f).
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3070
     s nextPutAll:'one '; 
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3071
       nextPutAll:'two ';
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3072
       nextPutAll:'three'.
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3073
     s contents
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3074
    "
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3075
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3076
    "Modified: 11.7.1996 / 10:00:21 / cg"
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3077
!
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3078
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3079
nextPutAll:aCollection startingAt:first
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3080
    "append the elements starting with index to the end
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3081
     of the argument, aCollection onto the receiver.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3082
     This is only allowed, if the receiver supports writing."
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3083
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3084
    self nextPutAll:aCollection startingAt:first to:(aCollection size).
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3085
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3086
    "
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3087
     |s|
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3088
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3089
     s := WriteStream on:#().
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3090
     s nextPutAll:#('one' 'two' 'three' 'four' 'five') startingAt:2.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3091
     s contents  
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3092
    "
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3093
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3094
    "Modified: 11.7.1996 / 10:00:28 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3095
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3096
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3097
nextPutAll:aCollection startingAt:first to:last
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3098
    "append the elements with index from first to last
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3099
     of the argument, aCollection onto the receiver.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3100
     This is only allowed, if the receiver supports writing."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3101
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3102
    aCollection from:first to:last do:[:element |
2332
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  3103
	self nextPut:element
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3104
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3105
    ^ aCollection
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3106
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3107
    "
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3108
     |s|
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3109
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3110
     s := WriteStream on:#().
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3111
     s nextPutAll:#('one' 'two' 'three' 'four' 'five') startingAt:2 to:4.
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3112
     s contents
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3113
    "
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3114
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3115
    "Modified: 11.7.1996 / 10:00:32 / cg"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3116
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3117
14263
dccc0f094b51 added: #nextPutAllLines:
Claus Gittinger <cg@exept.de>
parents: 14092
diff changeset
  3118
nextPutAllLines:aCollectionOfStrings
dccc0f094b51 added: #nextPutAllLines:
Claus Gittinger <cg@exept.de>
parents: 14092
diff changeset
  3119
    "put all elements of the argument, aCollection as individual lines
dccc0f094b51 added: #nextPutAllLines:
Claus Gittinger <cg@exept.de>
parents: 14092
diff changeset
  3120
     onto the receiver, append a cr (carriage return) after each. 
dccc0f094b51 added: #nextPutAllLines:
Claus Gittinger <cg@exept.de>
parents: 14092
diff changeset
  3121
     This is only useful with character streams in textMode,
dccc0f094b51 added: #nextPutAllLines:
Claus Gittinger <cg@exept.de>
parents: 14092
diff changeset
  3122
     and only allowed, if the receiver supports writing."
dccc0f094b51 added: #nextPutAllLines:
Claus Gittinger <cg@exept.de>
parents: 14092
diff changeset
  3123
dccc0f094b51 added: #nextPutAllLines:
Claus Gittinger <cg@exept.de>
parents: 14092
diff changeset
  3124
    aCollectionOfStrings do:[:eachLine |
dccc0f094b51 added: #nextPutAllLines:
Claus Gittinger <cg@exept.de>
parents: 14092
diff changeset
  3125
        self nextPutLine:eachLine.
dccc0f094b51 added: #nextPutAllLines:
Claus Gittinger <cg@exept.de>
parents: 14092
diff changeset
  3126
    ].
dccc0f094b51 added: #nextPutAllLines:
Claus Gittinger <cg@exept.de>
parents: 14092
diff changeset
  3127
dccc0f094b51 added: #nextPutAllLines:
Claus Gittinger <cg@exept.de>
parents: 14092
diff changeset
  3128
    "Modified: / 08-11-1996 / 23:53:41 / cg"
dccc0f094b51 added: #nextPutAllLines:
Claus Gittinger <cg@exept.de>
parents: 14092
diff changeset
  3129
    "Created: / 27-07-2012 / 09:26:09 / cg"
dccc0f094b51 added: #nextPutAllLines:
Claus Gittinger <cg@exept.de>
parents: 14092
diff changeset
  3130
!
dccc0f094b51 added: #nextPutAllLines:
Claus Gittinger <cg@exept.de>
parents: 14092
diff changeset
  3131
11322
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3132
nextPutAllText:aText
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3133
    "normal streams can not handle text/emphasis, so convert aText to the string"
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3134
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3135
    aText string printOn:self.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3136
!
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3137
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3138
nextPutAllUnicode:aString
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3139
    "normal streams can not handle multi-byte characters, so convert them to utf8"
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3140
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3141
    aString do:[:eachCharacter|
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3142
        self nextPutUtf8:eachCharacter.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3143
    ].
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3144
!
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3145
5628
1dc85c4c4b7c added #nextPutAllUntranslated: (for printStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
  3146
nextPutAllUntranslated:aCollection
1dc85c4c4b7c added #nextPutAllUntranslated: (for printStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
  3147
    "for compatibility with printStreams (putAll - as-is without escapes)"
1dc85c4c4b7c added #nextPutAllUntranslated: (for printStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
  3148
1dc85c4c4b7c added #nextPutAllUntranslated: (for printStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
  3149
    self nextPutAll:aCollection
1dc85c4c4b7c added #nextPutAllUntranslated: (for printStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
  3150
!
1dc85c4c4b7c added #nextPutAllUntranslated: (for printStream compatibility)
Claus Gittinger <cg@exept.de>
parents: 5395
diff changeset
  3151
743
8d31a7568e44 nextPutLine:
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  3152
nextPutLine:aCollection
8d31a7568e44 nextPutLine:
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  3153
    "put all elements of the argument, aCollection onto the receiver,
16454
ea42dcd0ad0a class: Stream
Claus Gittinger <cg@exept.de>
parents: 16453
diff changeset
  3154
     and append a cr (carriage return). aCollection should contain characters.
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3155
     This is only useful with character streams in textMode,
1949
5fd7fa45a817 commentary
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
  3156
     and only allowed, if the receiver supports writing."
743
8d31a7568e44 nextPutLine:
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  3157
8d31a7568e44 nextPutLine:
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  3158
    self nextPutAll:aCollection.
8d31a7568e44 nextPutLine:
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  3159
    self cr.
8d31a7568e44 nextPutLine:
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  3160
8d31a7568e44 nextPutLine:
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  3161
    "Created: 13.12.1995 / 10:49:17 / cg"
1949
5fd7fa45a817 commentary
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
  3162
    "Modified: 8.11.1996 / 23:53:41 / cg"
743
8d31a7568e44 nextPutLine:
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  3163
!
8d31a7568e44 nextPutLine:
Claus Gittinger <cg@exept.de>
parents: 701
diff changeset
  3164
11322
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3165
nextPutUnicode:aCharacter
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3166
    "normal streams can not handle multi-byte characters, so convert them to utf8"
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3167
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3168
    self nextPutUtf8:aCharacter.
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3169
!
b8b504720b4f Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11249
diff changeset
  3170
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3171
print:anObject
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3172
    "append a printed representation of anObject to the receiver.
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3173
     Same as 'anObject printOn:self'; Added for ST-80 compatibility."
2
claus
parents: 1
diff changeset
  3174
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3175
    anObject printOn:self
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3176
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3177
    "
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3178
     |s|
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3179
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3180
     s := WriteStream on:''.
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3181
     s nextPutAll:'one ';
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3182
       print:1;
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3183
       nextPutAll:' two ';
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3184
       print:2.
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3185
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3186
     s contents
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3187
    "
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3188
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3189
    "Modified: 15.5.1996 / 18:06:06 / cg"
2
claus
parents: 1
diff changeset
  3190
!
claus
parents: 1
diff changeset
  3191
14360
98833670676c added: #printCR:
Claus Gittinger <cg@exept.de>
parents: 14347
diff changeset
  3192
printCR:anObject
98833670676c added: #printCR:
Claus Gittinger <cg@exept.de>
parents: 14347
diff changeset
  3193
    "append a printed representation of anObject to the receiver,
98833670676c added: #printCR:
Claus Gittinger <cg@exept.de>
parents: 14347
diff changeset
  3194
     followed by a newline character."
98833670676c added: #printCR:
Claus Gittinger <cg@exept.de>
parents: 14347
diff changeset
  3195
98833670676c added: #printCR:
Claus Gittinger <cg@exept.de>
parents: 14347
diff changeset
  3196
    self print:anObject.
98833670676c added: #printCR:
Claus Gittinger <cg@exept.de>
parents: 14347
diff changeset
  3197
    self cr.
98833670676c added: #printCR:
Claus Gittinger <cg@exept.de>
parents: 14347
diff changeset
  3198
98833670676c added: #printCR:
Claus Gittinger <cg@exept.de>
parents: 14347
diff changeset
  3199
    "Created: / 26-09-2012 / 18:21:06 / cg"
98833670676c added: #printCR:
Claus Gittinger <cg@exept.de>
parents: 14347
diff changeset
  3200
!
98833670676c added: #printCR:
Claus Gittinger <cg@exept.de>
parents: 14347
diff changeset
  3201
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3202
show:something
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3203
    "append a printed representation of the argument to the stream.
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3204
     This makes streams somewhat compatible to TextCollectors and
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3205
     allows you to say: 
10920
f79c78bef665 changed #show: - use prinOn:
Stefan Vogel <sv@exept.de>
parents: 10360
diff changeset
  3206
        Smalltalk at:#Transcript put:Stdout
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1414
diff changeset
  3207
     or to use #show:/#showCR: with internal or external streams."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3208
10920
f79c78bef665 changed #show: - use prinOn:
Stefan Vogel <sv@exept.de>
parents: 10360
diff changeset
  3209
    something printOn:self
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3210
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3211
11863
32c925c65877 +show:with:
Claus Gittinger <cg@exept.de>
parents: 11750
diff changeset
  3212
show:something with:arg
11949
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3213
    "append a printed representation of the argument to the stream, expanding
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3214
     the placeHolder %1 with the printString of arg.
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3215
     This makes streams somewhat compatible to TextCollectors and
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3216
     allows you to say: 
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3217
        Smalltalk at:#Transcript put:Stdout
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3218
     or to use #show:/#showCR: with internal or external streams."
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3219
13027
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3220
    self show:(something bindWith:arg)
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3221
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3222
    "Modified: / 19-08-2010 / 15:42:00 / cg"
11863
32c925c65877 +show:with:
Claus Gittinger <cg@exept.de>
parents: 11750
diff changeset
  3223
!
32c925c65877 +show:with:
Claus Gittinger <cg@exept.de>
parents: 11750
diff changeset
  3224
32c925c65877 +show:with:
Claus Gittinger <cg@exept.de>
parents: 11750
diff changeset
  3225
show:something with:arg1 with:arg2
11949
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3226
    "append a printed representation of the argument to the stream, expanding
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3227
     the placeHolders %1 and %2 with the printStrings of arg1 and arg2.
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3228
     This makes streams somewhat compatible to TextCollectors and
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3229
     allows you to say: 
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3230
        Smalltalk at:#Transcript put:Stdout
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3231
     or to use #show:/#showCR: with internal or external streams."
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3232
13027
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3233
    self show:(something bindWith:arg1 with:arg2)
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3234
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3235
    "Modified: / 19-08-2010 / 15:42:09 / cg"
11863
32c925c65877 +show:with:
Claus Gittinger <cg@exept.de>
parents: 11750
diff changeset
  3236
!
32c925c65877 +show:with:
Claus Gittinger <cg@exept.de>
parents: 11750
diff changeset
  3237
32c925c65877 +show:with:
Claus Gittinger <cg@exept.de>
parents: 11750
diff changeset
  3238
show:something with:arg1 with:arg2 with:arg3
11949
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3239
    "append a printed representation of the argument to the stream, expanding
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3240
     the placeHolders %1,%2 and %3 with the printStrings of arg1, arg2 and arg3.
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3241
     This makes streams somewhat compatible to TextCollectors and
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3242
     allows you to say: 
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3243
        Smalltalk at:#Transcript put:Stdout
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3244
     or to use #show:/#showCR: with internal or external streams."
d837fa25fc80 comments
Claus Gittinger <cg@exept.de>
parents: 11948
diff changeset
  3245
13027
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3246
    self show:(something bindWith:arg1 with:arg2 with:arg3)
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3247
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3248
    "Modified: / 19-08-2010 / 15:42:17 / cg"
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3249
!
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3250
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3251
show:something with:arg1 with:arg2 with:arg3 with:arg4
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3252
    "append a printed representation of the argument to the stream, expanding
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3253
     the placeHolders %1,%2 and %3 with the printStrings of arg1, arg2 and arg3.
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3254
     This makes streams somewhat compatible to TextCollectors and
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3255
     allows you to say: 
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3256
        Smalltalk at:#Transcript put:Stdout
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3257
     or to use #show:/#showCR: with internal or external streams."
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3258
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3259
    self show:(something bindWith:arg1 with:arg2 with:arg3 with:arg4)
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3260
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3261
    "Created: / 19-08-2010 / 15:42:25 / cg"
11863
32c925c65877 +show:with:
Claus Gittinger <cg@exept.de>
parents: 11750
diff changeset
  3262
!
32c925c65877 +show:with:
Claus Gittinger <cg@exept.de>
parents: 11750
diff changeset
  3263
15711
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3264
show:something withArguments:args
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3265
    "append a printed representation of the argument to the stream, expanding
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3266
     the placeHolders %1,%2 and %3 with the printStrings of argi.
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3267
     This makes streams somewhat compatible to TextCollectors and
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3268
     allows you to say: 
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3269
        Smalltalk at:#Transcript put:Stdout
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3270
     or to use #show:/#showCR: with internal or external streams."
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3271
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3272
    self show:(something bindWithArguments:args)
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3273
!
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3274
1414
1bbf1ff2fc31 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  3275
showCR:aString
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3276
    "append a printed representation of the argument to the stream
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3277
     and append a newline character.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3278
     This makes streams somewhat compatible to TextCollectors and
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3279
     allows you to say: 
2332
45a3590d727d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 2253
diff changeset
  3280
	Smalltalk at:#Transcript put:Stdout
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3281
     or to use #show:/#showCR: with internal or external streams."
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3282
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3283
    self show:aString.
a27a279701f8 Initial revision
claus
parents:
diff changeset
  3284
    self cr
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3285
1414
1bbf1ff2fc31 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  3286
    "Created: 18.5.1996 / 15:34:17 / cg"
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3287
    "Modified: 11.7.1996 / 10:01:27 / cg"
1414
1bbf1ff2fc31 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  3288
!
1bbf1ff2fc31 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  3289
13027
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3290
showCR:something with:arg
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3291
    "append a printed representation of the argument to the stream, expanding
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3292
     the placeHolder %1 with the printString of arg.
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3293
     This makes streams somewhat compatible to TextCollectors and
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3294
     allows you to say: 
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3295
        Smalltalk at:#Transcript put:Stdout
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3296
     or to use #show:/#showCR: with internal or external streams."
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3297
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3298
    self showCR:(something bindWith:arg)
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3299
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3300
    "Created: / 19-08-2010 / 15:41:46 / cg"
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3301
!
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3302
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3303
showCR:something with:arg1 with:arg2
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3304
    "append a printed representation of the argument to the stream, expanding
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3305
     the placeHolders %1 and %2 with the printStrings of arg1 and arg2.
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3306
     This makes streams somewhat compatible to TextCollectors and
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3307
     allows you to say: 
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3308
        Smalltalk at:#Transcript put:Stdout
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3309
     or to use #show:/#showCR: with internal or external streams."
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3310
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3311
    self showCR:(something bindWith:arg1 with:arg2)
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3312
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3313
    "Created: / 19-08-2010 / 15:42:37 / cg"
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3314
!
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3315
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3316
showCR:something with:arg1 with:arg2 with:arg3
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3317
    "append a printed representation of the argument to the stream, expanding
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3318
     the placeHolders %1,%2 and %3 with the printStrings of arg1, arg2 and arg3.
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3319
     This makes streams somewhat compatible to TextCollectors and
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3320
     allows you to say: 
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3321
        Smalltalk at:#Transcript put:Stdout
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3322
     or to use #show:/#showCR: with internal or external streams."
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3323
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3324
    self showCR:(something bindWith:arg1 with:arg2 with:arg3)
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3325
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3326
    "Created: / 19-08-2010 / 15:42:43 / cg"
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3327
!
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3328
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3329
showCR:something with:arg1 with:arg2 with:arg3 with:arg4
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3330
    "append a printed representation of the argument to the stream, expanding
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3331
     the placeHolders %1,%2 and %3 with the printStrings of arg1, arg2 and arg3.
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3332
     This makes streams somewhat compatible to TextCollectors and
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3333
     allows you to say: 
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3334
        Smalltalk at:#Transcript put:Stdout
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3335
     or to use #show:/#showCR: with internal or external streams."
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3336
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3337
    self showCR:(something bindWith:arg1 with:arg2 with:arg3 with:arg4)
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3338
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3339
    "Created: / 19-08-2010 / 15:42:50 / cg"
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3340
!
d08a92a182bf +showCR:with...
Claus Gittinger <cg@exept.de>
parents: 12623
diff changeset
  3341
15711
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3342
showCR:something withArguments:args
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3343
    "append a printed representation of the argument to the stream, expanding
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3344
     the placeHolders %1,%2 and %3 with the printStrings of argi.
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3345
     This makes streams somewhat compatible to TextCollectors and
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3346
     allows you to say: 
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3347
        Smalltalk at:#Transcript put:Stdout
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3348
     or to use #show:/#showCR: with internal or external streams."
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3349
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3350
    self showCR:(something bindWithArguments:args)
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3351
!
48a314a68cb8 class: Stream
Claus Gittinger <cg@exept.de>
parents: 15654
diff changeset
  3352
1414
1bbf1ff2fc31 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  3353
showCr:aString
1bbf1ff2fc31 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  3354
    "append a printed representation of the argument to the stream
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3355
     and append a newline character.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3356
     This is obsolete ST/X backward compatibility; use #showCR:"
1414
1bbf1ff2fc31 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  3357
5873
1ed3dd2e1b17 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5823
diff changeset
  3358
    <resource:#obsolete>
1ed3dd2e1b17 Use <resource:#obsolete>
Stefan Vogel <sv@exept.de>
parents: 5823
diff changeset
  3359
1414
1bbf1ff2fc31 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  3360
    self obsoleteMethodWarning:'use #showCR:'.
1bbf1ff2fc31 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  3361
    self showCR:aString.
1bbf1ff2fc31 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1409
diff changeset
  3362
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3363
    "Modified: 11.7.1996 / 10:01:50 / cg"
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3364
!
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3365
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3366
space
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3367
    "append a space character to the receiver.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3368
     This is only allowed, if the receiver supports writing."
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3369
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3370
    self nextPut:(Character space)
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3371
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3372
    "Modified: 11.7.1996 / 10:02:06 / cg"
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3373
!
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3374
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3375
spaces:count
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3376
    "append count space-characters to the receiver.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3377
     This is only allowed, if the receiver supports writing."
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3378
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3379
    self next:count put:(Character space)
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3380
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3381
    "Modified: 11.7.1996 / 10:02:10 / cg"
62
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3382
!
e1b4369c61fb *** empty log message ***
claus
parents: 50
diff changeset
  3383
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3384
store:anObject
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3385
    "append a printed representation of anObject to the receiver,
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3386
     from which the receiver can be reconstructed (i.e. its storeString).
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3387
     Same as 'anObject storeOn:self'; Added for ST-80 compatibility."
77
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  3388
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3389
    anObject storeOn:self
1403
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3390
2417f8fa4d4a comments
Claus Gittinger <cg@exept.de>
parents: 1402
diff changeset
  3391
    "Modified: 15.5.1996 / 18:05:55 / cg"
77
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  3392
!
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  3393
8645
92b28f10ab85 terminal stuff added
penk
parents: 8630
diff changeset
  3394
sync
92b28f10ab85 terminal stuff added
penk
parents: 8630
diff changeset
  3395
    "write out all unbuffered data - ignored here, but added
92b28f10ab85 terminal stuff added
penk
parents: 8630
diff changeset
  3396
     to make internalStreams protocol compatible with externalStreams"
92b28f10ab85 terminal stuff added
penk
parents: 8630
diff changeset
  3397
!
92b28f10ab85 terminal stuff added
penk
parents: 8630
diff changeset
  3398
11649
e086e0cb0814 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11616
diff changeset
  3399
syncData
e086e0cb0814 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11616
diff changeset
  3400
    "write out all unbuffered data - ignored here, but added
e086e0cb0814 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11616
diff changeset
  3401
     to make internalStreams protocol compatible with externalStreams"
e086e0cb0814 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11616
diff changeset
  3402
!
e086e0cb0814 new: #sync and #syncData
Stefan Vogel <sv@exept.de>
parents: 11616
diff changeset
  3403
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3404
tab
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3405
    "append a tab-character to the stream.
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3406
     This is only allowed, if the receiver supports writing."
77
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  3407
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3408
    self nextPut:(Character tab)
1538
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3409
b62f12073403 commentary; added #nextPutAll:startingAt:
Claus Gittinger <cg@exept.de>
parents: 1462
diff changeset
  3410
    "Modified: 11.7.1996 / 10:02:20 / cg"
2443
d2ba7a4bae75 added #tab:
ca
parents: 2420
diff changeset
  3411
!
d2ba7a4bae75 added #tab:
ca
parents: 2420
diff changeset
  3412
d2ba7a4bae75 added #tab:
ca
parents: 2420
diff changeset
  3413
tab:count
d2ba7a4bae75 added #tab:
ca
parents: 2420
diff changeset
  3414
    "append count tab-characters to the receiver.
d2ba7a4bae75 added #tab:
ca
parents: 2420
diff changeset
  3415
     This is only allowed, if the receiver supports writing."
d2ba7a4bae75 added #tab:
ca
parents: 2420
diff changeset
  3416
d2ba7a4bae75 added #tab:
ca
parents: 2420
diff changeset
  3417
    self next:count put:(Character tab)
d2ba7a4bae75 added #tab:
ca
parents: 2420
diff changeset
  3418
d2ba7a4bae75 added #tab:
ca
parents: 2420
diff changeset
  3419
    "Modified: 11.7.1996 / 10:02:10 / cg"
77
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  3420
! !
6c38ca59927f *** empty log message ***
claus
parents: 70
diff changeset
  3421
8054
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3422
!Stream methodsFor:'writing-chunks'!
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3423
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3424
nextChunkPut:aString
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3425
    "put aString as a chunk onto the receiver;
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3426
     double all exclamation marks except within primitives and append a 
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3427
     single delimiting exclamation mark at the end.
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3428
     This modification of the chunk format (not doubling exclas in primitive code)
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3429
     was done to have primitive code more readable and easier be edited in the fileBrowser
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3430
     or other editors.
15086
171d470d1f2f class: Stream
Claus Gittinger <cg@exept.de>
parents: 15048
diff changeset
  3431
     It's no incompatibility, since inline primitives are an ST/X special
8054
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3432
     and code containing ST/X primitives cannot be loaded into other smalltalks anyway."
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3433
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3434
    self nextPutAllAsChunk:aString.
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3435
    self nextPut:(self class chunkSeparator)
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3436
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3437
    "Modified: 9.12.1995 / 15:56:54 / cg"
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3438
!
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3439
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3440
nextPutAllAsChunk:aString
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3441
    "put aString as a chunk onto the receiver;
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3442
     double all exclamation marks except within primitives.
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3443
     This modification of the chunk format (not doubling exclas in primitive code)
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3444
     was done to have primitive code more readable and easier be edited in the fileBrowser
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3445
     or other editors.
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3446
     Its no incompatibility, since inline primitives are an ST/X special
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3447
     and code containing ST/X primitives cannot be loaded into other smalltalks anyway."
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3448
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3449
    |sep stopChars inPrimitive character
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3450
     index    "{ Class:SmallInteger }"
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3451
     endIndex "{ Class:SmallInteger }"
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3452
     stop     "{ Class:SmallInteger }"
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3453
     next     "{ Class:SmallInteger }"|
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3454
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3455
    endIndex := aString size.
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3456
    endIndex == 0 ifTrue:[^ self].
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3457
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3458
    sep := self class chunkSeparator.
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3459
    stopChars := '{}' copyWith:sep.
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3460
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3461
    inPrimitive := false.
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3462
    index := 1.
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3463
    stop := endIndex + 1.
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3464
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3465
    [index <= endIndex] whileTrue:[
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3466
	"
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3467
	 find position of next interesting character; 
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3468
	 output stuff up to that one in one piece
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3469
	"
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3470
	next := aString indexOfAny:stopChars startingAt:index ifAbsent:stop.
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3471
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3472
	((index == 1) and:[next == stop]) ifTrue:[
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3473
	    self nextPutAll:aString
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3474
	] ifFalse:[
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3475
	    self nextPutAll:aString startingAt:index to:(next - 1)
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3476
	].
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3477
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3478
	index := next.
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3479
	(index <= endIndex) ifTrue:[
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3480
	    character := aString at:index.
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3481
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3482
	    (character == ${ ) ifTrue:[
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3483
		"/ starts a primitive
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3484
		((index > 1) and:[(aString at:index-1) == $%]) ifTrue:[
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3485
		    inPrimitive := true
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3486
		]
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3487
	    ] ifFalse:[
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3488
		"/ ends a primitive
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3489
		(character == $} ) ifTrue:[
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3490
		    ((index > 1) and:[(aString at:index-1) == $%]) ifTrue:[
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3491
			inPrimitive := false
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3492
		    ]
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3493
		] ifFalse:[
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3494
		    "/
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3495
		    "/ exclas have to be doubled - except if within a primitive
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3496
		    "/
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3497
		    inPrimitive ifFalse:[
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3498
			(character == sep) ifTrue:[
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3499
			    self nextPut:sep
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3500
			]
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3501
		    ]
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3502
		]
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3503
	    ].
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3504
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3505
	    self nextPut:character.
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3506
	    index := index + 1.
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3507
	].
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3508
    ].
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3509
    (aString endsWith:Character cr) ifFalse:[
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3510
	self cr.
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3511
    ].
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3512
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3513
    "Modified: / 21.4.1998 / 17:22:47 / cg"
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3514
    "/ foo
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3515
!
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3516
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3517
nextPutChunkSeparator
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3518
    "append a chunk separator character"
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3519
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3520
    self nextPut:(self class chunkSeparator)
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3521
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3522
    "Created: 13.9.1995 / 17:39:26 / claus"
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3523
! !
7f31b0651027 chunk stuff moved from positionable stream (did not need positioning)
Claus Gittinger <cg@exept.de>
parents: 7687
diff changeset
  3524
1949
5fd7fa45a817 commentary
Claus Gittinger <cg@exept.de>
parents: 1665
diff changeset
  3525
!Stream class methodsFor:'documentation'!
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  3526
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  3527
version
16454
ea42dcd0ad0a class: Stream
Claus Gittinger <cg@exept.de>
parents: 16453
diff changeset
  3528
    ^ '$Header: /cvs/stx/stx/libbasic/Stream.st,v 1.220 2014-05-15 08:25:03 cg Exp $'
12093
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  3529
!
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  3530
3c1bef066cdb added: #nextPutBytes:
Claus Gittinger <cg@exept.de>
parents: 11949
diff changeset
  3531
version_CVS
16454
ea42dcd0ad0a class: Stream
Claus Gittinger <cg@exept.de>
parents: 16453
diff changeset
  3532
    ^ '$Header: /cvs/stx/stx/libbasic/Stream.st,v 1.220 2014-05-15 08:25:03 cg Exp $'
701
a309e3ef7faf checkin from browser
Claus Gittinger <cg@exept.de>
parents: 671
diff changeset
  3533
! !
6857
4540eeb3c958 category change
Claus Gittinger <cg@exept.de>
parents: 6494
diff changeset
  3534
14792
3a8ef902a219 class: Stream
Claus Gittinger <cg@exept.de>
parents: 14593
diff changeset
  3535
611
80bb0f1a7bab checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
  3536
Stream initialize!