blob: 521d064349f7c1551ec6d2371a5e5af2e835288e [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
mukesh agrawalbebf1b82013-04-23 15:06:33 -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);
mukesh agrawale7c7e652013-06-18 17:19:39 -070041 virtual void EmitUint16sChanged(const std::string &name,
42 const Uint16s &value);
Darin Petkovd78ee7e2012-01-12 11:21:10 +010043 virtual void EmitUintChanged(const std::string &name, uint32 value);
44 virtual void EmitIntChanged(const std::string &name, int value);
Paul Stewart1e3bc4962012-09-14 12:20:22 -070045 virtual void EmitRpcIdentifierChanged(
46 const std::string &name, const std::string &value);
Darin Petkovd78ee7e2012-01-12 11:21:10 +010047 virtual void EmitStringChanged(
mukesh agrawale1d90e92012-02-15 17:36:08 -080048 const std::string &name, const std::string &value);
Darin Petkov9cb02682012-01-28 00:17:38 +010049 virtual void EmitStringmapChanged(const std::string &name,
50 const Stringmap &value);
Chris Masoned7732e42011-05-20 11:08:56 -070051
52 // Implementation of Service_adaptor
53 std::map<std::string, ::DBus::Variant> GetProperties(::DBus::Error &error);
Chris Masone8fe2c7e2011-06-09 15:51:19 -070054 void SetProperty(const std::string& name,
55 const ::DBus::Variant& value,
Chris Masoned7732e42011-05-20 11:08:56 -070056 ::DBus::Error &error);
Paul Stewartad0e5982013-07-02 08:47:47 -070057 void SetProperties(const std::map<std::string, ::DBus::Variant> &args,
58 ::DBus::Error &error);
Paul Stewartbcb2c962012-10-31 10:52:10 -070059 void ClearProperty(const std::string&, ::DBus::Error &error);
60 std::vector<bool> ClearProperties(const std::vector<std::string>&,
61 ::DBus::Error &error);
Chris Masoned7732e42011-05-20 11:08:56 -070062 void Connect(::DBus::Error &error);
63 void Disconnect(::DBus::Error &error);
64 void Remove(::DBus::Error &error);
65 void MoveBefore(const ::DBus::Path& , ::DBus::Error &error);
66 void MoveAfter(const ::DBus::Path& , ::DBus::Error &error);
Darin Petkovc408e692011-08-17 13:47:15 -070067 void ActivateCellularModem(const std::string &carrier, ::DBus::Error &error);
Ben Chan5d924542013-02-14 17:49:08 -080068 void CompleteCellularActivation(::DBus::Error &error);
Paul Stewart967eaeb2013-04-25 19:53:07 -070069 std::map<::DBus::Path, std::string> GetLoadableProfileEntries(
70 ::DBus::Error &error);
Chris Masoned7732e42011-05-20 11:08:56 -070071
72 private:
Chris Masoneec6b18b2011-06-08 14:09:10 -070073 Service *service_;
Darin Petkovc408e692011-08-17 13:47:15 -070074
Chris Masoned7732e42011-05-20 11:08:56 -070075 DISALLOW_COPY_AND_ASSIGN(ServiceDBusAdaptor);
76};
77
78} // namespace shill
79#endif // SHILL_SERVICE_DBUS_ADAPTOR_H_