blob: 08fa179765166828e58076bc96d6201f20f34025 [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
5#ifndef SHILL_PROFILE_
6#define SHILL_PROFILE_
7
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
Darin Petkova4766822011-07-07 10:42:22 -070019class FilePath;
20
Chris Masone52cd19b2011-06-29 17:23:04 -070021namespace shill {
22
23class ControlInterface;
24class Error;
Chris Masoneb9c00592011-10-06 13:10:39 -070025class GLib;
Chris Masone6791a432011-07-12 13:23:19 -070026class Manager;
Chris Masone52cd19b2011-06-29 17:23:04 -070027class ProfileAdaptorInterface;
Chris Masone9d779932011-08-25 16:33:41 -070028class StoreInterface;
Chris Masone52cd19b2011-06-29 17:23:04 -070029
Chris Masone7aa5f902011-07-11 11:13:35 -070030class Profile : public base::RefCounted<Profile> {
Chris Masone52cd19b2011-06-29 17:23:04 -070031 public:
Paul Stewart5dc40aa2011-10-28 19:43:43 -070032 enum InitStorageOption {
33 kOpenExisting,
34 kCreateNew,
35 kCreateOrOpenExisting
36 };
Darin Petkova4766822011-07-07 10:42:22 -070037 struct Identifier {
Chris Masone7df0c672011-07-15 10:24:54 -070038 Identifier() {}
39 explicit Identifier(const std::string &i) : identifier(i) {}
40 Identifier(const std::string &u, const std::string &i)
41 : user(u),
42 identifier(i) {
43 }
Darin Petkova4766822011-07-07 10:42:22 -070044 std::string user; // Empty for global.
45 std::string identifier;
46 };
47
Chris Masone7df0c672011-07-15 10:24:54 -070048 Profile(ControlInterface *control_interface,
Chris Masone7df0c672011-07-15 10:24:54 -070049 Manager *manager,
50 const Identifier &name,
Chris Masone2ae797d2011-08-23 20:41:00 -070051 const std::string &user_storage_format,
Chris Masone7df0c672011-07-15 10:24:54 -070052 bool connect_to_rpc);
Chris Masoneb9c00592011-10-06 13:10:39 -070053
Chris Masone52cd19b2011-06-29 17:23:04 -070054 virtual ~Profile();
55
Chris Masoneb9c00592011-10-06 13:10:39 -070056 // Set up persistent storage for this Profile.
Paul Stewart5dc40aa2011-10-28 19:43:43 -070057 bool InitStorage(GLib *glib,
58 InitStorageOption storage_option,
59 Error *error);
Chris Masoneb9c00592011-10-06 13:10:39 -070060
Chris Masone7df0c672011-07-15 10:24:54 -070061 std::string GetFriendlyName();
62
Paul Stewart1b1a7f22012-01-06 16:24:06 -080063 virtual std::string GetRpcIdentifier();
Chris Masone7aa5f902011-07-11 11:13:35 -070064
mukesh agrawalde29fa82011-09-16 16:16:36 -070065 PropertyStore *mutable_store() { return &store_; }
66 const PropertyStore &store() const { return store_; }
Chris Masone52cd19b2011-06-29 17:23:04 -070067
Chris Masoneb9c00592011-10-06 13:10:39 -070068 void set_storage(StoreInterface *storage); // Takes ownership of |storage|.
69
Chris Masone6791a432011-07-12 13:23:19 -070070 // Begin managing the persistence of |service|.
71 // Returns true if |service| is new to this profile and was added,
72 // false if the |service| already existed.
Chris Masone6515aab2011-10-12 16:19:09 -070073 virtual bool AdoptService(const ServiceRefPtr &service);
Chris Masone7aa5f902011-07-11 11:13:35 -070074
Chris Masone6515aab2011-10-12 16:19:09 -070075 // Cease managing the persistence of the Service |service|.
76 // Returns true if |service| was found and abandoned, or not found.
77 // Returns false if can't be abandoned.
78 virtual bool AbandonService(const ServiceRefPtr &service);
Chris Masone6791a432011-07-12 13:23:19 -070079
Chris Masone6515aab2011-10-12 16:19:09 -070080 // Clobbers persisted notion of |service| with data from |service|.
81 // Returns true if |service| was found and updated, false if not found.
Paul Stewart7f61e522012-03-22 11:13:45 -070082 virtual bool UpdateService(const ServiceRefPtr &service);
Chris Masone6791a432011-07-12 13:23:19 -070083
Paul Stewartbba6a5b2011-11-02 18:45:59 -070084 // Ask |service| if it can configure itself from the profile. If it can,
85 // change the service to point at this profile, ask |service| to perform
86 // the configuration and return true. If not, return false.
Paul Stewarta41e38d2011-11-11 07:47:29 -080087 virtual bool ConfigureService(const ServiceRefPtr &service);
88
89 // Allow the device to configure itself from this profile. Returns
90 // true if the device succeeded in finding its configuration. If not,
91 // return false.
92 virtual bool ConfigureDevice(const DeviceRefPtr &device);
Chris Masone6791a432011-07-12 13:23:19 -070093
Paul Stewart75225512012-01-26 22:51:33 -080094 // Remove a named entry from the profile. This includes detaching
95 // any service that uses this profile entry.
96 virtual void DeleteEntry(const std::string &entry_name, Error *error);
97
Paul Stewart0756db92012-01-27 08:34:47 -080098 // Return a service configured from the given profile entry.
99 virtual ServiceRefPtr GetServiceFromEntry(const std::string &entry_name,
100 Error *error);
101
Paul Stewartbba6a5b2011-11-02 18:45:59 -0700102 // Return whether |service| can configure itself from the profile.
Chris Masone6515aab2011-10-12 16:19:09 -0700103 bool ContainsService(const ServiceConstRefPtr &service);
Chris Masone6791a432011-07-12 13:23:19 -0700104
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800105 std::vector<std::string> EnumerateAvailableServices(Error *error);
106 std::vector<std::string> EnumerateEntries(Error *error);
Chris Masone6791a432011-07-12 13:23:19 -0700107
Chris Masoneb9c00592011-10-06 13:10:39 -0700108 // Write all in-memory state to disk via |storage_|.
109 virtual bool Save();
Chris Masone9d779932011-08-25 16:33:41 -0700110
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700111 // Parses a profile identifier. There're two acceptable forms of the |raw|
112 // identifier: "identifier" and "~user/identifier". Both "user" and
113 // "identifier" must be suitable for use in a D-Bus object path. Returns true
114 // on success.
115 static bool ParseIdentifier(const std::string &raw, Identifier *parsed);
116
117 // Returns whether |name| matches this Profile's |name_|.
118 virtual bool MatchesIdentifier(const Identifier &name) const;
Darin Petkova4766822011-07-07 10:42:22 -0700119
Paul Stewartd0a3b812012-03-28 22:48:22 -0700120 // Returns the username component of the profile identifier.
121 const std::string &GetUser() const { return name_.user; }
122
Paul Stewart0756db92012-01-27 08:34:47 -0800123 // Returns a read-only copy of the backing storage of the profile.
124 // TODO(pstew): Needed by ProfileDBusPropertyExporter crosbug.com/25813
125 const StoreInterface *GetConstStorage() const { return storage_.get(); }
126
Chris Masone88cbd5f2011-07-03 14:30:04 -0700127 protected:
Paul Stewartac4ac002011-08-26 12:04:26 -0700128 // Protected getters
129 Manager *manager() const { return manager_; }
Chris Masoneb9c00592011-10-06 13:10:39 -0700130 StoreInterface *storage() { return storage_.get(); }
Chris Masone7aa5f902011-07-11 11:13:35 -0700131
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700132 // Sets |path| to the persistent store file path for a profile identified by
133 // |name_|. Returns true on success, and false if unable to determine an
134 // appropriate file location. |name_| must be a valid identifier,
135 // possibly parsed and validated through Profile::ParseIdentifier.
136 //
137 // In the default implementation, |name_.user| cannot be empty, because
138 // all regular profiles should be associated with a user.
139 virtual bool GetStoragePath(FilePath *path);
140
Chris Masone52cd19b2011-06-29 17:23:04 -0700141 private:
Chris Masone88cbd5f2011-07-03 14:30:04 -0700142 friend class ProfileAdaptorInterface;
Paul Stewart75225512012-01-26 22:51:33 -0800143 FRIEND_TEST(ProfileTest, DeleteEntry);
Paul Stewart5dc40aa2011-10-28 19:43:43 -0700144 FRIEND_TEST(ProfileTest, GetStoragePath);
Darin Petkova4766822011-07-07 10:42:22 -0700145 FRIEND_TEST(ProfileTest, IsValidIdentifierToken);
146
147 static bool IsValidIdentifierToken(const std::string &token);
Chris Masone88cbd5f2011-07-03 14:30:04 -0700148
mukesh agrawalffa3d042011-10-06 15:26:10 -0700149 void HelpRegisterDerivedStrings(
150 const std::string &name,
Hristo Stefanoved2c28c2011-11-29 15:37:30 -0800151 Strings(Profile::*get)(Error *error),
152 void(Profile::*set)(const Strings&, Error *error));
Chris Masone6791a432011-07-12 13:23:19 -0700153
Paul Stewartac4ac002011-08-26 12:04:26 -0700154 // Data members shared with subclasses via getter/setters above in the
155 // protected: section
156 Manager *manager_;
Paul Stewartac4ac002011-08-26 12:04:26 -0700157
Chris Masoneb9c00592011-10-06 13:10:39 -0700158 // Shared with |adaptor_| via public getter.
Paul Stewartac4ac002011-08-26 12:04:26 -0700159 PropertyStore store_;
Chris Masone7df0c672011-07-15 10:24:54 -0700160
161 // Properties to be gotten via PropertyStore calls.
162 Identifier name_;
Chris Masone52cd19b2011-06-29 17:23:04 -0700163
Chris Masone2ae797d2011-08-23 20:41:00 -0700164 // Format string used to generate paths to user profile directories.
165 const std::string storage_format_;
166
Chris Masoneb9c00592011-10-06 13:10:39 -0700167 // Allows this profile to be backed with on-disk storage.
168 scoped_ptr<StoreInterface> storage_;
169
Chris Masone7df0c672011-07-15 10:24:54 -0700170 scoped_ptr<ProfileAdaptorInterface> adaptor_;
Chris Masone52cd19b2011-06-29 17:23:04 -0700171
Chris Masone88cbd5f2011-07-03 14:30:04 -0700172 DISALLOW_COPY_AND_ASSIGN(Profile);
Chris Masone52cd19b2011-06-29 17:23:04 -0700173};
174
175} // namespace shill
176
177#endif // SHILL_PROFILE_