From 4a326c04d6c59b9236f1129eb139b470cb46ed1e Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 28 Jan 2020 14:03:36 +0200 Subject: Add support for optional C-array as container mapping --- odb/c-array-traits.hxx | 102 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 odb/c-array-traits.hxx diff --git a/odb/c-array-traits.hxx b/odb/c-array-traits.hxx new file mode 100644 index 0000000..1acc0d7 --- /dev/null +++ b/odb/c-array-traits.hxx @@ -0,0 +1,102 @@ +// file : odb/c-array-traits.hxx +// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef ODB_C_ARRAY_TRAITS_HXX +#define ODB_C_ARRAY_TRAITS_HXX + +#include + +#include // std::size_t +#include + +#include + +namespace odb +{ + // Optional mapping of C arrays as containers. Note that this mapping is not + // enable by default. To enable, pass the following options to the ODB + // compiler: + // + // --odb-epilogue '#include ' + // --hxx-prologue '#include ' + // + // Note also that the array types have to be named, for example: + // + // class object + // { + // // composite_type values[5]; // Won't work. + // + // typedef composite_type composite_array[5]; + // composite_array values; + // }; + // + // Finally, this mapping is disabled for the char[N] and wchar_t[N] types + // (they are mapped as strings by default). + // + template + class access::container_traits + { + public: + static const container_kind kind = ck_ordered; + static const bool smart = false; + + typedef V container_type[N]; + + typedef V value_type; + typedef std::size_t index_type; + + typedef ordered_functions functions; + + public: + static void + persist (const container_type& c, const functions& f) + { + for (index_type i (0); i < N; ++i) + f.insert (i, c[i]); + } + + static void + load (container_type& c, bool more, const functions& f) + { + index_type i (0); + + for (; more && i < N; ++i) + { + index_type dummy; + more = f.select (dummy, c[i]); + } + + assert (!more && i == N); + } + + static void + update (const container_type& c, const functions& f) + { + f.delete_ (); + + for (index_type i (0); i < N; ++i) + f.insert (i, c[i]); + } + + static void + erase (const functions& f) + { + f.delete_ (); + } + }; + + // Disable for char[N] and wchar_t[N]. + // + template + class access::container_traits; + +#ifdef _WIN32 + template + class access::container_traits; +#endif +} + +#include + +#endif // ODB_C_ARRAY_TRAITS_HXX -- cgit v1.1