blob: ad39dab9d6e0652aeda1a0fcbfb96197f7d4a751 [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);
Darin Petkovd9661952011-08-03 16:25:42 -070029 virtual ~CellularService();
30
Chris Masone3bd3c8c2011-06-13 08:20:26 -070031 void Connect();
32 void Disconnect();
33
Darin Petkovd9661952011-08-03 16:25:42 -070034 uint8 strength() const { return strength_; }
35 void set_strength(uint8 strength) { strength_ = strength; }
36
Chris Masone3bd3c8c2011-06-13 08:20:26 -070037 protected:
38 virtual std::string CalculateState() { return "idle"; }
39
40 // Properties
41 std::string activation_state_;
42 std::string operator_name_;
43 std::string operator_code_;
44 std::string network_tech_;
45 std::string roaming_state_;
46 std::string payment_url_;
47 uint8 strength_;
48
49 std::map<std::string, std::string> apn_info_;
50 std::map<std::string, std::string> last_good_apn_info_;
51
52 private:
Chris Masone95207da2011-06-29 16:50:49 -070053 std::string GetDeviceRpcId();
54
Chris Masone2b105542011-06-22 10:58:09 -070055 CellularRefPtr cellular_;
Chris Masone3bd3c8c2011-06-13 08:20:26 -070056 const std::string type_;
Darin Petkovd9661952011-08-03 16:25:42 -070057
Chris Masone3bd3c8c2011-06-13 08:20:26 -070058 DISALLOW_COPY_AND_ASSIGN(CellularService);
59};
60
61} // namespace shill
62
63#endif // SHILL_CELLULAR_SERVICE_