os/ossrv/ossrv_pub/boost_apis/boost/dynamic_property_map.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
#ifndef DYNAMIC_PROPERTY_MAP_RG09302004_HPP
sl@0
     2
#define DYNAMIC_PROPERTY_MAP_RG09302004_HPP
sl@0
     3
sl@0
     4
// Copyright 2004-5 The Trustees of Indiana University.
sl@0
     5
sl@0
     6
// Use, modification and distribution is subject to the Boost Software
sl@0
     7
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
sl@0
     8
// http://www.boost.org/LICENSE_1_0.txt)
sl@0
     9
sl@0
    10
//  dynamic_property_map.hpp -
sl@0
    11
//    Support for runtime-polymorphic property maps.  This header is factored
sl@0
    12
//  out of Doug Gregor's routines for reading GraphML files for use in reading
sl@0
    13
//  GraphViz graph files.
sl@0
    14
sl@0
    15
//  Authors: Doug Gregor
sl@0
    16
//           Ronald Garcia
sl@0
    17
//
sl@0
    18
sl@0
    19
sl@0
    20
#include <boost/config.hpp>
sl@0
    21
#include <boost/property_map.hpp>
sl@0
    22
#include <boost/lexical_cast.hpp>
sl@0
    23
#include <boost/any.hpp>
sl@0
    24
#include <boost/function/function3.hpp>
sl@0
    25
#include <boost/type_traits/is_convertible.hpp>
sl@0
    26
#include <typeinfo>
sl@0
    27
#include <boost/mpl/bool.hpp>
sl@0
    28
#include <stdexcept>
sl@0
    29
#include <sstream>
sl@0
    30
#include <map>
sl@0
    31
#include <boost/type.hpp>
sl@0
    32
sl@0
    33
