blob: 816ec7c368af9bc0cb0489271709578e8537753c [file] [log] [blame]
// 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_MODEM_GSM_NETWORK_PROXY_
#define SHILL_MODEM_GSM_NETWORK_PROXY_
#include "shill/dbus_bindings/modem-gsm-network.h"
#include "shill/modem_gsm_network_proxy_interface.h"
namespace shill {
class ModemGSMNetworkProxy : public ModemGSMNetworkProxyInterface {
public:
// Constructs a ModemManager.Modem.Gsm.Network DBus object proxy at |path|
// owned by |service|. Caught signals will be dispatched to |listener|.
ModemGSMNetworkProxy(ModemGSMNetworkProxyListener *listener,
DBus::Connection *connection,
const std::string &path,
const std::string &service);
virtual ~ModemGSMNetworkProxy();
// Inherited from ModemGSMNetworkProxyInterface.
virtual void Register(const std::string &network_id);
private:
class Proxy
: public org::freedesktop::ModemManager::Modem::Gsm::Network_proxy,
public DBus::ObjectProxy {
public:
Proxy(ModemGSMNetworkProxyListener *listener,
DBus::Connection *connection,
const std::string &path,
const std::string &service);
virtual ~Proxy();
private:
// Signal callbacks inherited from ModemManager::Modem::Gsm::Network_proxy.
virtual void SignalQuality(const uint32 &quality);
virtual void RegistrationInfo(const uint32_t &status,
const std::string &operator_code,
const std::string &operator_name);
virtual void NetworkMode(const uint32_t &mode);
ModemGSMNetworkProxyListener *listener_;
DISALLOW_COPY_AND_ASSIGN(Proxy);
};
Proxy proxy_;
DISALLOW_COPY_AND_ASSIGN(ModemGSMNetworkProxy);
};
} // namespace shill
#endif // SHILL_MODEM_GSM_NETWORK_PROXY_