blob: fd23a8052b68c810cd639f190b97e03aa0bf1fe4 [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 {
18class Device;
19
20// Subclass of DBusAdaptor for Device objects
21class DeviceDBusAdaptor : public org::chromium::flimflam::Device_adaptor,
22 public DBusAdaptor,
23 public DeviceAdaptorInterface {
24 public:
25 static const char kInterfaceName[];
26 static const char kPath[];
27
Chris Masoned0ceb8c2011-06-02 10:05:39 -070028 DeviceDBusAdaptor(DBus::Connection* conn, Device *device);
Chris Masoned7732e42011-05-20 11:08:56 -070029 virtual ~DeviceDBusAdaptor();
Chris Masoned7732e42011-05-20 11:08:56 -070030
Chris Masoned0ceb8c2011-06-02 10:05:39 -070031 // Implementation of DeviceAdaptorInterface.
32 void UpdateEnabled();
33 void EmitBoolChanged(const std::string& name, bool value);
34 void EmitUintChanged(const std::string& name, uint32 value);
35 void EmitIntChanged(const std::string& name, int value);
36 void EmitStringChanged(const std::string& name, const std::string& value);
37
38 // Implementation of Device_adaptor.
Chris Masoned7732e42011-05-20 11:08:56 -070039 std::map<std::string, ::DBus::Variant> GetProperties(::DBus::Error &error);
40 void SetProperty(const std::string& ,
41 const ::DBus::Variant& ,
42 ::DBus::Error &error);
43 void ProposeScan(::DBus::Error &error);
44 ::DBus::Path AddIPConfig(const std::string& , ::DBus::Error &error);
45
46 private:
47 Device *device_;
48 DISALLOW_COPY_AND_ASSIGN(DeviceDBusAdaptor);
49};
50
51} // namespace shill
52#endif // SHILL_DEVICE_DBUS_ADAPTOR_H_