blob: 3de2886e5d4c742e79e8d870922027c1dda44e1d [file] [log] [blame]
[email protected]ce208f872012-03-07 20:42:561// Copyright (c) 2012 The Chromium Authors. All rights reserved.
license.botbf09a502008-08-24 00:55:552// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
initial.commitd7cae122008-07-26 21:49:384
5#ifndef BASE_PICKLE_H__
6#define BASE_PICKLE_H__
7
8#include <string>
9
[email protected]0bea7252011-08-05 15:34:0010#include "base/base_export.h"
initial.commitd7cae122008-07-26 21:49:3811#include "base/basictypes.h"
[email protected]ce208f872012-03-07 20:42:5612#include "base/compiler_specific.h"
[email protected]a918f872010-06-01 14:30:5113#include "base/gtest_prod_util.h"
initial.commitd7cae122008-07-26 21:49:3814#include "base/logging.h"
[email protected]d529cb02013-06-10 19:06:5715#include "base/strings/string16.h"
initial.commitd7cae122008-07-26 21:49:3816
[email protected]ce208f872012-03-07 20:42:5617class Pickle;
18
19// PickleIterator reads data from a Pickle. The Pickle object must remain valid
20// while the PickleIterator object is in use.
21class BASE_EXPORT PickleIterator {
22 public:
23 PickleIterator() : read_ptr_(NULL), read_end_ptr_(NULL) {}
24 explicit PickleIterator(const Pickle& pickle);
25
26 // Methods for reading the payload of the Pickle. To read from the start of
27 // the Pickle, create a PickleIterator from a Pickle. If successful, these
28 // methods return true. Otherwise, false is returned to indicate that the
29 // result could not be extracted.
30 bool ReadBool(bool* result) WARN_UNUSED_RESULT;
31 bool ReadInt(int* result) WARN_UNUSED_RESULT;
32 bool ReadLong(long* result) WARN_UNUSED_RESULT;
[email protected]ce208f872012-03-07 20:42:5633 bool ReadUInt16(uint16* result) WARN_UNUSED_RESULT;
34 bool ReadUInt32(uint32* result) WARN_UNUSED_RESULT;
35 bool ReadInt64(int64* result) WARN_UNUSED_RESULT;
36 bool ReadUInt64(uint64* result) WARN_UNUSED_RESULT;
[email protected]b1f61b032012-11-28 15:40:5837 bool ReadFloat(float* result) WARN_UNUSED_RESULT;
[email protected]ce208f872012-03-07 20:42:5638 bool ReadString(std::string* result) WARN_UNUSED_RESULT;
39 bool ReadWString(std::wstring* result) WARN_UNUSED_RESULT;
40 bool ReadString16(string16* result) WARN_UNUSED_RESULT;
41 bool ReadData(const char** data, int* length) WARN_UNUSED_RESULT;
42 bool ReadBytes(const char** data, int length) WARN_UNUSED_RESULT;
43
44 // Safer version of ReadInt() checks for the result not being negative.
45 // Use it for reading the object sizes.
46 bool ReadLength(int* result) WARN_UNUSED_RESULT {
47 return ReadInt(result) && *result >= 0;
48 }
49
50 // Skips bytes in the read buffer and returns true if there are at least
51 // num_bytes available. Otherwise, does nothing and returns false.
52 bool SkipBytes(int num_bytes) WARN_UNUSED_RESULT {
53 return !!GetReadPointerAndAdvance(num_bytes);
54 }
55
56 private:
57 // Aligns 'i' by rounding it up to the next multiple of 'alignment'
58 static size_t AlignInt(size_t i, int alignment) {
59 return i + (alignment - (i % alignment)) % alignment;
60 }
61
62 // Read Type from Pickle.
63 template <typename Type>
64 inline bool ReadBuiltinType(Type* result);
65
66 // Get read pointer for Type and advance read pointer.
67 template<typename Type>
68 inline const char* GetReadPointerAndAdvance();
69
70 // Get read pointer for |num_bytes| and advance read pointer. This method
71 // checks num_bytes for negativity and wrapping.
72 const char* GetReadPointerAndAdvance(int num_bytes);
73
74 // Get read pointer for (num_elements * size_element) bytes and advance read
75 // pointer. This method checks for int overflow, negativity and wrapping.
76 inline const char* GetReadPointerAndAdvance(int num_elements,
77 size_t size_element);
78
79 // Pointers to the Pickle data.
80 const char* read_ptr_;
81 const char* read_end_ptr_;
82
83 FRIEND_TEST_ALL_PREFIXES(PickleTest, GetReadPointerAndAdvance);
84};
85
initial.commitd7cae122008-07-26 21:49:3886// This class provides facilities for basic binary value packing and unpacking.
87//
88// The Pickle class supports appending primitive values (ints, strings, etc.)
89// to a pickle instance. The Pickle instance grows its internal memory buffer
90// dynamically to hold the sequence of primitive values. The internal memory
91// buffer is exposed as the "data" of the Pickle. This "data" can be passed
92// to a Pickle object to initialize it for reading.
93//
94// When reading from a Pickle object, it is important for the consumer to know
95// what value types to read and in what order to read them as the Pickle does
96// not keep track of the type of data written to it.
97//
98// The Pickle's data has a header which contains the size of the Pickle's
99// payload. It can optionally support additional space in the header. That
100// space is controlled by the header_size parameter passed to the Pickle
101// constructor.
102//
[email protected]0bea7252011-08-05 15:34:00103class BASE_EXPORT Pickle {
initial.commitd7cae122008-07-26 21:49:38104 public:
initial.commitd7cae122008-07-26 21:49:38105 // Initialize a Pickle object using the default header size.
106 Pickle();
107
108 // Initialize a Pickle object with the specified header size in bytes, which
109 // must be greater-than-or-equal-to sizeof(Pickle::Header). The header size
110 // will be rounded up to ensure that the header size is 32bit-aligned.
111 explicit Pickle(int header_size);
112
113 // Initializes a Pickle from a const block of data. The data is not copied;
114 // instead the data is merely referenced by this Pickle. Only const methods
115 // should be used on the Pickle when initialized this way. The header
116 // padding size is deduced from the data length.
117 Pickle(const char* data, int data_len);
118
119 // Initializes a Pickle as a deep copy of another Pickle.
120 Pickle(const Pickle& other);
121
[email protected]f60c32b2011-09-25 03:08:13122 // Note: There are no virtual methods in this class. This destructor is
123 // virtual as an element of defensive coding. Other classes have derived from
124 // this class, and there is a *chance* that they will cast into this base
125 // class before destruction. At least one such class does have a virtual
126 // destructor, suggesting at least some need to call more derived destructors.
[email protected]a502bbe72011-01-07 18:06:45127 virtual ~Pickle();
128
initial.commitd7cae122008-07-26 21:49:38129 // Performs a deep copy.
130 Pickle& operator=(const Pickle& other);
131
132 // Returns the size of the Pickle's data.
[email protected]8a861402011-01-28 19:59:11133 size_t size() const { return header_size_ + header_->payload_size; }
initial.commitd7cae122008-07-26 21:49:38134
135 // Returns the data for this Pickle.
136 const void* data() const { return header_; }
137
[email protected]ce208f872012-03-07 20:42:56138 // For compatibility, these older style read methods pass through to the
139 // PickleIterator methods.
140 // TODO(jbates) Remove these methods.
141 bool ReadBool(PickleIterator* iter, bool* result) const {
142 return iter->ReadBool(result);
143 }
144 bool ReadInt(PickleIterator* iter, int* result) const {
145 return iter->ReadInt(result);
146 }
147 bool ReadLong(PickleIterator* iter, long* result) const {
148 return iter->ReadLong(result);
149 }
[email protected]ce208f872012-03-07 20:42:56150 bool ReadUInt16(PickleIterator* iter, uint16* result) const {
151 return iter->ReadUInt16(result);
152 }
153 bool ReadUInt32(PickleIterator* iter, uint32* result) const {
154 return iter->ReadUInt32(result);
155 }
156 bool ReadInt64(PickleIterator* iter, int64* result) const {
157 return iter->ReadInt64(result);
158 }
159 bool ReadUInt64(PickleIterator* iter, uint64* result) const {
160 return iter->ReadUInt64(result);
161 }
[email protected]b1f61b032012-11-28 15:40:58162 bool ReadFloat(PickleIterator* iter, float* result) const {
163 return iter->ReadFloat(result);
164 }
[email protected]ce208f872012-03-07 20:42:56165 bool ReadString(PickleIterator* iter, std::string* result) const {
166 return iter->ReadString(result);
167 }
168 bool ReadWString(PickleIterator* iter, std::wstring* result) const {
169 return iter->ReadWString(result);
170 }
171 bool ReadString16(PickleIterator* iter, string16* result) const {
172 return iter->ReadString16(result);
173 }
[email protected]34d48612012-06-29 00:05:04174 // A pointer to the data will be placed in *data, and the length will be
175 // placed in *length. This buffer will be into the message's buffer so will
176 // be scoped to the lifetime of the message (or until the message data is
177 // mutated).
[email protected]ce208f872012-03-07 20:42:56178 bool ReadData(PickleIterator* iter, const char** data, int* length) const {
179 return iter->ReadData(data, length);
180 }
[email protected]34d48612012-06-29 00:05:04181 // A pointer to the data will be placed in *data. The caller specifies the
182 // number of bytes to read, and ReadBytes will validate this length. The
183 // returned buffer will be into the message's buffer so will be scoped to the
184 // lifetime of the message (or until the message data is mutated).
[email protected]ce208f872012-03-07 20:42:56185 bool ReadBytes(PickleIterator* iter, const char** data, int length) const {
186 return iter->ReadBytes(data, length);
187 }
initial.commitd7cae122008-07-26 21:49:38188
189 // Safer version of ReadInt() checks for the result not being negative.
190 // Use it for reading the object sizes.
[email protected]ce208f872012-03-07 20:42:56191 bool ReadLength(PickleIterator* iter, int* result) const {
192 return iter->ReadLength(result);
193 }
initial.commitd7cae122008-07-26 21:49:38194
195 // Methods for adding to the payload of the Pickle. These values are
196 // appended to the end of the Pickle's payload. When reading values from a
197 // Pickle, it is important to read them in the order in which they were added
198 // to the Pickle.
199 bool WriteBool(bool value) {
200 return WriteInt(value ? 1 : 0);
201 }
202 bool WriteInt(int value) {
203 return WriteBytes(&value, sizeof(value));
204 }
[email protected]c272d082012-03-23 00:03:10205 // WARNING: DO NOT USE THIS METHOD IF PICKLES ARE PERSISTED IN ANY WAY.
206 // It will write whatever a "long" is on this architecture. On 32-bit
207 // platforms, it is 32 bits. On 64-bit platforms, it is 64 bits. If persisted
208 // pickles are still around after upgrading to 64-bit, or if they are copied
209 // between dissimilar systems, YOUR PICKLES WILL HAVE GONE BAD.
210 bool WriteLongUsingDangerousNonPortableLessPersistableForm(long value) {
initial.commitd7cae122008-07-26 21:49:38211 return WriteBytes(&value, sizeof(value));
212 }
[email protected]6d81b482011-02-22 19:47:19213 bool WriteUInt16(uint16 value) {
214 return WriteBytes(&value, sizeof(value));
215 }
[email protected]48ce616a2008-12-29 18:55:18216 bool WriteUInt32(uint32 value) {
217 return WriteBytes(&value, sizeof(value));
218 }
initial.commitd7cae122008-07-26 21:49:38219 bool WriteInt64(int64 value) {
220 return WriteBytes(&value, sizeof(value));
221 }
[email protected]b7a5d992009-10-28 04:21:01222 bool WriteUInt64(uint64 value) {
223 return WriteBytes(&value, sizeof(value));
224 }
[email protected]b1f61b032012-11-28 15:40:58225 bool WriteFloat(float value) {
226 return WriteBytes(&value, sizeof(value));
227 }
initial.commitd7cae122008-07-26 21:49:38228 bool WriteString(const std::string& value);
229 bool WriteWString(const std::wstring& value);
[email protected]3a2a5d22009-03-04 03:36:36230 bool WriteString16(const string16& value);
[email protected]34d48612012-06-29 00:05:04231 // "Data" is a blob with a length. When you read it out you will be given the
232 // length. See also WriteBytes.
initial.commitd7cae122008-07-26 21:49:38233 bool WriteData(const char* data, int length);
[email protected]34d48612012-06-29 00:05:04234 // "Bytes" is a blob with no length. The caller must specify the lenght both
235 // when reading and writing. It is normally used to serialize PoD types of a
236 // known size. See also WriteData.
initial.commitd7cae122008-07-26 21:49:38237 bool WriteBytes(const void* data, int data_len);
238
239 // Same as WriteData, but allows the caller to write directly into the
240 // Pickle. This saves a copy in cases where the data is not already
241 // available in a buffer. The caller should take care to not write more
242 // than the length it declares it will. Use ReadData to get the data.
243 // Returns NULL on failure.
244 //
245 // The returned pointer will only be valid until the next write operation
246 // on this Pickle.
247 char* BeginWriteData(int length);
248
249 // For Pickles which contain variable length buffers (e.g. those created
250 // with BeginWriteData), the Pickle can
251 // be 'trimmed' if the amount of data required is less than originally
252 // requested. For example, you may have created a buffer with 10K of data,
253 // but decided to only fill 10 bytes of that data. Use this function
254 // to trim the buffer so that we don't send 9990 bytes of unused data.
255 // You cannot increase the size of the variable buffer; only shrink it.
256 // This function assumes that the length of the variable buffer has
257 // not been changed.
258 void TrimWriteData(int length);
259
[email protected]c9046af2008-08-06 20:35:17260 // Payload follows after allocation of Header (header size is customizable).
initial.commitd7cae122008-07-26 21:49:38261 struct Header {
[email protected]c9046af2008-08-06 20:35:17262 uint32 payload_size; // Specifies the size of the payload.
initial.commitd7cae122008-07-26 21:49:38263 };
264
265 // Returns the header, cast to a user-specified type T. The type T must be a
266 // subclass of Header and its size must correspond to the header_size passed
267 // to the Pickle constructor.
268 template <class T>
269 T* headerT() {
[email protected]5d2b4492011-03-01 02:48:05270 DCHECK_EQ(header_size_, sizeof(T));
initial.commitd7cae122008-07-26 21:49:38271 return static_cast<T*>(header_);
272 }
273 template <class T>
274 const T* headerT() const {
[email protected]5d2b4492011-03-01 02:48:05275 DCHECK_EQ(header_size_, sizeof(T));
initial.commitd7cae122008-07-26 21:49:38276 return static_cast<const T*>(header_);
277 }
278
[email protected]73d96dc2012-03-30 22:35:27279 // The payload is the pickle data immediately following the header.
initial.commitd7cae122008-07-26 21:49:38280 size_t payload_size() const { return header_->payload_size; }
[email protected]e00a6c0a2013-01-18 18:20:57281
initial.commitd7cae122008-07-26 21:49:38282 const char* payload() const {
283 return reinterpret_cast<const char*>(header_) + header_size_;
284 }
285
286 // Returns the address of the byte immediately following the currently valid
287 // header + payload.
initial.commitd7cae122008-07-26 21:49:38288 const char* end_of_payload() const {
[email protected]d87f8e6f2010-11-15 19:31:23289 // This object may be invalid.
290 return header_ ? payload() + payload_size() : NULL;
initial.commitd7cae122008-07-26 21:49:38291 }
292
[email protected]e00a6c0a2013-01-18 18:20:57293 protected:
294 char* mutable_payload() {
295 return reinterpret_cast<char*>(header_) + header_size_;
296 }
297
initial.commitd7cae122008-07-26 21:49:38298 size_t capacity() const {
299 return capacity_;
300 }
301
302 // Resizes the buffer for use when writing the specified amount of data. The
303 // location that the data should be written at is returned, or NULL if there
304 // was an error. Call EndWrite with the returned offset and the given length
305 // to pad out for the next write.
306 char* BeginWrite(size_t length);
307
308 // Completes the write operation by padding the data with NULL bytes until it
309 // is padded. Should be paired with BeginWrite, but it does not necessarily
310 // have to be called after the data is written.
311 void EndWrite(char* dest, int length);
312
313 // Resize the capacity, note that the input value should include the size of
314 // the header: new_capacity = sizeof(Header) + desired_payload_capacity.
315 // A realloc() failure will cause a Resize failure... and caller should check
316 // the return result for true (i.e., successful resizing).
317 bool Resize(size_t new_capacity);
318
319 // Aligns 'i' by rounding it up to the next multiple of 'alignment'
[email protected]c9046af2008-08-06 20:35:17320 static size_t AlignInt(size_t i, int alignment) {
initial.commitd7cae122008-07-26 21:49:38321 return i + (alignment - (i % alignment)) % alignment;
322 }
323
initial.commitd7cae122008-07-26 21:49:38324 // Find the end of the pickled data that starts at range_start. Returns NULL
325 // if the entire Pickle is not found in the given data range.
326 static const char* FindNext(size_t header_size,
327 const char* range_start,
328 const char* range_end);
329
330 // The allocation granularity of the payload.
331 static const int kPayloadUnit;
332
333 private:
[email protected]ce208f872012-03-07 20:42:56334 friend class PickleIterator;
335
initial.commitd7cae122008-07-26 21:49:38336 Header* header_;
337 size_t header_size_; // Supports extra data between header and payload.
338 // Allocation size of payload (or -1 if allocation is const).
339 size_t capacity_;
340 size_t variable_buffer_offset_; // IF non-zero, then offset to a buffer.
341
[email protected]a918f872010-06-01 14:30:51342 FRIEND_TEST_ALL_PREFIXES(PickleTest, Resize);
343 FRIEND_TEST_ALL_PREFIXES(PickleTest, FindNext);
[email protected]137d2372011-01-26 13:02:27344 FRIEND_TEST_ALL_PREFIXES(PickleTest, FindNextWithIncompleteHeader);
initial.commitd7cae122008-07-26 21:49:38345};
346
347#endif // BASE_PICKLE_H__