| // Copyright (c) 2012 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_MODEM_MANAGER_PROXY_ |
| #define SHILL_MODEM_MANAGER_PROXY_ |
| |
| #include <string> |
| #include <vector> |
| |
| #include <base/basictypes.h> |
| |
| #include "dbus_proxies/org.freedesktop.ModemManager.h" |
| #include "shill/modem_manager_proxy_interface.h" |
| |
| namespace shill { |
| |
| class ModemManagerClassic; |
| |
| // There's a single proxy per (old) ModemManager service identified by |
| // its DBus |path| and owner name |service|. |
| class ModemManagerProxy : public ModemManagerProxyInterface { |
| public: |
| ModemManagerProxy(DBus::Connection *connection, |
| ModemManagerClassic *manager, |
| const std::string &path, |
| const std::string &service); |
| virtual ~ModemManagerProxy(); |
| |
| // Inherited from ModemManagerProxyInterface. |
| virtual std::vector<DBus::Path> EnumerateDevices(); |
| |
| private: |
| class Proxy : public org::freedesktop::ModemManager_proxy, |
| public DBus::ObjectProxy { |
| public: |
| Proxy(DBus::Connection *connection, |
| ModemManagerClassic *manager, |
| const std::string &path, |
| const std::string &service); |
| virtual ~Proxy(); |
| |
| private: |
| // Signal callbacks inherited from ModemManager_proxy. |
| virtual void DeviceAdded(const DBus::Path &device); |
| virtual void DeviceRemoved(const DBus::Path &device); |
| |
| // Method callbacks inherited from ModemManager_proxy. |
| // [None] |
| |
| // The owner of this proxy. |
| ModemManagerClassic *manager_; |
| |
| DISALLOW_COPY_AND_ASSIGN(Proxy); |
| }; |
| |
| Proxy proxy_; |
| |
| DISALLOW_COPY_AND_ASSIGN(ModemManagerProxy); |
| }; |
| |
| } // namespace shill |
| |
| #endif // SHILL_MODEM_MANAGER_PROXY_ |