Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members

InternalStream.cc

Go to the documentation of this file.
00001 /*
00002  * InternalStream.cc
00003  *
00004  * Smalltalk like class library for C++
00005  * Abstract internal stream.
00006  *
00007  * Copyright (c) 2003 Milan Cermak
00008  */
00009 /*
00010  * This library is free software; you can redistribute it and/or
00011  * modify it under the terms of the GNU Lesser General Public
00012  * License as published by the Free Software Foundation; either
00013  * version 2.1 of the License, or (at your option) any later version.
00014  *
00015  * This library is distributed in the hope that it will be useful,
00016  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00017  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00018  * Lesser General Public License for more details.
00019  *
00020  * You should have received a copy of the GNU Lesser General Public
00021  * License along with this library; if not, write to the Free Software
00022  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00023  */
00024 #include <stlib/InternalStream.h>
00025 #include <stlib/SequenceableCollection.h>
00026 #include <stlib/String.h>
00027 
00028 InternalStream::InternalStream(SequenceableCollection *coll)
00029 {
00030     PositionableStream::initialize(coll);
00031 }
00032 
00033 /* Class-accessing protocol */
00034 String *InternalStream::className(void) const
00035 {
00036     return new String("InternalStream");
00037 }
00038 
00039 /* Accessing protocol */
00040 SequenceableCollection *InternalStream::contents(void)
00041 {
00042     read_limit = (read_limit < _position) ? _position : read_limit;
00043     return dynamic_cast<SequenceableCollection *>(collection->copy(0, read_limit));
00044 }
00045 
00046 void InternalStream::nextPutAll(const SequenceableCollection *coll,
00047                                 long size, long startIndex)
00048 {
00049     if (size <= 1) {
00050         PositionableStream::nextPutAll(coll, size, startIndex);
00051         return;
00052     }
00053 
00054     nextPut(coll->at(startIndex));
00055 
00056     long newPosition = _position + size - 1;
00057     if (newPosition > write_limit) {
00058         collection->growToAtLeast(newPosition);
00059         write_limit = collection->size();
00060     }
00061 
00062     collection->replace(_position, newPosition, coll, startIndex+1);
00063     _position = newPosition;
00064 }
00065 
00066 SequenceableCollection *InternalStream::upToEnd(void)
00067 {
00068     SequenceableCollection *res;
00069     read_limit = (read_limit < _position) ? _position : read_limit;
00070     res = dynamic_cast<SequenceableCollection *>(collection->copy(_position, read_limit));
00071     _position = read_limit;
00072     return res;
00073 }
00074 
00075 /* Private protocol */
00076 void InternalStream::pastEndPut(Object *object)
00077 {
00078     collection->growToAtLeast(collection->size() + 1);
00079     write_limit = collection->size();
00080     collection->put(_position++, object);
00081 }

Generated on Mon Nov 27 09:47:55 2006 for Smalltalk like C++ Class Library by  doxygen 1.4.2