NonPositionableExternalStream.st
author Stefan Vogel <sv@exept.de>
Thu, 14 Dec 1995 23:42:02 +0100
changeset 757 93d5f6b86e98
parent 613 0af19c3594fc
child 850 6168719cb51b
permissions -rw-r--r--
Add SemaphoreSet.
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
177
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
     3
	      All Rights Reserved
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
     4
a27a279701f8 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
a27a279701f8 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
a27a279701f8 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
a27a279701f8 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
a27a279701f8 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
a27a279701f8 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
a27a279701f8 Initial revision
claus
parents:
diff changeset
    11
"
a27a279701f8 Initial revision
claus
parents:
diff changeset
    12
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
    13
UnboundedExternalStream subclass:#NonPositionableExternalStream
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    14
	 instanceVariableNames:''
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    15
	 classVariableNames:'StdInStream StdOutStream StdErrorStream'
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    16
	 poolDictionaries:''
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    17
	 category:'Streams-External'
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    18
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    19
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    20
!NonPositionableExternalStream primitiveDefinitions!
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    21
%{
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    22
#include <stdio.h>
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    23
#define _STDIO_H_INCLUDED_
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    24
%}
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    25
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    26
! !
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    27
88
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    28
!NonPositionableExternalStream class methodsFor:'documentation'!
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    29
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    30
copyright
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    31
"
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    32
 COPYRIGHT (c) 1989 by Claus Gittinger
177
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
    33
	      All Rights Reserved
88
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    34
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    35
 This software is furnished under a license and may be used
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    36
 only in accordance with the terms of that license and with the
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    37
 inclusion of the above copyright notice.   This software may not
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    38
 be provided or otherwise made available to, or used by, any
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    39
 other person.  No title to or ownership of the software is
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    40
 hereby transferred.
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    41
"
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    42
!
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    43
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    44
documentation
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    45
"
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    46
    This class provides common protocol for all non-positionable,
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    47
    external streams. Concrete subclasses are terminal streams, pipe streams,
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    48
    PrinterStreams, Sockets etc.
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    49
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    50
    There are three special instances of this class, representing stdin,
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    51
    stdout and stderr of the smalltalk/X process (see Unix manuals, if you
177
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
    52
    dont know what those are used for). These special streams are bound to
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
    53
    to globals Stdin, Stdout and Stderr at early initialization time
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
    54
    (see Smalltalk>>initializeStandardStreams).
159
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
    55
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
    56
    The name of this class is a historical leftover - it should be called
514c749165c3 *** empty log message ***
claus
parents: 93
diff changeset
    57
    'TTYStream' or similar.
88
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    58
"
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    59
!
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    60
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    61
version
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    62
    ^ '$Header: /cvs/stx/stx/libbasic/NonPositionableExternalStream.st,v 1.24 1995-11-23 01:51:07 cg Exp $'
216
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    63
! !
a8abff749575 *** empty log message ***
claus
parents: 213
diff changeset
    64
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    65
!NonPositionableExternalStream class methodsFor:'instance creation'!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    66
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    67
forStderr
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    68
    "return a NonPositionableExternalStream object for writing to
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    69
     Unixes standard error output file descriptor"
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    70
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    71
    StdErrorStream isNil ifTrue:[
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    72
	StdErrorStream := self basicNew initializeForStderr
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    73
    ].
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    74
    ^ StdErrorStream
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    75
!
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    76
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    77
forStdin
44
b262907c93ea *** empty log message ***
claus
parents: 10
diff changeset
    78
    "return a NonPositionableExternalStream object for reading from
b262907c93ea *** empty log message ***
claus
parents: 10
diff changeset
    79
     Unixes standard input file descriptor"
b262907c93ea *** empty log message ***
claus
parents: 10
diff changeset
    80
88
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    81
    StdInStream isNil ifTrue:[
177
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
    82
	StdInStream := self basicNew initializeForStdin
88
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    83
    ].
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    84
    ^ StdInStream
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
    85
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
    86
a27a279701f8 Initial revision
claus
parents:
diff changeset
    87
forStdout
44
b262907c93ea *** empty log message ***
claus
parents: 10
diff changeset
    88
    "return a NonPositionableExternalStream object for writing to
b262907c93ea *** empty log message ***
claus
parents: 10
diff changeset
    89
     Unixes standard output file descriptor"
b262907c93ea *** empty log message ***
claus
parents: 10
diff changeset
    90
88
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    91
    StdOutStream isNil ifTrue:[
177
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
    92
	StdOutStream := self basicNew initializeForStdout
88
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    93
    ].
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
    94
    ^ StdOutStream
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    95
! !
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    96
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    97
!NonPositionableExternalStream methodsFor:'error handling'!
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    98
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
    99
positionError
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   100
    "notify that this stream has no concept of a position"
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   101
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   102
    ^ PositionErrorSignal raiseRequestWith:self in:thisContext sender
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   103
! !
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   104
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   105
!NonPositionableExternalStream methodsFor:'positioning'!
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   106
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   107
position
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   108
    "catch position - there is none here"
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   109
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   110
    ^ self positionError
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   111
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   112
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   113
position:aPosition
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   114
    "catch position - there is none here"
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   115
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   116
    ^ self positionError
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   117
!
44
b262907c93ea *** empty log message ***
claus
parents: 10
diff changeset
   118
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   119
skip:numberToSkip
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   120
    "skip count objects, return the receiver"
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   121
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   122
    "dont know how to unread ..."
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   123
    numberToSkip < 0 ifTrue:[
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   124
	^ self error:'stream is not positionable'
88
81dacba7a63a *** empty log message ***
claus
parents: 44
diff changeset
   125
    ].
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   126
    numberToSkip timesRepeat:self next
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   127
! !
a27a279701f8 Initial revision
claus
parents:
diff changeset
   128
