blob: 96bb549be68b18c63e224de1f1ccdcca31441ba1 [file] [log] [blame]
Chris Masoned7732e42011-05-20 11:08:56 -07001// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef SHILL_DEVICE_DBUS_ADAPTOR_H_
6#define SHILL_DEVICE_DBUS_ADAPTOR_H_
7
8#include <map>
9#include <string>
10
11#include <base/basictypes.h>
12
13#include "shill/adaptor_interfaces.h"
14#include "shill/dbus_adaptor.h"
15#include "shill/flimflam-device.h"
16
17namespace shill {
Chris Masoned7732e42011-05-20 11:08:56 -070018
Chris Masoneec6b18b2011-06-08 14:09:10 -070019class Device;
20
Chris Masoned7732e42011-05-20 11:08:56 -070021// Subclass of DBusAdaptor for Device objects
Chris Masoneec6b18b2011-06-08 14:09:10 -070022// There is a 1:1 mapping between Device and DeviceDBusAdaptor instances.
23// Furthermore, the Device owns the DeviceDBusAdaptor and manages its lifetime,
24// so we're OK with DeviceDBusAdaptor having a bare pointer to its owner device.
Chris Masoned7732e42011-05-20 11:08:56 -070025class DeviceDBusAdaptor : public org::chromium::flimflam::Device_adaptor,
26 public DBusAdaptor,
27 public DeviceAdaptorInterface {
28 public:
29 static const char kInterfaceName[];
30 static const char kPath[];
31
Chris Masoneec6b18b2011-06-08 14:09:10 -070032 DeviceDBusAdaptor(DBus::Connection* conn, Device *device);
Chris Masoned7732e42011-05-20 11:08:56 -070033 virtual ~DeviceDBusAdaptor();
Chris Masoned7732e42011-05-20 11:08:56 -070034
Chris Masoned0ceb8c2011-06-02 10:05:39 -070035 // Implementation of DeviceAdaptorInterface.
36 void UpdateEnabled();
37 void EmitBoolChanged(const std::string& name, bool value);
38 void EmitUintChanged(const std::string& name, uint32 value);
39 void EmitIntChanged(const std::string& name, int value);
40 void EmitStringChanged(const std::string& name, const std::string& value);
41
42 // Implementation of Device_adaptor.
Chris Masoned7732e42011-05-20 11:08:56 -070043 std::map<std::string, ::DBus::Variant> GetProperties(::DBus::Error &error);
44 void SetProperty(const std::string& ,
45 const ::DBus::Variant& ,
46 ::DBus::Error &error);
47 void ProposeScan(::DBus::Error &error);
48 ::DBus::Path AddIPConfig(const std::string& , ::DBus::Error &error);
49
50 private:
Chris Masoneec6b18b2011-06-08 14:09:10 -070051 Device *device_;
Chris Masoned7732e42011-05-20 11:08:56 -070052 DISALLOW_COPY_AND_ASSIGN(DeviceDBusAdaptor);
53};
54
55} // namespace shill
56#endif // SHILL_DEVICE_DBUS_ADAPTOR_H_