blob: 461cb7f71cd1ee9ab154bfc21a678f62e063cff9 [file] [log] [blame]
mukesh agrawal4d0401c2012-01-06 16:05:31 -08001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Chris Masoneb925cc82011-06-22 15:39:57 -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_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
mukesh agrawalde29fa82011-09-16 16:16:36 -070026 virtual bool Contains(const std::string& property) const;
Chris Masoneb925cc82011-06-22 15:39:57 -070027
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
mukesh agrawalffa3d042011-10-06 15:26:10 -070071 // We do not provide methods for reading individual properties,
72 // because we don't need them to implement the flimflam API. (The flimflam
73 // API only allows fetching all properties at once -- not individual
74 // properties.)
75
76 // Accessors for iterators over property maps. Useful for dumping all
77 // properties.
Gaurav Shah1b7a6162011-11-09 11:41:01 -080078 ReadablePropertyConstIterator<bool> GetBoolPropertiesIter() const;
79 ReadablePropertyConstIterator<int16> GetInt16PropertiesIter() const;
80 ReadablePropertyConstIterator<int32> GetInt32PropertiesIter() const;
Darin Petkov63138a92012-02-06 14:09:15 +010081 ReadablePropertyConstIterator<KeyValueStore> GetKeyValueStorePropertiesIter(
82 ) const;
Gaurav Shah1b7a6162011-11-09 11:41:01 -080083 ReadablePropertyConstIterator<std::string> GetStringPropertiesIter() const;
84 ReadablePropertyConstIterator<Stringmap> GetStringmapPropertiesIter() const;
85 ReadablePropertyConstIterator<Stringmaps> GetStringmapsPropertiesIter() const;
Gaurav Shah1b7a6162011-11-09 11:41:01 -080086 ReadablePropertyConstIterator<Strings> GetStringsPropertiesIter() const;
87 ReadablePropertyConstIterator<uint8> GetUint8PropertiesIter() const;
88 ReadablePropertyConstIterator<uint16> GetUint16PropertiesIter() const;
89 ReadablePropertyConstIterator<uint32> GetUint32PropertiesIter() const;
Chris Masonea8a2c252011-06-27 22:16:30 -070090
Chris Masoneb925cc82011-06-22 15:39:57 -070091 void RegisterBool(const std::string &name, bool *prop);
92 void RegisterConstBool(const std::string &name, const bool *prop);
Gaurav Shah1b7a6162011-11-09 11:41:01 -080093 void RegisterWriteOnlyBool(const std::string &name, bool *prop);
Chris Masoneb925cc82011-06-22 15:39:57 -070094 void RegisterInt16(const std::string &name, int16 *prop);
95 void RegisterConstInt16(const std::string &name, const int16 *prop);
Gaurav Shah1b7a6162011-11-09 11:41:01 -080096 void RegisterWriteOnlyInt16(const std::string &name, int16 *prop);
Chris Masoneb925cc82011-06-22 15:39:57 -070097 void RegisterInt32(const std::string &name, int32 *prop);
98 void RegisterConstInt32(const std::string &name, const int32 *prop);
Gaurav Shah1b7a6162011-11-09 11:41:01 -080099 void RegisterWriteOnlyInt32(const std::string &name, int32 *prop);
Chris Masoneb925cc82011-06-22 15:39:57 -0700100 void RegisterString(const std::string &name, std::string *prop);
101 void RegisterConstString(const std::string &name, const std::string *prop);
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800102 void RegisterWriteOnlyString(const std::string &name, std::string *prop);
Chris Masone43b48a12011-07-01 13:37:07 -0700103 void RegisterStringmap(const std::string &name, Stringmap *prop);
104 void RegisterConstStringmap(const std::string &name, const Stringmap *prop);
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800105 void RegisterWriteOnlyStringmap(const std::string &name, Stringmap *prop);
Darin Petkovc0865312011-09-16 15:31:20 -0700106 void RegisterStringmaps(const std::string &name, Stringmaps *prop);
107 void RegisterConstStringmaps(const std::string &name, const Stringmaps *prop);
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800108 void RegisterWriteOnlyStringmaps(const std::string &name, Stringmaps *prop);
Chris Masone43b48a12011-07-01 13:37:07 -0700109 void RegisterStrings(const std::string &name, Strings *prop);
Chris Masone889666b2011-07-03 12:58:50 -0700110 void RegisterConstStrings(const std::string &name, const Strings *prop);
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800111 void RegisterWriteOnlyStrings(const std::string &name, Strings *prop);
Chris Masone889666b2011-07-03 12:58:50 -0700112 void RegisterUint8(const std::string &name, uint8 *prop);
Chris Masoneb925cc82011-06-22 15:39:57 -0700113 void RegisterConstUint8(const std::string &name, const uint8 *prop);
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800114 void RegisterWriteOnlyUint8(const std::string &name, uint8 *prop);
Chris Masoneb925cc82011-06-22 15:39:57 -0700115 void RegisterUint16(const std::string &name, uint16 *prop);
116 void RegisterConstUint16(const std::string &name, const uint16 *prop);
Gaurav Shah1b7a6162011-11-09 11:41:01 -0800117 void RegisterWriteOnlyUint16(const std::string &name, uint16 *prop);
Chris Masoneb925cc82011-06-22 15:39:57 -0700118
Chris Masone27c4aa52011-07-02 13:10:14 -0700119 void RegisterDerivedBool(const std::string &name,
120 const BoolAccessor &accessor);
mukesh agrawal4d0401c2012-01-06 16:05:31 -0800121 void RegisterDerivedInt32(const std::string &name,
122 const Int32Accessor &accessor);
Darin Petkov63138a92012-02-06 14:09:15 +0100123 void RegisterDerivedKeyValueStore(const std::string &name,
124 const KeyValueStoreAccessor &accessor);
Chris Masone27c4aa52011-07-02 13:10:14 -0700125 void RegisterDerivedString(const std::string &name,
126 const StringAccessor &accessor);
Chris Masone889666b2011-07-03 12:58:50 -0700127 void RegisterDerivedStringmaps(const std::string &name,
128 const StringmapsAccessor &accessor);
Chris Masone27c4aa52011-07-02 13:10:14 -0700129 void RegisterDerivedStrings(const std::string &name,
130 const StringsAccessor &accessor);
Paul Stewartbe5f5b32011-12-07 17:11:11 -0800131 void RegisterDerivedUint16(const std::string &name,
132 const Uint16Accessor &accessor);
Chris Masone27c4aa52011-07-02 13:10:14 -0700133
134 private:
mukesh agrawalffa3d042011-10-06 15:26:10 -0700135 template <class V>
136 bool SetProperty(
137 const std::string &name,
138 const V &value,
139 Error *error,
140 std::map< std::string, std::tr1::shared_ptr< AccessorInterface<V> > > &,
141 const std::string &value_type_english);
142
Chris Masoneb925cc82011-06-22 15:39:57 -0700143 // These are std::maps instead of something cooler because the common
144 // operation is iterating through them and returning all properties.
145 std::map<std::string, BoolAccessor> bool_properties_;
146 std::map<std::string, Int16Accessor> int16_properties_;
147 std::map<std::string, Int32Accessor> int32_properties_;
Darin Petkov63138a92012-02-06 14:09:15 +0100148 std::map<std::string, KeyValueStoreAccessor> key_value_store_properties_;
Chris Masoneb925cc82011-06-22 15:39:57 -0700149 std::map<std::string, StringAccessor> string_properties_;
150 std::map<std::string, StringmapAccessor> stringmap_properties_;
Chris Masone889666b2011-07-03 12:58:50 -0700151 std::map<std::string, StringmapsAccessor> stringmaps_properties_;
Chris Masoneb925cc82011-06-22 15:39:57 -0700152 std::map<std::string, StringsAccessor> strings_properties_;
153 std::map<std::string, Uint8Accessor> uint8_properties_;
154 std::map<std::string, Uint16Accessor> uint16_properties_;
155 std::map<std::string, Uint32Accessor> uint32_properties_;
156
Chris Masoneb925cc82011-06-22 15:39:57 -0700157 DISALLOW_COPY_AND_ASSIGN(PropertyStore);
158};
159
160} // namespace shill
161
162#endif // SHILL_PROPERTY_STORE_