blob: ab6a496894cc181a34fcec10863f0d9b8f0914c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_NETWORK_NET_ADAPTERS_
#define CONTENT_NETWORK_NET_ADAPTERS_
#include <stdint.h>
#include "base/macros.h"
#include "mojo/public/cpp/system/data_pipe.h"
#include "net/base/io_buffer.h"
namespace content {
// These adapters are used to transfer data between a Mojo pipe and the net
// library.
//
// Mojo pipe Data flow Network library
// ----------------------------------------------------------
// NetToMojoPendingBuffer <--- NetToMojoIOBuffer
//
// While the operation is in progress, the Mojo-side objects keep ownership
// of the Mojo pipe, which in turn is kept alive by the IOBuffer. This allows
// the request to potentially outlive the object managing the translation.
// Mojo side of a Net -> Mojo copy. The buffer is allocated by Mojo.
class NetToMojoPendingBuffer
: public base::RefCountedThreadSafe<NetToMojoPendingBuffer> {
public:
// Begins a two-phase write to the data pipe.
//
// On success, MOJO_RESULT_OK will be returned. The ownership of the given
// producer handle will be transferred to the new NetToMojoPendingBuffer that
// will be placed into *pending, and the size of the buffer will be in
// *num_bytes.
//
// On failure or MOJO_RESULT_SHOULD_WAIT, there will be no change to the
// handle, and *pending and *num_bytes will be unused.
static MojoResult BeginWrite(mojo::ScopedDataPipeProducerHandle* handle,
scoped_refptr<NetToMojoPendingBuffer>* pending,
uint32_t* num_bytes);
// Called to indicate the buffer is done being written to. Passes ownership
// of the pipe back to the caller.
mojo::ScopedDataPipeProducerHandle Complete(uint32_t num_bytes);
char* buffer() { return static_cast<char*>(buffer_); }
private:
friend class base::RefCountedThreadSafe<NetToMojoPendingBuffer>;
// Takes ownership of the handle.
NetToMojoPendingBuffer(mojo::ScopedDataPipeProducerHandle handle,
void* buffer);
~NetToMojoPendingBuffer();
mojo::ScopedDataPipeProducerHandle handle_;
void* buffer_;
DISALLOW_COPY_AND_ASSIGN(NetToMojoPendingBuffer);
};
// Net side of a Net -> Mojo copy. The data will be read from the network and
// copied into the buffer associated with the pending mojo write.
class NetToMojoIOBuffer : public net::WrappedIOBuffer {
public:
explicit NetToMojoIOBuffer(NetToMojoPendingBuffer* pending_buffer);
private:
~NetToMojoIOBuffer() override;
scoped_refptr<NetToMojoPendingBuffer> pending_buffer_;
};
} // namespace content
#endif // CONTENT_NETWORK_NET_ADAPTERS_
|