aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-11-03 10:11:24 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-11-03 10:11:24 +0200
commit26f53799c911e44da5d229e8f6bf2c40f79c31b1 (patch)
tree588573d131d72ef5637a4f7d92690c6984fd8c34
parent0acb35c3ff7ce7e98fd6f3a92552558ec39f7c3d (diff)
Add support for mapping char[N] and unsigned char[N] types to BLOB1.7.0.a1
New test: common/blob.
-rw-r--r--odb/pgsql/traits.cxx2
-rw-r--r--odb/pgsql/traits.hxx77
2 files changed, 77 insertions, 2 deletions
diff --git a/odb/pgsql/traits.cxx b/odb/pgsql/traits.cxx
index 9e31c9f..b19b7f9 100644
--- a/odb/pgsql/traits.cxx
+++ b/odb/pgsql/traits.cxx
@@ -3,8 +3,6 @@
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
-#include <cstring> // std::memcpy, std::strlen
-
#include <odb/pgsql/traits.hxx>
using namespace std;
diff --git a/odb/pgsql/traits.hxx b/odb/pgsql/traits.hxx
index 85a6af4..026e1d3 100644
--- a/odb/pgsql/traits.hxx
+++ b/odb/pgsql/traits.hxx
@@ -11,6 +11,7 @@
#include <string>
#include <vector>
#include <cstddef> // std::size_t
+#include <cstring> // std::memcpy, std::memset, std::strlen
#include <odb/traits.hxx>
#include <odb/wrapper-traits.hxx>
@@ -527,6 +528,82 @@ namespace odb
const value_type&);
};
+ // char[n] (buffer) specialization.
+ //
+ template <std::size_t N>
+ struct default_value_traits<char[N], id_bytea>
+ {
+ public:
+ typedef char* value_type;
+ typedef const char* query_type;
+ typedef details::buffer image_type;
+
+ static void
+ set_value (char* const& v,
+ const details::buffer& b,
+ std::size_t n,
+ bool is_null)
+ {
+ if (!is_null)
+ std::memcpy (v, b.data (), (n < N ? n : N));
+ else
+ std::memset (v, 0, N);
+ }
+
+ static void
+ set_image (details::buffer& b,
+ std::size_t& n,
+ bool& is_null,
+ const char* v)
+ {
+ is_null = false;
+ n = N;
+
+ if (n > b.capacity ())
+ b.capacity (n);
+
+ std::memcpy (b.data (), v, n);
+ }
+ };
+
+ // unsigned char[n] (buffer) specialization.
+ //
+ template <std::size_t N>
+ struct default_value_traits<unsigned char[N], id_bytea>
+ {
+ public:
+ typedef unsigned char* value_type;
+ typedef const unsigned char* query_type;
+ typedef details::buffer image_type;
+
+ static void
+ set_value (unsigned char* const& v,
+ const details::buffer& b,
+ std::size_t n,
+ bool is_null)
+ {
+ if (!is_null)
+ std::memcpy (v, b.data (), (n < N ? n : N));
+ else
+ std::memset (v, 0, N);
+ }
+
+ static void
+ set_image (details::buffer& b,
+ std::size_t& n,
+ bool& is_null,
+ const unsigned char* v)
+ {
+ is_null = false;
+ n = N;
+
+ if (n > b.capacity ())
+ b.capacity (n);
+
+ std::memcpy (b.data (), v, n);
+ }
+ };
+
//
// type_traits
//