blob: fdea66a89c3d8b9bc420598ad051e6caa68cebfb [file] [log] [blame]
Chris Masoneb925cc82011-06-22 15:39:57 -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_PROPERTY_STORE_
6#define SHILL_PROPERTY_STORE_
7
8#include <map>
9#include <string>
10#include <vector>
11
12#include <base/basictypes.h>
13
14#include "shill/accessor_interface.h"
Chris Masonea8a2c252011-06-27 22:16:30 -070015#include "shill/property_iterator.h"
Chris Masoneb925cc82011-06-22 15:39:57 -070016
17namespace shill {
18
19class Error;
20
21class PropertyStore {
22 public:
Chris Masone27c4aa52011-07-02 13:10:14 -070023 PropertyStore();
Chris Masoneb925cc82011-06-22 15:39:57 -070024 virtual ~PropertyStore();
25
26 virtual bool Contains(const std::string& property);
27
28 // Methods to allow the setting, by name, of properties stored in this object.
29 // The property names are declared in chromeos/dbus/service_constants.h,
30 // so that they may be shared with libcros.
31 // Upon success, these methods return true and leave |error| untouched.
32 // Upon failure, they return false and set |error| appropriately, if it
33 // is non-NULL.
34 virtual bool SetBoolProperty(const std::string& name,
35 bool value,
36 Error *error);
37
38 virtual bool SetInt16Property(const std::string& name,
39 int16 value,
40 Error *error);
41
42 virtual bool SetInt32Property(const std::string& name,
43 int32 value,
44 Error *error);
45
46 virtual bool SetStringProperty(const std::string& name,
47 const std::string& value,
48 Error *error);
49
50 virtual bool SetStringmapProperty(
51 const std::string& name,
52 const std::map<std::string, std::string>& values,
53 Error *error);
54
55 virtual bool SetStringsProperty(const std::string& name,
56 const std::vector<std::string>& values,
57 Error *error);
58
59 virtual bool SetUint8Property(const std::string& name,
60 uint8 value,
61 Error *error);
62
63 virtual bool SetUint16Property(const std::string& name,
64 uint16 value,
65 Error *error);
66
67 virtual bool SetUint32Property(const std::string& name,
68 uint32 value,
69 Error *error);
70
Chris Masonea8a2c252011-06-27 22:16:30 -070071 // Accessors for iterators over property maps.
72 PropertyConstIterator<bool> GetBoolPropertiesIter();
73 PropertyConstIterator<int16> GetInt16PropertiesIter();
74 PropertyConstIterator<int32> GetInt32PropertiesIter();
75 PropertyConstIterator<std::string> GetStringPropertiesIter();
76 PropertyConstIterator<Stringmap> GetStringmapPropertiesIter();
77 PropertyConstIterator<Strings> GetStringsPropertiesIter();
78 PropertyConstIterator<uint8> GetUint8PropertiesIter();
79 PropertyConstIterator<uint16> GetUint16PropertiesIter();
80 PropertyConstIterator<uint32> GetUint32PropertiesIter();
81
Chris Masoneb925cc82011-06-22 15:39:57 -070082 void RegisterBool(const std::string &name, bool *prop);
83 void RegisterConstBool(const std::string &name, const bool *prop);
84 void RegisterInt16(const std::string &name, int16 *prop);
85 void RegisterConstInt16(const std::string &name, const int16 *prop);
86 void RegisterInt32(const std::string &name, int32 *prop);
87 void RegisterConstInt32(const std::string &name, const int32 *prop);
88 void RegisterString(const std::string &name, std::string *prop);
89 void RegisterConstString(const std::string &name, const std::string *prop);
Chris Masone43b48a12011-07-01 13:37:07 -070090 void RegisterStringmap(const std::string &name, Stringmap *prop);
91 void RegisterConstStringmap(const std::string &name, const Stringmap *prop);
92 void RegisterStrings(const std::string &name, Strings *prop);
Chris Masoneb925cc82011-06-22 15:39:57 -070093 void RegisterConstUint8(const std::string &name, const uint8 *prop);
94 void RegisterUint16(const std::string &name, uint16 *prop);
95 void RegisterConstUint16(const std::string &name, const uint16 *prop);
96
Chris Masone27c4aa52011-07-02 13:10:14 -070097 void RegisterDerivedBool(const std::string &name,
98 const BoolAccessor &accessor);
99 void RegisterDerivedString(const std::string &name,
100 const StringAccessor &accessor);
101 void RegisterDerivedStrings(const std::string &name,
102 const StringsAccessor &accessor);
103
104 private:
Chris Masoneb925cc82011-06-22 15:39:57 -0700105 // These are std::maps instead of something cooler because the common
106 // operation is iterating through them and returning all properties.
107 std::map<std::string, BoolAccessor> bool_properties_;
108 std::map<std::string, Int16Accessor> int16_properties_;
109 std::map<std::string, Int32Accessor> int32_properties_;
110 std::map<std::string, StringAccessor> string_properties_;
111 std::map<std::string, StringmapAccessor> stringmap_properties_;
112 std::map<std::string, StringsAccessor> strings_properties_;
113 std::map<std::string, Uint8Accessor> uint8_properties_;
114 std::map<std::string, Uint16Accessor> uint16_properties_;
115 std::map<std::string, Uint32Accessor> uint32_properties_;
116
Chris Masoneb925cc82011-06-22 15:39:57 -0700117 DISALLOW_COPY_AND_ASSIGN(PropertyStore);
118};
119
120} // namespace shill
121
122#endif // SHILL_PROPERTY_STORE_