shill: Add ModemManager1.Sim proxy interface and class

Add ModemManager1.Sim proxy interface and class

BUG=chromium-os:27531
TEST=run unit tests, will be tested when MM1 capabilities object is ready

Change-Id: I69d4a089d295cb26c0a528ebdda03b658d29ae0e
Reviewed-on: https://gerrit.chromium.org/gerrit/19317
Commit-Ready: Jason Glasgow <jglasgow@chromium.org>
Reviewed-by: Jason Glasgow <jglasgow@chromium.org>
Tested-by: Jason Glasgow <jglasgow@chromium.org>
diff --git a/mm1_sim_proxy.h b/mm1_sim_proxy.h
new file mode 100644
index 0000000..1b98ecd
--- /dev/null
+++ b/mm1_sim_proxy.h
@@ -0,0 +1,85 @@
+// Copyright (c) 2012 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 SHILL_MM1_SIM_PROXY_
+#define SHILL_MM1_SIM_PROXY_
+
+#include <string>
+
+#include "shill/dbus_bindings/mm1-sim.h"
+#include "shill/dbus_properties.h"
+#include "shill/mm1_sim_proxy_interface.h"
+
+namespace shill {
+namespace mm1 {
+
+class SimProxy : public SimProxyInterface {
+ public:
+  // Constructs a org.freedesktop.ModemManager1.Modem DBus object
+  // proxy at |path| owned by |service|.
+  SimProxy(DBus::Connection *connection,
+           const std::string &path,
+           const std::string &service);
+  virtual ~SimProxy();
+
+  // Inherited methods from SimProxyInterface.
+  virtual void SendPin(const std::string &pin,
+                       Error *error,
+                       const ResultCallback &callback,
+                       int timeout);
+  virtual void SendPuk(const std::string &puk,
+                       const std::string &pin,
+                       Error *error,
+                       const ResultCallback &callback,
+                       int timeout);
+  virtual void EnablePin(const std::string &pin,
+                         const bool enabled,
+                         Error *error,
+                         const ResultCallback &callback,
+                         int timeout);
+  virtual void ChangePin(const std::string &old_pin,
+                         const std::string &new_pin,
+                         Error *error,
+                         const ResultCallback &callback,
+                         int timeout);
+
+  // Inherited properties from SimProxyInterface.
+  virtual const std::string SimIdentifier();
+  virtual const std::string Imsi();
+  virtual const std::string OperatorIdentifier();
+  virtual const std::string OperatorName();
+
+ private:
+  class Proxy : public org::freedesktop::ModemManager1::Sim_proxy,
+                public DBus::ObjectProxy {
+   public:
+    Proxy(DBus::Connection *connection,
+          const std::string &path,
+          const std::string &service);
+    virtual ~Proxy();
+
+   private:
+    // Method callbacks inherited from
+    // org::freedesktop::ModemManager1::SimProxy
+    virtual void SendPinCallback(const ::DBus::Error &dberror,
+                                 void *data);
+    virtual void SendPukCallback(const ::DBus::Error &dberror,
+                                 void *data);
+    virtual void EnableCallback(const ::DBus::Error &dberror,
+                                void *data);
+    virtual void ChangeCallback(const ::DBus::Error &dberror,
+                                void *data);
+
+    DISALLOW_COPY_AND_ASSIGN(Proxy);
+  };
+
+  Proxy proxy_;
+
+  DISALLOW_COPY_AND_ASSIGN(SimProxy);
+};
+
+}  // namespace mm1
+}  // namespace shill
+
+#endif  // SHILL_MM1_SIM_PROXY_