177
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   129
!NonPositionableExternalStream methodsFor:'printing & storing'!
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   130
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   131
printOn:aStream
213
3b56a17534fd *** empty log message ***
claus
parents: 177
diff changeset
   132
    "append a printed representation of the receiver on aStream"
177
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   133
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   134
    self == Stdin ifTrue:[
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   135
	aStream nextPutAll:'Stdin'.
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   136
	^ self
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   137
    ].
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   138
    self == Stdout ifTrue:[
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   139
	aStream nextPutAll:'Stdout'.
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   140
	^ self
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   141
    ].
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   142
    self == Stderr ifTrue:[
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   143
	aStream nextPutAll:'Stderr'.
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   144
	^ self
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   145
    ].
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   146
    super printOn:aStream
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   147
!
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   148
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   149
storeOn:aStream
213
3b56a17534fd *** empty log message ***
claus
parents: 177
diff changeset
   150
    "append a printed representation of the receiver on aStream, from
3b56a17534fd *** empty log message ***
claus
parents: 177
diff changeset
   151
     which the receiver can be reconstructed."
177
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   152
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   153
    ((self == Stdin)
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   154
    or:[self == Stdout
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   155
    or:[self == Stderr]]) ifTrue:[
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   156
	^ self printOn:aStream
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   157
    ].
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   158
    super storeOn:aStream
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   159
! !
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   160
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   161
!NonPositionableExternalStream methodsFor:'private'!
360
claus
parents: 269
diff changeset
   162
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   163
initializeForStderr
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   164
    "setup for writing to stderr"
269
93162487a94b *** empty log message ***
claus
parents: 216
diff changeset
   165
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   166
    mode := #readwrite.
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   167
    buffered := false.
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   168
%{
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   169
    OBJ fp;
269
93162487a94b *** empty log message ***
claus
parents: 216
diff changeset
   170
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   171
    _INST(filePointer) = fp = __MKOBJ(stderr); __STORE(self, fp);
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   172
    _INST(buffered) = true;
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   173
%}
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   174
!
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   175
a27a279701f8 Initial revision
claus
parents:
diff changeset
   176
initializeForStdin
44
b262907c93ea *** empty log message ***
claus
parents: 10
diff changeset
   177
    "setup for reading stdin"
b262907c93ea *** empty log message ***
claus
parents: 10
diff changeset
   178
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   179
    mode := #readonly.
10
claus
parents: 5
diff changeset
   180
    buffered := true.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   181
%{
477
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   182
    OBJ fp;
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   183
479
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   184
    _INST(filePointer) = fp = __MKOBJ(stdin); __STORE(self, fp);
548
a4e2d5b5ac25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   185
    _INST(buffered) = true;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   186
%}
a27a279701f8 Initial revision
claus
parents:
diff changeset
   187
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   188
a27a279701f8 Initial revision
claus
parents:
diff changeset
   189
initializeForStdout
44
b262907c93ea *** empty log message ***
claus
parents: 10
diff changeset
   190
    "setup for writing to stdout"
b262907c93ea *** empty log message ***
claus
parents: 10
diff changeset
   191
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   192
    mode := #readwrite.
10
claus
parents: 5
diff changeset
   193
    buffered := false.
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   194
%{
477
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   195
    OBJ fp;
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   196
479
Claus Gittinger <cg@exept.de>
parents: 477
diff changeset
   197
    _INST(filePointer) = fp = __MKOBJ(stdout); __STORE(self, fp);
548
a4e2d5b5ac25 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 530
diff changeset
   198
    _INST(buffered) = true;
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   199
%}
a27a279701f8 Initial revision
claus
parents:
diff changeset
   200
!
a27a279701f8 Initial revision
claus
parents:
diff changeset
   201
a27a279701f8 Initial revision
claus
parents:
diff changeset
   202
reOpen
44
b262907c93ea *** empty log message ***
claus
parents: 10
diff changeset
   203
    "reopen the stream after an image restart.
b262907c93ea *** empty log message ***
claus
parents: 10
diff changeset
   204
     If I am one of the standard streams, reopen is easy"
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   205
477
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   206
    (self == StdInStream) ifTrue:[
177
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   207
	^ self initializeForStdin
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   208
    ].
477
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   209
    (self == StdOutStream) ifTrue:[
177
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   210
	^ self initializeForStdout
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   211
    ].
477
8710aba7876b oops - making id's real objects requires a store macro
Claus Gittinger <cg@exept.de>
parents: 475
diff changeset
   212
    (self == StdErrorStream) ifTrue:[
177
c9f8a4bc4b10 better printString & storeString
claus
parents: 159
diff changeset
   213
	^ self initializeForStderr
1
a27a279701f8 Initial revision
claus
parents:
diff changeset
   214
    ].
a27a279701f8 Initial revision
claus
parents:
diff changeset
   215
    ^ super reOpen
a27a279701f8 Initial revision
claus
parents:
diff changeset
   216
! !
613
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   217
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   218
!NonPositionableExternalStream methodsFor:'queries'!
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   219
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   220
isPositionable
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   221
    "return true, if the stream supports positioning (this one is not)"
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   222
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   223
    ^ false
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   224
! !
0af19c3594fc checkin from browser
Claus Gittinger <cg@exept.de>
parents: 593
diff changeset
   225