blob: 521d064349f7c1551ec6d2371a5e5af2e835288e [file] [log] [blame]
// 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_SERVICE_DBUS_ADAPTOR_H_
#define SHILL_SERVICE_DBUS_ADAPTOR_H_
#include <map>
#include <string>
#include <base/basictypes.h>
#include "shill/adaptor_interfaces.h"
#include "shill/dbus_adaptor.h"
#include "shill/dbus_bindings/flimflam-service.h"
namespace shill {
class Service;
// Subclass of DBusAdaptor for Service objects
// There is a 1:1 mapping between Service and ServiceDBusAdaptor
// instances. Furthermore, the Service owns the ServiceDBusAdaptor
// and manages its lifetime, so we're OK with ServiceDBusAdaptor
// having a bare pointer to its owner service.
class ServiceDBusAdaptor : public org::chromium::flimflam::Service_adaptor,
public DBusAdaptor,
public ServiceAdaptorInterface {
public:
static const char kPath[];
ServiceDBusAdaptor(DBus::Connection *conn, Service *service);
virtual ~ServiceDBusAdaptor();
// Implementation of ServiceAdaptorInterface.
virtual const std::string &GetRpcIdentifier() { return path(); }
virtual void UpdateConnected();
virtual void EmitBoolChanged(const std::string &name, bool value);
virtual void EmitUint8Changed(const std::string &name, uint8 value);
virtual void EmitUint16Changed(const std::string &name, uint16 value);
virtual void EmitUint16sChanged(const std::string &name,
const Uint16s &value);
virtual void EmitUintChanged(const std::string &name, uint32 value);
virtual void EmitIntChanged(const std::string &name, int value);
virtual void EmitRpcIdentifierChanged(
const std::string &name, const std::string &value);
virtual void EmitStringChanged(
const std::string &name, const std::string &value);
virtual void EmitStringmapChanged(const std::string &name,
const Stringmap &value);
// Implementation of Service_adaptor
std::map<std::string, ::DBus::Variant> GetProperties(::DBus::Error &error);
void SetProperty(const std::string& name,
const ::DBus::Variant& value,
::DBus::Error &error);
void SetProperties(const std::map<std::string, ::DBus::Variant> &args,
::DBus::Error &error);
void ClearProperty(const std::string&, ::DBus::Error &error);
std::vector<bool> ClearProperties(const std::vector<std::string>&,
::DBus::Error &error);
void Connect(::DBus::Error &error);
void Disconnect(::DBus::Error &error);
void Remove(::DBus::Error &error);
void MoveBefore(const ::DBus::Path& , ::DBus::Error &error);
void MoveAfter(const ::DBus::Path& , ::DBus::Error &error);
void ActivateCellularModem(const std::string &carrier, ::DBus::Error &error);
void CompleteCellularActivation(::DBus::Error &error);
std::map<::DBus::Path, std::string> GetLoadableProfileEntries(
::DBus::Error &error);
private:
Service *service_;
DISALLOW_COPY_AND_ASSIGN(ServiceDBusAdaptor);
};
} // namespace shill
#endif // SHILL_SERVICE_DBUS_ADAPTOR_H_