| OLD | NEW |
| 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_PUBLIC_CPP_BINDINGS_LIB_CONNECTOR_H_ | 5 #ifndef MOJO_PUBLIC_CPP_BINDINGS_LIB_CONNECTOR_H_ |
| 6 #define MOJO_PUBLIC_CPP_BINDINGS_LIB_CONNECTOR_H_ | 6 #define MOJO_PUBLIC_CPP_BINDINGS_LIB_CONNECTOR_H_ |
| 7 | 7 |
| 8 #include "mojo/public/c/environment/async_waiter.h" | 8 #include "mojo/public/c/environment/async_waiter.h" |
| 9 #include "mojo/public/cpp/bindings/lib/message_queue.h" | 9 #include "mojo/public/cpp/bindings/lib/message_queue.h" |
| 10 #include "mojo/public/cpp/bindings/message.h" | 10 #include "mojo/public/cpp/bindings/message.h" |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 // quiescent state. | 59 // quiescent state. |
| 60 void CloseMessagePipe(); | 60 void CloseMessagePipe(); |
| 61 | 61 |
| 62 // Releases the pipe, not triggering the error state. Connector is put into | 62 // Releases the pipe, not triggering the error state. Connector is put into |
| 63 // a quiescent state. | 63 // a quiescent state. |
| 64 ScopedMessagePipeHandle PassMessagePipe(); | 64 ScopedMessagePipeHandle PassMessagePipe(); |
| 65 | 65 |
| 66 // Is the connector bound to a MessagePipe handle? | 66 // Is the connector bound to a MessagePipe handle? |
| 67 bool is_valid() const { return message_pipe_.is_valid(); } | 67 bool is_valid() const { return message_pipe_.is_valid(); } |
| 68 | 68 |
| 69 // Waits for the next message on the pipe, blocking until one arrives or an | 69 // Waits for the next message on the pipe, blocking until one arrives, |
| 70 // error happens. Returns |true| if a message has been delivered, |false| | 70 // |deadline| elapses, or an error happens. Returns |true| if a message has |
| 71 // otherwise. | 71 // been delivered, |false| otherwise. |
| 72 bool WaitForIncomingMessage(); | 72 bool WaitForIncomingMessage(MojoDeadline deadline); |
| 73 | 73 |
| 74 // MessageReceiver implementation: | 74 // MessageReceiver implementation: |
| 75 bool Accept(Message* message) override; | 75 bool Accept(Message* message) override; |
| 76 | 76 |
| 77 MessagePipeHandle handle() const { return message_pipe_.get(); } |
| 78 |
| 77 private: | 79 private: |
| 78 static void CallOnHandleReady(void* closure, MojoResult result); | 80 static void CallOnHandleReady(void* closure, MojoResult result); |
| 79 void OnHandleReady(MojoResult result); | 81 void OnHandleReady(MojoResult result); |
| 80 | 82 |
| 81 void WaitToReadMore(); | 83 void WaitToReadMore(); |
| 82 | 84 |
| 83 // Returns false if |this| was destroyed during message dispatch. | 85 // Returns false if |this| was destroyed during message dispatch. |
| 84 MOJO_WARN_UNUSED_RESULT bool ReadSingleMessage(MojoResult* read_result); | 86 MOJO_WARN_UNUSED_RESULT bool ReadSingleMessage(MojoResult* read_result); |
| 85 | 87 |
| 86 // |this| can be destroyed during message dispatch. | 88 // |this| can be destroyed during message dispatch. |
| (...skipping 20 matching lines...) Expand all Loading... |
| 107 // of dispatching an incoming message. | 109 // of dispatching an incoming message. |
| 108 bool* destroyed_flag_; | 110 bool* destroyed_flag_; |
| 109 | 111 |
| 110 MOJO_DISALLOW_COPY_AND_ASSIGN(Connector); | 112 MOJO_DISALLOW_COPY_AND_ASSIGN(Connector); |
| 111 }; | 113 }; |
| 112 | 114 |
| 113 } // namespace internal | 115 } // namespace internal |
| 114 } // namespace mojo | 116 } // namespace mojo |
| 115 | 117 |
| 116 #endif // MOJO_PUBLIC_CPP_BINDINGS_LIB_CONNECTOR_H_ | 118 #endif // MOJO_PUBLIC_CPP_BINDINGS_LIB_CONNECTOR_H_ |
| OLD | NEW |