blob: c3cbc12d2fe00f031a956411c50416526a80cbbd [file] [log] [blame]
Paul Stewart75897df2011-04-27 09:05:53 -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
Chris Masone8fe2c7e2011-06-09 15:51:19 -07005#include "shill/manager.h"
6
Paul Stewart75897df2011-04-27 09:05:53 -07007#include <time.h>
Paul Stewart75897df2011-04-27 09:05:53 -07008#include <stdio.h>
Chris Masoneee929b72011-05-10 10:02:18 -07009
Paul Stewart22aa71b2011-09-16 12:15:11 -070010#include <algorithm>
mukesh agrawal7a4e4002011-09-06 11:26:05 -070011#include <map>
Paul Stewart75897df2011-04-27 09:05:53 -070012#include <string>
Chris Masone52cd19b2011-06-29 17:23:04 -070013#include <vector>
Paul Stewart75897df2011-04-27 09:05:53 -070014
Paul Stewarte6132022011-08-16 09:11:02 -070015#include <base/file_util.h>
Chris Masoneee929b72011-05-10 10:02:18 -070016#include <base/logging.h>
Chris Masone9be4a9d2011-05-16 15:44:09 -070017#include <base/memory/ref_counted.h>
Paul Stewart22aa71b2011-09-16 12:15:11 -070018#include <base/string_split.h>
19#include <base/string_util.h>
Chris Masone3bd3c8c2011-06-13 08:20:26 -070020#include <chromeos/dbus/service_constants.h>
Chris Masoneee929b72011-05-10 10:02:18 -070021
Chris Masoned0ceb8c2011-06-02 10:05:39 -070022#include "shill/adaptor_interfaces.h"
Paul Stewart75897df2011-04-27 09:05:53 -070023#include "shill/control_interface.h"
Chris Masoned0ceb8c2011-06-02 10:05:39 -070024#include "shill/dbus_adaptor.h"
Chris Masone7aa5f902011-07-11 11:13:35 -070025#include "shill/default_profile.h"
Chris Masone9be4a9d2011-05-16 15:44:09 -070026#include "shill/device.h"
27#include "shill/device_info.h"
Chris Masone6791a432011-07-12 13:23:19 -070028#include "shill/ephemeral_profile.h"
Chris Masone8fe2c7e2011-06-09 15:51:19 -070029#include "shill/error.h"
Paul Stewart26b327e2011-10-19 11:38:09 -070030#include "shill/event_dispatcher.h"
Chris Masone9d779932011-08-25 16:33:41 -070031#include "shill/key_file_store.h"
Paul Stewart22aa71b2011-09-16 12:15:11 -070032#include "shill/service_sorter.h"
Chris Masone7aa5f902011-07-11 11:13:35 -070033#include "shill/profile.h"
Chris Masoneb925cc82011-06-22 15:39:57 -070034#include "shill/property_accessor.h"
Paul Stewarte6132022011-08-16 09:11:02 -070035#include "shill/resolver.h"
Chris Masone9be4a9d2011-05-16 15:44:09 -070036#include "shill/service.h"
mukesh agrawal7a4e4002011-09-06 11:26:05 -070037#include "shill/wifi.h"
38#include "shill/wifi_service.h"
Paul Stewart75897df2011-04-27 09:05:53 -070039
Paul Stewart22aa71b2011-09-16 12:15:11 -070040using std::map;
Paul Stewart75897df2011-04-27 09:05:53 -070041using std::string;
Chris Masone9be4a9d2011-05-16 15:44:09 -070042using std::vector;
Paul Stewart75897df2011-04-27 09:05:53 -070043
44namespace shill {
Paul Stewarte6132022011-08-16 09:11:02 -070045
mukesh agrawal7a4e4002011-09-06 11:26:05 -070046// static
47const char Manager::kManagerErrorNoDevice[] = "no wifi devices available";
48
Paul Stewart75897df2011-04-27 09:05:53 -070049Manager::Manager(ControlInterface *control_interface,
Darin Petkov887f2982011-07-14 16:10:17 -070050 EventDispatcher *dispatcher,
Chris Masone2ae797d2011-08-23 20:41:00 -070051 GLib *glib,
52 const string &run_directory,
53 const string &storage_directory,
54 const string &user_storage_format)
55 : run_path_(FilePath(run_directory)),
56 storage_path_(FilePath(storage_directory)),
57 user_storage_format_(user_storage_format),
Paul Stewarte6132022011-08-16 09:11:02 -070058 adaptor_(control_interface->CreateManagerAdaptor(this)),
Paul Stewartb50f0b92011-05-16 16:31:42 -070059 device_info_(control_interface, dispatcher, this),
Darin Petkov887f2982011-07-14 16:10:17 -070060 modem_info_(control_interface, dispatcher, this, glib),
Chris Masone6791a432011-07-12 13:23:19 -070061 running_(false),
Paul Stewart5dc40aa2011-10-28 19:43:43 -070062 connect_profiles_to_rpc_(true),
Chris Masone9d779932011-08-25 16:33:41 -070063 ephemeral_profile_(new EphemeralProfile(control_interface, this)),
Chris Masone2ae797d2011-08-23 20:41:00 -070064 control_interface_(control_interface),
65 glib_(glib) {
Chris Masone7aa5f902011-07-11 11:13:35 -070066 HelpRegisterDerivedString(flimflam::kActiveProfileProperty,
67 &Manager::GetActiveProfileName,
68 NULL);
Chris Masone27c4aa52011-07-02 13:10:14 -070069 HelpRegisterDerivedStrings(flimflam::kAvailableTechnologiesProperty,
70 &Manager::AvailableTechnologies,
71 NULL);
Chris Masone88cbd5f2011-07-03 14:30:04 -070072 store_.RegisterString(flimflam::kCheckPortalListProperty,
73 &props_.check_portal_list);
Chris Masone27c4aa52011-07-02 13:10:14 -070074 HelpRegisterDerivedStrings(flimflam::kConnectedTechnologiesProperty,
75 &Manager::ConnectedTechnologies,
76 NULL);
Chris Masone88cbd5f2011-07-03 14:30:04 -070077 store_.RegisterString(flimflam::kCountryProperty, &props_.country);
Chris Masone27c4aa52011-07-02 13:10:14 -070078 HelpRegisterDerivedString(flimflam::kDefaultTechnologyProperty,
79 &Manager::DefaultTechnology,
80 NULL);
Chris Masone27c4aa52011-07-02 13:10:14 -070081 HelpRegisterDerivedStrings(flimflam::kDevicesProperty,
82 &Manager::EnumerateDevices,
83 NULL);
Chris Masone88cbd5f2011-07-03 14:30:04 -070084 HelpRegisterDerivedStrings(flimflam::kEnabledTechnologiesProperty,
85 &Manager::EnabledTechnologies,
86 NULL);
87 store_.RegisterBool(flimflam::kOfflineModeProperty, &props_.offline_mode);
88 store_.RegisterString(flimflam::kPortalURLProperty, &props_.portal_url);
89 HelpRegisterDerivedString(flimflam::kStateProperty,
90 &Manager::CalculateState,
91 NULL);
Chris Masone27c4aa52011-07-02 13:10:14 -070092 HelpRegisterDerivedStrings(flimflam::kServicesProperty,
93 &Manager::EnumerateAvailableServices,
94 NULL);
95 HelpRegisterDerivedStrings(flimflam::kServiceWatchListProperty,
96 &Manager::EnumerateWatchedServices,
97 NULL);
Chris Masone3c3f6a12011-07-01 10:01:41 -070098
Chris Masone4d42df82011-07-02 17:09:39 -070099 // TODO(cmasone): Wire these up once we actually put in profile support.
Chris Masoneb925cc82011-06-22 15:39:57 -0700100 // known_properties_.push_back(flimflam::kProfilesProperty);
Chris Masoneb07006b2011-05-14 16:10:04 -0700101 VLOG(2) << "Manager initialized.";
Paul Stewart75897df2011-04-27 09:05:53 -0700102}
103
Chris Masone6791a432011-07-12 13:23:19 -0700104Manager::~Manager() {
Chris Masone9d779932011-08-25 16:33:41 -0700105 profiles_.clear();
Chris Masone6791a432011-07-12 13:23:19 -0700106}
Paul Stewart75897df2011-04-27 09:05:53 -0700107
mukesh agrawal8f317b62011-07-15 11:53:23 -0700108void Manager::AddDeviceToBlackList(const string &device_name) {
109 device_info_.AddDeviceToBlackList(device_name);
110}
111
Paul Stewart75897df2011-04-27 09:05:53 -0700112void Manager::Start() {
Paul Stewart0af98bf2011-05-10 17:38:08 -0700113 LOG(INFO) << "Manager started.";
Paul Stewarte6132022011-08-16 09:11:02 -0700114
Chris Masone2ae797d2011-08-23 20:41:00 -0700115 CHECK(file_util::CreateDirectory(run_path_)) << run_path_.value();
Paul Stewarte6132022011-08-16 09:11:02 -0700116 Resolver::GetInstance()->set_path(run_path_.Append("resolv.conf"));
Chris Masone2ae797d2011-08-23 20:41:00 -0700117
118 CHECK(file_util::CreateDirectory(storage_path_)) << storage_path_.value();
119
Chris Masoneb9c00592011-10-06 13:10:39 -0700120 profiles_.push_back(new DefaultProfile(control_interface_,
121 this,
122 storage_path_,
123 props_));
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700124 CHECK(profiles_[0]->InitStorage(glib_, Profile::kCreateOrOpenExisting, NULL));
Chris Masoneb9c00592011-10-06 13:10:39 -0700125
Paul Stewart75897df2011-04-27 09:05:53 -0700126 running_ = true;
Chris Masone413a3192011-05-09 17:10:05 -0700127 adaptor_->UpdateRunning();
Paul Stewart0af98bf2011-05-10 17:38:08 -0700128 device_info_.Start();
Darin Petkov887f2982011-07-14 16:10:17 -0700129 modem_info_.Start();
Paul Stewart75897df2011-04-27 09:05:53 -0700130}
131
132void Manager::Stop() {
133 running_ = false;
Chris Masone9d779932011-08-25 16:33:41 -0700134 // Persist profile, device, service information to disk.
135 vector<ProfileRefPtr>::iterator it;
136 for (it = profiles_.begin(); it != profiles_.end(); ++it) {
Chris Masone6515aab2011-10-12 16:19:09 -0700137 (*it)->Save();
Chris Masone9d779932011-08-25 16:33:41 -0700138 }
Chris Masone9d779932011-08-25 16:33:41 -0700139
Thieu Le1271d682011-11-02 22:48:19 +0000140 vector<ServiceRefPtr>::iterator services_it;
141 for (services_it = services_.begin(); services_it != services_.end();
142 ++services_it) {
143 (*services_it)->Disconnect();
144 }
145
Chris Masone413a3192011-05-09 17:10:05 -0700146 adaptor_->UpdateRunning();
Darin Petkov887f2982011-07-14 16:10:17 -0700147 modem_info_.Stop();
148 device_info_.Stop();
Paul Stewart75897df2011-04-27 09:05:53 -0700149}
150
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700151void Manager::CreateProfile(const std::string &name, Error *error) {
152 Profile::Identifier ident;
153 if (!Profile::ParseIdentifier(name, &ident)) {
154 const string kMessage = "Invalid profile name " + name;
155 LOG(ERROR) << kMessage;
156 CHECK(error);
157 error->Populate(Error::kInvalidArguments, kMessage);
158 return;
159 }
160 ProfileRefPtr profile(new Profile(control_interface_,
161 this,
162 ident,
163 user_storage_format_,
164 false));
165 if (!profile->InitStorage(glib_, Profile::kCreateNew, error)) {
166 return;
167 }
168
169 // Save profile data out, and then let the scoped pointer fall out of scope.
170 if (!profile->Save()) {
171 const string kMessage = "Profile name " + name + " could not be saved";
172 LOG(ERROR) << kMessage;
173 CHECK(error);
174 error->Populate(Error::kInternalError, kMessage);
175 return;
176 }
177}
178
179void Manager::PushProfile(const string &name, Error *error) {
180
181 Profile::Identifier ident;
182 if (!Profile::ParseIdentifier(name, &ident)) {
183 const string kMessage = "Invalid profile name " + name;
184 LOG(ERROR) << kMessage;
185 CHECK(error);
186 error->Populate(Error::kInvalidArguments, kMessage);
187 return;
188 }
189
190 for (vector<ProfileRefPtr>::const_iterator it = profiles_.begin();
191 it != profiles_.end();
192 ++it) {
193 if ((*it)->MatchesIdentifier(ident)) {
194 const string kMessage = "Profile name " + name + " is already on stack";
195 LOG(ERROR) << kMessage;
196 CHECK(error);
197 error->Populate(Error::kAlreadyExists, kMessage);
198 return;
199 }
200 }
201
202 if (ident.user.empty()) {
203 // The manager will have only one machine-wide profile, and this is the
204 // DefaultProfile. This means no other profiles can be loaded that do
205 // not have a user component.
206 // TODO(pstew): This is all well and good, but WiFi autotests try to
207 // creating a default profile (by a name other than "default") in order
208 // to avoid leaving permanent side effects to devices under test. This
209 // whole thing will need to be reworked in order to allow that to happen,
210 // or the autotests (or their expectations) will need to change.
211 const string kMessage = "Cannot load non-default global profile " + name;
212 LOG(ERROR) << kMessage;
213 CHECK(error);
214 error->Populate(Error::kInvalidArguments, kMessage);
215 return;
216 }
217
218 ProfileRefPtr profile(new Profile(control_interface_,
219 this,
220 ident,
221 user_storage_format_,
222 connect_profiles_to_rpc_));
223 if (!profile->InitStorage(glib_, Profile::kOpenExisting, error)) {
224 return;
225 }
226
Paul Stewarta849a3d2011-11-03 05:54:09 -0700227 profiles_.push_back(profile);
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700228
229 // Offer each registered Service the opportunity to join this new Profile.
230 vector<ServiceRefPtr>::iterator it;
231 for (it = services_.begin(); it != services_.end(); ++it) {
Paul Stewartbba6a5b2011-11-02 18:45:59 -0700232 profile->ConfigureService(*it);
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700233 }
234
235 // TODO(pstew): Now shop the Profile contents around to Devices which
236 // can create non-visible services.
237}
238
239void Manager::PopProfileInternal() {
240 CHECK(!profiles_.empty());
241 ProfileRefPtr active_profile = profiles_.back();
242 profiles_.pop_back();
243 vector<ServiceRefPtr>::iterator s_it;
244 for (s_it = services_.begin(); s_it != services_.end(); ++s_it) {
245 if ((*s_it)->profile().get() == active_profile.get()) {
246 vector<ProfileRefPtr>::reverse_iterator p_it;
247 for (p_it = profiles_.rbegin(); p_it != profiles_.rend(); ++p_it) {
Paul Stewartbba6a5b2011-11-02 18:45:59 -0700248 if ((*p_it)->ConfigureService(*s_it)) {
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700249 break;
250 }
251 }
252 if (p_it == profiles_.rend()) {
253 ephemeral_profile_->AdoptService(*s_it);
254 }
255 }
256 }
257}
258
259void Manager::PopProfile(const std::string &name, Error *error) {
260 Profile::Identifier ident;
261 if (profiles_.empty()) {
262 const string kMessage = "Profile stack is empty";
263 LOG(ERROR) << kMessage;
264 CHECK(error);
265 error->Populate(Error::kNotFound, kMessage);
266 return;
267 }
268 ProfileRefPtr active_profile = profiles_.back();
269 if (!Profile::ParseIdentifier(name, &ident)) {
270 const string kMessage = "Invalid profile name " + name;
271 LOG(ERROR) << kMessage;
272 CHECK(error);
273 error->Populate(Error::kInvalidArguments, kMessage);
274 return;
275 }
276 if (!active_profile->MatchesIdentifier(ident)) {
277 const string kMessage = name + " is not the active profile";
278 LOG(ERROR) << kMessage;
279 CHECK(error);
280 error->Populate(Error::kNotSupported, kMessage);
281 return;
282 }
283 PopProfileInternal();
284}
285
286void Manager::PopAnyProfile(Error *error) {
287 Profile::Identifier ident;
288 if (profiles_.empty()) {
289 const string kMessage = "Profile stack is empty";
290 LOG(ERROR) << kMessage;
291 CHECK(error);
292 error->Populate(Error::kNotFound, kMessage);
293 return;
294 }
295 PopProfileInternal();
296}
297
Chris Masone7aa5f902011-07-11 11:13:35 -0700298const ProfileRefPtr &Manager::ActiveProfile() {
Chris Masoneb9c00592011-10-06 13:10:39 -0700299 DCHECK_NE(profiles_.size(), 0);
Chris Masone7aa5f902011-07-11 11:13:35 -0700300 return profiles_.back();
301}
302
Chris Masone6515aab2011-10-12 16:19:09 -0700303bool Manager::MoveServiceToProfile(const ServiceRefPtr &to_move,
304 const ProfileRefPtr &destination) {
305 const ProfileRefPtr from = to_move->profile();
306 return destination->AdoptService(to_move) &&
307 from->AbandonService(to_move);
Chris Masone6791a432011-07-12 13:23:19 -0700308}
309
Chris Masone2b105542011-06-22 10:58:09 -0700310void Manager::RegisterDevice(const DeviceRefPtr &to_manage) {
Chris Masonec1e50412011-06-07 13:04:53 -0700311 vector<DeviceRefPtr>::iterator it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700312 for (it = devices_.begin(); it != devices_.end(); ++it) {
Chris Masonec1e50412011-06-07 13:04:53 -0700313 if (to_manage.get() == it->get())
Chris Masone9be4a9d2011-05-16 15:44:09 -0700314 return;
315 }
Chris Masonec1e50412011-06-07 13:04:53 -0700316 devices_.push_back(to_manage);
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700317
318 // TODO(pstew): Should check configuration
319 if (running_)
320 to_manage->Start();
Chris Masone6515aab2011-10-12 16:19:09 -0700321
322 // NB: Should we keep a ptr to default profile and only persist that here?
323 for (vector<ProfileRefPtr>::iterator it = profiles_.begin();
324 it != profiles_.end();
325 ++it) {
326 (*it)->Save();
327 }
Chris Masone9be4a9d2011-05-16 15:44:09 -0700328}
329
mukesh agrawal5029c6c2011-08-25 11:12:40 -0700330void Manager::DeregisterDevice(const DeviceRefPtr &to_forget) {
Chris Masonec1e50412011-06-07 13:04:53 -0700331 vector<DeviceRefPtr>::iterator it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700332 for (it = devices_.begin(); it != devices_.end(); ++it) {
Chris Masonec1e50412011-06-07 13:04:53 -0700333 if (to_forget.get() == it->get()) {
mukesh agrawal5029c6c2011-08-25 11:12:40 -0700334 VLOG(2) << "Deregistered device: " << to_forget->UniqueName();
335 to_forget->Stop();
Chris Masone9be4a9d2011-05-16 15:44:09 -0700336 devices_.erase(it);
337 return;
338 }
339 }
mukesh agrawal5029c6c2011-08-25 11:12:40 -0700340 VLOG(2) << __func__ << " unknown device: " << to_forget->UniqueName();
Chris Masone9be4a9d2011-05-16 15:44:09 -0700341}
342
Chris Masone2b105542011-06-22 10:58:09 -0700343void Manager::RegisterService(const ServiceRefPtr &to_manage) {
mukesh agrawald835b202011-10-07 15:26:47 -0700344 VLOG(2) << __func__ << to_manage->UniqueName();
345
Paul Stewartbba6a5b2011-11-02 18:45:59 -0700346 bool configured = false;
Chris Masone157aa0c2011-10-03 09:24:31 -0700347 for (vector<ProfileRefPtr>::iterator it = profiles_.begin();
Paul Stewartbba6a5b2011-11-02 18:45:59 -0700348 !configured && it != profiles_.end();
Chris Masone157aa0c2011-10-03 09:24:31 -0700349 ++it) {
Paul Stewartbba6a5b2011-11-02 18:45:59 -0700350 configured = (*it)->ConfigureService(to_manage);
Chris Masone157aa0c2011-10-03 09:24:31 -0700351 }
Chris Masone6791a432011-07-12 13:23:19 -0700352
353 // If not found, add it to the ephemeral profile
Paul Stewartbba6a5b2011-11-02 18:45:59 -0700354 if (!configured)
Chris Masone6515aab2011-10-12 16:19:09 -0700355 ephemeral_profile_->AdoptService(to_manage);
Chris Masone6791a432011-07-12 13:23:19 -0700356
357 // Now add to OUR list.
Chris Masonec1e50412011-06-07 13:04:53 -0700358 vector<ServiceRefPtr>::iterator it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700359 for (it = services_.begin(); it != services_.end(); ++it) {
mukesh agrawald835b202011-10-07 15:26:47 -0700360 CHECK(to_manage->UniqueName() != (*it)->UniqueName());
Chris Masone9be4a9d2011-05-16 15:44:09 -0700361 }
Chris Masonec1e50412011-06-07 13:04:53 -0700362 services_.push_back(to_manage);
Paul Stewart22aa71b2011-09-16 12:15:11 -0700363 SortServices();
mukesh agrawal32399322011-09-01 10:53:43 -0700364
365 vector<string> service_paths;
366 for (it = services_.begin(); it != services_.end(); ++it) {
367 service_paths.push_back((*it)->GetRpcIdentifier());
368 }
369 adaptor_->EmitRpcIdentifierArrayChanged(flimflam::kServicesProperty,
370 service_paths);
Chris Masone9be4a9d2011-05-16 15:44:09 -0700371}
372
Chris Masone6515aab2011-10-12 16:19:09 -0700373void Manager::DeregisterService(const ServiceRefPtr &to_forget) {
Chris Masonec1e50412011-06-07 13:04:53 -0700374 vector<ServiceRefPtr>::iterator it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700375 for (it = services_.begin(); it != services_.end(); ++it) {
Chris Masone6791a432011-07-12 13:23:19 -0700376 if (to_forget->UniqueName() == (*it)->UniqueName()) {
Chris Masone9be4a9d2011-05-16 15:44:09 -0700377 services_.erase(it);
Paul Stewart22aa71b2011-09-16 12:15:11 -0700378 SortServices();
Chris Masone9be4a9d2011-05-16 15:44:09 -0700379 return;
380 }
381 }
382}
383
Paul Stewart03dba0b2011-08-22 16:32:45 -0700384void Manager::UpdateService(const ServiceConstRefPtr &to_update) {
385 LOG(INFO) << "Service " << to_update->UniqueName() << " updated;"
386 << " state: " << to_update->state() << " failure: "
387 << to_update->failure();
Paul Stewart22aa71b2011-09-16 12:15:11 -0700388 SortServices();
Paul Stewart03dba0b2011-08-22 16:32:45 -0700389}
390
Paul Stewartfdd16072011-09-16 12:41:35 -0700391void Manager::FilterByTechnology(Technology::Identifier tech,
Chris Masonec1e50412011-06-07 13:04:53 -0700392 vector<DeviceRefPtr> *found) {
Chris Masone9be4a9d2011-05-16 15:44:09 -0700393 CHECK(found);
Chris Masonec1e50412011-06-07 13:04:53 -0700394 vector<DeviceRefPtr>::iterator it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700395 for (it = devices_.begin(); it != devices_.end(); ++it) {
396 if ((*it)->TechnologyIs(tech))
397 found->push_back(*it);
398 }
399}
400
Paul Stewart22aa71b2011-09-16 12:15:11 -0700401ServiceRefPtr Manager::FindService(const string& name) {
Chris Masonec1e50412011-06-07 13:04:53 -0700402 vector<ServiceRefPtr>::iterator it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700403 for (it = services_.begin(); it != services_.end(); ++it) {
Chris Masone6791a432011-07-12 13:23:19 -0700404 if (name == (*it)->UniqueName())
Chris Masonee0dea762011-06-09 09:06:03 -0700405 return *it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700406 }
Chris Masonee0dea762011-06-09 09:06:03 -0700407 return NULL;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700408}
409
mukesh agrawalffa3d042011-10-06 15:26:10 -0700410void Manager::HelpRegisterDerivedString(
411 const string &name,
412 string(Manager::*get)(void),
413 void(Manager::*set)(const string&, Error *)) {
Chris Masone27c4aa52011-07-02 13:10:14 -0700414 store_.RegisterDerivedString(
415 name,
416 StringAccessor(new CustomAccessor<Manager, string>(this, get, set)));
Chris Masoneb925cc82011-06-22 15:39:57 -0700417}
418
mukesh agrawalffa3d042011-10-06 15:26:10 -0700419void Manager::HelpRegisterDerivedStrings(
420 const string &name,
421 Strings(Manager::*get)(void),
422 void(Manager::*set)(const Strings &, Error *)) {
Chris Masone27c4aa52011-07-02 13:10:14 -0700423 store_.RegisterDerivedStrings(
424 name,
425 StringsAccessor(new CustomAccessor<Manager, Strings>(this, get, set)));
Chris Masoneb925cc82011-06-22 15:39:57 -0700426}
427
Paul Stewart22aa71b2011-09-16 12:15:11 -0700428void Manager::SortServices() {
429 sort(services_.begin(), services_.end(), ServiceSorter(technology_order_));
430}
431
Chris Masoneb925cc82011-06-22 15:39:57 -0700432string Manager::CalculateState() {
433 return flimflam::kStateOffline;
434}
435
436vector<string> Manager::AvailableTechnologies() {
437 return vector<string>();
438}
439
440vector<string> Manager::ConnectedTechnologies() {
441 return vector<string>();
442}
443
444string Manager::DefaultTechnology() {
445 return "";
446}
447
448vector<string> Manager::EnabledTechnologies() {
449 return vector<string>();
450}
451
Chris Masone3c3f6a12011-07-01 10:01:41 -0700452vector<string> Manager::EnumerateDevices() {
453 vector<string> device_rpc_ids;
454 for (vector<DeviceRefPtr>::const_iterator it = devices_.begin();
455 it != devices_.end();
456 ++it) {
457 device_rpc_ids.push_back((*it)->GetRpcIdentifier());
458 }
459 return device_rpc_ids;
460}
461
462vector<string> Manager::EnumerateAvailableServices() {
Chris Masone3c3f6a12011-07-01 10:01:41 -0700463 vector<string> service_rpc_ids;
464 for (vector<ServiceRefPtr>::const_iterator it = services_.begin();
465 it != services_.end();
466 ++it) {
467 service_rpc_ids.push_back((*it)->GetRpcIdentifier());
468 }
469 return service_rpc_ids;
470}
471
472vector<string> Manager::EnumerateWatchedServices() {
Chris Masone6791a432011-07-12 13:23:19 -0700473 // TODO(cmasone): Filter this list for services in appropriate states.
Chris Masone3c3f6a12011-07-01 10:01:41 -0700474 return EnumerateAvailableServices();
475}
476
Chris Masone7aa5f902011-07-11 11:13:35 -0700477string Manager::GetActiveProfileName() {
Chris Masone7df0c672011-07-15 10:24:54 -0700478 return ActiveProfile()->GetFriendlyName();
Chris Masone7aa5f902011-07-11 11:13:35 -0700479}
480
mukesh agrawal32399322011-09-01 10:53:43 -0700481// called via RPC (e.g., from ManagerDBusAdaptor)
mukesh agrawal7a4e4002011-09-06 11:26:05 -0700482WiFiServiceRefPtr Manager::GetWifiService(const KeyValueStore &args,
483 Error *error) {
484 std::vector<DeviceRefPtr> wifi_devices;
Paul Stewart22aa71b2011-09-16 12:15:11 -0700485 FilterByTechnology(Technology::kWifi, &wifi_devices);
mukesh agrawal7a4e4002011-09-06 11:26:05 -0700486 if (wifi_devices.empty()) {
487 error->Populate(Error::kInvalidArguments, kManagerErrorNoDevice);
488 return NULL;
489 } else {
490 WiFi *wifi = dynamic_cast<WiFi *>(wifi_devices.front().get());
491 CHECK(wifi);
492 return wifi->GetService(args, error);
493 }
494}
495
496// called via RPC (e.g., from ManagerDBusAdaptor)
Paul Stewart22aa71b2011-09-16 12:15:11 -0700497void Manager::RequestScan(const string &technology, Error *error) {
mukesh agrawal32399322011-09-01 10:53:43 -0700498 if (technology == flimflam::kTypeWifi || technology == "") {
499 vector<DeviceRefPtr> wifi_devices;
Paul Stewartfdd16072011-09-16 12:41:35 -0700500 FilterByTechnology(Technology::kWifi, &wifi_devices);
mukesh agrawal32399322011-09-01 10:53:43 -0700501
502 for (vector<DeviceRefPtr>::iterator it = wifi_devices.begin();
503 it != wifi_devices.end();
504 ++it) {
Darin Petkovc0865312011-09-16 15:31:20 -0700505 (*it)->Scan(error);
mukesh agrawal32399322011-09-01 10:53:43 -0700506 }
507 } else {
508 // TODO(quiche): support scanning for other technologies?
509 const string kMessage = "Unrecognized technology " + technology;
510 LOG(ERROR) << kMessage;
511 CHECK(error);
512 error->Populate(Error::kInvalidArguments, kMessage);
513 }
514}
515
Paul Stewart22aa71b2011-09-16 12:15:11 -0700516string Manager::GetTechnologyOrder() {
517 vector<string> technology_names;
518 for (vector<Technology::Identifier>::iterator it = technology_order_.begin();
519 it != technology_order_.end();
520 ++it) {
521 technology_names.push_back(Technology::NameFromIdentifier(*it));
522 }
523
524 return JoinString(technology_names, ',');
525}
526
527void Manager::SetTechnologyOrder(const string &order, Error *error) {
528 vector<Technology::Identifier> new_order;
529 map<Technology::Identifier, bool> seen;
530
531 vector<string> order_parts;
532 base::SplitString(order, ',', &order_parts);
533
534 for (vector<string>::iterator it = order_parts.begin();
535 it != order_parts.end();
536 ++it) {
537 Technology::Identifier identifier = Technology::IdentifierFromName(*it);
538
539 if (identifier == Technology::kUnknown) {
540 error->Populate(Error::kInvalidArguments, *it +
541 " is an unknown technology name");
542 return;
543 }
544
545 if (ContainsKey(seen, identifier)) {
546 error->Populate(Error::kInvalidArguments, *it +
547 " is duplicated in the list");
548 return;
549 }
550 seen[identifier] = true;
551 new_order.push_back(identifier);
552 }
553
554 technology_order_ = new_order;
555 SortServices();
556}
557
Paul Stewart75897df2011-04-27 09:05:53 -0700558} // namespace shill