зеркало из https://github.com/mozilla/pjs.git
Bug #8305, r: valeski, rickg
The storage stream provides an internal buffer that can be filled by a client using a single output stream. One or more independent input streams can be created to read the data out non-destructively. The implementation uses a segmented buffer internally to avoid realloc'ing of large buffers.
This commit is contained in:
Родитель
3a8af5ffd8
Коммит
76e910595b
|
@ -0,0 +1,74 @@
|
|||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
* The contents of this file are subject to the Netscape Public
|
||||
* License Version 1.1 (the "License"); you may not use this file
|
||||
* except in compliance with the License. You may obtain a copy of
|
||||
* the License at http://www.mozilla.org/NPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS
|
||||
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
* implied. See the License for the specific language governing
|
||||
* rights and limitations under the License.
|
||||
*
|
||||
* The Original Code is Mozilla Communicator client code, released
|
||||
* March 31, 1998.
|
||||
*
|
||||
* The Initial Developer of the Original Code is Netscape
|
||||
* Communications Corporation. Portions created by Netscape are
|
||||
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
||||
* Rights Reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "nsISupports.idl"
|
||||
#include "nsrootidl.idl"
|
||||
|
||||
interface nsIAllocator;
|
||||
interface nsIInputStream;
|
||||
interface nsIOutputStream;
|
||||
|
||||
/**
|
||||
* The nsIStorageStream interface maintains an internal data buffer that can be
|
||||
* filled using a single output stream. One or more independent input streams
|
||||
* can be created to read the data from the buffer non-destructively.
|
||||
*/
|
||||
|
||||
[scriptable, uuid(604ad9d0-753e-11d3-90ca-0040056a906e)]
|
||||
interface nsIStorageStream : nsISupports
|
||||
{
|
||||
/**
|
||||
* Get a reference to the one and only output stream for this instance.
|
||||
* The zero-based startPosition argument is used is used to set the initial
|
||||
* write cursor position. The startPosition cannot be set larger than the
|
||||
* current buffer length. Calling this method has the side-effect of
|
||||
* truncating the internal buffer to startPosition bytes.
|
||||
*/
|
||||
nsIOutputStream getOutputStream(in PRInt32 startPosition);
|
||||
|
||||
/**
|
||||
* Create a new input stream to read data (written by the singleton output
|
||||
* stream) from the internal buffer. Multiple, independent input streams
|
||||
* can be created.
|
||||
*/
|
||||
nsIInputStream newInputStream(in PRInt32 startPosition);
|
||||
|
||||
/**
|
||||
* The length attribute indicates the total number of bytes stored in the
|
||||
* nsIStorageStream internal buffer, regardless of any consumption by input
|
||||
* streams. Assigning to the length field can be used to truncate the
|
||||
* buffer data, but can not be used when either the instance's output
|
||||
* stream is in use.
|
||||
*
|
||||
* @See #writeInProgress */
|
||||
attribute PRUint32 length;
|
||||
|
||||
/**
|
||||
* True, when output stream has not yet been Close'ed
|
||||
*/
|
||||
readonly attribute boolean writeInProgress;
|
||||
};
|
||||
|
||||
%{C++
|
||||
// Factory method
|
||||
NS_COM nsresult
|
||||
NS_NewStorageStream(PRUint32 segmentSize, PRUint32 maxSize, nsIStorageStream **result);
|
||||
%}
|
|
@ -0,0 +1,387 @@
|
|||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
* The contents of this file are subject to the Netscape Public
|
||||
* License Version 1.1 (the "License"); you may not use this file
|
||||
* except in compliance with the License. You may obtain a copy of
|
||||
* the License at http://www.mozilla.org/NPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS
|
||||
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
* implied. See the License for the specific language governing
|
||||
* rights and limitations under the License.
|
||||
*
|
||||
* The Original Code is Mozilla Communicator client code, released
|
||||
* March 31, 1998.
|
||||
*
|
||||
* The Initial Developer of the Original Code is Netscape
|
||||
* Communications Corporation. Portions created by Netscape are
|
||||
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
||||
* Rights Reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* The storage stream provides an internal buffer that can be filled by a
|
||||
* client using a single output stream. One or more independent input streams
|
||||
* can be created to read the data out non-destructively. The implementation
|
||||
* uses a segmented buffer internally to avoid realloc'ing of large buffers,
|
||||
* with the attendant performance loss and heap fragmentation.
|
||||
*/
|
||||
|
||||
#include "nsStorageStream.h"
|
||||
#include "nsSegmentedBuffer.h"
|
||||
#include "nsCOMPtr.h"
|
||||
#include "prbit.h"
|
||||
|
||||
nsStorageStream::nsStorageStream()
|
||||
: mSegmentedBuffer(0), mSegmentSize(0), mWriteInProgress(false),
|
||||
mWriteCursor(0), mSegmentEnd(0), mLogicalLength(0), mLastSegmentNum(-1)
|
||||
{
|
||||
NS_INIT_REFCNT();
|
||||
}
|
||||
|
||||
nsStorageStream::~nsStorageStream()
|
||||
{
|
||||
if (mSegmentedBuffer)
|
||||
delete mSegmentedBuffer;
|
||||
}
|
||||
|
||||
NS_IMPL_ADDREF(nsStorageStream)
|
||||
NS_IMPL_RELEASE(nsStorageStream)
|
||||
|
||||
// Multiple inheritance requires customized QI
|
||||
NS_IMETHODIMP
|
||||
nsStorageStream::QueryInterface(const nsIID& aIID, void** aInstancePtr)
|
||||
{
|
||||
if (aInstancePtr == nsnull)
|
||||
return NS_ERROR_NULL_POINTER;
|
||||
if (aIID.Equals(NS_GET_IID(nsIStorageStream)) ||
|
||||
aIID.Equals(NS_GET_IID(nsISupports))) {
|
||||
NS_ADDREF(this);
|
||||
*aInstancePtr = NS_STATIC_CAST(nsIStorageStream*, this);
|
||||
return NS_OK;
|
||||
} else if (aIID.Equals(NS_GET_IID(nsIOutputStream))) {
|
||||
NS_ADDREF(this);
|
||||
*aInstancePtr = NS_STATIC_CAST(nsIOutputStream*, this);
|
||||
return NS_OK;
|
||||
}
|
||||
return NS_NOINTERFACE;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsStorageStream::Init(PRUint32 segmentSize, PRUint32 maxSize,
|
||||
nsIAllocator *segmentAllocator)
|
||||
{
|
||||
mSegmentedBuffer = new nsSegmentedBuffer();
|
||||
if (!mSegmentedBuffer)
|
||||
return NS_ERROR_OUT_OF_MEMORY;
|
||||
|
||||
mSegmentSize = segmentSize;
|
||||
mSegmentSizeLog2 = PR_FloorLog2(segmentSize);
|
||||
|
||||
// Segment size must be a power of two
|
||||
if (mSegmentSize != ((PRUint32)1 << mSegmentSizeLog2))
|
||||
return NS_ERROR_INVALID_ARG;
|
||||
|
||||
return mSegmentedBuffer->Init(segmentSize, maxSize, segmentAllocator);
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsStorageStream::GetOutputStream(PRInt32 aStartingOffset,
|
||||
nsIOutputStream * *aOutputStream)
|
||||
{
|
||||
NS_ENSURE_ARG(aOutputStream);
|
||||
if (mWriteInProgress)
|
||||
return NS_ERROR_NOT_AVAILABLE;
|
||||
|
||||
nsresult rv = Seek(aStartingOffset);
|
||||
if (NS_FAILED(rv)) return rv;
|
||||
|
||||
// Enlarge the last segment in the buffer so that it is the same size as
|
||||
// all the other segments in the buffer. (It may have been realloc'ed
|
||||
// smaller in the Close() method.)
|
||||
if (mLastSegmentNum >= 0)
|
||||
mSegmentedBuffer->ReallocLastSegment(mSegmentSize);
|
||||
|
||||
NS_ADDREF(this);
|
||||
*aOutputStream = NS_STATIC_CAST(nsIOutputStream*, this);
|
||||
mWriteInProgress = true;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsStorageStream::Close()
|
||||
{
|
||||
mWriteInProgress = false;
|
||||
|
||||
PRInt32 segmentOffset = SegOffset(mLogicalLength);
|
||||
|
||||
// Shrink the final segment in the segmented buffer to the minimum size
|
||||
// needed to contain the data, so as to conserve memory.
|
||||
if (segmentOffset)
|
||||
mSegmentedBuffer->ReallocLastSegment(segmentOffset);
|
||||
|
||||
mWriteCursor = 0;
|
||||
mSegmentEnd = 0;
|
||||
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsStorageStream::Flush()
|
||||
{
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsStorageStream::Write(const char *aBuffer, PRUint32 aCount, PRUint32 *aNumWritten)
|
||||
{
|
||||
const char* readCursor;
|
||||
PRUint32 count, availableInSegment, remaining;
|
||||
nsresult rv = NS_OK;
|
||||
|
||||
NS_ENSURE_ARG_POINTER(aNumWritten);
|
||||
NS_ENSURE_ARG(aBuffer);
|
||||
|
||||
remaining = aCount;
|
||||
readCursor = aBuffer;
|
||||
while (remaining) {
|
||||
availableInSegment = mSegmentEnd - mWriteCursor;
|
||||
if (!availableInSegment) {
|
||||
mWriteCursor = mSegmentedBuffer->AppendNewSegment();
|
||||
mLastSegmentNum++;
|
||||
if (!mWriteCursor) {
|
||||
rv = NS_ERROR_OUT_OF_MEMORY;
|
||||
goto out;
|
||||
}
|
||||
mSegmentEnd = mWriteCursor + mSegmentSize;
|
||||
availableInSegment = mSegmentEnd - mWriteCursor;
|
||||
}
|
||||
|
||||
count = PR_MIN(availableInSegment, remaining);
|
||||
memcpy(mWriteCursor, readCursor, count);
|
||||
remaining -= count;
|
||||
readCursor += count;
|
||||
mWriteCursor += count;
|
||||
};
|
||||
|
||||
out:
|
||||
*aNumWritten = aCount - remaining;
|
||||
mLogicalLength += *aNumWritten;
|
||||
|
||||
return rv;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsStorageStream::GetLength(PRUint32 *aLength)
|
||||
{
|
||||
NS_ENSURE_ARG(aLength);
|
||||
*aLength = mLogicalLength;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
// Truncate the buffer by deleting the end segments
|
||||
NS_IMETHODIMP
|
||||
nsStorageStream::SetLength(PRUint32 aLength)
|
||||
{
|
||||
if (mWriteInProgress)
|
||||
return NS_ERROR_NOT_AVAILABLE;
|
||||
|
||||
if (aLength > mLogicalLength)
|
||||
return NS_ERROR_INVALID_ARG;
|
||||
|
||||
PRInt32 newLastSegmentNum = SegNum(aLength);
|
||||
PRInt32 segmentOffset = SegOffset(aLength);
|
||||
if (segmentOffset == 0)
|
||||
newLastSegmentNum--;
|
||||
|
||||
while (newLastSegmentNum < mLastSegmentNum) {
|
||||
mSegmentedBuffer->DeleteLastSegment();
|
||||
mLastSegmentNum--;
|
||||
}
|
||||
|
||||
mLogicalLength = aLength;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsStorageStream::GetWriteInProgress(PRBool *aWriteInProgress)
|
||||
{
|
||||
NS_ENSURE_ARG(aWriteInProgress);
|
||||
|
||||
*aWriteInProgress = mWriteInProgress;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_METHOD
|
||||
nsStorageStream::Seek(PRInt32 aPosition)
|
||||
{
|
||||
// An argument of -1 means "seek to end of stream"
|
||||
if (aPosition == -1)
|
||||
aPosition = mLogicalLength;
|
||||
|
||||
// Seeking beyond the buffer end is illegal
|
||||
if ((PRUint32)aPosition > mLogicalLength)
|
||||
return NS_ERROR_INVALID_ARG;
|
||||
|
||||
// Seeking backwards in the write stream results in truncation
|
||||
SetLength(aPosition);
|
||||
|
||||
// Special handling for seek to start-of-buffer
|
||||
if (aPosition == 0) {
|
||||
mWriteCursor = 0;
|
||||
mSegmentEnd = 0;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
// Segment may have changed, so reset pointers
|
||||
mWriteCursor = mSegmentedBuffer->GetSegment(mLastSegmentNum);
|
||||
mSegmentEnd = mWriteCursor + mSegmentSize;
|
||||
PRInt32 segmentOffset = SegOffset(aPosition);
|
||||
mWriteCursor += segmentOffset;
|
||||
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
// There can be many nsStorageInputStreams for a single nsStorageStream
|
||||
class nsStorageInputStream : public nsIInputStream
|
||||
{
|
||||
public:
|
||||
nsStorageInputStream(nsStorageStream *aStorageStream, PRUint32 aSegmentSize)
|
||||
: mStorageStream(aStorageStream), mReadCursor(0),
|
||||
mSegmentEnd(0), mLogicalCursor(0), mSegmentNum(0),
|
||||
mSegmentSize(aSegmentSize)
|
||||
{
|
||||
NS_ADDREF(mStorageStream);
|
||||
NS_INIT_REFCNT();
|
||||
}
|
||||
|
||||
virtual ~nsStorageInputStream()
|
||||
{
|
||||
NS_IF_RELEASE(mStorageStream);
|
||||
}
|
||||
|
||||
NS_DECL_ISUPPORTS
|
||||
NS_DECL_NSIBASESTREAM
|
||||
NS_DECL_NSIINPUTSTREAM
|
||||
|
||||
protected:
|
||||
|
||||
NS_METHOD Seek(PRUint32 aPosition);
|
||||
|
||||
friend class nsStorageStream;
|
||||
|
||||
private:
|
||||
const char* mReadCursor; // Next memory location to read byte, or NULL
|
||||
const char* mSegmentEnd; // One byte past end of current buffer segment
|
||||
PRUint32 mSegmentNum; // Segment number containing read cursor
|
||||
PRUint32 mSegmentSize; // All segments, except the last, are of this size
|
||||
PRUint32 mLogicalCursor; // Logical offset into stream
|
||||
nsStorageStream* mStorageStream;
|
||||
|
||||
PRUint32 SegNum(PRUint32 aPosition) {return aPosition >> mStorageStream->mSegmentSizeLog2;}
|
||||
PRUint32 SegOffset(PRUint32 aPosition) {return aPosition & (mSegmentSize - 1);}
|
||||
};
|
||||
|
||||
static NS_DEFINE_IID(kIInputStream, NS_IINPUTSTREAM_IID);
|
||||
NS_IMPL_ISUPPORTS(nsStorageInputStream, kIInputStream)
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsStorageStream::NewInputStream(PRInt32 aStartingOffset, nsIInputStream* *aInputStream)
|
||||
{
|
||||
nsStorageInputStream *inputStream = new nsStorageInputStream(this, mSegmentSize);
|
||||
if (!inputStream)
|
||||
return NS_ERROR_OUT_OF_MEMORY;
|
||||
|
||||
NS_ADDREF(inputStream);
|
||||
|
||||
if (aStartingOffset) {
|
||||
nsresult rv = inputStream->Seek(aStartingOffset);
|
||||
if (NS_FAILED(rv)) {
|
||||
NS_RELEASE(inputStream);
|
||||
return rv;
|
||||
}
|
||||
}
|
||||
|
||||
*aInputStream = inputStream;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsStorageInputStream::Close()
|
||||
{
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsStorageInputStream::Available(PRUint32 *aAvailable)
|
||||
{
|
||||
*aAvailable = mStorageStream->mLogicalLength - mLogicalCursor;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsStorageInputStream::Read(char* aBuffer, PRUint32 aCount, PRUint32 *aNumRead)
|
||||
{
|
||||
char* writeCursor;
|
||||
PRUint32 count, availableInSegment, remainingCapacity;
|
||||
|
||||
remainingCapacity = aCount;
|
||||
writeCursor = aBuffer;
|
||||
while (remainingCapacity) {
|
||||
availableInSegment = mSegmentEnd - mReadCursor;
|
||||
if (!availableInSegment) {
|
||||
PRUint32 available = mStorageStream->mLogicalLength - mLogicalCursor;
|
||||
if (!available)
|
||||
goto out;
|
||||
|
||||
mReadCursor = mStorageStream->mSegmentedBuffer->GetSegment(mSegmentNum++);
|
||||
mSegmentEnd = mReadCursor + PR_MIN(mSegmentSize, available);
|
||||
}
|
||||
|
||||
count = PR_MIN(availableInSegment, remainingCapacity);
|
||||
memcpy(writeCursor, mReadCursor, count);
|
||||
remainingCapacity -= count;
|
||||
mReadCursor += count;
|
||||
writeCursor += count;
|
||||
mLogicalCursor += count;
|
||||
};
|
||||
|
||||
out:
|
||||
*aNumRead = aCount - remainingCapacity;
|
||||
|
||||
if (*aNumRead == 0)
|
||||
return NS_BASE_STREAM_WOULD_BLOCK;
|
||||
else
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_METHOD
|
||||
nsStorageInputStream::Seek(PRUint32 aPosition)
|
||||
{
|
||||
PRUint32 length = mStorageStream->mLogicalLength;
|
||||
if (aPosition >= length)
|
||||
return NS_ERROR_INVALID_ARG;
|
||||
|
||||
mSegmentNum = SegNum(aPosition);
|
||||
PRUint32 segmentOffset = SegOffset(aPosition);
|
||||
mReadCursor = mStorageStream->mSegmentedBuffer->GetSegment(mSegmentNum) +
|
||||
segmentOffset;
|
||||
PRUint32 available = length - aPosition;
|
||||
mSegmentEnd = mReadCursor + PR_MIN(mSegmentSize - segmentOffset, available);
|
||||
mLogicalCursor = aPosition;
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_COM nsresult
|
||||
NS_NewStorageStream(PRUint32 segmentSize, PRUint32 maxSize, nsIStorageStream **result)
|
||||
{
|
||||
NS_ENSURE_ARG(result);
|
||||
|
||||
nsStorageStream* storageStream = new nsStorageStream();
|
||||
if (!storageStream) return NS_ERROR_OUT_OF_MEMORY;
|
||||
|
||||
storageStream->Init(segmentSize, maxSize);
|
||||
NS_ADDREF(storageStream);
|
||||
*result = storageStream;
|
||||
return NS_OK;
|
||||
}
|
|
@ -0,0 +1,71 @@
|
|||
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||
* The contents of this file are subject to the Netscape Public
|
||||
* License Version 1.1 (the "License"); you may not use this file
|
||||
* except in compliance with the License. You may obtain a copy of
|
||||
* the License at http://www.mozilla.org/NPL/
|
||||
*
|
||||
* Software distributed under the License is distributed on an "AS
|
||||
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||||
* implied. See the License for the specific language governing
|
||||
* rights and limitations under the License.
|
||||
*
|
||||
* The Original Code is Mozilla Communicator client code, released
|
||||
* March 31, 1998.
|
||||
*
|
||||
* The Initial Developer of the Original Code is Netscape
|
||||
* Communications Corporation. Portions created by Netscape are
|
||||
* Copyright (C) 1998-1999 Netscape Communications Corporation. All
|
||||
* Rights Reserved.
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
* The storage stream provides an internal buffer that can be filled by a
|
||||
* client using a single output stream. One or more independent input streams
|
||||
* can be created to read the data out non-destructively. The implementation
|
||||
* uses a segmented buffer internally to avoid realloc'ing of large buffers,
|
||||
* with the attendant performance loss and heap fragmentation.
|
||||
*/
|
||||
|
||||
#ifndef _nsStorageStream_h_
|
||||
#define _nsStorageStream_h_
|
||||
|
||||
#include "nsIStorageStream.h"
|
||||
#include "nsIOutputStream.h"
|
||||
|
||||
class nsSegmentedBuffer;
|
||||
|
||||
class NS_COM nsStorageStream : public nsIStorageStream,
|
||||
public nsIOutputStream
|
||||
{
|
||||
public:
|
||||
nsStorageStream();
|
||||
~nsStorageStream();
|
||||
|
||||
NS_METHOD Init(PRUint32 segmentSize, PRUint32 maxSize, nsIAllocator *segmentAllocator = 0);
|
||||
|
||||
NS_DECL_ISUPPORTS
|
||||
NS_DECL_NSISTORAGESTREAM
|
||||
NS_DECL_NSIBASESTREAM
|
||||
NS_DECL_NSIOUTPUTSTREAM
|
||||
|
||||
friend class nsStorageInputStream;
|
||||
|
||||
private:
|
||||
nsSegmentedBuffer* mSegmentedBuffer;
|
||||
PRUint32 mSegmentSize; // All segments, except possibly the last, are of this size
|
||||
// Must be power-of-2
|
||||
PRUint32 mSegmentSizeLog2; // log2(mSegmentSize)
|
||||
bool mWriteInProgress; // true, if an un-Close'ed output stream exists
|
||||
PRInt32 mLastSegmentNum; // Last segment # in use, -1 initially
|
||||
char* mWriteCursor; // Pointer to next byte to be written
|
||||
char* mSegmentEnd; // Pointer to one byte after end of segment
|
||||
// containing the write cursor
|
||||
PRUint32 mLogicalLength; // Number of bytes written to stream
|
||||
|
||||
NS_METHOD Seek(PRInt32 aPosition);
|
||||
PRUint32 SegNum(PRUint32 aPosition) {return aPosition >> mSegmentSizeLog2;}
|
||||
PRUint32 SegOffset(PRUint32 aPosition) {return aPosition & (mSegmentSize - 1);}
|
||||
};
|
||||
|
||||
#endif // _nsStorageStream_h_
|
Загрузка…
Ссылка в новой задаче