| // 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 CHROME_SERVICE_SERVICE_IPC_SERVER_H_ |
| #define CHROME_SERVICE_SERVICE_IPC_SERVER_H_ |
| |
| #include <string> |
| |
| #include "base/memory/scoped_ptr.h" |
| #include "ipc/ipc_channel_handle.h" |
| #include "ipc/ipc_sync_channel.h" |
| #include "ipc/ipc_sync_message_filter.h" |
| #include "ipc/ipc_message.h" |
| |
| // This class handles IPC commands for the service process. |
| class ServiceIPCServer : public IPC::Channel::Listener, |
| public IPC::Message::Sender { |
| public: |
| explicit ServiceIPCServer(const IPC::ChannelHandle& handle); |
| virtual ~ServiceIPCServer(); |
| |
| bool Init(); |
| |
| // IPC::Message::Sender implementation. |
| virtual bool Send(IPC::Message* msg); |
| |
| IPC::SyncChannel* channel() { return channel_.get(); } |
| |
| // Safe to call on any thread, as long as it's guaranteed that the thread's |
| // lifetime is less than the main thread. |
| IPC::SyncMessageFilter* sync_message_filter() { return sync_message_filter_; } |
| |
| bool is_client_connected() const { return client_connected_; } |
| |
| |
| private: |
| // IPC::Channel::Listener implementation: |
| virtual bool OnMessageReceived(const IPC::Message& msg); |
| virtual void OnChannelConnected(int32 peer_pid); |
| virtual void OnChannelError(); |
| |
| // IPC message handlers. |
| void OnEnableCloudPrintProxy(const std::string& lsid); |
| void OnEnableCloudPrintProxyWithTokens(const std::string& cloud_print_token, |
| const std::string& talk_token); |
| void OnIsCloudPrintProxyEnabled(); |
| void OnDisableCloudPrintProxy(); |
| |
| #if defined(ENABLE_REMOTING) |
| void OnSetRemotingHostCredentials(const std::string& login, |
| const std::string& talk_token); |
| void OnEnableRemotingHost(); |
| void OnDisableRemotingHost(); |
| void OnGetRemotingHostInfo(); |
| |
| // Sends HostInfo message to the browser. It must is called when we |
| // receive GetRemotingHostInfo message or when status of the host |
| // is changed. |
| void SendRemotingHostInfo(); |
| #endif // defined(ENABLE_REMOTING) |
| |
| void OnShutdown(); |
| void OnUpdateAvailable(); |
| |
| // Helper method to create the sync channel. |
| void CreateChannel(); |
| |
| IPC::ChannelHandle channel_handle_; |
| scoped_ptr<IPC::SyncChannel> channel_; |
| // Indicates whether a client is currently connected to the channel. |
| bool client_connected_; |
| |
| // Allows threads other than the main thread to send sync messages. |
| scoped_refptr<IPC::SyncMessageFilter> sync_message_filter_; |
| |
| |
| DISALLOW_COPY_AND_ASSIGN(ServiceIPCServer); |
| }; |
| |
| #endif // CHROME_SERVICE_SERVICE_IPC_SERVER_H_ |