blob: 5230bfd5899384c182cfabea04a6760641ba9a25 [file] [log] [blame]
// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SHILL_ACCESSOR_INTERFACE_
#define SHILL_ACCESSOR_INTERFACE_
#include <map>
#include <string>
#include <memory>
#include <utility>
#include <vector>
#include <base/basictypes.h>
#include "shill/key_value_store.h"
namespace shill {
class Error;
// A templated abstract base class for objects that can be used to access
// properties stored in objects that are meant to be made available over RPC.
// The intended usage is that an object stores a maps of strings to
// AccessorInterfaces of the appropriate type, and then uses
// map[name]->Get() and map[name]->Set(value) to get and set the properties.
template <class T>
class AccessorInterface {
public:
AccessorInterface() {}
virtual ~AccessorInterface() {}
// Reset the property to its default value. Sets |error| on failure.
virtual void Clear(Error *error) = 0;
// Provides read-only access. Sets |error| on failure.
virtual T Get(Error *error) = 0;
// Attempts to set the wrapped value. Sets |error| on failure. The
// return value indicates whether or not the wrapped value was
// modified. If the new value is the same as the old value, Set
// returns false, but with |error| unchanged.
virtual bool Set(const T &value, Error *error) = 0;
private:
DISALLOW_COPY_AND_ASSIGN(AccessorInterface);
};
typedef std::vector<uint8_t> ByteArray;
typedef std::vector<ByteArray> ByteArrays;
// Note that while the RpcIdentifiers type has the same concrete
// representation as the Strings type, it may be serialized
// differently. Accordingly, PropertyStore tracks RpcIdentifiers
// separately from Strings. We create a separate typedef here, to make
// the PropertyStore-related code read more simply.
typedef std::string RpcIdentifier;
typedef std::vector<std::string> RpcIdentifiers;
typedef std::vector<std::string> Strings;
typedef std::map<std::string, std::string> Stringmap;
typedef std::vector<Stringmap> Stringmaps;
typedef std::vector<uint16> Uint16s;
// Using a smart pointer here allows pointers to classes derived from
// AccessorInterface<> to be stored in maps and other STL container types.
typedef std::shared_ptr<AccessorInterface<bool>> BoolAccessor;
typedef std::shared_ptr<AccessorInterface<int16>> Int16Accessor;
typedef std::shared_ptr<AccessorInterface<int32>> Int32Accessor;
// See comment above RpcIdentifiers typedef, for the reason why the
// RpcIdentifiersAccessor exists (even though it has the same
// underlying type as StringsAccessor).
typedef std::shared_ptr<
AccessorInterface<RpcIdentifier>> RpcIdentifierAccessor;
typedef std::shared_ptr<
AccessorInterface<std::vector<std::string>>> RpcIdentifiersAccessor;
typedef std::shared_ptr<AccessorInterface<std::string>> StringAccessor;
typedef std::shared_ptr<AccessorInterface<Stringmap>> StringmapAccessor;
typedef std::shared_ptr<AccessorInterface<Stringmaps>> StringmapsAccessor;
typedef std::shared_ptr<AccessorInterface<Strings>> StringsAccessor;
typedef std::shared_ptr<
AccessorInterface<KeyValueStore>> KeyValueStoreAccessor;
typedef std::shared_ptr<AccessorInterface<uint8>> Uint8Accessor;
typedef std::shared_ptr<AccessorInterface<uint16>> Uint16Accessor;
typedef std::shared_ptr<AccessorInterface<Uint16s>> Uint16sAccessor;
typedef std::shared_ptr<AccessorInterface<uint32>> Uint32Accessor;
typedef std::shared_ptr<AccessorInterface<uint64>> Uint64Accessor;
} // namespace shill
#endif // SHILL_ACCESSOR_INTERFACE_