blob: 3329b7b5a00c41213d790603aeb36950d65640e7 [file] [log] [blame]
Darin Petkovbec79a22011-08-01 14:47:17 -07001// Copyright (c) 2011 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
5#ifndef SHILL_MODEM_CDMA_PROXY_INTERFACE_
6#define SHILL_MODEM_CDMA_PROXY_INTERFACE_
7
Darin Petkovc408e692011-08-17 13:47:15 -07008#include <string>
9
Darin Petkovbec79a22011-08-01 14:47:17 -070010#include <base/basictypes.h>
11
Darin Petkovef34f182011-08-26 14:14:40 -070012#include "shill/dbus_properties.h"
13
Darin Petkovbec79a22011-08-01 14:47:17 -070014namespace shill {
15
Eric Shienbrood5de44ab2011-12-05 10:46:27 -050016class AsyncCallHandler;
17class Error;
18
19// These are the methods that a ModemManager.Modem.CDMA proxy must support.
20// The interface is provided so that it can be mocked in tests.
21// All calls are made asynchronously. Call completion is signalled through
22// the corresponding 'OnXXXCallback' method in the ProxyDelegate interface.
Darin Petkovbec79a22011-08-01 14:47:17 -070023class ModemCDMAProxyInterface {
24 public:
25 virtual ~ModemCDMAProxyInterface() {}
26
Eric Shienbrood5de44ab2011-12-05 10:46:27 -050027 virtual void Activate(const std::string &carrier,
28 AsyncCallHandler *call_handler, int timeout) = 0;
Darin Petkovbec79a22011-08-01 14:47:17 -070029 virtual void GetRegistrationState(uint32 *cdma_1x_state,
30 uint32 *evdo_state) = 0;
Darin Petkovd9661952011-08-03 16:25:42 -070031 virtual uint32 GetSignalQuality() = 0;
Darin Petkov975b5e72011-08-30 11:48:08 -070032
33 // Properties.
34 virtual const std::string MEID() = 0;
Darin Petkovd9661952011-08-03 16:25:42 -070035};
36
Darin Petkov580c7af2011-10-24 12:32:50 +020037// ModemManager.Modem.CDMA signal delegate to be associated with the proxy.
38class ModemCDMAProxyDelegate {
Darin Petkovd9661952011-08-03 16:25:42 -070039 public:
Darin Petkov580c7af2011-10-24 12:32:50 +020040 virtual ~ModemCDMAProxyDelegate() {}
Darin Petkovd9661952011-08-03 16:25:42 -070041
Darin Petkovb27e5442011-08-16 14:36:45 -070042 virtual void OnCDMAActivationStateChanged(
43 uint32 activation_state,
44 uint32 activation_error,
45 const DBusPropertiesMap &status_changes) = 0;
Darin Petkovd9661952011-08-03 16:25:42 -070046 virtual void OnCDMARegistrationStateChanged(uint32 state_1x,
47 uint32 state_evdo) = 0;
48 virtual void OnCDMASignalQualityChanged(uint32 strength) = 0;
Eric Shienbrood5de44ab2011-12-05 10:46:27 -050049 virtual void OnActivateCallback(uint32 status, const Error &error,
50 AsyncCallHandler *call_handler) = 0;
Darin Petkovbec79a22011-08-01 14:47:17 -070051};
52
53} // namespace shill
54
55#endif // SHILL_MODEM_CDMA_PROXY_INTERFACE_