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

Unified Diff: jingle/glue/thread_wrapper.h

Issue 6747017: Add JingleThreadWrapper. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 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 side-by-side diff with in-line comments
Download patch
Index: jingle/glue/thread_wrapper.h
diff --git a/jingle/glue/thread_wrapper.h b/jingle/glue/thread_wrapper.h
new file mode 100644
index 0000000000000000000000000000000000000000..1db91f5bc62b82ba2a44ac9630e78d0c054528d9
--- /dev/null
+++ b/jingle/glue/thread_wrapper.h
@@ -0,0 +1,84 @@
+// Copyright (c) 2011 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 JINGLE_GLUE_THREAD_WRAPPER_H_
+#define JINGLE_GLUE_THREAD_WRAPPER_H_
+
+#include "base/message_loop.h"
+#include "base/synchronization/lock.h"
+#include "third_party/libjingle/source/talk/base/thread.h"
+
+class MessageLoop;
+
+namespace jingle_glue {
+
+class JingleThreadWrapper
Alpha Left Google 2011/03/26 01:06:01 Add a short comment here to explain what this is d
Sergey Ulanov 2011/03/26 01:44:24 Done.
+ : public MessageLoop::DestructionObserver,
+ public talk_base::Thread {
+ public:
+ JingleThreadWrapper(MessageLoop* message_loop);
+
+ // MessageLoop::DestructionObserver implementation.
+ virtual void WillDestroyCurrentMessageLoop() OVERRIDE;
+
+ // talk_base::MessageQueue overrides.
+ virtual void Post(talk_base::MessageHandler *phandler, uint32 id = 0,
+ talk_base::MessageData *pdata = NULL,
+ bool time_sensitive = false) OVERRIDE;
+ virtual void PostDelayed(
+ int delay_ms, talk_base::MessageHandler* handler, uint32 id = 0,
+ talk_base::MessageData* data = NULL) OVERRIDE;
+ virtual void Clear(talk_base::MessageHandler* handler,
+ uint32 id = talk_base::MQID_ANY,
+ talk_base::MessageList* removed = NULL) OVERRIDE;
+
+ // Following methods are not supported, and should not be used. They
+ // are overriden just to ensure that they are not called.
+ virtual void Quit() OVERRIDE;
+ virtual bool IsQuitting() OVERRIDE;
+ virtual void Restart() OVERRIDE;
+ virtual bool Get(talk_base::Message* msg, int delay_ms = talk_base::kForever,
+ bool process_io = true) OVERRIDE;
+ virtual bool Peek(talk_base::Message* msg, int delay_ms = 0) OVERRIDE;
+ virtual void PostAt(
+ uint32 timestamp, talk_base::MessageHandler* handler,
+ uint32 id = 0, talk_base::MessageData* data = NULL) OVERRIDE;
+ virtual void Dispatch(talk_base::Message* msg) OVERRIDE;
+ virtual void ReceiveSends() OVERRIDE;
+ virtual int GetDelay() OVERRIDE;
+
+ // talk_base::Thread overrides.
+ virtual void Stop() OVERRIDE;
+ virtual void Run() OVERRIDE;
+
+ private:
+ friend class base::RefCountedThreadSafe<JingleThreadWrapper>;
Alpha Left Google 2011/03/26 01:06:01 Because we need comments saying this has to be use
Sergey Ulanov 2011/03/26 01:44:24 Don't needs this. removed.
+
+ typedef std::vector<talk_base::DelayedMessage> DelayedMessagesHeap;
+
+ virtual ~JingleThreadWrapper() OVERRIDE;
+
+ void RunPendingTasks();
+ void RunDelayedTask(uint32 task_time);
+
+ // Chromium thread used to execute messages posted on this thread.
+ MessageLoop* message_loop_;
+
+ // |lock_| must be locked when accessing |messages_|.
+ base::Lock lock_;
+ bool task_posted_;
+ std::list<talk_base::Message> messages_;
+
+ // A heap that contains all delayed messages. std::push_heap() and
+ // std::pop_heap() must be used to add/remove tasks.
+ DelayedMessagesHeap delayed_messages_;
Alpha Left Google 2011/03/26 01:06:01 I would suggest you use STL set so you don't need
Sergey Ulanov 2011/03/26 01:44:24 Changed this to set.
+};
+
+}
+
+// Safe to disable refcounting because JingleThreadWrapper deletes
+// itself with the thread.
+DISABLE_RUNNABLE_METHOD_REFCOUNT(jingle_glue::JingleThreadWrapper);
+
+#endif // JINGLE_GLUE_THREAD_WRAPPER_H_
« no previous file with comments | « build/all.gyp ('k') | jingle/glue/thread_wrapper.cc » ('j') | jingle/glue/thread_wrapper.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698