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

Unified Diff: mojo/system/message_pipe_dispatcher.h

Issue 23621056: Initial in-process implementation of some Mojo primitives. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: build fix Created 7 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: mojo/system/message_pipe_dispatcher.h
diff --git a/mojo/system/message_pipe_dispatcher.h b/mojo/system/message_pipe_dispatcher.h
new file mode 100644
index 0000000000000000000000000000000000000000..b52ebb82cd84c05d64d655bc1e5fc8f6af169809
--- /dev/null
+++ b/mojo/system/message_pipe_dispatcher.h
@@ -0,0 +1,61 @@
+// Copyright 2013 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 MOJO_SYSTEM_MESSAGE_PIPE_DISPATCHER_H_
+#define MOJO_SYSTEM_MESSAGE_PIPE_DISPATCHER_H_
+
+#include "base/basictypes.h"
+#include "base/compiler_specific.h"
+#include "base/memory/ref_counted.h"
+#include "mojo/system/dispatcher.h"
+
+namespace mojo {
+namespace system {
+
+class MessagePipe;
+
+// This is the |Dispatcher| implementation for message pipes (created by the
+// Mojo primitive |MojoCreateMessagePipe()|). This class is thread-safe.
+class MessagePipeDispatcher : public Dispatcher {
+ public:
+ MessagePipeDispatcher();
+
+ // Must be called before any other methods. (This method is not thread-safe.)
+ void Init(scoped_refptr<MessagePipe> message_pipe, unsigned port);
+
+ private:
+ friend class base::RefCountedThreadSafe<MessagePipeDispatcher>;
+ virtual ~MessagePipeDispatcher();
+
+ // |Dispatcher| implementation/overrides:
+ virtual void CancelAllWaitersNoLock() OVERRIDE;
+ virtual MojoResult CloseImplNoLock() OVERRIDE;
+ virtual MojoResult WriteMessageImplNoLock(
+ const void* bytes,
+ uint32_t num_bytes,
+ const MojoHandle* handles,
+ uint32_t num_handles,
+ MojoWriteMessageFlags flags) OVERRIDE;
+ virtual MojoResult ReadMessageImplNoLock(
+ void* bytes,
+ uint32_t* num_bytes,
+ MojoHandle* handles,
+ uint32_t* num_handles,
+ MojoReadMessageFlags flags) OVERRIDE;
+ virtual MojoResult AddWaiterImplNoLock(Waiter* waiter,
+ MojoWaitFlags flags,
+ MojoResult wake_result) OVERRIDE;
+ virtual void RemoveWaiterImplNoLock(Waiter* waiter) OVERRIDE;
+
+ // Protected by |lock()|:
+ scoped_refptr<MessagePipe> message_pipe_; // This will be null if closed.
+ unsigned port_;
+
+ DISALLOW_COPY_AND_ASSIGN(MessagePipeDispatcher);
+};
+
+} // namespace system
+} // namespace mojo
+
+#endif // MOJO_SYSTEM_MESSAGE_PIPE_DISPATCHER_H_

Powered by Google App Engine
This is Rietveld 408576698