blob: 94aa127199f2e9cf55c8c926345ad13022f993d6 [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_MANAGER_DBUS_ADAPTOR_H_
6#define SHILL_MANAGER_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-manager.h"
16
17namespace shill {
18class Manager;
19
20// Subclass of DBusAdaptor for Manager objects
21class ManagerDBusAdaptor : public org::chromium::flimflam::Manager_adaptor,
22 public DBusAdaptor,
23 public ManagerAdaptorInterface {
24 public:
25 static const char kInterfaceName[];
26 static const char kPath[];
27
Chris Masoned0ceb8c2011-06-02 10:05:39 -070028 ManagerDBusAdaptor(DBus::Connection *conn, Manager *manager);
Chris Masoned7732e42011-05-20 11:08:56 -070029 virtual ~ManagerDBusAdaptor();
Chris Masoned0ceb8c2011-06-02 10:05:39 -070030
31 // Implementation of ManagerAdaptorInterface.
Chris Masoned7732e42011-05-20 11:08:56 -070032 void UpdateRunning();
Chris Masoned0ceb8c2011-06-02 10:05:39 -070033 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 void EmitStateChanged(const std::string& new_state);
Chris Masoned7732e42011-05-20 11:08:56 -070038
39 // Implementation of Manager_adaptor
40 std::map<std::string, ::DBus::Variant> GetProperties(::DBus::Error &error);
41 void SetProperty(const std::string& name,
42 const ::DBus::Variant& value,
43 ::DBus::Error &error);
44 std::string GetState(::DBus::Error &error);
45 ::DBus::Path CreateProfile(const std::string& name, ::DBus::Error &error);
46 void RemoveProfile(const ::DBus::Path& path, ::DBus::Error &error);
47 void RequestScan(const std::string& , ::DBus::Error &error);
48
49 void EnableTechnology(const std::string& , ::DBus::Error &error);
50 void DisableTechnology(const std::string& , ::DBus::Error &error);
51
52 ::DBus::Path GetService(const std::map<std::string, ::DBus::Variant>& ,
53 ::DBus::Error &error);
54 ::DBus::Path GetWifiService(const std::map<std::string, ::DBus::Variant>& ,
55 ::DBus::Error &error);
56 void ConfigureWifiService(const std::map<std::string, ::DBus::Variant>& ,
57 ::DBus::Error &error);
58
59 void RegisterAgent(const ::DBus::Path& , ::DBus::Error &error);
60 void UnregisterAgent(const ::DBus::Path& , ::DBus::Error &error);
61
62 std::string GetDebugTags(::DBus::Error &error);
63 void SetDebugTags(const std::string& , ::DBus::Error &error);
64 std::string ListDebugTags(::DBus::Error &error);
65 uint32_t GetDebugMask(::DBus::Error &error);
66 void SetDebugMask(const uint32_t& , ::DBus::Error &error);
67
68 std::string GetServiceOrder(::DBus::Error &error);
69 void SetServiceOrder(const std::string& , ::DBus::Error &error);
70
71 private:
72 Manager *manager_;
73 DISALLOW_COPY_AND_ASSIGN(ManagerDBusAdaptor);
74};
75
76} // namespace shill
77#endif // SHILL_MANAGER_DBUS_ADAPTOR_H_