blob: 59a75c3a591bdb1976246fc57d679a362d1a8b96 [file] [log] [blame]
Chris Masone88cbd5f2011-07-03 14:30:04 -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
5#ifndef SHILL_DEFAULT_PROFILE_
6#define SHILL_DEFAULT_PROFILE_
7
8#include <string>
9#include <vector>
10
Chris Masone2ae797d2011-08-23 20:41:00 -070011#include <base/file_path.h>
Chris Masone88cbd5f2011-07-03 14:30:04 -070012#include <base/memory/scoped_ptr.h>
Chris Masoneaa482372011-09-14 16:40:37 -070013#include <gtest/gtest_prod.h> // for FRIEND_TEST
Chris Masone88cbd5f2011-07-03 14:30:04 -070014
15#include "shill/manager.h"
16#include "shill/profile.h"
17#include "shill/property_store.h"
18#include "shill/refptr_types.h"
19#include "shill/shill_event.h"
20
21namespace shill {
22
23class ControlInterface;
24
25class DefaultProfile : public Profile {
26 public:
Chris Masone2ae797d2011-08-23 20:41:00 -070027 DefaultProfile(ControlInterface *control,
Chris Masone6791a432011-07-12 13:23:19 -070028 Manager *manager,
Chris Masone2ae797d2011-08-23 20:41:00 -070029 const FilePath &storage_path,
Chris Masone88cbd5f2011-07-03 14:30:04 -070030 const Manager::Properties &manager_props);
31 virtual ~DefaultProfile();
32
Chris Masoneaa482372011-09-14 16:40:37 -070033 virtual bool Save(StoreInterface *storage);
34
Chris Masone2ae797d2011-08-23 20:41:00 -070035 // Sets |path| to the persistent store file path for the default, global
36 // profile. Returns true on success, and false if unable to determine an
37 // appropriate file location.
38 //
39 // In this implementation, |name_| is ignored.
40 virtual bool GetStoragePath(FilePath *path);
41
Chris Masone88cbd5f2011-07-03 14:30:04 -070042 private:
Chris Masoneaa482372011-09-14 16:40:37 -070043 FRIEND_TEST(DefaultProfileTest, Save);
44
Chris Masone7df0c672011-07-15 10:24:54 -070045 static const char kDefaultId[];
Chris Masoneaa482372011-09-14 16:40:37 -070046 static const char kStorageId[];
47 static const char kStorageCheckPortalList[];
48 static const char kStorageName[];
49 static const char kStorageOfflineMode[];
Chris Masone7df0c672011-07-15 10:24:54 -070050
Chris Masone2ae797d2011-08-23 20:41:00 -070051 const FilePath storage_path_;
Chris Masoneaa482372011-09-14 16:40:37 -070052 const Manager::Properties &props_;
Chris Masone2ae797d2011-08-23 20:41:00 -070053
Chris Masone88cbd5f2011-07-03 14:30:04 -070054 DISALLOW_COPY_AND_ASSIGN(DefaultProfile);
55};
56
57} // namespace shill
58
59#endif // SHILL_DEFAULT_PROFILE_