blob: f1b2c0a28099703a5d45c2da290b9338b066ec52 [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/service.h"
15
16namespace shill {
17
Chris Masone6791a432011-07-12 13:23:19 -070018class ControlInterface;
19class EventDispatcher;
20class Manager;
21
Chris Masone3bd3c8c2011-06-13 08:20:26 -070022class CellularService : public Service {
23 public:
24 CellularService(ControlInterface *control_interface,
25 EventDispatcher *dispatcher,
Chris Masone6791a432011-07-12 13:23:19 -070026 Manager *manager,
mukesh agrawal51a7e932011-07-27 16:18:26 -070027 const CellularRefPtr &device);
Darin Petkovd9661952011-08-03 16:25:42 -070028 virtual ~CellularService();
29
Chris Masone3bd3c8c2011-06-13 08:20:26 -070030 void Connect();
31 void Disconnect();
32
Darin Petkovd9661952011-08-03 16:25:42 -070033 uint8 strength() const { return strength_; }
34 void set_strength(uint8 strength) { strength_ = strength; }
35
Chris Masone3bd3c8c2011-06-13 08:20:26 -070036 protected:
37 virtual std::string CalculateState() { return "idle"; }
38
39 // Properties
40 std::string activation_state_;
41 std::string operator_name_;
42 std::string operator_code_;
43 std::string network_tech_;
44 std::string roaming_state_;
45 std::string payment_url_;
46 uint8 strength_;
47
48 std::map<std::string, std::string> apn_info_;
49 std::map<std::string, std::string> last_good_apn_info_;
50
51 private:
Chris Masone95207da2011-06-29 16:50:49 -070052 std::string GetDeviceRpcId();
53
Chris Masone2b105542011-06-22 10:58:09 -070054 CellularRefPtr cellular_;
Chris Masone3bd3c8c2011-06-13 08:20:26 -070055 const std::string type_;
Darin Petkovd9661952011-08-03 16:25:42 -070056
Chris Masone3bd3c8c2011-06-13 08:20:26 -070057 DISALLOW_COPY_AND_ASSIGN(CellularService);
58};
59
60} // namespace shill
61
62#endif // SHILL_CELLULAR_SERVICE_