namespace boost {
sl@0
    34
sl@0
    35
namespace detail {
sl@0
    36
sl@0
    37
  // read_value -
sl@0
    38
  //   A wrapper around lexical_cast, which does not behave as
sl@0
    39
  //   desired for std::string types.
sl@0
    40
  template<typename Value>
sl@0
    41
  inline Value read_value(const std::string& value)
sl@0
    42
  { return boost::lexical_cast<Value>(value); }
sl@0
    43
sl@0
    44
  template<>
sl@0
    45
  inline std::string read_value<std::string>(const std::string& value)
sl@0
    46
  { return value; }
sl@0
    47
sl@0
    48
}
sl@0
    49
sl@0
    50
sl@0
    51
// dynamic_property_map -
sl@0
    52
//  This interface supports polymorphic manipulation of property maps.
sl@0
    53
class dynamic_property_map
sl@0
    54
{
sl@0
    55
public:
sl@0
    56
  virtual ~dynamic_property_map() { }
sl@0
    57
sl@0
    58
  virtual boost::any get(const any& key) = 0;
sl@0
    59
  virtual std::string get_string(const any& key) = 0;
sl@0
    60
  virtual void put(const any& key, const any& value) = 0;
sl@0
    61
  virtual const std::type_info& key() const = 0;
sl@0
    62
  virtual const std::type_info& value() const = 0;
sl@0
    63
};
sl@0
    64
sl@0
    65
sl@0
    66
//////////////////////////////////////////////////////////////////////
sl@0
    67
// Property map exceptions
sl@0
    68
//////////////////////////////////////////////////////////////////////
sl@0
    69
sl@0
    70
struct dynamic_property_exception : public std::exception {
sl@0
    71
  virtual ~dynamic_property_exception() throw() {}
sl@0
    72
  virtual const char* what() const throw() = 0;
sl@0
    73
};
sl@0
    74
sl@0
    75
struct property_not_found : public dynamic_property_exception {
sl@0
    76
  std::string property;
sl@0
    77
  mutable std::string statement;
sl@0
    78
  property_not_found(const std::string& property) : property(property) {}
sl@0
    79
  virtual ~property_not_found() throw() {}
sl@0
    80
sl@0
    81
  const char* what() const throw() {
sl@0
    82
    if(statement.empty())
sl@0
    83
      statement =
sl@0
    84
        std::string("Property not found: ") + property + ".";
sl@0
    85
sl@0
    86
    return statement.c_str();
sl@0
    87
  }
sl@0
    88
};
sl@0
    89
sl@0
    90
struct dynamic_get_failure : public dynamic_property_exception {
sl@0
    91
  std::string property;
sl@0
    92
  mutable std::string statement;
sl@0
    93
  dynamic_get_failure(const std::string& property) : property(property) {}
sl@0
    94
  virtual ~dynamic_get_failure() throw() {}
sl@0
    95
sl@0
    96
  const char* what() const throw() {
sl@0
    97
    if(statement.empty())
sl@0
    98
      statement =
sl@0
    99
        std::string(
sl@0
   100
         "dynamic property get cannot retrieve value for  property: ")
sl@0
   101
        + property + ".";
sl@0
   102
sl@0
   103
    return statement.c_str();
sl@0
   104
  }
sl@0
   105
};
sl@0
   106
sl@0
   107
struct dynamic_const_put_error  : public dynamic_property_exception {
sl@0
   108
  virtual ~dynamic_const_put_error() throw() {}
sl@0
   109
sl@0
   110
  const char* what() const throw() {
sl@0
   111
    return "Attempt to put a value into a const property map: ";
sl@0
   112
  }
sl@0
   113
};
sl@0
   114
sl@0
   115
sl@0
   116
namespace detail {
sl@0
   117
sl@0
   118
//
sl@0
   119
// dynamic_property_map_adaptor -
sl@0
   120
//   property-map adaptor to support runtime polymorphism.
sl@0
   121
template<typename PropertyMap>
sl@0
   122
class dynamic_property_map_adaptor : public dynamic_property_map
sl@0
   123
{
sl@0
   124
  typedef typename property_traits<PropertyMap>::key_type key_type;
sl@0
   125
  typedef typename property_traits<PropertyMap>::value_type value_type;
sl@0
   126
  typedef typename property_traits<PropertyMap>::category category;
sl@0
   127
sl@0
   128
  // do_put - overloaded dispatches from the put() member function.
sl@0
   129
  //   Attempts to "put" to a property map that does not model
sl@0
   130
  //   WritablePropertyMap result in a runtime exception.
sl@0
   131
sl@0
   132
  //   in_value must either hold an object of value_type or a string that
sl@0
   133
  //   can be converted to value_type via iostreams.
sl@0
   134
  void do_put(const any& in_key, const any& in_value, mpl::bool_<true>)
sl@0
   135
  {
sl@0
   136
#if !(defined(__GNUC__) && (__GNUC__ == 2) && (__GNUC_MINOR__ == 95))
sl@0
   137
    using boost::put;
sl@0
   138
#endif
sl@0
   139
sl@0
   140
    key_type key = any_cast<key_type>(in_key);
sl@0
   141
    if (in_value.type() == typeid(value_type)) {
sl@0
   142
#if defined(__GNUC__) && (__GNUC__ == 2) && (__GNUC_MINOR__ == 95)
sl@0
   143
      boost::put(property_map, key, any_cast<value_type>(in_value));
sl@0
   144
#else
sl@0
   145
      put(property_map, key, any_cast<value_type>(in_value));
sl@0
   146
#endif
sl@0
   147
    } else {
sl@0
   148
      //  if in_value is an empty string, put a default constructed value_type.
sl@0
   149
      std::string v = any_cast<std::string>(in_value);
sl@0
   150
      if (v.empty()) {
sl@0
   151
#if defined(__GNUC__) && (__GNUC__ == 2) && (__GNUC_MINOR__ == 95)
sl@0
   152
        boost::put(property_map, key, value_type());
sl@0
   153
#else
sl@0
   154
        put(property_map, key, value_type());
sl@0
   155
#endif
sl@0
   156
      } else {
sl@0
   157
#if defined(__GNUC__) && (__GNUC__ == 2) && (__GNUC_MINOR__ == 95)
sl@0
   158
        boost::put(property_map, key, detail::read_value<value_type>(v));
sl@0
   159
#else
sl@0
   160
        put(property_map, key, detail::read_value<value_type>(v));
sl@0
   161
#endif
sl@0
   162
      }
sl@0
   163
    }
sl@0
   164
  }
sl@0
   165
sl@0
   166
  void do_put(const any&, const any&, mpl::bool_<false>)
sl@0
   167
  {
sl@0
   168
    throw dynamic_const_put_error();
sl@0
   169
  }
sl@0
   170
sl@0
   171
public:
sl@0
   172
  explicit dynamic_property_map_adaptor(const PropertyMap& property_map)
sl@0
   173
    : property_map(property_map) { }
sl@0
   174
sl@0
   175
  virtual boost::any get(const any& key)
sl@0
   176
  {
sl@0
   177
#if defined(__GNUC__) && (__GNUC__ == 2) && (__GNUC_MINOR__ == 95)
sl@0
   178
    return boost::get(property_map, any_cast<key_type>(key));
sl@0
   179
#else
sl@0
   180
    using boost::get;
sl@0
   181
sl@0
   182
    return get(property_map, any_cast<key_type>(key));
sl@0
   183
#endif
sl@0
   184
  }
sl@0
   185
sl@0
   186
  virtual std::string get_string(const any& key)
sl@0
   187
  {
sl@0
   188
#if defined(__GNUC__) && (__GNUC__ == 2) && (__GNUC_MINOR__ == 95)
sl@0
   189
    std::ostringstream out;
sl@0
   190
    out << boost::get(property_map, any_cast<key_type>(key));
sl@0
   191
    return out.str();
sl@0
   192
#else
sl@0
   193
    using boost::get;
sl@0
   194
sl@0
   195
    std::ostringstream out;
sl@0
   196
    out << get(property_map, any_cast<key_type>(key));
sl@0
   197
    return out.str();
sl@0
   198
#endif
sl@0
   199
  }
sl@0
   200
sl@0
   201
  virtual void put(const any& in_key, const any& in_value)
sl@0
   202
  {
sl@0
   203
    do_put(in_key, in_value,
sl@0
   204
           mpl::bool_<(is_convertible<category*,
sl@0
   205
                                      writable_property_map_tag*>::value)>());
sl@0
   206
  }
sl@0
   207
sl@0
   208
  virtual const std::type_info& key()   const { return typeid(key_type); }
sl@0
   209
  virtual const std::type_info& value() const { return typeid(value_type); }
sl@0
   210
sl@0
   211
  PropertyMap&       base()       { return property_map; }
sl@0
   212
  const PropertyMap& base() const { return property_map; }
sl@0
   213
sl@0
   214
private:
sl@0
   215
  PropertyMap property_map;
sl@0
   216
};
sl@0
   217
sl@0
   218
} // namespace detail
sl@0
   219
sl@0
   220
//
sl@0
   221
// dynamic_properties -
sl@0
   222
//   container for dynamic property maps
sl@0
   223
//
sl@0
   224
struct dynamic_properties
sl@0
   225
{
sl@0
   226
  typedef std::multimap<std::string, dynamic_property_map*>
sl@0
   227
    property_maps_type;
sl@0
   228
  typedef boost::function3<std::auto_ptr<dynamic_property_map>,
sl@0
   229
                           const std::string&,
sl@0
   230
                           const boost::any&,
sl@0
   231
                           const boost::any&> generate_fn_type;
sl@0
   232
public:
sl@0
   233
sl@0
   234
  typedef property_maps_type::iterator iterator;
sl@0
   235
  typedef property_maps_type::const_iterator const_iterator;
sl@0
   236
sl@0
   237
  dynamic_properties() : generate_fn() { }
sl@0
   238
  dynamic_properties(const generate_fn_type& g) : generate_fn(g) {}
sl@0
   239
sl@0
   240
  ~dynamic_properties()
sl@0
   241
  {
sl@0
   242
    for (property_maps_type::iterator i = property_maps.begin();
sl@0
   243
         i != property_maps.end(); ++i) {
sl@0
   244
      delete i->second;
sl@0
   245
    }
sl@0
   246
  }
sl@0
   247
sl@0
   248
  template<typename PropertyMap>
sl@0
   249
  dynamic_properties&
sl@0
   250
  property(const std::string& name, PropertyMap property_map)
sl@0
   251
  {
sl@0
   252
    // Tbd: exception safety
sl@0
   253
    std::auto_ptr<dynamic_property_map> pm(
sl@0
   254
      new detail::dynamic_property_map_adaptor<PropertyMap>(property_map));
sl@0
   255
    property_maps_type::iterator i =
sl@0
   256
      property_maps.insert(property_maps_type::value_type(name, 0));
sl@0
   257
    i->second = pm.release();
sl@0
   258
sl@0
   259
    return *this;
sl@0
   260
  }
sl@0
   261
sl@0
   262
  iterator       begin()       { return property_maps.begin(); }
sl@0
   263
  const_iterator begin() const { return property_maps.begin(); }
sl@0
   264
  iterator       end()         { return property_maps.end(); }
sl@0
   265
  const_iterator end() const   { return property_maps.end(); }
sl@0
   266
sl@0
   267
  iterator lower_bound(const std::string& name)
sl@0
   268
  { return property_maps.lower_bound(name); }
sl@0
   269
sl@0
   270
  const_iterator lower_bound(const std::string& name) const
sl@0
   271
  { return property_maps.lower_bound(name); }
sl@0
   272
sl@0
   273
  void
sl@0
   274
  insert(const std::string& name, std::auto_ptr<dynamic_property_map> pm)
sl@0
   275
  {
sl@0
   276
    property_maps.insert(property_maps_type::value_type(name, pm.release()));
sl@0
   277
  }
sl@0
   278
sl@0
   279
  template<typename Key, typename Value>
sl@0
   280
  std::auto_ptr<dynamic_property_map>
sl@0
   281
  generate(const std::string& name, const Key& key, const Value& value)
sl@0
   282
  {
sl@0
   283
    if(!generate_fn) {
sl@0
   284
      throw property_not_found(name);
sl@0
   285
    } else {
sl@0
   286
      return generate_fn(name,key,value);
sl@0
   287
    }
sl@0
   288
  }
sl@0
   289
sl@0
   290
private:
sl@0
   291
  property_maps_type property_maps;
sl@0
   292
  generate_fn_type generate_fn;
sl@0
   293
};
sl@0
   294
sl@0
   295
template<typename Key, typename Value>
sl@0
   296
bool
sl@0
   297
put(const std::string& name, dynamic_properties& dp, const Key& key,
sl@0
   298
    const Value& value)
sl@0
   299
{
sl@0
   300
  for (dynamic_properties::iterator i = dp.lower_bound(name);
sl@0
   301
       i != dp.end() && i->first == name; ++i) {
sl@0
   302
    if (i->second->key() == typeid(key)) {
sl@0
   303
      i->second->put(key, value);
sl@0
   304
      return true;
sl@0
   305
    }
sl@0
   306
  }
sl@0
   307
sl@0
   308
  std::auto_ptr<dynamic_property_map> new_map = dp.generate(name, key, value);
sl@0
   309
  if (new_map.get()) {
sl@0
   310
    new_map->put(key, value);
sl@0
   311
    dp.insert(name, new_map);
sl@0
   312
    return true;
sl@0
   313
  } else {
sl@0
   314
    return false;
sl@0
   315
  }
sl@0
   316
}
sl@0
   317
sl@0
   318
#ifndef BOOST_NO_EXPLICIT_FUNCTION_TEMPLATE_ARGUMENTS 
sl@0
   319
template<typename Value, typename Key>
sl@0
   320
Value
sl@0
   321
get(const std::string& name, const dynamic_properties& dp, const Key& key)
sl@0
   322
{
sl@0
   323
  for (dynamic_properties::const_iterator i = dp.lower_bound(name);
sl@0
   324
       i != dp.end() && i->first == name; ++i) {
sl@0
   325
    if (i->second->key() == typeid(key))
sl@0
   326
      return any_cast<Value>(i->second->get(key));
sl@0
   327
  }
sl@0
   328
sl@0
   329
  throw dynamic_get_failure(name);
sl@0
   330
}
sl@0
   331
#endif
sl@0
   332
sl@0
   333
template<typename Value, typename Key>
sl@0
   334
Value
sl@0
   335
get(const std::string& name, const dynamic_properties& dp, const Key& key, type<Value>)
sl@0
   336
{
sl@0
   337
  for (dynamic_properties::const_iterator i = dp.lower_bound(name);
sl@0
   338
       i != dp.end() && i->first == name; ++i) {
sl@0
   339
    if (i->second->key() == typeid(key))
sl@0
   340
      return any_cast<Value>(i->second->get(key));
sl@0
   341
  }
sl@0
   342
sl@0
   343
  throw dynamic_get_failure(name);
sl@0
   344
}
sl@0
   345
sl@0
   346
template<typename Key>
sl@0
   347
std::string
sl@0
   348
get(const std::string& name, const dynamic_properties& dp, const Key& key)
sl@0
   349
{
sl@0
   350
  for (dynamic_properties::const_iterator i = dp.lower_bound(name);
sl@0
   351
       i != dp.end() && i->first == name; ++i) {
sl@0
   352
    if (i->second->key() == typeid(key))
sl@0
   353
      return i->second->get_string(key);
sl@0
   354
  }
sl@0
   355
sl@0
   356
  throw dynamic_get_failure(name);
sl@0
   357
}
sl@0
   358
sl@0
   359
sl@0
   360
}
sl@0
   361
sl@0
   362
#endif // DYNAMIC_PROPERTY_MAP_RG09302004_HPP