blob: 97e5e0fced45aa43db95528d50772ac30a9fb325 [file] [log] [blame]
Darin Petkovd78ee7e2012-01-12 11:21:10 +01001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Chris Masoned7732e42011-05-20 11:08:56 -07002// 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_SERVICE_DBUS_ADAPTOR_H_
6#define SHILL_SERVICE_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"
Darin Petkov4a09b6b2011-07-19 12:52:06 -070015#include "shill/dbus_bindings/flimflam-service.h"
Chris Masoned7732e42011-05-20 11:08:56 -070016
17namespace shill {
Chris Masoned7732e42011-05-20 11:08:56 -070018
Chris Masoneec6b18b2011-06-08 14:09:10 -070019class Service;
20
Chris Masoned7732e42011-05-20 11:08:56 -070021// Subclass of DBusAdaptor for Service objects
Chris Masoneec6b18b2011-06-08 14:09:10 -070022// There is a 1:1 mapping between Service and ServiceDBusAdaptor
23// instances. Furthermore, the Service owns the ServiceDBusAdaptor
24// and manages its lifetime, so we're OK with ServiceDBusAdaptor
25// having a bare pointer to its owner service.
Chris Masoned7732e42011-05-20 11:08:56 -070026class ServiceDBusAdaptor : public org::chromium::flimflam::Service_adaptor,
27 public DBusAdaptor,
28 public ServiceAdaptorInterface {
29 public:
Chris Masoned7732e42011-05-20 11:08:56 -070030 static const char kPath[];
31
Chris Masoneec6b18b2011-06-08 14:09:10 -070032 ServiceDBusAdaptor(DBus::Connection* conn, Service *service);
Chris Masoned7732e42011-05-20 11:08:56 -070033 virtual ~ServiceDBusAdaptor();
Chris Masoned0ceb8c2011-06-02 10:05:39 -070034
35 // Implementation of ServiceAdaptorInterface.
Chris Masone95207da2011-06-29 16:50:49 -070036 virtual const std::string &GetRpcIdentifier() { return path(); }
Darin Petkovd78ee7e2012-01-12 11:21:10 +010037 virtual void UpdateConnected();
38 virtual void EmitBoolChanged(const std::string &name, bool value);
39 virtual void EmitUint8Changed(const std::string &name, uint8 value);
mukesh agrawale1d90e92012-02-15 17:36:08 -080040 virtual void EmitUint16Changed(const std::string &name, uint16 value);
Darin Petkovd78ee7e2012-01-12 11:21:10 +010041 virtual void EmitUintChanged(const std::string &name, uint32 value);
42 virtual void EmitIntChanged(const std::string &name, int value);
43 virtual void EmitStringChanged(
mukesh agrawale1d90e92012-02-15 17:36:08 -080044 const std::string &name, const std::string &value);
Darin Petkov9cb02682012-01-28 00:17:38 +010045 virtual void EmitStringmapChanged(const std::string &name,
46 const Stringmap &value);
Chris Masoned7732e42011-05-20 11:08:56 -070047
48 // Implementation of Service_adaptor
49 std::map<std::string, ::DBus::Variant> GetProperties(::DBus::Error &error);
Chris Masone8fe2c7e2011-06-09 15:51:19 -070050 void SetProperty(const std::string& name,
51 const ::DBus::Variant& value,
Chris Masoned7732e42011-05-20 11:08:56 -070052 ::DBus::Error &error);
53 void ClearProperty(const std::string& , ::DBus::Error &error);
54 void Connect(::DBus::Error &error);
55 void Disconnect(::DBus::Error &error);
56 void Remove(::DBus::Error &error);
57 void MoveBefore(const ::DBus::Path& , ::DBus::Error &error);
58 void MoveAfter(const ::DBus::Path& , ::DBus::Error &error);
Darin Petkovc408e692011-08-17 13:47:15 -070059 void ActivateCellularModem(const std::string &carrier, ::DBus::Error &error);
Chris Masoned7732e42011-05-20 11:08:56 -070060
61 private:
Chris Masoneec6b18b2011-06-08 14:09:10 -070062 Service *service_;
Darin Petkovc408e692011-08-17 13:47:15 -070063
Chris Masoned7732e42011-05-20 11:08:56 -070064 DISALLOW_COPY_AND_ASSIGN(ServiceDBusAdaptor);
65};
66
67} // namespace shill
68#endif // SHILL_SERVICE_DBUS_ADAPTOR_H_