blob: d3b72d658d83882536c667a7eaec2cd103f9672c [file] [log] [blame]
Paul Stewart1b1a7f22012-01-06 16:24:06 -08001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Chris Masone52cd19b2011-06-29 17:23:04 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Wade Guthrie60a37062013-04-02 11:39:09 -07005#ifndef SHILL_PROFILE_H_
6#define SHILL_PROFILE_H_
Chris Masone52cd19b2011-06-29 17:23:04 -07007
Chris Masone7aa5f902011-07-11 11:13:35 -07008#include <map>
Chris Masone52cd19b2011-06-29 17:23:04 -07009#include <string>
10#include <vector>
11
12#include <base/memory/scoped_ptr.h>
Darin Petkova4766822011-07-07 10:42:22 -070013#include <gtest/gtest_prod.h> // for FRIEND_TEST
Chris Masone52cd19b2011-06-29 17:23:04 -070014
Paul Stewart26b327e2011-10-19 11:38:09 -070015#include "shill/event_dispatcher.h"
Chris Masone52cd19b2011-06-29 17:23:04 -070016#include "shill/property_store.h"
17#include "shill/refptr_types.h"
Chris Masone52cd19b2011-06-29 17:23:04 -070018
Paul Stewart5ad16062013-02-21 18:10:48 -080019namespace base {
20
Darin Petkova4766822011-07-07 10:42:22 -070021class FilePath;
22
Paul Stewart5ad16062013-02-21 18:10:48 -080023} // namespace base
24
Chris Masone52cd19b2011-06-29 17:23:04 -070025namespace shill {
26
27class ControlInterface;
28class Error;
Chris Masoneb9c00592011-10-06 13:10:39 -070029class GLib;
Chris Masone6791a432011-07-12 13:23:19 -070030class Manager;
Thieu Le5133b712013-02-19 14:47:21 -080031class Metrics;
Chris Masone52cd19b2011-06-29 17:23:04 -070032class ProfileAdaptorInterface;
Chris Masone9d779932011-08-25 16:33:41 -070033class StoreInterface;
Wade Guthrie60a37062013-04-02 11:39:09 -070034class WiFiProvider;
Chris Masone52cd19b2011-06-29 17:23:04 -070035
Chris Masone7aa5f902011-07-11 11:13:35 -070036class Profile : public base::RefCounted<Profile> {
Chris Masone52cd19b2011-06-29 17:23:04 -070037 public:
Paul Stewart5dc40aa2011-10-28 19:43:43 -070038 enum InitStorageOption {
39 kOpenExisting,
40 kCreateNew,
41 kCreateOrOpenExisting
42 };
Darin Petkova4766822011-07-07 10:42:22 -070043 struct Identifier {
Chris Masone7df0c672011-07-15 10:24:54 -070044 Identifier() {}
45 explicit Identifier(const std::string &i) : identifier(i) {}
46 Identifier(const std::string &u, const std::string &i)
47 : user(u),
48 identifier(i) {
49 }
Darin Petkova4766822011-07-07 10:42:22 -070050 std::string user; // Empty for global.
51 std::string identifier;
Paul Stewartf3eced92013-04-17 12:18:22 -070052 std::string user_hash;
Darin Petkova4766822011-07-07 10:42:22 -070053 };
54
Paul Stewart78af94c2013-04-17 16:02:06 -070055 // Path to the cached list of inserted user profiles to be loaded at
56 // startup.
57 static const char kUserProfileListPathname[];
58
Chris Masone7df0c672011-07-15 10:24:54 -070059 Profile(ControlInterface *control_interface,
Thieu Le5133b712013-02-19 14:47:21 -080060 Metrics *metrics,
Chris Masone7df0c672011-07-15 10:24:54 -070061 Manager *manager,
62 const Identifier &name,
Chris Masone2ae797d2011-08-23 20:41:00 -070063 const std::string &user_storage_format,
Chris Masone7df0c672011-07-15 10:24:54 -070064 bool connect_to_rpc);
Chris Masoneb9c00592011-10-06 13:10:39 -070065
Chris Masone52cd19b2011-06-29 17:23:04 -070066 virtual ~Profile();
67
Chris Masoneb9c00592011-10-06 13:10:39 -070068 // Set up persistent storage for this Profile.
Paul Stewart5dc40aa2011-10-28 19:43:43 -070069 bool InitStorage(GLib *glib,
70 InitStorageOption storage_option,
71 Error *error);
Chris Masoneb9c00592011-10-06 13:10:39 -070072
Paul Stewarte73d05c2012-03-29 16:26:05 -070073 // Remove the persisitent storage for this Profile. It is an error to
74 // do so while the underlying storage is open via InitStorage() or
75 // set_storage().
76 bool RemoveStorage(GLib *glib, Error *error);
77
Chris Masone7df0c672011-07-15 10:24:54 -070078 std::string GetFriendlyName();
79
Paul Stewart1b1a7f22012-01-06 16:24:06 -080080 virtual std::string GetRpcIdentifier();
Chris Masone7aa5f902011-07-11 11:13:35 -070081
mukesh agrawalde29fa82011-09-16 16:16:36 -070082 PropertyStore *mutable_store() { return &store_; }
83 const PropertyStore &store() const { return store_; }
Chris Masone52cd19b2011-06-29 17:23:04 -070084
Paul Stewarte73d05c2012-03-29 16:26:05 -070085 // Set the storage inteface. This is used for testing purposes. It
86 // takes ownership of |storage|.
87 void set_storage(StoreInterface *storage);
Chris Masoneb9c00592011-10-06 13:10:39 -070088
Chris Masone6791a432011-07-12 13:23:19 -070089 // Begin managing the persistence of |service|.
90 // Returns true if |service| is new to this profile and was added,
91 // false if the |service| already existed.
Chris Masone6515aab2011-10-12 16:19:09 -070092 virtual bool AdoptService(const ServiceRefPtr &service);
Chris Masone7aa5f902011-07-11 11:13:35 -070093
Chris Masone6515aab2011-10-12 16:19:09 -070094 // Cease managing the persistence of the Service |service|.
95 // Returns true if |service| was found and abandoned, or not found.
96 // Returns false if can't be abandoned.
97 virtual bool AbandonService(const ServiceRefPtr &service);
Chris Masone6791a432011-07-12 13:23:19 -070098
Chris Masone6515aab2011-10-12 16:19:09 -070099 // Clobbers persisted notion of |service| with data from |service|.
100 // Returns true if |service| was found and updated, false if not found.
Paul Stewart7f61e522012-03-22 11:13:45 -0700101 virtual bool UpdateService(const ServiceRefPtr &service);
Chris Masone6791a432011-07-12 13:23:19 -0700102
Paul Stewartbba6a5b2011-11-02 18:45:59 -0700103 // Ask |service| if it can configure itself from the profile. If it can,
Paul Stewart2c575d22012-12-07 12:28:57 -0800104 // ask |service| to perform the configuration and return true. If not,
105 // return false.
106 virtual bool LoadService(const ServiceRefPtr &service);
107
108 // Perform LoadService() on |service|. If this succeeds, change
109 // the service to point at this profile and return true. If not, return
110 // false.
Paul Stewarta41e38d2011-11-11 07:47:29 -0800111 virtual bool ConfigureService(const ServiceRefPtr &service);
112
113 // Allow the device to configure itself from this profile. Returns
114 // true if the device succeeded in finding its configuration. If not,
115 // return false.
116 virtual bool ConfigureDevice(const DeviceRefPtr &device);
Chris Masone6791a432011-07-12 13:23:19 -0700117
Paul Stewart75225512012-01-26 22:51:33 -0800118 // Remove a named entry from the profile. This includes detaching
119 // any service that uses this profile entry.
120 virtual void DeleteEntry(const std::string &entry_name, Error *error);
121
Paul Stewart0756db92012-01-27 08:34:47 -0800122 // Return a service configured from the given profile entry.
123 virtual ServiceRefPtr GetServiceFromEntry(const std::string &entry_name,
124 Error *error);
125
Paul Stewartbba6a5b2011-11-02 18:45:59 -0700126 // Return whether |service| can configure itself from the profile.
Chris Masone6515aab2011-10-12 16:19:09 -0700127 bool ContainsService(const ServiceConstRefPtr &service);
Chris Masone6791a432011-07-12 13:23:19 -0700128
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800129 std::vector<std::string> EnumerateAvailableServices(Error *error);
130 std::vector<std::string> EnumerateEntries(Error *error);
Chris Masone6791a432011-07-12 13:23:19 -0700131
Darin Petkove7c6ad32012-06-29 10:22:09 +0200132 // Clobbers persisted notion of |device| with data from |device|. Returns true
133 // if |device| was found and updated, false otherwise. The base implementation
134 // always returns false -- currently devices are persisted only in
135 // DefaultProfile.
136 virtual bool UpdateDevice(const DeviceRefPtr &device);
137
Wade Guthrie60a37062013-04-02 11:39:09 -0700138 // Clobbers persisted notion of |wifi_provider| with data from
139 // |wifi_provider|. Returns true if |wifi_provider| was found and updated,
140 // false otherwise. The base implementation always returns false -- currently
141 // wifi_provider is persisted only in DefaultProfile.
142 virtual bool UpdateWiFiProvider(const WiFiProvider &wifi_provider);
143
Chris Masoneb9c00592011-10-06 13:10:39 -0700144 // Write all in-memory state to disk via |storage_|.
145 virtual bool Save();
Chris Masone9d779932011-08-25 16:33:41 -0700146
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700147 // Parses a profile identifier. There're two acceptable forms of the |raw|
148 // identifier: "identifier" and "~user/identifier". Both "user" and
149 // "identifier" must be suitable for use in a D-Bus object path. Returns true
150 // on success.
151 static bool ParseIdentifier(const std::string &raw, Identifier *parsed);
152
Paul Stewartf3eced92013-04-17 12:18:22 -0700153 // Returns the composite string identifier for a profile, as would have
154 // been used in an argument to Manager::PushProfile() in creating this
155 // profile. It returns a string in the form "identifier", or
156 // "~user/identifier" depending on whether this profile has a user
157 // component.
158 static std::string IdentifierToString(const Identifier &name);
159
Paul Stewart78af94c2013-04-17 16:02:06 -0700160 // Load a list of user profile identifiers from a cache file |path|.
161 // The profiles themselves are not loaded.
162 static std::vector<Identifier> LoadUserProfileList(
163 const base::FilePath &path);
164
165 // Save a list of user profile identifiers |profiles| to a cache file |path|.
166 // Returns true if successful, false otherwise.
167 static bool SaveUserProfileList(const base::FilePath &path,
168 const std::vector<ProfileRefPtr> &profiles);
169
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700170 // Returns whether |name| matches this Profile's |name_|.
171 virtual bool MatchesIdentifier(const Identifier &name) const;
Darin Petkova4766822011-07-07 10:42:22 -0700172
Paul Stewartd0a3b812012-03-28 22:48:22 -0700173 // Returns the username component of the profile identifier.
174 const std::string &GetUser() const { return name_.user; }
175
Paul Stewartf3eced92013-04-17 12:18:22 -0700176 // Returns the user_hash component of the profile identifier.
177 const std::string &GetUserHash() const { return name_.user_hash; }
178
Paul Stewart0756db92012-01-27 08:34:47 -0800179 // Returns a read-only copy of the backing storage of the profile.
Paul Stewart66815332012-04-09 18:09:36 -0700180 virtual const StoreInterface *GetConstStorage() const {
181 return storage_.get();
182 }
Paul Stewart0756db92012-01-27 08:34:47 -0800183
Chris Masone88cbd5f2011-07-03 14:30:04 -0700184 protected:
Paul Stewartac4ac002011-08-26 12:04:26 -0700185 // Protected getters
Thieu Le5133b712013-02-19 14:47:21 -0800186 Metrics *metrics() const { return metrics_; }
Paul Stewartac4ac002011-08-26 12:04:26 -0700187 Manager *manager() const { return manager_; }
Chris Masoneb9c00592011-10-06 13:10:39 -0700188 StoreInterface *storage() { return storage_.get(); }
Chris Masone7aa5f902011-07-11 11:13:35 -0700189
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700190 // Sets |path| to the persistent store file path for a profile identified by
191 // |name_|. Returns true on success, and false if unable to determine an
192 // appropriate file location. |name_| must be a valid identifier,
193 // possibly parsed and validated through Profile::ParseIdentifier.
194 //
195 // In the default implementation, |name_.user| cannot be empty, because
196 // all regular profiles should be associated with a user.
Paul Stewart5ad16062013-02-21 18:10:48 -0800197 virtual bool GetStoragePath(base::FilePath *path);
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700198
Chris Masone52cd19b2011-06-29 17:23:04 -0700199 private:
Chris Masone88cbd5f2011-07-03 14:30:04 -0700200 friend class ProfileAdaptorInterface;
Paul Stewart75225512012-01-26 22:51:33 -0800201 FRIEND_TEST(ProfileTest, DeleteEntry);
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700202 FRIEND_TEST(ProfileTest, GetStoragePath);
Darin Petkova4766822011-07-07 10:42:22 -0700203 FRIEND_TEST(ProfileTest, IsValidIdentifierToken);
204
205 static bool IsValidIdentifierToken(const std::string &token);
Chris Masone88cbd5f2011-07-03 14:30:04 -0700206
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700207 void HelpRegisterConstDerivedStrings(
mukesh agrawalffa3d042011-10-06 15:26:10 -0700208 const std::string &name,
mukesh agrawalbebf1b82013-04-23 15:06:33 -0700209 Strings(Profile::*get)(Error *error));
Chris Masone6791a432011-07-12 13:23:19 -0700210
Paul Stewartac4ac002011-08-26 12:04:26 -0700211 // Data members shared with subclasses via getter/setters above in the
212 // protected: section
Thieu Le5133b712013-02-19 14:47:21 -0800213 Metrics *metrics_;
Paul Stewartac4ac002011-08-26 12:04:26 -0700214 Manager *manager_;
Paul Stewartac4ac002011-08-26 12:04:26 -0700215
Chris Masoneb9c00592011-10-06 13:10:39 -0700216 // Shared with |adaptor_| via public getter.
Paul Stewartac4ac002011-08-26 12:04:26 -0700217 PropertyStore store_;
Chris Masone7df0c672011-07-15 10:24:54 -0700218
219 // Properties to be gotten via PropertyStore calls.
220 Identifier name_;
Chris Masone52cd19b2011-06-29 17:23:04 -0700221
Chris Masone2ae797d2011-08-23 20:41:00 -0700222 // Format string used to generate paths to user profile directories.
223 const std::string storage_format_;
224
Chris Masoneb9c00592011-10-06 13:10:39 -0700225 // Allows this profile to be backed with on-disk storage.
226 scoped_ptr<StoreInterface> storage_;
227
Chris Masone7df0c672011-07-15 10:24:54 -0700228 scoped_ptr<ProfileAdaptorInterface> adaptor_;
Chris Masone52cd19b2011-06-29 17:23:04 -0700229
Chris Masone88cbd5f2011-07-03 14:30:04 -0700230 DISALLOW_COPY_AND_ASSIGN(Profile);
Chris Masone52cd19b2011-06-29 17:23:04 -0700231};
232
233} // namespace shill
234
Wade Guthrie60a37062013-04-02 11:39:09 -0700235#endif // SHILL_PROFILE_H_