blob: e074202d8596acf66130918a456f7ba4e23bffa5 [file] [log] [blame]
Chris Masone3bd3c8c2011-06-13 08:20:26 -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_CELLULAR_SERVICE_
6#define SHILL_CELLULAR_SERVICE_
7
8#include <map>
9#include <string>
10
11#include <base/basictypes.h>
12
Chris Masone2b105542011-06-22 10:58:09 -070013#include "shill/refptr_types.h"
Chris Masone3bd3c8c2011-06-13 08:20:26 -070014#include "shill/shill_event.h"
15#include "shill/service.h"
16
17namespace shill {
18
Chris Masone6791a432011-07-12 13:23:19 -070019class ControlInterface;
20class EventDispatcher;
21class Manager;
22
Chris Masone3bd3c8c2011-06-13 08:20:26 -070023class CellularService : public Service {
24 public:
25 CellularService(ControlInterface *control_interface,
26 EventDispatcher *dispatcher,
Chris Masone6791a432011-07-12 13:23:19 -070027 Manager *manager,
mukesh agrawal51a7e932011-07-27 16:18:26 -070028 const CellularRefPtr &device);
Chris Masone3bd3c8c2011-06-13 08:20:26 -070029 ~CellularService();
30 void Connect();
31 void Disconnect();
32
Chris Masone3bd3c8c2011-06-13 08:20:26 -070033 protected:
34 virtual std::string CalculateState() { return "idle"; }
35
36 // Properties
37 std::string activation_state_;
38 std::string operator_name_;
39 std::string operator_code_;
40 std::string network_tech_;
41 std::string roaming_state_;
42 std::string payment_url_;
43 uint8 strength_;
44
45 std::map<std::string, std::string> apn_info_;
46 std::map<std::string, std::string> last_good_apn_info_;
47
48 private:
Chris Masone95207da2011-06-29 16:50:49 -070049 std::string GetDeviceRpcId();
50
Chris Masone2b105542011-06-22 10:58:09 -070051 CellularRefPtr cellular_;
Chris Masone3bd3c8c2011-06-13 08:20:26 -070052 const std::string type_;
53 DISALLOW_COPY_AND_ASSIGN(CellularService);
54};
55
56} // namespace shill
57
58#endif // SHILL_CELLULAR_SERVICE_