blob: 4bd3be8e273b83eb4e9e65330d56e250222bad81 [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
Chris Masoneb9c00592011-10-06 13:10:39 -0700151void Manager::AdoptProfile(const ProfileRefPtr &profile) {
152 profiles_.push_back(profile);
153}
154
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700155void Manager::CreateProfile(const std::string &name, Error *error) {
156 Profile::Identifier ident;
157 if (!Profile::ParseIdentifier(name, &ident)) {
158 const string kMessage = "Invalid profile name " + name;
159 LOG(ERROR) << kMessage;
160 CHECK(error);
161 error->Populate(Error::kInvalidArguments, kMessage);
162 return;
163 }
164 ProfileRefPtr profile(new Profile(control_interface_,
165 this,
166 ident,
167 user_storage_format_,
168 false));
169 if (!profile->InitStorage(glib_, Profile::kCreateNew, error)) {
170 return;
171 }
172
173 // Save profile data out, and then let the scoped pointer fall out of scope.
174 if (!profile->Save()) {
175 const string kMessage = "Profile name " + name + " could not be saved";
176 LOG(ERROR) << kMessage;
177 CHECK(error);
178 error->Populate(Error::kInternalError, kMessage);
179 return;
180 }
181}
182
183void Manager::PushProfile(const string &name, Error *error) {
184
185 Profile::Identifier ident;
186 if (!Profile::ParseIdentifier(name, &ident)) {
187 const string kMessage = "Invalid profile name " + name;
188 LOG(ERROR) << kMessage;
189 CHECK(error);
190 error->Populate(Error::kInvalidArguments, kMessage);
191 return;
192 }
193
194 for (vector<ProfileRefPtr>::const_iterator it = profiles_.begin();
195 it != profiles_.end();
196 ++it) {
197 if ((*it)->MatchesIdentifier(ident)) {
198 const string kMessage = "Profile name " + name + " is already on stack";
199 LOG(ERROR) << kMessage;
200 CHECK(error);
201 error->Populate(Error::kAlreadyExists, kMessage);
202 return;
203 }
204 }
205
206 if (ident.user.empty()) {
207 // The manager will have only one machine-wide profile, and this is the
208 // DefaultProfile. This means no other profiles can be loaded that do
209 // not have a user component.
210 // TODO(pstew): This is all well and good, but WiFi autotests try to
211 // creating a default profile (by a name other than "default") in order
212 // to avoid leaving permanent side effects to devices under test. This
213 // whole thing will need to be reworked in order to allow that to happen,
214 // or the autotests (or their expectations) will need to change.
215 const string kMessage = "Cannot load non-default global profile " + name;
216 LOG(ERROR) << kMessage;
217 CHECK(error);
218 error->Populate(Error::kInvalidArguments, kMessage);
219 return;
220 }
221
222 ProfileRefPtr profile(new Profile(control_interface_,
223 this,
224 ident,
225 user_storage_format_,
226 connect_profiles_to_rpc_));
227 if (!profile->InitStorage(glib_, Profile::kOpenExisting, error)) {
228 return;
229 }
230
231 AdoptProfile(profile);
232
233 // Offer each registered Service the opportunity to join this new Profile.
234 vector<ServiceRefPtr>::iterator it;
235 for (it = services_.begin(); it != services_.end(); ++it) {
236 profile->MergeService(*it);
237 }
238
239 // TODO(pstew): Now shop the Profile contents around to Devices which
240 // can create non-visible services.
241}
242
243void Manager::PopProfileInternal() {
244 CHECK(!profiles_.empty());
245 ProfileRefPtr active_profile = profiles_.back();
246 profiles_.pop_back();
247 vector<ServiceRefPtr>::iterator s_it;
248 for (s_it = services_.begin(); s_it != services_.end(); ++s_it) {
249 if ((*s_it)->profile().get() == active_profile.get()) {
250 vector<ProfileRefPtr>::reverse_iterator p_it;
251 for (p_it = profiles_.rbegin(); p_it != profiles_.rend(); ++p_it) {
252 if ((*p_it)->MergeService(*s_it)) {
253 break;
254 }
255 }
256 if (p_it == profiles_.rend()) {
257 ephemeral_profile_->AdoptService(*s_it);
258 }
259 }
260 }
261}
262
263void Manager::PopProfile(const std::string &name, Error *error) {
264 Profile::Identifier ident;
265 if (profiles_.empty()) {
266 const string kMessage = "Profile stack is empty";
267 LOG(ERROR) << kMessage;
268 CHECK(error);
269 error->Populate(Error::kNotFound, kMessage);
270 return;
271 }
272 ProfileRefPtr active_profile = profiles_.back();
273 if (!Profile::ParseIdentifier(name, &ident)) {
274 const string kMessage = "Invalid profile name " + name;
275 LOG(ERROR) << kMessage;
276 CHECK(error);
277 error->Populate(Error::kInvalidArguments, kMessage);
278 return;
279 }
280 if (!active_profile->MatchesIdentifier(ident)) {
281 const string kMessage = name + " is not the active profile";
282 LOG(ERROR) << kMessage;
283 CHECK(error);
284 error->Populate(Error::kNotSupported, kMessage);
285 return;
286 }
287 PopProfileInternal();
288}
289
290void Manager::PopAnyProfile(Error *error) {
291 Profile::Identifier ident;
292 if (profiles_.empty()) {
293 const string kMessage = "Profile stack is empty";
294 LOG(ERROR) << kMessage;
295 CHECK(error);
296 error->Populate(Error::kNotFound, kMessage);
297 return;
298 }
299 PopProfileInternal();
300}
301
Chris Masone7aa5f902011-07-11 11:13:35 -0700302const ProfileRefPtr &Manager::ActiveProfile() {
Chris Masoneb9c00592011-10-06 13:10:39 -0700303 DCHECK_NE(profiles_.size(), 0);
Chris Masone7aa5f902011-07-11 11:13:35 -0700304 return profiles_.back();
305}
306
Chris Masone6515aab2011-10-12 16:19:09 -0700307bool Manager::MoveServiceToProfile(const ServiceRefPtr &to_move,
308 const ProfileRefPtr &destination) {
309 const ProfileRefPtr from = to_move->profile();
310 return destination->AdoptService(to_move) &&
311 from->AbandonService(to_move);
Chris Masone6791a432011-07-12 13:23:19 -0700312}
313
Chris Masone2b105542011-06-22 10:58:09 -0700314void Manager::RegisterDevice(const DeviceRefPtr &to_manage) {
Chris Masonec1e50412011-06-07 13:04:53 -0700315 vector<DeviceRefPtr>::iterator it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700316 for (it = devices_.begin(); it != devices_.end(); ++it) {
Chris Masonec1e50412011-06-07 13:04:53 -0700317 if (to_manage.get() == it->get())
Chris Masone9be4a9d2011-05-16 15:44:09 -0700318 return;
319 }
Chris Masonec1e50412011-06-07 13:04:53 -0700320 devices_.push_back(to_manage);
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700321
322 // TODO(pstew): Should check configuration
323 if (running_)
324 to_manage->Start();
Chris Masone6515aab2011-10-12 16:19:09 -0700325
326 // NB: Should we keep a ptr to default profile and only persist that here?
327 for (vector<ProfileRefPtr>::iterator it = profiles_.begin();
328 it != profiles_.end();
329 ++it) {
330 (*it)->Save();
331 }
Chris Masone9be4a9d2011-05-16 15:44:09 -0700332}
333
mukesh agrawal5029c6c2011-08-25 11:12:40 -0700334void Manager::DeregisterDevice(const DeviceRefPtr &to_forget) {
Chris Masonec1e50412011-06-07 13:04:53 -0700335 vector<DeviceRefPtr>::iterator it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700336 for (it = devices_.begin(); it != devices_.end(); ++it) {
Chris Masonec1e50412011-06-07 13:04:53 -0700337 if (to_forget.get() == it->get()) {
mukesh agrawal5029c6c2011-08-25 11:12:40 -0700338 VLOG(2) << "Deregistered device: " << to_forget->UniqueName();
339 to_forget->Stop();
Chris Masone9be4a9d2011-05-16 15:44:09 -0700340 devices_.erase(it);
341 return;
342 }
343 }
mukesh agrawal5029c6c2011-08-25 11:12:40 -0700344 VLOG(2) << __func__ << " unknown device: " << to_forget->UniqueName();
Chris Masone9be4a9d2011-05-16 15:44:09 -0700345}
346
Chris Masone2b105542011-06-22 10:58:09 -0700347void Manager::RegisterService(const ServiceRefPtr &to_manage) {
mukesh agrawald835b202011-10-07 15:26:47 -0700348 VLOG(2) << __func__ << to_manage->UniqueName();
349
Chris Masone6515aab2011-10-12 16:19:09 -0700350 bool merged = false;
Chris Masone157aa0c2011-10-03 09:24:31 -0700351 for (vector<ProfileRefPtr>::iterator it = profiles_.begin();
Chris Masone6515aab2011-10-12 16:19:09 -0700352 !merged && it != profiles_.end();
Chris Masone157aa0c2011-10-03 09:24:31 -0700353 ++it) {
Chris Masone6515aab2011-10-12 16:19:09 -0700354 merged = (*it)->MergeService(to_manage); // Will merge, if possible.
Chris Masone157aa0c2011-10-03 09:24:31 -0700355 }
Chris Masone6791a432011-07-12 13:23:19 -0700356
357 // If not found, add it to the ephemeral profile
Chris Masone6515aab2011-10-12 16:19:09 -0700358 if (!merged)
359 ephemeral_profile_->AdoptService(to_manage);
Chris Masone6791a432011-07-12 13:23:19 -0700360
361 // Now add to OUR list.
Chris Masonec1e50412011-06-07 13:04:53 -0700362 vector<ServiceRefPtr>::iterator it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700363 for (it = services_.begin(); it != services_.end(); ++it) {
mukesh agrawald835b202011-10-07 15:26:47 -0700364 CHECK(to_manage->UniqueName() != (*it)->UniqueName());
Chris Masone9be4a9d2011-05-16 15:44:09 -0700365 }
Chris Masonec1e50412011-06-07 13:04:53 -0700366 services_.push_back(to_manage);
Paul Stewart22aa71b2011-09-16 12:15:11 -0700367 SortServices();
mukesh agrawal32399322011-09-01 10:53:43 -0700368
369 vector<string> service_paths;
370 for (it = services_.begin(); it != services_.end(); ++it) {
371 service_paths.push_back((*it)->GetRpcIdentifier());
372 }
373 adaptor_->EmitRpcIdentifierArrayChanged(flimflam::kServicesProperty,
374 service_paths);
Chris Masone9be4a9d2011-05-16 15:44:09 -0700375}
376
Chris Masone6515aab2011-10-12 16:19:09 -0700377void Manager::DeregisterService(const ServiceRefPtr &to_forget) {
Chris Masonec1e50412011-06-07 13:04:53 -0700378 vector<ServiceRefPtr>::iterator it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700379 for (it = services_.begin(); it != services_.end(); ++it) {
Chris Masone6791a432011-07-12 13:23:19 -0700380 if (to_forget->UniqueName() == (*it)->UniqueName()) {
Chris Masone9be4a9d2011-05-16 15:44:09 -0700381 services_.erase(it);
Paul Stewart22aa71b2011-09-16 12:15:11 -0700382 SortServices();
Chris Masone9be4a9d2011-05-16 15:44:09 -0700383 return;
384 }
385 }
386}
387
Paul Stewart03dba0b2011-08-22 16:32:45 -0700388void Manager::UpdateService(const ServiceConstRefPtr &to_update) {
389 LOG(INFO) << "Service " << to_update->UniqueName() << " updated;"
390 << " state: " << to_update->state() << " failure: "
391 << to_update->failure();
Paul Stewart22aa71b2011-09-16 12:15:11 -0700392 SortServices();
Paul Stewart03dba0b2011-08-22 16:32:45 -0700393}
394
Paul Stewartfdd16072011-09-16 12:41:35 -0700395void Manager::FilterByTechnology(Technology::Identifier tech,
Chris Masonec1e50412011-06-07 13:04:53 -0700396 vector<DeviceRefPtr> *found) {
Chris Masone9be4a9d2011-05-16 15:44:09 -0700397 CHECK(found);
Chris Masonec1e50412011-06-07 13:04:53 -0700398 vector<DeviceRefPtr>::iterator it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700399 for (it = devices_.begin(); it != devices_.end(); ++it) {
400 if ((*it)->TechnologyIs(tech))
401 found->push_back(*it);
402 }
403}
404
Paul Stewart22aa71b2011-09-16 12:15:11 -0700405ServiceRefPtr Manager::FindService(const string& name) {
Chris Masonec1e50412011-06-07 13:04:53 -0700406 vector<ServiceRefPtr>::iterator it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700407 for (it = services_.begin(); it != services_.end(); ++it) {
Chris Masone6791a432011-07-12 13:23:19 -0700408 if (name == (*it)->UniqueName())
Chris Masonee0dea762011-06-09 09:06:03 -0700409 return *it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700410 }
Chris Masonee0dea762011-06-09 09:06:03 -0700411 return NULL;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700412}
413
mukesh agrawalffa3d042011-10-06 15:26:10 -0700414void Manager::HelpRegisterDerivedString(
415 const string &name,
416 string(Manager::*get)(void),
417 void(Manager::*set)(const string&, Error *)) {
Chris Masone27c4aa52011-07-02 13:10:14 -0700418 store_.RegisterDerivedString(
419 name,
420 StringAccessor(new CustomAccessor<Manager, string>(this, get, set)));
Chris Masoneb925cc82011-06-22 15:39:57 -0700421}
422
mukesh agrawalffa3d042011-10-06 15:26:10 -0700423void Manager::HelpRegisterDerivedStrings(
424 const string &name,
425 Strings(Manager::*get)(void),
426 void(Manager::*set)(const Strings &, Error *)) {
Chris Masone27c4aa52011-07-02 13:10:14 -0700427 store_.RegisterDerivedStrings(
428 name,
429 StringsAccessor(new CustomAccessor<Manager, Strings>(this, get, set)));
Chris Masoneb925cc82011-06-22 15:39:57 -0700430}
431
Paul Stewart22aa71b2011-09-16 12:15:11 -0700432void Manager::SortServices() {
433 sort(services_.begin(), services_.end(), ServiceSorter(technology_order_));
434}
435
Chris Masoneb925cc82011-06-22 15:39:57 -0700436string Manager::CalculateState() {
437 return flimflam::kStateOffline;
438}
439
440vector<string> Manager::AvailableTechnologies() {
441 return vector<string>();
442}
443
444vector<string> Manager::ConnectedTechnologies() {
445 return vector<string>();
446}
447
448string Manager::DefaultTechnology() {
449 return "";
450}
451
452vector<string> Manager::EnabledTechnologies() {
453 return vector<string>();
454}
455
Chris Masone3c3f6a12011-07-01 10:01:41 -0700456vector<string> Manager::EnumerateDevices() {
457 vector<string> device_rpc_ids;
458 for (vector<DeviceRefPtr>::const_iterator it = devices_.begin();
459 it != devices_.end();
460 ++it) {
461 device_rpc_ids.push_back((*it)->GetRpcIdentifier());
462 }
463 return device_rpc_ids;
464}
465
466vector<string> Manager::EnumerateAvailableServices() {
Chris Masone3c3f6a12011-07-01 10:01:41 -0700467 vector<string> service_rpc_ids;
468 for (vector<ServiceRefPtr>::const_iterator it = services_.begin();
469 it != services_.end();
470 ++it) {
471 service_rpc_ids.push_back((*it)->GetRpcIdentifier());
472 }
473 return service_rpc_ids;
474}
475
476vector<string> Manager::EnumerateWatchedServices() {
Chris Masone6791a432011-07-12 13:23:19 -0700477 // TODO(cmasone): Filter this list for services in appropriate states.
Chris Masone3c3f6a12011-07-01 10:01:41 -0700478 return EnumerateAvailableServices();
479}
480
Chris Masone7aa5f902011-07-11 11:13:35 -0700481string Manager::GetActiveProfileName() {
Chris Masone7df0c672011-07-15 10:24:54 -0700482 return ActiveProfile()->GetFriendlyName();
Chris Masone7aa5f902011-07-11 11:13:35 -0700483}
484
mukesh agrawal32399322011-09-01 10:53:43 -0700485// called via RPC (e.g., from ManagerDBusAdaptor)
mukesh agrawal7a4e4002011-09-06 11:26:05 -0700486WiFiServiceRefPtr Manager::GetWifiService(const KeyValueStore &args,
487 Error *error) {
488 std::vector<DeviceRefPtr> wifi_devices;
Paul Stewart22aa71b2011-09-16 12:15:11 -0700489 FilterByTechnology(Technology::kWifi, &wifi_devices);
mukesh agrawal7a4e4002011-09-06 11:26:05 -0700490 if (wifi_devices.empty()) {
491 error->Populate(Error::kInvalidArguments, kManagerErrorNoDevice);
492 return NULL;
493 } else {
494 WiFi *wifi = dynamic_cast<WiFi *>(wifi_devices.front().get());
495 CHECK(wifi);
496 return wifi->GetService(args, error);
497 }
498}
499
500// called via RPC (e.g., from ManagerDBusAdaptor)
Paul Stewart22aa71b2011-09-16 12:15:11 -0700501void Manager::RequestScan(const string &technology, Error *error) {
mukesh agrawal32399322011-09-01 10:53:43 -0700502 if (technology == flimflam::kTypeWifi || technology == "") {
503 vector<DeviceRefPtr> wifi_devices;
Paul Stewartfdd16072011-09-16 12:41:35 -0700504 FilterByTechnology(Technology::kWifi, &wifi_devices);
mukesh agrawal32399322011-09-01 10:53:43 -0700505
506 for (vector<DeviceRefPtr>::iterator it = wifi_devices.begin();
507 it != wifi_devices.end();
508 ++it) {
Darin Petkovc0865312011-09-16 15:31:20 -0700509 (*it)->Scan(error);
mukesh agrawal32399322011-09-01 10:53:43 -0700510 }
511 } else {
512 // TODO(quiche): support scanning for other technologies?
513 const string kMessage = "Unrecognized technology " + technology;
514 LOG(ERROR) << kMessage;
515 CHECK(error);
516 error->Populate(Error::kInvalidArguments, kMessage);
517 }
518}
519
Paul Stewart22aa71b2011-09-16 12:15:11 -0700520string Manager::GetTechnologyOrder() {
521 vector<string> technology_names;
522 for (vector<Technology::Identifier>::iterator it = technology_order_.begin();
523 it != technology_order_.end();
524 ++it) {
525 technology_names.push_back(Technology::NameFromIdentifier(*it));
526 }
527
528 return JoinString(technology_names, ',');
529}
530
531void Manager::SetTechnologyOrder(const string &order, Error *error) {
532 vector<Technology::Identifier> new_order;
533 map<Technology::Identifier, bool> seen;
534
535 vector<string> order_parts;
536 base::SplitString(order, ',', &order_parts);
537
538 for (vector<string>::iterator it = order_parts.begin();
539 it != order_parts.end();
540 ++it) {
541 Technology::Identifier identifier = Technology::IdentifierFromName(*it);
542
543 if (identifier == Technology::kUnknown) {
544 error->Populate(Error::kInvalidArguments, *it +
545 " is an unknown technology name");
546 return;
547 }
548
549 if (ContainsKey(seen, identifier)) {
550 error->Populate(Error::kInvalidArguments, *it +
551 " is duplicated in the list");
552 return;
553 }
554 seen[identifier] = true;
555 new_order.push_back(identifier);
556 }
557
558 technology_order_ = new_order;
559 SortServices();
560}
561
Paul Stewart75897df2011-04-27 09:05:53 -0700562} // namespace shill