| // Copyright (c) 2011 The Chromium OS 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 SHILL_DBUS_PROPERTIES_PROXY_H_ |
| #define SHILL_DBUS_PROPERTIES_PROXY_H_ |
| |
| #include <string> |
| #include <vector> |
| |
| #include <base/basictypes.h> |
| |
| #include "shill/dbus_properties_proxy_interface.h" |
| #include "shill/dbus_proxies/dbus-properties.h" |
| |
| namespace shill { |
| |
| class DBusPropertiesProxy : public DBusPropertiesProxyInterface { |
| public: |
| DBusPropertiesProxy(DBus::Connection *connection, |
| const std::string &path, |
| const std::string &service); |
| virtual ~DBusPropertiesProxy(); |
| |
| // Inherited from DBusPropertiesProxyInterface. |
| virtual DBusPropertiesMap GetAll(const std::string &interface_name); |
| virtual DBus::Variant Get(const std::string &interface_name, |
| const std::string &property); |
| |
| virtual void set_properties_changed_callback( |
| const PropertiesChangedCallback &callback); |
| virtual void set_modem_manager_properties_changed_callback( |
| const ModemManagerPropertiesChangedCallback &callback); |
| |
| private: |
| class Proxy : public org::freedesktop::DBus::Properties_proxy, |
| public DBus::ObjectProxy { |
| public: |
| Proxy(DBus::Connection *connection, |
| const std::string &path, |
| const std::string &service); |
| virtual ~Proxy(); |
| |
| virtual void set_properties_changed_callback( |
| const PropertiesChangedCallback &callback); |
| virtual void set_modem_manager_properties_changed_callback( |
| const ModemManagerPropertiesChangedCallback &callback); |
| |
| private: |
| // Signal callbacks inherited from DBusProperties_proxy. |
| virtual void MmPropertiesChanged(const std::string &interface, |
| const DBusPropertiesMap &properties); |
| |
| virtual void PropertiesChanged( |
| const std::string &interface, |
| const DBusPropertiesMap &changed_properties, |
| const std::vector<std::string> &invalidated_properties); |
| |
| PropertiesChangedCallback properties_changed_callback_; |
| ModemManagerPropertiesChangedCallback mm_properties_changed_callback_; |
| |
| DISALLOW_COPY_AND_ASSIGN(Proxy); |
| }; |
| |
| Proxy proxy_; |
| |
| DISALLOW_COPY_AND_ASSIGN(DBusPropertiesProxy); |
| }; |
| |
| } // namespace shill |
| |
| #endif // SHILL_DBUS_PROPERTIES_PROXY_H_ |