OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_BROWSER_BROWSER_IO_MESSAGE_FILTER_H_ | 5 #ifndef CHROME_BROWSER_BROWSER_MESSAGE_FILTER_H_ |
6 #define CHROME_BROWSER_BROWSER_IO_MESSAGE_FILTER_H_ | 6 #define CHROME_BROWSER_BROWSER_MESSAGE_FILTER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/process.h" | 9 #include "base/process.h" |
| 10 #include "chrome/browser/browser_thread.h" |
10 #include "ipc/ipc_channel_proxy.h" | 11 #include "ipc/ipc_channel_proxy.h" |
11 | 12 |
12 // Base class for message filters in the browser process that reside on the IO | 13 // Base class for message filters in the browser process. You can receive and |
13 // thread. | 14 // send messages on any thread. |
14 class BrowserIOMessageFilter : public IPC::ChannelProxy::MessageFilter, | 15 class BrowserMessageFilter : public IPC::ChannelProxy::MessageFilter, |
15 public IPC::Message::Sender { | 16 public IPC::Message::Sender { |
16 public: | 17 public: |
17 BrowserIOMessageFilter(); | 18 BrowserMessageFilter(); |
18 virtual ~BrowserIOMessageFilter(); | 19 virtual ~BrowserMessageFilter(); |
19 | 20 |
20 // IPC::ChannelProxy::MessageFilter methods. If you override them, make sure | 21 // IPC::ChannelProxy::MessageFilter methods. If you override them, make sure |
21 // to call them as well. | 22 // to call them as well. These are always called on the IO thread. |
22 virtual void OnFilterAdded(IPC::Channel* channel); | 23 virtual void OnFilterAdded(IPC::Channel* channel); |
23 virtual void OnChannelClosing(); | 24 virtual void OnChannelClosing(); |
24 virtual void OnChannelConnected(int32 peer_pid); | 25 virtual void OnChannelConnected(int32 peer_pid); |
| 26 // You can't override this, override the other version below. |
| 27 bool OnMessageReceived(const IPC::Message& message); |
25 | 28 |
26 // IPC::Message::Sender implementation: | 29 // IPC::Message::Sender implementation. Can be called on any thread. Can't |
27 virtual bool Send(IPC::Message* msg); | 30 // send sync messages (since we don't want to block the browser on any other |
| 31 // process). |
| 32 virtual bool Send(IPC::Message* message); |
| 33 |
| 34 // This allows the message handler to be called on a different thread for the |
| 35 // given message. If you just want default handling, call the base function. |
| 36 virtual BrowserThread::ID HandleMessageOnThread(const IPC::Message& message); |
| 37 |
| 38 // Override this to receive messages. |
| 39 // Your function will normally be called on the IO thread. However, if your |
| 40 // HandleMessageOnThread returns a different thread for this message, your |
| 41 // function will be called on the requested thread. |
| 42 virtual bool OnMessageReceived(const IPC::Message& message, |
| 43 bool* message_was_ok) = 0; |
28 | 44 |
29 protected: | 45 protected: |
| 46 // Can be called on any thread, after OnChannelConnected is called. |
30 base::ProcessHandle peer_handle() { return peer_handle_; } | 47 base::ProcessHandle peer_handle() { return peer_handle_; } |
31 | 48 |
32 // Call this if a message couldn't be deserialized. This kills the renderer. | 49 // Call this if a message couldn't be deserialized. This kills the renderer. |
| 50 // Can be called on any thread. |
33 void BadMessageReceived(uint32 msg_type); | 51 void BadMessageReceived(uint32 msg_type); |
34 | 52 |
35 private: | 53 private: |
| 54 // Used for dispatching a message to the derived class. |
| 55 bool DispatchMessage(const IPC::Message& message); |
| 56 |
36 IPC::Channel* channel_; | 57 IPC::Channel* channel_; |
37 base::ProcessHandle peer_handle_; | 58 base::ProcessHandle peer_handle_; |
38 }; | 59 }; |
39 | 60 |
40 #endif // CHROME_BROWSER_BROWSER_IO_MESSAGE_FILTER_H_ | 61 #endif // CHROME_BROWSER_BROWSER_MESSAGE_FILTER_H_ |
OLD | NEW |