Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Side by Side Diff: mojo/edk/system/data_pipe_producer_dispatcher.h

Issue 2750373002: Revert of Mojo: Armed Watchers (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef MOJO_EDK_SYSTEM_DATA_PIPE_PRODUCER_DISPATCHER_H_ 5 #ifndef MOJO_EDK_SYSTEM_DATA_PIPE_PRODUCER_DISPATCHER_H_
6 #define MOJO_EDK_SYSTEM_DATA_PIPE_PRODUCER_DISPATCHER_H_ 6 #define MOJO_EDK_SYSTEM_DATA_PIPE_PRODUCER_DISPATCHER_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
11 #include <memory> 11 #include <memory>
12 12
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "base/synchronization/lock.h" 15 #include "base/synchronization/lock.h"
16 #include "mojo/edk/embedder/platform_handle_vector.h" 16 #include "mojo/edk/embedder/platform_handle_vector.h"
17 #include "mojo/edk/embedder/platform_shared_buffer.h" 17 #include "mojo/edk/embedder/platform_shared_buffer.h"
18 #include "mojo/edk/system/awakable_list.h" 18 #include "mojo/edk/system/awakable_list.h"
19 #include "mojo/edk/system/dispatcher.h" 19 #include "mojo/edk/system/dispatcher.h"
20 #include "mojo/edk/system/ports/port_ref.h" 20 #include "mojo/edk/system/ports/port_ref.h"
21 #include "mojo/edk/system/system_impl_export.h" 21 #include "mojo/edk/system/system_impl_export.h"
22 #include "mojo/edk/system/watcher_set.h"
23 22
24 namespace mojo { 23 namespace mojo {
25 namespace edk { 24 namespace edk {
26 25
27 struct DataPipeControlMessage; 26 struct DataPipeControlMessage;
28 class NodeController; 27 class NodeController;
29 28
30 // This is the Dispatcher implementation for the producer handle for data 29 // This is the Dispatcher implementation for the producer handle for data
31 // pipes created by the Mojo primitive MojoCreateDataPipe(). This class is 30 // pipes created by the Mojo primitive MojoCreateDataPipe(). This class is
32 // thread-safe. 31 // thread-safe.
33 class MOJO_SYSTEM_IMPL_EXPORT DataPipeProducerDispatcher final 32 class MOJO_SYSTEM_IMPL_EXPORT DataPipeProducerDispatcher final
34 : public Dispatcher { 33 : public Dispatcher {
35 public: 34 public:
36 DataPipeProducerDispatcher( 35 DataPipeProducerDispatcher(
37 NodeController* node_controller, 36 NodeController* node_controller,
38 const ports::PortRef& port, 37 const ports::PortRef& port,
39 scoped_refptr<PlatformSharedBuffer> shared_ring_buffer, 38 scoped_refptr<PlatformSharedBuffer> shared_ring_buffer,
40 const MojoCreateDataPipeOptions& options, 39 const MojoCreateDataPipeOptions& options,
41 bool initialized, 40 bool initialized,
42 uint64_t pipe_id); 41 uint64_t pipe_id);
43 42
44 // Dispatcher: 43 // Dispatcher:
45 Type GetType() const override; 44 Type GetType() const override;
46 MojoResult Close() override; 45 MojoResult Close() override;
46 MojoResult Watch(MojoHandleSignals signals,
47 const Watcher::WatchCallback& callback,
48 uintptr_t context) override;
49 MojoResult CancelWatch(uintptr_t context) override;
47 MojoResult WriteData(const void* elements, 50 MojoResult WriteData(const void* elements,
48 uint32_t* num_bytes, 51 uint32_t* num_bytes,
49 MojoReadDataFlags flags) override; 52 MojoReadDataFlags flags) override;
50 MojoResult BeginWriteData(void** buffer, 53 MojoResult BeginWriteData(void** buffer,
51 uint32_t* buffer_num_bytes, 54 uint32_t* buffer_num_bytes,
52 MojoWriteDataFlags flags) override; 55 MojoWriteDataFlags flags) override;
53 MojoResult EndWriteData(uint32_t num_bytes_written) override; 56 MojoResult EndWriteData(uint32_t num_bytes_written) override;
54 HandleSignalsState GetHandleSignalsState() const override; 57 HandleSignalsState GetHandleSignalsState() const override;
55 MojoResult AddWatcherRef(const scoped_refptr<WatcherDispatcher>& watcher,
56 uintptr_t context) override;
57 MojoResult RemoveWatcherRef(WatcherDispatcher* watcher,
58 uintptr_t context) override;
59 MojoResult AddAwakable(Awakable* awakable, 58 MojoResult AddAwakable(Awakable* awakable,
60 MojoHandleSignals signals, 59 MojoHandleSignals signals,
61 uintptr_t context, 60 uintptr_t context,
62 HandleSignalsState* signals_state) override; 61 HandleSignalsState* signals_state) override;
63 void RemoveAwakable(Awakable* awakable, 62 void RemoveAwakable(Awakable* awakable,
64 HandleSignalsState* signals_state) override; 63 HandleSignalsState* signals_state) override;
65 void StartSerialize(uint32_t* num_bytes, 64 void StartSerialize(uint32_t* num_bytes,
66 uint32_t* num_ports, 65 uint32_t* num_ports,
67 uint32_t* num_handles) override; 66 uint32_t* num_handles) override;
68 bool EndSerialize(void* destination, 67 bool EndSerialize(void* destination,
(...skipping 29 matching lines...) Expand all
98 97
99 const MojoCreateDataPipeOptions options_; 98 const MojoCreateDataPipeOptions options_;
100 NodeController* const node_controller_; 99 NodeController* const node_controller_;
101 const ports::PortRef control_port_; 100 const ports::PortRef control_port_;
102 const uint64_t pipe_id_; 101 const uint64_t pipe_id_;
103 102
104 // Guards access to the fields below. 103 // Guards access to the fields below.
105 mutable base::Lock lock_; 104 mutable base::Lock lock_;
106 105
107 AwakableList awakable_list_; 106 AwakableList awakable_list_;
108 WatcherSet watchers_;
109 107
110 bool buffer_requested_ = false; 108 bool buffer_requested_ = false;
111 109
112 scoped_refptr<PlatformSharedBuffer> shared_ring_buffer_; 110 scoped_refptr<PlatformSharedBuffer> shared_ring_buffer_;
113 std::unique_ptr<PlatformSharedBufferMapping> ring_buffer_mapping_; 111 std::unique_ptr<PlatformSharedBufferMapping> ring_buffer_mapping_;
114 ScopedPlatformHandle buffer_handle_for_transit_; 112 ScopedPlatformHandle buffer_handle_for_transit_;
115 113
116 bool in_transit_ = false; 114 bool in_transit_ = false;
117 bool is_closed_ = false; 115 bool is_closed_ = false;
118 bool peer_closed_ = false; 116 bool peer_closed_ = false;
119 bool transferred_ = false; 117 bool transferred_ = false;
120 bool in_two_phase_write_ = false; 118 bool in_two_phase_write_ = false;
121 119
122 uint32_t write_offset_ = 0; 120 uint32_t write_offset_ = 0;
123 uint32_t available_capacity_; 121 uint32_t available_capacity_;
124 122
125 DISALLOW_COPY_AND_ASSIGN(DataPipeProducerDispatcher); 123 DISALLOW_COPY_AND_ASSIGN(DataPipeProducerDispatcher);
126 }; 124 };
127 125
128 } // namespace edk 126 } // namespace edk
129 } // namespace mojo 127 } // namespace mojo
130 128
131 #endif // MOJO_EDK_SYSTEM_DATA_PIPE_PRODUCER_DISPATCHER_H_ 129 #endif // MOJO_EDK_SYSTEM_DATA_PIPE_PRODUCER_DISPATCHER_H_
OLDNEW
« no previous file with comments | « mojo/edk/system/data_pipe_consumer_dispatcher.cc ('k') | mojo/edk/system/data_pipe_producer_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698