Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / net / base / io_buffer.h
blobd157963e6f9712d63cce5a985b6e37eb6f98cba6
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef NET_BASE_IO_BUFFER_H_
6 #define NET_BASE_IO_BUFFER_H_
8 #include <string>
10 #include "base/memory/ref_counted.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "base/pickle.h"
13 #include "net/base/net_export.h"
15 namespace net {
17 // IOBuffers are reference counted data buffers used for easier asynchronous
18 // IO handling.
20 // They are often used as the destination buffers for Read() operations, or as
21 // the source buffers for Write() operations.
23 // IMPORTANT: Never re-use an IOBuffer after cancelling the IO operation that
24 // was using it, since this may lead to memory corruption!
26 // -----------------------
27 // Ownership of IOBuffers:
28 // -----------------------
30 // Although IOBuffers are RefCountedThreadSafe, they are not intended to be
31 // used as a shared buffer, nor should they be used simultaneously across
32 // threads. The fact that they are reference counted is an implementation
33 // detail for allowing them to outlive cancellation of asynchronous
34 // operations.
36 // Instead, think of the underlying |char*| buffer contained by the IOBuffer
37 // as having exactly one owner at a time.
39 // Whenever you call an asynchronous operation that takes an IOBuffer,
40 // ownership is implicitly transferred to the called function, until the
41 // operation has completed (at which point it transfers back to the caller).
43 // ==> The IOBuffer's data should NOT be manipulated, destroyed, or read
44 // until the operation has completed.
46 // ==> Cancellation does NOT count as completion. If an operation using
47 // an IOBuffer is cancelled, the caller should release their
48 // reference to this IOBuffer at the time of cancellation since
49 // they can no longer use it.
51 // For instance, if you were to call a Read() operation on some class which
52 // takes an IOBuffer, and then delete that class (which generally will
53 // trigger cancellation), the IOBuffer which had been passed to Read() should
54 // never be re-used.
56 // This usage contract is assumed by any API which takes an IOBuffer, even
57 // though it may not be explicitly mentioned in the function's comments.
59 // -----------------------
60 // Motivation
61 // -----------------------
63 // The motivation for transferring ownership during cancellation is
64 // to make it easier to work with un-cancellable operations.
66 // For instance, let's say under the hood your API called out to the
67 // operating system's synchronous ReadFile() function on a worker thread.
68 // When cancelling through our asynchronous interface, we have no way of
69 // actually aborting the in progress ReadFile(). We must let it keep running,
70 // and hence the buffer it was reading into must remain alive. Using
71 // reference counting we can add a reference to the IOBuffer and make sure
72 // it is not destroyed until after the synchronous operation has completed.
73 class NET_EXPORT IOBuffer : public base::RefCountedThreadSafe<IOBuffer> {
74 public:
75 IOBuffer();
77 // TODO(eroman): Deprecated. Use the size_t flavor instead. crbug.com/488553
78 explicit IOBuffer(int buffer_size);
79 explicit IOBuffer(size_t buffer_size);
81 char* data() { return data_; }
83 protected:
84 friend class base::RefCountedThreadSafe<IOBuffer>;
86 // Only allow derived classes to specify data_.
87 // In all other cases, we own data_, and must delete it at destruction time.
88 explicit IOBuffer(char* data);
90 virtual ~IOBuffer();
92 char* data_;
95 // This version stores the size of the buffer so that the creator of the object
96 // doesn't have to keep track of that value.
97 // NOTE: This doesn't mean that we want to stop sending the size as an explicit
98 // argument to IO functions. Please keep using IOBuffer* for API declarations.
99 class NET_EXPORT IOBufferWithSize : public IOBuffer {
100 public:
101 // TODO(eroman): Deprecated. Use the size_t flavor instead. crbug.com/488553
102 explicit IOBufferWithSize(int size);
103 explicit IOBufferWithSize(size_t size);
105 int size() const { return size_; }
107 protected:
108 // TODO(eroman): Deprecated. Use the size_t flavor instead. crbug.com/488553
109 IOBufferWithSize(char* data, int size);
111 // Purpose of this constructor is to give a subclass access to the base class
112 // constructor IOBuffer(char*) thus allowing subclass to use underlying
113 // memory it does not own.
114 IOBufferWithSize(char* data, size_t size);
115 ~IOBufferWithSize() override;
117 int size_;
120 // This is a read only IOBuffer. The data is stored in a string and
121 // the IOBuffer interface does not provide a proper way to modify it.
122 class NET_EXPORT StringIOBuffer : public IOBuffer {
123 public:
124 explicit StringIOBuffer(const std::string& s);
125 explicit StringIOBuffer(scoped_ptr<std::string> s);
127 int size() const { return static_cast<int>(string_data_.size()); }
129 private:
130 ~StringIOBuffer() override;
132 std::string string_data_;
135 // This version wraps an existing IOBuffer and provides convenient functions
136 // to progressively read all the data.
138 // DrainableIOBuffer is useful when you have an IOBuffer that contains data
139 // to be written progressively, and Write() function takes an IOBuffer rather
140 // than char*. DrainableIOBuffer can be used as follows:
142 // // payload is the IOBuffer containing the data to be written.
143 // buf = new DrainableIOBuffer(payload, payload_size);
145 // while (buf->BytesRemaining() > 0) {
146 // // Write() takes an IOBuffer. If it takes char*, we could
147 // // simply use the regular IOBuffer like payload->data() + offset.
148 // int bytes_written = Write(buf, buf->BytesRemaining());
149 // buf->DidConsume(bytes_written);
150 // }
152 class NET_EXPORT DrainableIOBuffer : public IOBuffer {
153 public:
154 // TODO(eroman): Deprecated. Use the size_t flavor instead. crbug.com/488553
155 DrainableIOBuffer(IOBuffer* base, int size);
156 DrainableIOBuffer(IOBuffer* base, size_t size);
158 // DidConsume() changes the |data_| pointer so that |data_| always points
159 // to the first unconsumed byte.
160 void DidConsume(int bytes);
162 // Returns the number of unconsumed bytes.
163 int BytesRemaining() const;
165 // Returns the number of consumed bytes.
166 int BytesConsumed() const;
168 // Seeks to an arbitrary point in the buffer. The notion of bytes consumed
169 // and remaining are updated appropriately.
170 void SetOffset(int bytes);
172 int size() const { return size_; }
174 private:
175 ~DrainableIOBuffer() override;
177 scoped_refptr<IOBuffer> base_;
178 int size_;
179 int used_;
182 // This version provides a resizable buffer and a changeable offset.
184 // GrowableIOBuffer is useful when you read data progressively without
185 // knowing the total size in advance. GrowableIOBuffer can be used as
186 // follows:
188 // buf = new GrowableIOBuffer;
189 // buf->SetCapacity(1024); // Initial capacity.
191 // while (!some_stream->IsEOF()) {
192 // // Double the capacity if the remaining capacity is empty.
193 // if (buf->RemainingCapacity() == 0)
194 // buf->SetCapacity(buf->capacity() * 2);
195 // int bytes_read = some_stream->Read(buf, buf->RemainingCapacity());
196 // buf->set_offset(buf->offset() + bytes_read);
197 // }
199 class NET_EXPORT GrowableIOBuffer : public IOBuffer {
200 public:
201 GrowableIOBuffer();
203 // realloc memory to the specified capacity.
204 void SetCapacity(int capacity);
205 int capacity() { return capacity_; }
207 // |offset| moves the |data_| pointer, allowing "seeking" in the data.
208 void set_offset(int offset);
209 int offset() { return offset_; }
211 int RemainingCapacity();
212 char* StartOfBuffer();
214 private:
215 ~GrowableIOBuffer() override;
217 scoped_ptr<char, base::FreeDeleter> real_data_;
218 int capacity_;
219 int offset_;
222 // This versions allows a pickle to be used as the storage for a write-style
223 // operation, avoiding an extra data copy.
224 class NET_EXPORT PickledIOBuffer : public IOBuffer {
225 public:
226 PickledIOBuffer();
228 base::Pickle* pickle() { return &pickle_; }
230 // Signals that we are done writing to the pickle and we can use it for a
231 // write-style IO operation.
232 void Done();
234 private:
235 ~PickledIOBuffer() override;
237 base::Pickle pickle_;
240 // This class allows the creation of a temporary IOBuffer that doesn't really
241 // own the underlying buffer. Please use this class only as a last resort.
242 // A good example is the buffer for a synchronous operation, where we can be
243 // sure that nobody is keeping an extra reference to this object so the lifetime
244 // of the buffer can be completely managed by its intended owner.
245 class NET_EXPORT WrappedIOBuffer : public IOBuffer {
246 public:
247 explicit WrappedIOBuffer(const char* data);
249 protected:
250 ~WrappedIOBuffer() override;
253 } // namespace net
255 #endif // NET_BASE_IO_BUFFER_H_