ReadWriteStream.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 03 Jun 2015 21:55:34 +0100
branchjv
changeset 18470 9e4db770f8f5
parent 18120 e3a375d5f6a8
child 19892 d1aecb538df5
permissions -rw-r--r--
Optimize for fast-path in String >> at: Avoid jumps in String >> at: for common case the receiver is an instance of String and thus has no instance variables. Similar as fix 877a8f1b326d for Arrays.

"
 COPYRIGHT (c) 1989 by Claus Gittinger
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
"{ Package: 'stx:libbasic' }"

"{ NameSpace: Smalltalk }"

WriteStream subclass:#ReadWriteStream
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Streams'
!

!ReadWriteStream class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1989 by Claus Gittinger
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
!

documentation
"
    ReadWriteStreams allow both read- and write-access to some collection.
    To allow this, they reenable some methods blocked in WriteStream.
    (being one of the seldom places, where multiple inheritance could be
     of good use in smalltalk).

    [caveat:]
        Basing capabilities like readability/writability/positionability/peekability on inheritance makes
        the class hierarchy ugly and leads to strange and hard to teach redefinitions (aka. NonPositionableStream
        below PositionableStream or ExternalReadStream under WriteStream)

    Claus:
        I personally find the ReadStream - WriteStream - ReadWriteStream
        organization brain-damaged. It would be better to have an attribute
        (such as readOnly / writeOnly / readWrite) in an InternalStream subclass 
        of Stream ...

    [author:]
        Claus Gittinger
"
!

examples
"
    |s|

    s := ReadWriteStream with:'abcd'.
    s reset.
    s nextPut:$A.
    s contents       
"
! !

!ReadWriteStream methodsFor:'access-reading'!

next
    "return the next element; advance read position.
     If there are no more elements, nil is returned."

    |element|

    (position >= readLimit) ifTrue:[^ self pastEndRead].
    element := collection at:(position+1).
    position := position + 1.
    ^ element

    "Modified: 5.2.1996 / 21:57:40 / stefan"
!

next:count
    "return the next count elements of the stream as aCollection,
     which depends on the streams type - (see #contentsSpecies)."

    |answer|

    self contentsSpecies == collection class ifTrue:[
        ((position + count) > readLimit) ifFalse:[
            answer := collection copyFrom:position+1 to:position+count.
            position := position+count.
            ^ answer
        ].
    ].
    ^ super next:count
!

nextByte
    "return the next element; advance read pointer.
     return nil, if there is no next element"

    ^ self next asInteger
!

peek
    "return the element to be read next without advancing read position.
     If there are no more elements, nil is returned."

    (position >= readLimit) ifTrue:[^ self pastEndRead].
    ^ collection at:(position+1)

    "Modified: 5.2.1996 / 21:57:47 / stefan"
! !

!ReadWriteStream methodsFor:'accessing'!

contents
    "return the contents as written so far;
     redefined to prevent confusion resulting due to 
     my superclasses optimization. (see WriteStream contents).
     ST80 users if RWStream expect the contents array to remain
     unchanged."

    readLimit := (readLimit ? 0) max:position.
    ^ collection copyFrom:1 to:readLimit

    "Created: / 30.10.1997 / 16:25:22 / cg"
    "Modified: / 30.10.1997 / 18:37:09 / cg"
!

reset
    "set the read position to the beginning of the collection"

    self resetPosition

!

resetPosition
    "set the read position to the beginning of the collection.
     Because I am a read/write stream, the readLimit is set to the current write position.
     Thus, the just written data can be read back."

    readLimit := position max:readLimit.
    super resetPosition
! !

!ReadWriteStream methodsFor:'converting'!

readStream
    "return the receiver as a readStream - thats myself"

    ^ self

    "Created: 29.11.1995 / 22:04:23 / stefan"
!

readStreamOrNil
    "return a readStream from the receiver. Since this is already
     a readStream, return self.

     This method has been defined for protocol copmatibility with Filename"

    ^ self
! !

!ReadWriteStream methodsFor:'initialization'!

with:initialCollection
    "redefined from WriteStream, to position to the beginning of the stream"

    super with:initialCollection.
    position := 0.
! !

!ReadWriteStream methodsFor:'queries'!

isReadable 
    "return true if the receiver supports reading - thats true"

    ^ true
!

size
    "return the number of elements in the streamed collection."

    ^ (readLimit ? 0) max:(position ? 0).
! !

!ReadWriteStream class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/ReadWriteStream.st,v 1.39 2015-03-12 19:27:01 stefan Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/libbasic/ReadWriteStream.st,v 1.39 2015-03-12 19:27:01 stefan Exp $'
! !