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_DATA_PIPE_CONSUMER_DISPATCHER_H_ |
| 6 #define MOJO_EDK_SYSTEM_DATA_PIPE_CONSUMER_DISPATCHER_H_ |
| 7 |
| 8 #include "base/memory/ref_counted.h" |
| 9 #include "mojo/edk/system/awakable_list.h" |
| 10 #include "mojo/edk/system/dispatcher.h" |
| 11 #include "mojo/edk/system/raw_channel.h" |
| 12 #include "mojo/edk/system/system_impl_export.h" |
| 13 #include "mojo/public/cpp/system/macros.h" |
| 14 |
| 15 namespace mojo { |
| 16 namespace edk { |
| 17 |
| 18 // This is the |Dispatcher| implementation for the consumer handle for data |
| 19 // pipes (created by the Mojo primitive |MojoCreateDataPipe()|). This class is |
| 20 // thread-safe. |
| 21 class MOJO_SYSTEM_IMPL_EXPORT DataPipeConsumerDispatcher final |
| 22 : public Dispatcher, public RawChannel::Delegate { |
| 23 public: |
| 24 static scoped_refptr<DataPipeConsumerDispatcher> Create( |
| 25 const MojoCreateDataPipeOptions& options) { |
| 26 return make_scoped_refptr(new DataPipeConsumerDispatcher(options)); |
| 27 } |
| 28 |
| 29 // Must be called before any other methods. |
| 30 void Init(ScopedPlatformHandle message_pipe); |
| 31 |
| 32 // |Dispatcher| public methods: |
| 33 Type GetType() const override; |
| 34 |
| 35 // The "opposite" of |SerializeAndClose()|. (Typically this is called by |
| 36 // |Dispatcher::Deserialize()|.) |
| 37 static scoped_refptr<DataPipeConsumerDispatcher> |
| 38 Deserialize(const void* source, |
| 39 size_t size, |
| 40 PlatformHandleVector* platform_handles); |
| 41 |
| 42 private: |
| 43 DataPipeConsumerDispatcher(const MojoCreateDataPipeOptions& options); |
| 44 ~DataPipeConsumerDispatcher() override; |
| 45 |
| 46 void InitOnIO(); |
| 47 void CloseOnIO(); |
| 48 |
| 49 // |Dispatcher| protected methods: |
| 50 void CancelAllAwakablesNoLock() override; |
| 51 void CloseImplNoLock() override; |
| 52 scoped_refptr<Dispatcher> CreateEquivalentDispatcherAndCloseImplNoLock() |
| 53 override; |
| 54 MojoResult ReadDataImplNoLock(void* elements, |
| 55 uint32_t* num_bytes, |
| 56 MojoReadDataFlags flags) override; |
| 57 MojoResult BeginReadDataImplNoLock(const void** buffer, |
| 58 uint32_t* buffer_num_bytes, |
| 59 MojoReadDataFlags flags) override; |
| 60 MojoResult EndReadDataImplNoLock(uint32_t num_bytes_read) override; |
| 61 HandleSignalsState GetHandleSignalsStateImplNoLock() const override; |
| 62 MojoResult AddAwakableImplNoLock(Awakable* awakable, |
| 63 MojoHandleSignals signals, |
| 64 uint32_t context, |
| 65 HandleSignalsState* signals_state) override; |
| 66 void RemoveAwakableImplNoLock(Awakable* awakable, |
| 67 HandleSignalsState* signals_state) override; |
| 68 void StartSerializeImplNoLock(size_t* max_size, |
| 69 size_t* max_platform_handles) override; |
| 70 bool EndSerializeAndCloseImplNoLock( |
| 71 void* destination, |
| 72 size_t* actual_size, |
| 73 PlatformHandleVector* platform_handles) override; |
| 74 void TransportStarted() override; |
| 75 void TransportEnded() override; |
| 76 bool IsBusyNoLock() const override; |
| 77 |
| 78 // |RawChannel::Delegate methods: |
| 79 void OnReadMessage( |
| 80 const MessageInTransit::View& message_view, |
| 81 ScopedPlatformHandleVectorPtr platform_handles) override; |
| 82 void OnError(Error error) override; |
| 83 |
| 84 // See comment in MessagePipeDispatcher for this method. |
| 85 void SerializeInternal(); |
| 86 |
| 87 MojoCreateDataPipeOptions options_; |
| 88 |
| 89 // Protected by |lock()|: |
| 90 RawChannel* channel_; // This will be null if closed. |
| 91 |
| 92 // Queue of incoming messages. |
| 93 std::vector<char> data_; |
| 94 AwakableList awakable_list_; |
| 95 |
| 96 // If DispatcherTransport is created. Must be set before lock() is called to |
| 97 // avoid deadlocks with RawChannel calling us. |
| 98 base::Lock started_transport_; |
| 99 |
| 100 bool calling_init_; |
| 101 |
| 102 bool in_two_phase_read_; |
| 103 uint32_t two_phase_max_bytes_read_; |
| 104 |
| 105 bool error_; |
| 106 |
| 107 bool serialized_; |
| 108 std::vector<char> serialized_read_buffer_; |
| 109 ScopedPlatformHandle serialized_platform_handle_; |
| 110 |
| 111 MOJO_DISALLOW_COPY_AND_ASSIGN(DataPipeConsumerDispatcher); |
| 112 }; |
| 113 |
| 114 } // namespace edk |
| 115 } // namespace mojo |
| 116 |
| 117 #endif // MOJO_EDK_SYSTEM_DATA_PIPE_CONSUMER_DISPATCHER_H_ |
OLD | NEW |