2014-05-05 21:30:43 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2012-05-21 15:12:37 +04:00
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-11-16 22:14:08 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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"
|
2000-06-03 13:46:12 +04:00
|
|
|
#include "nsMemory.h"
|
2012-06-06 03:51:58 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
1999-11-16 22:14:08 +03:00
|
|
|
|
2004-03-02 04:11:06 +03:00
|
|
|
#define NS_STORAGESTREAM_CID \
|
|
|
|
{ /* 669a9795-6ff7-4ed4-9150-c34ce2971b63 */ \
|
|
|
|
0x669a9795, \
|
|
|
|
0x6ff7, \
|
|
|
|
0x4ed4, \
|
|
|
|
{0x91, 0x50, 0xc3, 0x4c, 0xe2, 0x97, 0x1b, 0x63} \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define NS_STORAGESTREAM_CONTRACTID "@mozilla.org/storagestream;1"
|
|
|
|
|
1999-11-16 22:14:08 +03:00
|
|
|
class nsSegmentedBuffer;
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsStorageStream final
|
2014-05-15 00:15:46 +04:00
|
|
|
: public nsIStorageStream
|
|
|
|
, public nsIOutputStream
|
1999-11-16 22:14:08 +03:00
|
|
|
{
|
|
|
|
public:
|
2014-05-05 21:30:43 +04:00
|
|
|
nsStorageStream();
|
1999-11-16 22:14:08 +03:00
|
|
|
|
2014-05-05 21:30:43 +04:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
|
|
|
NS_DECL_NSISTORAGESTREAM
|
|
|
|
NS_DECL_NSIOUTPUTSTREAM
|
|
|
|
|
|
|
|
friend class nsStorageInputStream;
|
1999-11-16 22:14:08 +03:00
|
|
|
|
|
|
|
private:
|
2014-05-05 21:30:43 +04:00
|
|
|
~nsStorageStream();
|
2004-01-15 09:14:18 +03:00
|
|
|
|
2014-05-05 21:30:43 +04:00
|
|
|
nsSegmentedBuffer* mSegmentedBuffer;
|
|
|
|
uint32_t mSegmentSize; // All segments, except possibly the last, are of this size
|
|
|
|
// Must be power-of-2
|
|
|
|
uint32_t mSegmentSizeLog2; // log2(mSegmentSize)
|
|
|
|
bool mWriteInProgress; // true, if an un-Close'ed output stream exists
|
|
|
|
int32_t 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
|
|
|
|
uint32_t mLogicalLength; // Number of bytes written to stream
|
1999-11-16 22:14:08 +03:00
|
|
|
|
2016-08-15 07:30:32 +03:00
|
|
|
nsresult Seek(int32_t aPosition);
|
2014-05-15 00:15:46 +04:00
|
|
|
uint32_t SegNum(uint32_t aPosition)
|
|
|
|
{
|
|
|
|
return aPosition >> mSegmentSizeLog2;
|
|
|
|
}
|
|
|
|
uint32_t SegOffset(uint32_t aPosition)
|
|
|
|
{
|
|
|
|
return aPosition & (mSegmentSize - 1);
|
|
|
|
}
|
1999-11-16 22:14:08 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _nsStorageStream_h_
|