Paul Stewart | e692740 | 2012-01-23 16:11:30 -0800 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium OS Authors. All rights reserved. |
Chris Masone | 88cbd5f | 2011-07-03 14:30:04 -0700 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
Wade Guthrie | 60a3706 | 2013-04-02 11:39:09 -0700 | [diff] [blame] | 5 | #ifndef SHILL_DEFAULT_PROFILE_H_ |
| 6 | #define SHILL_DEFAULT_PROFILE_H_ |
Chris Masone | 88cbd5f | 2011-07-03 14:30:04 -0700 | [diff] [blame] | 7 | |
| 8 | #include <string> |
| 9 | #include <vector> |
| 10 | |
Chris Masone | 2ae797d | 2011-08-23 20:41:00 -0700 | [diff] [blame] | 11 | #include <base/file_path.h> |
Chris Masone | 88cbd5f | 2011-07-03 14:30:04 -0700 | [diff] [blame] | 12 | #include <base/memory/scoped_ptr.h> |
Chris Masone | aa48237 | 2011-09-14 16:40:37 -0700 | [diff] [blame] | 13 | #include <gtest/gtest_prod.h> // for FRIEND_TEST |
Chris Masone | 88cbd5f | 2011-07-03 14:30:04 -0700 | [diff] [blame] | 14 | |
Paul Stewart | 26b327e | 2011-10-19 11:38:09 -0700 | [diff] [blame] | 15 | #include "shill/event_dispatcher.h" |
Chris Masone | 88cbd5f | 2011-07-03 14:30:04 -0700 | [diff] [blame] | 16 | #include "shill/manager.h" |
| 17 | #include "shill/profile.h" |
| 18 | #include "shill/property_store.h" |
| 19 | #include "shill/refptr_types.h" |
Chris Masone | 88cbd5f | 2011-07-03 14:30:04 -0700 | [diff] [blame] | 20 | |
| 21 | namespace shill { |
| 22 | |
| 23 | class ControlInterface; |
Wade Guthrie | 60a3706 | 2013-04-02 11:39:09 -0700 | [diff] [blame] | 24 | class WiFiProvider; |
Chris Masone | 88cbd5f | 2011-07-03 14:30:04 -0700 | [diff] [blame] | 25 | |
| 26 | class DefaultProfile : public Profile { |
| 27 | public: |
Paul Stewart | d0a3b81 | 2012-03-28 22:48:22 -0700 | [diff] [blame] | 28 | static const char kDefaultId[]; |
| 29 | |
Chris Masone | 2ae797d | 2011-08-23 20:41:00 -0700 | [diff] [blame] | 30 | DefaultProfile(ControlInterface *control, |
Thieu Le | 5133b71 | 2013-02-19 14:47:21 -0800 | [diff] [blame] | 31 | Metrics *metrics, |
Chris Masone | 6791a43 | 2011-07-12 13:23:19 -0700 | [diff] [blame] | 32 | Manager *manager, |
Albert Chaulk | 0e1cdea | 2013-02-27 15:32:55 -0800 | [diff] [blame] | 33 | const base::FilePath &storage_path, |
Paul Stewart | d0a3b81 | 2012-03-28 22:48:22 -0700 | [diff] [blame] | 34 | const std::string &profile_id, |
Chris Masone | 88cbd5f | 2011-07-03 14:30:04 -0700 | [diff] [blame] | 35 | const Manager::Properties &manager_props); |
| 36 | virtual ~DefaultProfile(); |
| 37 | |
Paul Stewart | 4d5efb7 | 2012-09-17 12:24:34 -0700 | [diff] [blame] | 38 | // Loads global configuration into manager properties. This should |
| 39 | // only be called by the Manager. |
Paul Stewart | 870523b | 2012-01-11 17:00:42 -0800 | [diff] [blame] | 40 | virtual bool LoadManagerProperties(Manager::Properties *manager_props); |
| 41 | |
Paul Stewart | f284a23 | 2012-05-01 10:24:37 -0700 | [diff] [blame] | 42 | // Override the Profile superclass implementation to accept all Ethernet |
| 43 | // services, since these should have an affinity for the default profile. |
| 44 | virtual bool ConfigureService(const ServiceRefPtr &service); |
| 45 | |
Chris Masone | 877ff98 | 2011-09-21 16:18:24 -0700 | [diff] [blame] | 46 | // Persists profile information, as well as that of discovered devices |
| 47 | // and bound services, to disk. |
| 48 | // Returns true on success, false on failure. |
Chris Masone | b9c0059 | 2011-10-06 13:10:39 -0700 | [diff] [blame] | 49 | virtual bool Save(); |
Chris Masone | aa48237 | 2011-09-14 16:40:37 -0700 | [diff] [blame] | 50 | |
Darin Petkov | e7c6ad3 | 2012-06-29 10:22:09 +0200 | [diff] [blame] | 51 | // Inherited from Profile. |
| 52 | virtual bool UpdateDevice(const DeviceRefPtr &device); |
| 53 | |
Wade Guthrie | 60a3706 | 2013-04-02 11:39:09 -0700 | [diff] [blame] | 54 | // Inherited from Profile. |
| 55 | virtual bool UpdateWiFiProvider(const WiFiProvider &wifi_provider); |
| 56 | |
Paul Stewart | 5dc40aa | 2011-10-28 19:43:43 -0700 | [diff] [blame] | 57 | protected: |
Chris Masone | 2ae797d | 2011-08-23 20:41:00 -0700 | [diff] [blame] | 58 | // Sets |path| to the persistent store file path for the default, global |
| 59 | // profile. Returns true on success, and false if unable to determine an |
| 60 | // appropriate file location. |
| 61 | // |
| 62 | // In this implementation, |name_| is ignored. |
Albert Chaulk | 0e1cdea | 2013-02-27 15:32:55 -0800 | [diff] [blame] | 63 | virtual bool GetStoragePath(base::FilePath *path); |
Chris Masone | 2ae797d | 2011-08-23 20:41:00 -0700 | [diff] [blame] | 64 | |
Chris Masone | 88cbd5f | 2011-07-03 14:30:04 -0700 | [diff] [blame] | 65 | private: |
Paul Stewart | 870523b | 2012-01-11 17:00:42 -0800 | [diff] [blame] | 66 | friend class DefaultProfileTest; |
Paul Stewart | 5dc40aa | 2011-10-28 19:43:43 -0700 | [diff] [blame] | 67 | FRIEND_TEST(DefaultProfileTest, GetStoragePath); |
Paul Stewart | e692740 | 2012-01-23 16:11:30 -0800 | [diff] [blame] | 68 | FRIEND_TEST(DefaultProfileTest, LoadManagerDefaultProperties); |
Paul Stewart | 870523b | 2012-01-11 17:00:42 -0800 | [diff] [blame] | 69 | FRIEND_TEST(DefaultProfileTest, LoadManagerProperties); |
| 70 | FRIEND_TEST(DefaultProfileTest, Save); |
Chris Masone | aa48237 | 2011-09-14 16:40:37 -0700 | [diff] [blame] | 71 | |
Chris Masone | aa48237 | 2011-09-14 16:40:37 -0700 | [diff] [blame] | 72 | static const char kStorageId[]; |
Paul Stewart | d408fdf | 2012-05-07 17:15:57 -0700 | [diff] [blame] | 73 | static const char kStorageArpGateway[]; |
Chris Masone | aa48237 | 2011-09-14 16:40:37 -0700 | [diff] [blame] | 74 | static const char kStorageCheckPortalList[]; |
Paul Stewart | d32f484 | 2012-01-11 16:08:13 -0800 | [diff] [blame] | 75 | static const char kStorageHostName[]; |
Paul Stewart | 4d5efb7 | 2012-09-17 12:24:34 -0700 | [diff] [blame] | 76 | static const char kStorageIgnoredDNSSearchPaths[]; |
Paul Stewart | 036dba0 | 2012-08-07 12:34:41 -0700 | [diff] [blame] | 77 | static const char kStorageLinkMonitorTechnologies[]; |
Chris Masone | aa48237 | 2011-09-14 16:40:37 -0700 | [diff] [blame] | 78 | static const char kStorageName[]; |
| 79 | static const char kStorageOfflineMode[]; |
Paul Stewart | c681fa0 | 2012-03-02 19:40:04 -0800 | [diff] [blame] | 80 | static const char kStoragePortalCheckInterval[]; |
Paul Stewart | e692740 | 2012-01-23 16:11:30 -0800 | [diff] [blame] | 81 | static const char kStoragePortalURL[]; |
Chris Masone | 7df0c67 | 2011-07-15 10:24:54 -0700 | [diff] [blame] | 82 | |
Albert Chaulk | 0e1cdea | 2013-02-27 15:32:55 -0800 | [diff] [blame] | 83 | const base::FilePath storage_path_; |
Paul Stewart | d0a3b81 | 2012-03-28 22:48:22 -0700 | [diff] [blame] | 84 | const std::string profile_id_; |
Chris Masone | aa48237 | 2011-09-14 16:40:37 -0700 | [diff] [blame] | 85 | const Manager::Properties &props_; |
Chris Masone | 2ae797d | 2011-08-23 20:41:00 -0700 | [diff] [blame] | 86 | |
Chris Masone | 88cbd5f | 2011-07-03 14:30:04 -0700 | [diff] [blame] | 87 | DISALLOW_COPY_AND_ASSIGN(DefaultProfile); |
| 88 | }; |
| 89 | |
| 90 | } // namespace shill |
| 91 | |
Wade Guthrie | 60a3706 | 2013-04-02 11:39:09 -0700 | [diff] [blame] | 92 | #endif // SHILL_DEFAULT_PROFILE_H_ |