OLD | NEW |
| (Empty) |
1 // Copyright 2013 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. | |
4 | |
5 #ifndef MOJO_EDK_SYSTEM_LOCAL_DATA_PIPE_H_ | |
6 #define MOJO_EDK_SYSTEM_LOCAL_DATA_PIPE_H_ | |
7 | |
8 #include "base/macros.h" | |
9 #include "base/memory/aligned_memory.h" | |
10 #include "base/memory/ref_counted.h" | |
11 #include "base/memory/scoped_ptr.h" | |
12 #include "mojo/edk/system/data_pipe.h" | |
13 #include "mojo/edk/system/system_impl_export.h" | |
14 | |
15 namespace mojo { | |
16 namespace system { | |
17 | |
18 // |LocalDataPipe| is a subclass that "implements" |DataPipe| for data pipes | |
19 // whose producer and consumer are both local. This class is thread-safe (with | |
20 // protection provided by |DataPipe|'s |lock_|. | |
21 class MOJO_SYSTEM_IMPL_EXPORT LocalDataPipe : public DataPipe { | |
22 public: | |
23 // |validated_options| should be the output of |DataPipe::ValidateOptions()|. | |
24 // In particular: |struct_size| is ignored (so |validated_options| must be the | |
25 // current version of the struct) and |capacity_num_bytes| must be nonzero. | |
26 explicit LocalDataPipe(const MojoCreateDataPipeOptions& validated_options); | |
27 | |
28 private: | |
29 friend class base::RefCountedThreadSafe<LocalDataPipe>; | |
30 ~LocalDataPipe() override; | |
31 | |
32 // |DataPipe| implementation: | |
33 void ProducerCloseImplNoLock() override; | |
34 MojoResult ProducerWriteDataImplNoLock( | |
35 UserPointer<const void> elements, | |
36 UserPointer<uint32_t> num_bytes, | |
37 uint32_t max_num_bytes_to_write, | |
38 uint32_t min_num_bytes_to_write) override; | |
39 MojoResult ProducerBeginWriteDataImplNoLock( | |
40 UserPointer<void*> buffer, | |
41 UserPointer<uint32_t> buffer_num_bytes, | |
42 uint32_t min_num_bytes_to_write) override; | |
43 MojoResult ProducerEndWriteDataImplNoLock( | |
44 uint32_t num_bytes_written) override; | |
45 HandleSignalsState ProducerGetHandleSignalsStateImplNoLock() const override; | |
46 void ProducerStartSerializeImplNoLock(Channel* channel, | |
47 size_t* max_size, | |
48 size_t* max_platform_handles) override; | |
49 bool ProducerEndSerializeImplNoLock( | |
50 Channel* channel, | |
51 void* destination, | |
52 size_t* actual_size, | |
53 embedder::PlatformHandleVector* platform_handles) override; | |
54 void ConsumerCloseImplNoLock() override; | |
55 MojoResult ConsumerReadDataImplNoLock(UserPointer<void> elements, | |
56 UserPointer<uint32_t> num_bytes, | |
57 uint32_t max_num_bytes_to_read, | |
58 uint32_t min_num_bytes_to_read, | |
59 bool peek) override; | |
60 MojoResult ConsumerDiscardDataImplNoLock( | |
61 UserPointer<uint32_t> num_bytes, | |
62 uint32_t max_num_bytes_to_discard, | |
63 uint32_t min_num_bytes_to_discard) override; | |
64 MojoResult ConsumerQueryDataImplNoLock( | |
65 UserPointer<uint32_t> num_bytes) override; | |
66 MojoResult ConsumerBeginReadDataImplNoLock( | |
67 UserPointer<const void*> buffer, | |
68 UserPointer<uint32_t> buffer_num_bytes, | |
69 uint32_t min_num_bytes_to_read) override; | |
70 MojoResult ConsumerEndReadDataImplNoLock(uint32_t num_bytes_read) override; | |
71 HandleSignalsState ConsumerGetHandleSignalsStateImplNoLock() const override; | |
72 void ConsumerStartSerializeImplNoLock(Channel* channel, | |
73 size_t* max_size, | |
74 size_t* max_platform_handles) override; | |
75 bool ConsumerEndSerializeImplNoLock( | |
76 Channel* channel, | |
77 void* destination, | |
78 size_t* actual_size, | |
79 embedder::PlatformHandleVector* platform_handles) override; | |
80 | |
81 void EnsureBufferNoLock(); | |
82 void DestroyBufferNoLock(); | |
83 | |
84 // Get the maximum (single) write/read size right now (in number of elements); | |
85 // result fits in a |uint32_t|. | |
86 size_t GetMaxNumBytesToWriteNoLock(); | |
87 size_t GetMaxNumBytesToReadNoLock(); | |
88 | |
89 // Marks the given number of bytes as consumed/discarded. |num_bytes| must be | |
90 // greater than |current_num_bytes_|. | |
91 void MarkDataAsConsumedNoLock(size_t num_bytes); | |
92 | |
93 // The members below are protected by |DataPipe|'s |lock_|: | |
94 scoped_ptr<char, base::AlignedFreeDeleter> buffer_; | |
95 // Circular buffer. | |
96 size_t start_index_; | |
97 size_t current_num_bytes_; | |
98 | |
99 DISALLOW_COPY_AND_ASSIGN(LocalDataPipe); | |
100 }; | |
101 | |
102 } // namespace system | |
103 } // namespace mojo | |
104 | |
105 #endif // MOJO_EDK_SYSTEM_LOCAL_DATA_PIPE_H_ | |
OLD | NEW |