blob: 085abf375f451b8a9d8b549e36c040a2584da26c [file] [log] [blame]
mukesh agrawal8a3188d2011-12-01 20:56:44 +00001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Paul Stewart75897df2011-04-27 09:05:53 -07002// 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_MANAGER_
6#define SHILL_MANAGER_
7
Chris Masone9be4a9d2011-05-16 15:44:09 -07008#include <string>
Paul Stewart75897df2011-04-27 09:05:53 -07009#include <vector>
Chris Masone487b8bf2011-05-13 16:27:57 -070010
Paul Stewarte6132022011-08-16 09:11:02 -070011#include <base/file_path.h>
Chris Masone9be4a9d2011-05-16 15:44:09 -070012#include <base/memory/ref_counted.h>
Chris Masone487b8bf2011-05-13 16:27:57 -070013#include <base/memory/scoped_ptr.h>
Chris Masone88cbd5f2011-07-03 14:30:04 -070014#include <chromeos/dbus/service_constants.h>
Paul Stewart22aa71b2011-09-16 12:15:11 -070015#include <gtest/gtest_prod.h> // for FRIEND_TEST
Paul Stewart75897df2011-04-27 09:05:53 -070016
Paul Stewart75897df2011-04-27 09:05:53 -070017#include "shill/device.h"
Paul Stewart0af98bf2011-05-10 17:38:08 -070018#include "shill/device_info.h"
Paul Stewart26b327e2011-10-19 11:38:09 -070019#include "shill/event_dispatcher.h"
Darin Petkov887f2982011-07-14 16:10:17 -070020#include "shill/modem_info.h"
Chris Masoneb925cc82011-06-22 15:39:57 -070021#include "shill/property_store.h"
Chris Masone9be4a9d2011-05-16 15:44:09 -070022#include "shill/service.h"
mukesh agrawal7a4e4002011-09-06 11:26:05 -070023#include "shill/wifi.h"
Paul Stewart75897df2011-04-27 09:05:53 -070024
25namespace shill {
26
Chris Masoned0ceb8c2011-06-02 10:05:39 -070027class ControlInterface;
Chris Masone8fe2c7e2011-06-09 15:51:19 -070028class Error;
Chris Masoned0ceb8c2011-06-02 10:05:39 -070029class EventDispatcher;
Darin Petkov887f2982011-07-14 16:10:17 -070030class GLib;
Thieu Le3426c8f2012-01-11 17:35:11 -080031class ManagerAdaptorInterface;
32class Metrics;
Chris Masoned0ceb8c2011-06-02 10:05:39 -070033
Chris Masone27c4aa52011-07-02 13:10:14 -070034class Manager {
Paul Stewart75897df2011-04-27 09:05:53 -070035 public:
Chris Masone88cbd5f2011-07-03 14:30:04 -070036 struct Properties {
37 public:
38 Properties() : offline_mode(false) {}
39 bool offline_mode;
40 std::string check_portal_list;
41 std::string country;
42 std::string portal_url;
Paul Stewartd32f4842012-01-11 16:08:13 -080043 std::string host_name;
Chris Masone88cbd5f2011-07-03 14:30:04 -070044 };
45
Chris Masone9be4a9d2011-05-16 15:44:09 -070046 Manager(ControlInterface *control_interface,
Darin Petkov887f2982011-07-14 16:10:17 -070047 EventDispatcher *dispatcher,
Thieu Le3426c8f2012-01-11 17:35:11 -080048 Metrics *metrics,
Chris Masone2ae797d2011-08-23 20:41:00 -070049 GLib *glib,
50 const std::string &run_directory,
51 const std::string &storage_directory,
52 const std::string &user_storage_format);
Chris Masone3bd3c8c2011-06-13 08:20:26 -070053 virtual ~Manager();
mukesh agrawal8f317b62011-07-15 11:53:23 -070054
55 void AddDeviceToBlackList(const std::string &device_name);
Paul Stewart75897df2011-04-27 09:05:53 -070056 void Start();
57 void Stop();
58
Chris Masone7aa5f902011-07-11 11:13:35 -070059 const ProfileRefPtr &ActiveProfile();
Chris Masone6515aab2011-10-12 16:19:09 -070060 bool MoveServiceToProfile(const ServiceRefPtr &to_move,
61 const ProfileRefPtr &destination);
Chris Masone7aa5f902011-07-11 11:13:35 -070062
Paul Stewart1b1a7f22012-01-06 16:24:06 -080063 // Called via RPC call on Service (|to_set|) to set the "Profile" property.
64 void SetProfileForService(const ServiceRefPtr &to_set,
65 const std::string &profile,
66 Error *error);
67
Chris Masone2b105542011-06-22 10:58:09 -070068 void RegisterDevice(const DeviceRefPtr &to_manage);
mukesh agrawal5029c6c2011-08-25 11:12:40 -070069 void DeregisterDevice(const DeviceRefPtr &to_forget);
Chris Masone9be4a9d2011-05-16 15:44:09 -070070
mukesh agrawal4eb4d782011-12-05 17:34:37 +000071 virtual bool HasService(const ServiceRefPtr &service);
mukesh agrawal8a3188d2011-12-01 20:56:44 +000072 // Register a Service with the Manager. Manager may choose to
73 // connect to it immediately.
mukesh agrawal32399322011-09-01 10:53:43 -070074 virtual void RegisterService(const ServiceRefPtr &to_manage);
mukesh agrawal8a3188d2011-12-01 20:56:44 +000075 // Deregister a Service from the Manager. Caller is responsible
76 // for disconnecting the Service before-hand.
Chris Masone6515aab2011-10-12 16:19:09 -070077 virtual void DeregisterService(const ServiceRefPtr &to_forget);
mukesh agrawal00917ce2011-11-22 23:56:55 +000078 virtual void UpdateService(const ServiceRefPtr &to_update);
Chris Masone9be4a9d2011-05-16 15:44:09 -070079
Paul Stewartfdd16072011-09-16 12:41:35 -070080 void FilterByTechnology(Technology::Identifier tech,
Chris Masonec1e50412011-06-07 13:04:53 -070081 std::vector<DeviceRefPtr> *found);
Chris Masone9be4a9d2011-05-16 15:44:09 -070082
Chris Masonee0dea762011-06-09 09:06:03 -070083 ServiceRefPtr FindService(const std::string& name);
Gaurav Shah1b7a6162011-11-09 11:41:01 -080084 std::vector<std::string> EnumerateAvailableServices(Error *error);
Chris Masone9be4a9d2011-05-16 15:44:09 -070085
mukesh agrawal32399322011-09-01 10:53:43 -070086 // called via RPC (e.g., from ManagerDBusAdaptor)
mukesh agrawal7a4e4002011-09-06 11:26:05 -070087 WiFiServiceRefPtr GetWifiService(const KeyValueStore &args, Error *error);
mukesh agrawal32399322011-09-01 10:53:43 -070088 void RequestScan(const std::string &technology, Error *error);
Paul Stewart22aa71b2011-09-16 12:15:11 -070089 std::string GetTechnologyOrder();
90 void SetTechnologyOrder(const std::string &order, Error *error);
Gaurav Shah71354762011-11-28 19:22:49 -080091 // Set up the profile list starting with a default profile along with
92 // an (optional) list of startup profiles.
93 void InitializeProfiles();
Paul Stewart19c871d2011-12-15 16:10:13 -080094 // Create a profile. This does not affect the profile stack. Returns
95 // the RPC path of the created profile in |path|.
96 void CreateProfile(const std::string &name, std::string *path, Error *error);
Paul Stewart5dc40aa2011-10-28 19:43:43 -070097 // Pushes existing profile with name |name| onto stack of managed profiles.
Paul Stewart19c871d2011-12-15 16:10:13 -080098 // Returns the RPC path of the pushed profile in |path|.
99 void PushProfile(const std::string &name, std::string *path, Error *error);
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700100 // Pops profile named |name| off the top of the stack of managed profiles.
101 void PopProfile(const std::string &name, Error *error);
102 // Remove the active profile.
103 void PopAnyProfile(Error *error);
mukesh agrawal32399322011-09-01 10:53:43 -0700104
Chris Masone626719f2011-08-18 16:58:48 -0700105 virtual DeviceInfo *device_info() { return &device_info_; }
Darin Petkov41c0e0a2012-01-09 16:38:53 +0100106 ModemInfo *modem_info() { return &modem_info_; }
mukesh agrawalde29fa82011-09-16 16:16:36 -0700107 PropertyStore *mutable_store() { return &store_; }
108 virtual const PropertyStore &store() const { return store_; }
Chris Masoneb925cc82011-06-22 15:39:57 -0700109
Chris Masone877ff982011-09-21 16:18:24 -0700110 std::vector<DeviceRefPtr>::iterator devices_begin() {
111 return devices_.begin();
112 }
113 std::vector<DeviceRefPtr>::iterator devices_end() { return devices_.end(); }
Gaurav Shah71354762011-11-28 19:22:49 -0800114 void set_startup_profiles(const std::vector<std::string> &startup_profiles) {
115 startup_profiles_ = startup_profiles;
116 }
Paul Stewartd32f4842012-01-11 16:08:13 -0800117 virtual const std::string &GetHostName() { return props_.host_name; }
Chris Masone877ff982011-09-21 16:18:24 -0700118
Paul Stewart75897df2011-04-27 09:05:53 -0700119 private:
Darin Petkov6f9eaa32011-08-09 15:26:44 -0700120 friend class ManagerAdaptorInterface;
Paul Stewart22aa71b2011-09-16 12:15:11 -0700121 friend class ManagerTest;
Paul Stewarta41e38d2011-11-11 07:47:29 -0800122 FRIEND_TEST(ManagerTest, DeviceRegistrationAndStart);
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700123 FRIEND_TEST(ManagerTest, PushPopProfile);
Paul Stewart22aa71b2011-09-16 12:15:11 -0700124 FRIEND_TEST(ManagerTest, SortServices);
Paul Stewartc1dec4d2011-12-08 15:25:28 -0800125 FRIEND_TEST(ManagerTest, SortServicesWithConnection);
Gaurav Shah435de2c2011-11-17 19:01:07 -0800126 FRIEND_TEST(ManagerTest, AvailableTechnologies);
127 FRIEND_TEST(ManagerTest, ConnectedTechnologies);
128 FRIEND_TEST(ManagerTest, DefaultTechnology);
Darin Petkov6f9eaa32011-08-09 15:26:44 -0700129
mukesh agrawal7a4e4002011-09-06 11:26:05 -0700130 static const char kManagerErrorNoDevice[];
131
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800132 std::string CalculateState(Error *error);
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000133 void AutoConnect();
134 void AutoConnectTask();
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800135 std::vector<std::string> AvailableTechnologies(Error *error);
136 std::vector<std::string> ConnectedTechnologies(Error *error);
137 std::string DefaultTechnology(Error *error);
138 std::vector<std::string> EnabledTechnologies(Error *error);
139 std::vector<std::string> EnumerateDevices(Error *error);
Chris Masone6791a432011-07-12 13:23:19 -0700140 // TODO(cmasone): This should be implemented by filtering |services_|.
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800141 std::vector<std::string> EnumerateWatchedServices(Error *error);
142 std::string GetActiveProfileName(Error *error);
Chris Masoneb925cc82011-06-22 15:39:57 -0700143
mukesh agrawalffa3d042011-10-06 15:26:10 -0700144 void HelpRegisterDerivedString(
145 const std::string &name,
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800146 std::string(Manager::*get)(Error *),
mukesh agrawalffa3d042011-10-06 15:26:10 -0700147 void(Manager::*set)(const std::string&, Error *));
148 void HelpRegisterDerivedStrings(
149 const std::string &name,
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800150 Strings(Manager::*get)(Error *),
mukesh agrawalffa3d042011-10-06 15:26:10 -0700151 void(Manager::*set)(const Strings&, Error *));
Chris Masone27c4aa52011-07-02 13:10:14 -0700152
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700153 void PopProfileInternal();
Paul Stewart22aa71b2011-09-16 12:15:11 -0700154 bool OrderServices(ServiceRefPtr a, ServiceRefPtr b);
155 void SortServices();
156
mukesh agrawal8a3188d2011-12-01 20:56:44 +0000157 EventDispatcher *dispatcher_;
158 ScopedRunnableMethodFactory<Manager> task_factory_;
Chris Masone2ae797d2011-08-23 20:41:00 -0700159 const FilePath run_path_;
160 const FilePath storage_path_;
161 const std::string user_storage_format_;
Paul Stewart0af98bf2011-05-10 17:38:08 -0700162 scoped_ptr<ManagerAdaptorInterface> adaptor_;
163 DeviceInfo device_info_;
Darin Petkov887f2982011-07-14 16:10:17 -0700164 ModemInfo modem_info_;
Paul Stewart75897df2011-04-27 09:05:53 -0700165 bool running_;
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700166 // Used to facilitate unit tests which can't use RPC.
167 bool connect_profiles_to_rpc_;
Chris Masonec1e50412011-06-07 13:04:53 -0700168 std::vector<DeviceRefPtr> devices_;
Chris Masone6791a432011-07-12 13:23:19 -0700169 // We store Services in a vector, because we want to keep them sorted.
Chris Masonec1e50412011-06-07 13:04:53 -0700170 std::vector<ServiceRefPtr> services_;
Gaurav Shah71354762011-11-28 19:22:49 -0800171 // List of startup profile names to push on the profile stack on startup.
172 std::vector<std::string> startup_profiles_;
Chris Masone7aa5f902011-07-11 11:13:35 -0700173 std::vector<ProfileRefPtr> profiles_;
174 ProfileRefPtr ephemeral_profile_;
Chris Masone2ae797d2011-08-23 20:41:00 -0700175 ControlInterface *control_interface_;
Thieu Le3426c8f2012-01-11 17:35:11 -0800176 Metrics *metrics_;
Chris Masone2ae797d2011-08-23 20:41:00 -0700177 GLib *glib_;
Chris Masone3bd3c8c2011-06-13 08:20:26 -0700178
Paul Stewart22aa71b2011-09-16 12:15:11 -0700179 // The priority order of technologies
180 std::vector<Technology::Identifier> technology_order_;
181
Chris Masoneb925cc82011-06-22 15:39:57 -0700182 // Properties to be get/set via PropertyStore calls.
Chris Masone88cbd5f2011-07-03 14:30:04 -0700183 Properties props_;
Chris Masone27c4aa52011-07-02 13:10:14 -0700184 PropertyStore store_;
Paul Stewart75897df2011-04-27 09:05:53 -0700185};
186
187} // namespace shill
188
189#endif // SHILL_MANAGER_