Bumping manifests a=b2g-bump
[gecko.git] / xpcom / io / nsStorageStream.h
blobd4cf91fd5dd1e5267cf710d3563a4ed2a26acfa8
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /*
8 * The storage stream provides an internal buffer that can be filled by a
9 * client using a single output stream. One or more independent input streams
10 * can be created to read the data out non-destructively. The implementation
11 * uses a segmented buffer internally to avoid realloc'ing of large buffers,
12 * with the attendant performance loss and heap fragmentation.
15 #ifndef _nsStorageStream_h_
16 #define _nsStorageStream_h_
18 #include "nsIStorageStream.h"
19 #include "nsIOutputStream.h"
20 #include "nsMemory.h"
21 #include "mozilla/Attributes.h"
23 #define NS_STORAGESTREAM_CID \
24 { /* 669a9795-6ff7-4ed4-9150-c34ce2971b63 */ \
25 0x669a9795, \
26 0x6ff7, \
27 0x4ed4, \
28 {0x91, 0x50, 0xc3, 0x4c, 0xe2, 0x97, 0x1b, 0x63} \
31 #define NS_STORAGESTREAM_CONTRACTID "@mozilla.org/storagestream;1"
33 class nsSegmentedBuffer;
35 class nsStorageStream MOZ_FINAL
36 : public nsIStorageStream
37 , public nsIOutputStream
39 public:
40 nsStorageStream();
42 NS_DECL_THREADSAFE_ISUPPORTS
43 NS_DECL_NSISTORAGESTREAM
44 NS_DECL_NSIOUTPUTSTREAM
46 friend class nsStorageInputStream;
48 private:
49 ~nsStorageStream();
51 nsSegmentedBuffer* mSegmentedBuffer;
52 uint32_t mSegmentSize; // All segments, except possibly the last, are of this size
53 // Must be power-of-2
54 uint32_t mSegmentSizeLog2; // log2(mSegmentSize)
55 bool mWriteInProgress; // true, if an un-Close'ed output stream exists
56 int32_t mLastSegmentNum; // Last segment # in use, -1 initially
57 char* mWriteCursor; // Pointer to next byte to be written
58 char* mSegmentEnd; // Pointer to one byte after end of segment
59 // containing the write cursor
60 uint32_t mLogicalLength; // Number of bytes written to stream
62 NS_METHOD Seek(int32_t aPosition);
63 uint32_t SegNum(uint32_t aPosition)
65 return aPosition >> mSegmentSizeLog2;
67 uint32_t SegOffset(uint32_t aPosition)
69 return aPosition & (mSegmentSize - 1);
73 #endif // _nsStorageStream_h_