blob: 0b40d04e784b6a3c54e85daa00f73e8777fc219c [file] [log] [blame]
Jason Glasgowee1081c2012-03-06 15:14:53 -05001// Copyright (c) 2012 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
Ben Chan74924d82013-06-15 17:52:55 -07005#ifndef SHILL_MM1_MODEM_PROXY_INTERFACE_H_
6#define SHILL_MM1_MODEM_PROXY_INTERFACE_H_
Jason Glasgowee1081c2012-03-06 15:14:53 -05007
8#include <string>
9
10#include <base/basictypes.h>
11
Eric Shienbrood9a245532012-03-07 14:20:39 -050012#include "shill/callbacks.h"
Jason Glasgowee1081c2012-03-06 15:14:53 -050013
14namespace shill {
Jason Glasgowee1081c2012-03-06 15:14:53 -050015class Error;
16
17namespace mm1 {
18
Nathan Williamsa31e79c2012-03-30 15:07:00 -040019typedef base::Callback<void(int32,
20 int32, uint32)> ModemStateChangedSignalCallback;
Eric Shienbrood9a245532012-03-07 14:20:39 -050021
Jason Glasgowee1081c2012-03-06 15:14:53 -050022// These are the methods that a org.freedesktop.ModemManager1.Modem
Eric Shienbrood9a245532012-03-07 14:20:39 -050023// proxy must support. The interface is provided so that it can be
24// mocked in tests. All calls are made asynchronously. Call completion
25// is signalled via the callbacks passed to the methods.
Jason Glasgowee1081c2012-03-06 15:14:53 -050026class ModemProxyInterface {
27 public:
28 virtual ~ModemProxyInterface() {}
29
Eric Shienbrood9a245532012-03-07 14:20:39 -050030 virtual void Enable(bool enable,
31 Error *error,
32 const ResultCallback &callback,
Jason Glasgowee1081c2012-03-06 15:14:53 -050033 int timeout) = 0;
Eric Shienbrood9a245532012-03-07 14:20:39 -050034 virtual void ListBearers(Error *error,
35 const DBusPathsCallback &callback,
Jason Glasgowee1081c2012-03-06 15:14:53 -050036 int timeout) = 0;
Eric Shienbrood9a245532012-03-07 14:20:39 -050037 virtual void CreateBearer(const DBusPropertiesMap &properties,
38 Error *error,
39 const DBusPathCallback &callback,
Jason Glasgowee1081c2012-03-06 15:14:53 -050040 int timeout) = 0;
Eric Shienbrood9a245532012-03-07 14:20:39 -050041 virtual void DeleteBearer(const ::DBus::Path &bearer,
42 Error *error,
43 const ResultCallback &callback,
44 int timeout) = 0;
45 virtual void Reset(Error *error,
46 const ResultCallback &callback,
47 int timeout) = 0;
Jason Glasgowee1081c2012-03-06 15:14:53 -050048 virtual void FactoryReset(const std::string &code,
Eric Shienbrood9a245532012-03-07 14:20:39 -050049 Error *error,
50 const ResultCallback &callback,
Jason Glasgowee1081c2012-03-06 15:14:53 -050051 int timeout) = 0;
Ben Chan74924d82013-06-15 17:52:55 -070052 virtual void SetCurrentCapabilities(const uint32_t &capabilities,
53 Error *error,
54 const ResultCallback &callback,
55 int timeout) = 0;
56 virtual void SetCurrentModes(const ::DBus::Struct<uint32_t, uint32_t> &modes,
57 Error *error,
58 const ResultCallback &callback,
59 int timeout) = 0;
60 virtual void SetCurrentBands(const std::vector<uint32_t> &bands,
61 Error *error,
62 const ResultCallback &callback,
63 int timeout) = 0;
Jason Glasgowee1081c2012-03-06 15:14:53 -050064 virtual void Command(const std::string &cmd,
65 const uint32_t &user_timeout,
Eric Shienbrood9a245532012-03-07 14:20:39 -050066 Error *error,
67 const StringCallback &callback,
Jason Glasgowee1081c2012-03-06 15:14:53 -050068 int timeout) = 0;
Arman Ugurayee464d32013-02-13 17:14:36 -080069 virtual void SetPowerState(const uint32_t &power_state,
70 Error *error,
71 const ResultCallback &callback,
72 int timeout) = 0;
Jason Glasgowee1081c2012-03-06 15:14:53 -050073
Eric Shienbrood9a245532012-03-07 14:20:39 -050074
75 virtual void set_state_changed_callback(
76 const ModemStateChangedSignalCallback &callback) = 0;
77
Jason Glasgowee1081c2012-03-06 15:14:53 -050078 // Properties.
79 virtual const ::DBus::Path Sim() = 0;
Ben Chan74924d82013-06-15 17:52:55 -070080 virtual const std::vector<uint32_t> SupportedCapabilities() = 0;
Jason Glasgowee1081c2012-03-06 15:14:53 -050081 virtual uint32_t CurrentCapabilities() = 0;
82 virtual uint32_t MaxBearers() = 0;
83 virtual uint32_t MaxActiveBearers() = 0;
84 virtual const std::string Manufacturer() = 0;
85 virtual const std::string Model() = 0;
86 virtual const std::string Revision() = 0;
87 virtual const std::string DeviceIdentifier() = 0;
88 virtual const std::string Device() = 0;
Ben Chan34e5d682012-08-24 19:10:49 -070089 virtual const std::vector<std::string> Drivers() = 0;
Jason Glasgowee1081c2012-03-06 15:14:53 -050090 virtual const std::string Plugin() = 0;
91 virtual const std::string EquipmentIdentifier() = 0;
92 virtual uint32_t UnlockRequired() = 0;
Ben Chan74924d82013-06-15 17:52:55 -070093 virtual const std::map<uint32_t, uint32_t> UnlockRetries() = 0;
Jason Glasgowee1081c2012-03-06 15:14:53 -050094 virtual uint32_t State() = 0;
95 virtual uint32_t AccessTechnologies() = 0;
Ben Chan74924d82013-06-15 17:52:55 -070096 virtual const ::DBus::Struct<uint32_t, bool> SignalQuality() = 0;
97 virtual const std::vector<std::string> OwnNumbers() = 0;
98 virtual const std::vector<::DBus::Struct<uint32_t, uint32_t>>
99 SupportedModes() = 0;
100 virtual const ::DBus::Struct<uint32_t, uint32_t> CurrentModes() = 0;
101 virtual const std::vector<uint32_t> SupportedBands() = 0;
102 virtual const std::vector<uint32_t> CurrentBands() = 0;
103 virtual uint32_t SupportedIpFamilies() = 0;
Arman Ugurayee464d32013-02-13 17:14:36 -0800104 virtual uint32_t PowerState() = 0;
Jason Glasgowee1081c2012-03-06 15:14:53 -0500105};
106
Jason Glasgowee1081c2012-03-06 15:14:53 -0500107} // namespace mm1
108} // namespace shill
109
Ben Chan74924d82013-06-15 17:52:55 -0700110#endif // SHILL_MM1_MODEM_PROXY_INTERFACE_H_