summaryrefslogtreecommitdiff
path: root/shill_proxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'shill_proxy.h')
-rw-r--r--shill_proxy.h48
1 files changed, 48 insertions, 0 deletions
diff --git a/shill_proxy.h b/shill_proxy.h
new file mode 100644
index 0000000..24a0508
--- /dev/null
+++ b/shill_proxy.h
@@ -0,0 +1,48 @@
+// Copyright 2014 The Chromium OS Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef APMANAGER_SHILL_PROXY_H_
+#define APMANAGER_SHILL_PROXY_H_
+
+#include <set>
+#include <string>
+
+#include <base/macros.h>
+#include <base/memory/scoped_ptr.h>
+
+#include "shill/dbus-proxies.h"
+
+// Proxy for shill "org.chromium.flimflam" DBus service.
+namespace apmanager {
+
+class ShillProxy {
+ public:
+ ShillProxy();
+ virtual ~ShillProxy();
+
+ void Init(const scoped_refptr<dbus::Bus>& bus);
+
+ // Claim the given interface |interface_name| from shill.
+ virtual void ClaimInterface(const std::string& interface_name);
+ // Release the given interface |interface_name| to shill.
+ virtual void ReleaseInterface(const std::string& interface_name);
+
+ private:
+ void OnServiceAvailable(bool service_available);
+ void OnServiceNameChanged(const std::string& old_owner,
+ const std::string& new_owner);
+
+ static const char kManagerPath[];
+
+ // DBus proxy for shill manager.
+ std::unique_ptr<org::chromium::flimflam::ManagerProxy> manager_proxy_;
+ // List of interfaces apmanager have claimed.
+ std::set<std::string> claimed_interfaces_;
+
+ DISALLOW_COPY_AND_ASSIGN(ShillProxy);
+};
+
+} // namespace apmanager
+
+#endif // APMANAGER_SHILL_PROXY_H_