blob: 584fb923f0c0acfd8355bb9aecf9ff78d2d6bee3 [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
Chris Masone413a3192011-05-09 17:10:05 -0700140 adaptor_->UpdateRunning();
Darin Petkov887f2982011-07-14 16:10:17 -0700141 modem_info_.Stop();
142 device_info_.Stop();
Paul Stewart75897df2011-04-27 09:05:53 -0700143}
144
Chris Masoneb9c00592011-10-06 13:10:39 -0700145void Manager::AdoptProfile(const ProfileRefPtr &profile) {
146 profiles_.push_back(profile);
147}
148
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700149void Manager::CreateProfile(const std::string &name, Error *error) {
150 Profile::Identifier ident;
151 if (!Profile::ParseIdentifier(name, &ident)) {
152 const string kMessage = "Invalid profile name " + name;
153 LOG(ERROR) << kMessage;
154 CHECK(error);
155 error->Populate(Error::kInvalidArguments, kMessage);
156 return;
157 }
158 ProfileRefPtr profile(new Profile(control_interface_,
159 this,
160 ident,
161 user_storage_format_,
162 false));
163 if (!profile->InitStorage(glib_, Profile::kCreateNew, error)) {
164 return;
165 }
166
167 // Save profile data out, and then let the scoped pointer fall out of scope.
168 if (!profile->Save()) {
169 const string kMessage = "Profile name " + name + " could not be saved";
170 LOG(ERROR) << kMessage;
171 CHECK(error);
172 error->Populate(Error::kInternalError, kMessage);
173 return;
174 }
175}
176
177void Manager::PushProfile(const string &name, Error *error) {
178
179 Profile::Identifier ident;
180 if (!Profile::ParseIdentifier(name, &ident)) {
181 const string kMessage = "Invalid profile name " + name;
182 LOG(ERROR) << kMessage;
183 CHECK(error);
184 error->Populate(Error::kInvalidArguments, kMessage);
185 return;
186 }
187
188 for (vector<ProfileRefPtr>::const_iterator it = profiles_.begin();
189 it != profiles_.end();
190 ++it) {
191 if ((*it)->MatchesIdentifier(ident)) {
192 const string kMessage = "Profile name " + name + " is already on stack";
193 LOG(ERROR) << kMessage;
194 CHECK(error);
195 error->Populate(Error::kAlreadyExists, kMessage);
196 return;
197 }
198 }
199
200 if (ident.user.empty()) {
201 // The manager will have only one machine-wide profile, and this is the
202 // DefaultProfile. This means no other profiles can be loaded that do
203 // not have a user component.
204 // TODO(pstew): This is all well and good, but WiFi autotests try to
205 // creating a default profile (by a name other than "default") in order
206 // to avoid leaving permanent side effects to devices under test. This
207 // whole thing will need to be reworked in order to allow that to happen,
208 // or the autotests (or their expectations) will need to change.
209 const string kMessage = "Cannot load non-default global profile " + name;
210 LOG(ERROR) << kMessage;
211 CHECK(error);
212 error->Populate(Error::kInvalidArguments, kMessage);
213 return;
214 }
215
216 ProfileRefPtr profile(new Profile(control_interface_,
217 this,
218 ident,
219 user_storage_format_,
220 connect_profiles_to_rpc_));
221 if (!profile->InitStorage(glib_, Profile::kOpenExisting, error)) {
222 return;
223 }
224
225 AdoptProfile(profile);
226
227 // Offer each registered Service the opportunity to join this new Profile.
228 vector<ServiceRefPtr>::iterator it;
229 for (it = services_.begin(); it != services_.end(); ++it) {
230 profile->MergeService(*it);
231 }
232
233 // TODO(pstew): Now shop the Profile contents around to Devices which
234 // can create non-visible services.
235}
236
237void Manager::PopProfileInternal() {
238 CHECK(!profiles_.empty());
239 ProfileRefPtr active_profile = profiles_.back();
240 profiles_.pop_back();
241 vector<ServiceRefPtr>::iterator s_it;
242 for (s_it = services_.begin(); s_it != services_.end(); ++s_it) {
243 if ((*s_it)->profile().get() == active_profile.get()) {
244 vector<ProfileRefPtr>::reverse_iterator p_it;
245 for (p_it = profiles_.rbegin(); p_it != profiles_.rend(); ++p_it) {
246 if ((*p_it)->MergeService(*s_it)) {
247 break;
248 }
249 }
250 if (p_it == profiles_.rend()) {
251 ephemeral_profile_->AdoptService(*s_it);
252 }
253 }
254 }
255}
256
257void Manager::PopProfile(const std::string &name, Error *error) {
258 Profile::Identifier ident;
259 if (profiles_.empty()) {
260 const string kMessage = "Profile stack is empty";
261 LOG(ERROR) << kMessage;
262 CHECK(error);
263 error->Populate(Error::kNotFound, kMessage);
264 return;
265 }
266 ProfileRefPtr active_profile = profiles_.back();
267 if (!Profile::ParseIdentifier(name, &ident)) {
268 const string kMessage = "Invalid profile name " + name;
269 LOG(ERROR) << kMessage;
270 CHECK(error);
271 error->Populate(Error::kInvalidArguments, kMessage);
272 return;
273 }
274 if (!active_profile->MatchesIdentifier(ident)) {
275 const string kMessage = name + " is not the active profile";
276 LOG(ERROR) << kMessage;
277 CHECK(error);
278 error->Populate(Error::kNotSupported, kMessage);
279 return;
280 }
281 PopProfileInternal();
282}
283
284void Manager::PopAnyProfile(Error *error) {
285 Profile::Identifier ident;
286 if (profiles_.empty()) {
287 const string kMessage = "Profile stack is empty";
288 LOG(ERROR) << kMessage;
289 CHECK(error);
290 error->Populate(Error::kNotFound, kMessage);
291 return;
292 }
293 PopProfileInternal();
294}
295
Chris Masone7aa5f902011-07-11 11:13:35 -0700296const ProfileRefPtr &Manager::ActiveProfile() {
Chris Masoneb9c00592011-10-06 13:10:39 -0700297 DCHECK_NE(profiles_.size(), 0);
Chris Masone7aa5f902011-07-11 11:13:35 -0700298 return profiles_.back();
299}
300
Chris Masone6515aab2011-10-12 16:19:09 -0700301bool Manager::MoveServiceToProfile(const ServiceRefPtr &to_move,
302 const ProfileRefPtr &destination) {
303 const ProfileRefPtr from = to_move->profile();
304 return destination->AdoptService(to_move) &&
305 from->AbandonService(to_move);
Chris Masone6791a432011-07-12 13:23:19 -0700306}
307
Chris Masone2b105542011-06-22 10:58:09 -0700308void Manager::RegisterDevice(const DeviceRefPtr &to_manage) {
Chris Masonec1e50412011-06-07 13:04:53 -0700309 vector<DeviceRefPtr>::iterator it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700310 for (it = devices_.begin(); it != devices_.end(); ++it) {
Chris Masonec1e50412011-06-07 13:04:53 -0700311 if (to_manage.get() == it->get())
Chris Masone9be4a9d2011-05-16 15:44:09 -0700312 return;
313 }
Chris Masonec1e50412011-06-07 13:04:53 -0700314 devices_.push_back(to_manage);
Paul Stewartf1ce5d22011-05-19 13:10:20 -0700315
316 // TODO(pstew): Should check configuration
317 if (running_)
318 to_manage->Start();
Chris Masone6515aab2011-10-12 16:19:09 -0700319
320 // NB: Should we keep a ptr to default profile and only persist that here?
321 for (vector<ProfileRefPtr>::iterator it = profiles_.begin();
322 it != profiles_.end();
323 ++it) {
324 (*it)->Save();
325 }
Chris Masone9be4a9d2011-05-16 15:44:09 -0700326}
327
mukesh agrawal5029c6c2011-08-25 11:12:40 -0700328void Manager::DeregisterDevice(const DeviceRefPtr &to_forget) {
Chris Masonec1e50412011-06-07 13:04:53 -0700329 vector<DeviceRefPtr>::iterator it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700330 for (it = devices_.begin(); it != devices_.end(); ++it) {
Chris Masonec1e50412011-06-07 13:04:53 -0700331 if (to_forget.get() == it->get()) {
mukesh agrawal5029c6c2011-08-25 11:12:40 -0700332 VLOG(2) << "Deregistered device: " << to_forget->UniqueName();
333 to_forget->Stop();
Chris Masone9be4a9d2011-05-16 15:44:09 -0700334 devices_.erase(it);
335 return;
336 }
337 }
mukesh agrawal5029c6c2011-08-25 11:12:40 -0700338 VLOG(2) << __func__ << " unknown device: " << to_forget->UniqueName();
Chris Masone9be4a9d2011-05-16 15:44:09 -0700339}
340
Chris Masone2b105542011-06-22 10:58:09 -0700341void Manager::RegisterService(const ServiceRefPtr &to_manage) {
mukesh agrawald835b202011-10-07 15:26:47 -0700342 VLOG(2) << __func__ << to_manage->UniqueName();
343
Chris Masone6515aab2011-10-12 16:19:09 -0700344 bool merged = false;
Chris Masone157aa0c2011-10-03 09:24:31 -0700345 for (vector<ProfileRefPtr>::iterator it = profiles_.begin();
Chris Masone6515aab2011-10-12 16:19:09 -0700346 !merged && it != profiles_.end();
Chris Masone157aa0c2011-10-03 09:24:31 -0700347 ++it) {
Chris Masone6515aab2011-10-12 16:19:09 -0700348 merged = (*it)->MergeService(to_manage); // Will merge, if possible.
Chris Masone157aa0c2011-10-03 09:24:31 -0700349 }
Chris Masone6791a432011-07-12 13:23:19 -0700350
351 // If not found, add it to the ephemeral profile
Chris Masone6515aab2011-10-12 16:19:09 -0700352 if (!merged)
353 ephemeral_profile_->AdoptService(to_manage);
Chris Masone6791a432011-07-12 13:23:19 -0700354
355 // Now add to OUR list.
Chris Masonec1e50412011-06-07 13:04:53 -0700356 vector<ServiceRefPtr>::iterator it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700357 for (it = services_.begin(); it != services_.end(); ++it) {
mukesh agrawald835b202011-10-07 15:26:47 -0700358 CHECK(to_manage->UniqueName() != (*it)->UniqueName());
Chris Masone9be4a9d2011-05-16 15:44:09 -0700359 }
Chris Masonec1e50412011-06-07 13:04:53 -0700360 services_.push_back(to_manage);
Paul Stewart22aa71b2011-09-16 12:15:11 -0700361 SortServices();
mukesh agrawal32399322011-09-01 10:53:43 -0700362
363 vector<string> service_paths;
364 for (it = services_.begin(); it != services_.end(); ++it) {
365 service_paths.push_back((*it)->GetRpcIdentifier());
366 }
367 adaptor_->EmitRpcIdentifierArrayChanged(flimflam::kServicesProperty,
368 service_paths);
Chris Masone9be4a9d2011-05-16 15:44:09 -0700369}
370
Chris Masone6515aab2011-10-12 16:19:09 -0700371void Manager::DeregisterService(const ServiceRefPtr &to_forget) {
Chris Masonec1e50412011-06-07 13:04:53 -0700372 vector<ServiceRefPtr>::iterator it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700373 for (it = services_.begin(); it != services_.end(); ++it) {
Chris Masone6791a432011-07-12 13:23:19 -0700374 if (to_forget->UniqueName() == (*it)->UniqueName()) {
Chris Masone9be4a9d2011-05-16 15:44:09 -0700375 services_.erase(it);
Paul Stewart22aa71b2011-09-16 12:15:11 -0700376 SortServices();
Chris Masone9be4a9d2011-05-16 15:44:09 -0700377 return;
378 }
379 }
380}
381
Paul Stewart03dba0b2011-08-22 16:32:45 -0700382void Manager::UpdateService(const ServiceConstRefPtr &to_update) {
383 LOG(INFO) << "Service " << to_update->UniqueName() << " updated;"
384 << " state: " << to_update->state() << " failure: "
385 << to_update->failure();
Paul Stewart22aa71b2011-09-16 12:15:11 -0700386 SortServices();
Paul Stewart03dba0b2011-08-22 16:32:45 -0700387}
388
Paul Stewartfdd16072011-09-16 12:41:35 -0700389void Manager::FilterByTechnology(Technology::Identifier tech,
Chris Masonec1e50412011-06-07 13:04:53 -0700390 vector<DeviceRefPtr> *found) {
Chris Masone9be4a9d2011-05-16 15:44:09 -0700391 CHECK(found);
Chris Masonec1e50412011-06-07 13:04:53 -0700392 vector<DeviceRefPtr>::iterator it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700393 for (it = devices_.begin(); it != devices_.end(); ++it) {
394 if ((*it)->TechnologyIs(tech))
395 found->push_back(*it);
396 }
397}
398
Paul Stewart22aa71b2011-09-16 12:15:11 -0700399ServiceRefPtr Manager::FindService(const string& name) {
Chris Masonec1e50412011-06-07 13:04:53 -0700400 vector<ServiceRefPtr>::iterator it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700401 for (it = services_.begin(); it != services_.end(); ++it) {
Chris Masone6791a432011-07-12 13:23:19 -0700402 if (name == (*it)->UniqueName())
Chris Masonee0dea762011-06-09 09:06:03 -0700403 return *it;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700404 }
Chris Masonee0dea762011-06-09 09:06:03 -0700405 return NULL;
Chris Masone9be4a9d2011-05-16 15:44:09 -0700406}
407
mukesh agrawalffa3d042011-10-06 15:26:10 -0700408void Manager::HelpRegisterDerivedString(
409 const string &name,
410 string(Manager::*get)(void),
411 void(Manager::*set)(const string&, Error *)) {
Chris Masone27c4aa52011-07-02 13:10:14 -0700412 store_.RegisterDerivedString(
413 name,
414 StringAccessor(new CustomAccessor<Manager, string>(this, get, set)));
Chris Masoneb925cc82011-06-22 15:39:57 -0700415}
416
mukesh agrawalffa3d042011-10-06 15:26:10 -0700417void Manager::HelpRegisterDerivedStrings(
418 const string &name,
419 Strings(Manager::*get)(void),
420 void(Manager::*set)(const Strings &, Error *)) {
Chris Masone27c4aa52011-07-02 13:10:14 -0700421 store_.RegisterDerivedStrings(
422 name,
423 StringsAccessor(new CustomAccessor<Manager, Strings>(this, get, set)));
Chris Masoneb925cc82011-06-22 15:39:57 -0700424}
425
Paul Stewart22aa71b2011-09-16 12:15:11 -0700426void Manager::SortServices() {
427 sort(services_.begin(), services_.end(), ServiceSorter(technology_order_));
428}
429
Chris Masoneb925cc82011-06-22 15:39:57 -0700430string Manager::CalculateState() {
431 return flimflam::kStateOffline;
432}
433
434vector<string> Manager::AvailableTechnologies() {
435 return vector<string>();
436}
437
438vector<string> Manager::ConnectedTechnologies() {
439 return vector<string>();
440}
441
442string Manager::DefaultTechnology() {
443 return "";
444}
445
446vector<string> Manager::EnabledTechnologies() {
447 return vector<string>();
448}
449
Chris Masone3c3f6a12011-07-01 10:01:41 -0700450vector<string> Manager::EnumerateDevices() {
451 vector<string> device_rpc_ids;
452 for (vector<DeviceRefPtr>::const_iterator it = devices_.begin();
453 it != devices_.end();
454 ++it) {
455 device_rpc_ids.push_back((*it)->GetRpcIdentifier());
456 }
457 return device_rpc_ids;
458}
459
460vector<string> Manager::EnumerateAvailableServices() {
Chris Masone3c3f6a12011-07-01 10:01:41 -0700461 vector<string> service_rpc_ids;
462 for (vector<ServiceRefPtr>::const_iterator it = services_.begin();
463 it != services_.end();
464 ++it) {
465 service_rpc_ids.push_back((*it)->GetRpcIdentifier());
466 }
467 return service_rpc_ids;
468}
469
470vector<string> Manager::EnumerateWatchedServices() {
Chris Masone6791a432011-07-12 13:23:19 -0700471 // TODO(cmasone): Filter this list for services in appropriate states.
Chris Masone3c3f6a12011-07-01 10:01:41 -0700472 return EnumerateAvailableServices();
473}
474
Chris Masone7aa5f902011-07-11 11:13:35 -0700475string Manager::GetActiveProfileName() {
Chris Masone7df0c672011-07-15 10:24:54 -0700476 return ActiveProfile()->GetFriendlyName();
Chris Masone7aa5f902011-07-11 11:13:35 -0700477}
478
mukesh agrawal32399322011-09-01 10:53:43 -0700479// called via RPC (e.g., from ManagerDBusAdaptor)
mukesh agrawal7a4e4002011-09-06 11:26:05 -0700480WiFiServiceRefPtr Manager::GetWifiService(const KeyValueStore &args,
481 Error *error) {
482 std::vector<DeviceRefPtr> wifi_devices;
Paul Stewart22aa71b2011-09-16 12:15:11 -0700483 FilterByTechnology(Technology::kWifi, &wifi_devices);
mukesh agrawal7a4e4002011-09-06 11:26:05 -0700484 if (wifi_devices.empty()) {
485 error->Populate(Error::kInvalidArguments, kManagerErrorNoDevice);
486 return NULL;
487 } else {
488 WiFi *wifi = dynamic_cast<WiFi *>(wifi_devices.front().get());
489 CHECK(wifi);
490 return wifi->GetService(args, error);
491 }
492}
493
494// called via RPC (e.g., from ManagerDBusAdaptor)
Paul Stewart22aa71b2011-09-16 12:15:11 -0700495void Manager::RequestScan(const string &technology, Error *error) {
mukesh agrawal32399322011-09-01 10:53:43 -0700496 if (technology == flimflam::kTypeWifi || technology == "") {
497 vector<DeviceRefPtr> wifi_devices;
Paul Stewartfdd16072011-09-16 12:41:35 -0700498 FilterByTechnology(Technology::kWifi, &wifi_devices);
mukesh agrawal32399322011-09-01 10:53:43 -0700499
500 for (vector<DeviceRefPtr>::iterator it = wifi_devices.begin();
501 it != wifi_devices.end();
502 ++it) {
Darin Petkovc0865312011-09-16 15:31:20 -0700503 (*it)->Scan(error);
mukesh agrawal32399322011-09-01 10:53:43 -0700504 }
505 } else {
506 // TODO(quiche): support scanning for other technologies?
507 const string kMessage = "Unrecognized technology " + technology;
508 LOG(ERROR) << kMessage;
509 CHECK(error);
510 error->Populate(Error::kInvalidArguments, kMessage);
511 }
512}
513
Paul Stewart22aa71b2011-09-16 12:15:11 -0700514string Manager::GetTechnologyOrder() {
515 vector<string> technology_names;
516 for (vector<Technology::Identifier>::iterator it = technology_order_.begin();
517 it != technology_order_.end();
518 ++it) {
519 technology_names.push_back(Technology::NameFromIdentifier(*it));
520 }
521
522 return JoinString(technology_names, ',');
523}
524
525void Manager::SetTechnologyOrder(const string &order, Error *error) {
526 vector<Technology::Identifier> new_order;
527 map<Technology::Identifier, bool> seen;
528
529 vector<string> order_parts;
530 base::SplitString(order, ',', &order_parts);
531
532 for (vector<string>::iterator it = order_parts.begin();
533 it != order_parts.end();
534 ++it) {
535 Technology::Identifier identifier = Technology::IdentifierFromName(*it);
536
537 if (identifier == Technology::kUnknown) {
538 error->Populate(Error::kInvalidArguments, *it +
539 " is an unknown technology name");
540 return;
541 }
542
543 if (ContainsKey(seen, identifier)) {
544 error->Populate(Error::kInvalidArguments, *it +
545 " is duplicated in the list");
546 return;
547 }
548 seen[identifier] = true;
549 new_order.push_back(identifier);
550 }
551
552 technology_order_ = new_order;
553 SortServices();
554}
555
Paul Stewart75897df2011-04-27 09:05:53 -0700556} // namespace shill