From 877b93d4c98e21bababaca563ccb07ce26c56706 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 24 Jan 2013 15:10:22 +0200 Subject: Add support for mapping char[N] to CHAR/VARCHAR database types Also improve query support for arrays (decaying). --- odb/oracle/query.hxx | 381 ++++++++++++++++++++++++++++++++++++-------------- odb/oracle/query.txx | 10 +- odb/oracle/traits.cxx | 71 ++++++---- odb/oracle/traits.hxx | 244 +++++++++++++++++++------------- 4 files changed, 473 insertions(+), 233 deletions(-) (limited to 'odb') diff --git a/odb/oracle/query.hxx b/odb/oracle/query.hxx index cf35559..f3c94f4 100644 --- a/odb/oracle/query.hxx +++ b/odb/oracle/query.hxx @@ -39,37 +39,95 @@ namespace odb // bytes per character). // template - class val_bind + struct val_bind { - public: + typedef const T& type; + explicit - val_bind (const T& v, unsigned short p = 0xFFF, short s = 0xFFF) - : val (v), prec (p), scale (s) - { - } + val_bind (type v, unsigned short p = 0xFFF, short s = 0xFFF) + : val (v), prec (p), scale (s) {} - const T& val; + type val; + + unsigned short prec; + short scale; + }; + + template + struct val_bind + { + typedef const T* type; + + explicit + val_bind (type v, unsigned short p = 0xFFF, short s = 0xFFF) + : val (v), prec (p), scale (s) {} + + type val; unsigned short prec; short scale; }; template - class ref_bind + struct ref_bind { - public: + typedef const T& type; + explicit - ref_bind (const T& r, unsigned short p = 0xFFF, short s = 0xFFF) - : ref (r), prec (p), scale (s) - { - } + ref_bind (type r, unsigned short p = 0xFFF, short s = 0xFFF) + : ref (r), prec (p), scale (s) {} + + const void* + ptr () const {return &ref;} + + type ref; + + unsigned short prec; + short scale; + }; + + template + struct ref_bind + { + typedef const T* type; - const T& ref; + explicit + ref_bind (type r, unsigned short p = 0xFFF, short s = 0xFFF) + : ref (r), prec (p), scale (s) {} + + // Allow implicit conversion from decayed ref_bind's. + // + ref_bind (ref_bind r): ref (r.ref), prec (r.prec), scale (r.scale) {} + ref_bind (ref_bind r) + : ref (r.ref), prec (r.prec), scale (r.scale) {} + + const void* + ptr () const {return ref;} + + type ref; unsigned short prec; short scale; }; + template + struct val_bind_typed: val_bind + { + explicit + val_bind_typed (typename val_bind::type v, + unsigned short p = 0xFFF, + short s = 0xFFF): val_bind (v, p, s) {} + }; + + template + struct ref_bind_typed: ref_bind + { + explicit + ref_bind_typed (typename ref_bind::type r, + unsigned short p = 0xFFF, + short s = 0xFFF): ref_bind (r, p, s) {} + }; + struct LIBODB_ORACLE_EXPORT query_param: details::shared_base { typedef oracle::bind bind_type; @@ -165,8 +223,15 @@ namespace odb query_base (val_bind v) : binding_ (0, 0) { - append::db_type_id> ( - v, details::conversion::to ()); + *this += v; + } + + template + explicit + query_base (val_bind_typed v) + : binding_ (0, 0) + { + *this += v; } template @@ -174,8 +239,15 @@ namespace odb query_base (ref_bind r) : binding_ (0, 0) { - append::db_type_id> ( - r, details::conversion::to ()); + *this += r; + } + + template + explicit + query_base (ref_bind_typed r) + : binding_ (0, 0) + { + *this += r; } template @@ -236,6 +308,13 @@ namespace odb return val_bind (x, prec, scale); } + template + static val_bind_typed + _val (const T& x, unsigned short prec = 0xFFF, short scale = 0xFFF) + { + return val_bind_typed (x, prec, scale); + } + template static ref_bind _ref (const T& x, unsigned short prec = 0xFFF, short scale = 0xFFF) @@ -243,6 +322,13 @@ namespace odb return ref_bind (x, prec, scale); } + template + static ref_bind_typed + _ref (const T& x, unsigned short prec = 0xFFF, short scale = 0xFFF) + { + return ref_bind_typed (x, prec, scale); + } + public: query_base& operator+= (const query_base&); @@ -263,6 +349,17 @@ namespace odb return *this; } + template + query_base& + operator+= (val_bind_typed v) + { + // We are not using default type_traits so no default conversion + // either. + // + append (v, 0); + return *this; + } + template query_base& operator+= (ref_bind r) @@ -272,6 +369,17 @@ namespace odb return *this; } + template + query_base& + operator+= (ref_bind_typed r) + { + // We are not using default type_traits so no default conversion + // either. + // + append (r, 0); + return *this; + } + // Implementation details. // public: @@ -333,16 +441,26 @@ namespace odb template inline query_base - operator+ (const query_base& q, ref_bind b) + operator+ (val_bind b, const query_base& q) + { + query_base r; + r += b; + r += q; + return r; + } + + template + inline query_base + operator+ (const query_base& q, val_bind_typed b) { query_base r (q); r += b; return r; } - template + template inline query_base - operator+ (val_bind b, const query_base& q) + operator+ (val_bind_typed b, const query_base& q) { query_base r; r += b; @@ -352,6 +470,15 @@ namespace odb template inline query_base + operator+ (const query_base& q, ref_bind b) + { + query_base r (q); + r += b; + return r; + } + + template + inline query_base operator+ (ref_bind b, const query_base& q) { query_base r; @@ -360,6 +487,25 @@ namespace odb return r; } + template + inline query_base + operator+ (const query_base& q, ref_bind_typed b) + { + query_base r (q); + r += b; + return r; + } + + template + inline query_base + operator+ (ref_bind_typed b, const query_base& q) + { + query_base r; + r += b; + r += q; + return r; + } + inline query_base operator+ (const query_base& q, const std::string& s) { @@ -387,16 +533,26 @@ namespace odb template inline query_base - operator+ (const std::string& s, ref_bind b) + operator+ (val_bind b, const std::string& s) + { + query_base r; + r += b; + r += s; + return r; + } + + template + inline query_base + operator+ (const std::string& s, val_bind_typed b) { query_base r (s); r += b; return r; } - template + template inline query_base - operator+ (val_bind b, const std::string& s) + operator+ (val_bind_typed b, const std::string& s) { query_base r; r += b; @@ -406,6 +562,15 @@ namespace odb template inline query_base + operator+ (const std::string& s, ref_bind b) + { + query_base r (s); + r += b; + return r; + } + + template + inline query_base operator+ (ref_bind b, const std::string& s) { query_base r; @@ -414,6 +579,25 @@ namespace odb return r; } + template + inline query_base + operator+ (const std::string& s, ref_bind_typed b) + { + query_base r (s); + r += b; + return r; + } + + template + inline query_base + operator+ (ref_bind_typed b, const std::string& s) + { + query_base r; + r += b; + r += s; + return r; + } + LIBODB_ORACLE_EXPORT query_base operator&& (const query_base& x, const query_base& y); @@ -481,23 +665,11 @@ namespace odb short scale_; }; - template - class copy_bind: public val_bind - { - public: - explicit - copy_bind (const T2& v): val_bind (val), val (v) {} - - const T val; - }; - - template - const T& - type_instance (); - template struct query_column: query_column_base { + typedef typename decay_traits::type decayed_type; + // Note that we keep shalow copies of the table, column, and conversion // expression. The latter can be NULL. // @@ -540,16 +712,17 @@ namespace odb // public: query_base - in (const T&, const T&) const; + in (decayed_type, decayed_type) const; query_base - in (const T&, const T&, const T&) const; + in (decayed_type, decayed_type, decayed_type) const; query_base - in (const T&, const T&, const T&, const T&) const; + in (decayed_type, decayed_type, decayed_type, decayed_type) const; query_base - in (const T&, const T&, const T&, const T&, const T&) const; + in (decayed_type, decayed_type, decayed_type, decayed_type, + decayed_type) const; template query_base @@ -559,7 +732,7 @@ namespace odb // public: query_base - equal (const T& v) const + equal (decayed_type v) const { return equal (val_bind (v)); } @@ -580,8 +753,7 @@ namespace odb query_base equal (val_bind v) const { - copy_bind c (v.val); - return equal (c); + return equal (val_bind (decayed_type (v.val))); } query_base @@ -597,13 +769,13 @@ namespace odb } friend query_base - operator== (const query_column& c, const T& v) + operator== (const query_column& c, decayed_type v) { return c.equal (v); } friend query_base - operator== (const T& v, const query_column& c) + operator== (decayed_type v, const query_column& c) { return c.equal (v); } @@ -650,7 +822,7 @@ namespace odb // public: query_base - unequal (const T& v) const + unequal (decayed_type v) const { return unequal (val_bind (v)); } @@ -671,8 +843,7 @@ namespace odb query_base unequal (val_bind v) const { - copy_bind c (v.val); - return unequal (c); + return unequal (val_bind (decayed_type (v.val))); } query_base @@ -688,13 +859,13 @@ namespace odb } friend query_base - operator!= (const query_column& c, const T& v) + operator!= (const query_column& c, decayed_type v) { return c.unequal (v); } friend query_base - operator!= (const T& v, const query_column& c) + operator!= (decayed_type v, const query_column& c) { return c.unequal (v); } @@ -741,7 +912,7 @@ namespace odb // public: query_base - less (const T& v) const + less (decayed_type v) const { return less (val_bind (v)); } @@ -762,8 +933,7 @@ namespace odb query_base less (val_bind v) const { - copy_bind c (v.val); - return less (c); + return less (val_bind (decayed_type (v.val))); } query_base @@ -779,13 +949,13 @@ namespace odb } friend query_base - operator< (const query_column& c, const T& v) + operator< (const query_column& c, decayed_type v) { return c.less (v); } friend query_base - operator< (const T& v, const query_column& c) + operator< (decayed_type v, const query_column& c) { return c.greater (v); } @@ -832,7 +1002,7 @@ namespace odb // public: query_base - greater (const T& v) const + greater (decayed_type v) const { return greater (val_bind (v)); } @@ -853,8 +1023,7 @@ namespace odb query_base greater (val_bind v) const { - copy_bind c (v.val); - return greater (c); + return greater (val_bind (decayed_type (v.val))); } query_base @@ -870,13 +1039,13 @@ namespace odb } friend query_base - operator> (const query_column& c, const T& v) + operator> (const query_column& c, decayed_type v) { return c.greater (v); } friend query_base - operator> (const T& v, const query_column& c) + operator> (decayed_type v, const query_column& c) { return c.less (v); } @@ -923,7 +1092,7 @@ namespace odb // public: query_base - less_equal (const T& v) const + less_equal (decayed_type v) const { return less_equal (val_bind (v)); } @@ -944,8 +1113,7 @@ namespace odb query_base less_equal (val_bind v) const { - copy_bind c (v.val); - return less_equal (c); + return less_equal (val_bind (decayed_type (v.val))); } query_base @@ -961,13 +1129,13 @@ namespace odb } friend query_base - operator<= (const query_column& c, const T& v) + operator<= (const query_column& c, decayed_type v) { return c.less_equal (v); } friend query_base - operator<= (const T& v, const query_column& c) + operator<= (decayed_type v, const query_column& c) { return c.greater_equal (v); } @@ -1014,7 +1182,7 @@ namespace odb // public: query_base - greater_equal (const T& v) const + greater_equal (decayed_type v) const { return greater_equal (val_bind (v)); } @@ -1035,8 +1203,7 @@ namespace odb query_base greater_equal (val_bind v) const { - copy_bind c (v.val); - return greater_equal (c); + return greater_equal (val_bind (decayed_type (v.val))); } query_base @@ -1052,13 +1219,13 @@ namespace odb } friend query_base - operator>= (const query_column& c, const T& v) + operator>= (const query_column& c, decayed_type v) { return c.greater_equal (v); } friend query_base - operator>= (const T& v, const query_column& c) + operator>= (decayed_type v, const query_column& c) { return c.less_equal (v); } @@ -1110,7 +1277,8 @@ namespace odb { // We can compare columns only if we can compare their C++ types. // - (void) (sizeof (type_instance () == type_instance ())); + (void) (sizeof (decay_traits::instance () == + decay_traits::instance ())); query_base q (table_, column_); q += "="; @@ -1124,7 +1292,8 @@ namespace odb { // We can compare columns only if we can compare their C++ types. // - (void) (sizeof (type_instance () != type_instance ())); + (void) (sizeof (decay_traits::instance () != + decay_traits::instance ())); query_base q (table_, column_); q += "!="; @@ -1138,7 +1307,8 @@ namespace odb { // We can compare columns only if we can compare their C++ types. // - (void) (sizeof (type_instance () < type_instance ())); + (void) (sizeof (decay_traits::instance () < + decay_traits::instance ())); query_base q (table_, column_); q += "<"; @@ -1152,7 +1322,8 @@ namespace odb { // We can compare columns only if we can compare their C++ types. // - (void) (sizeof (type_instance () > type_instance ())); + (void) (sizeof (decay_traits::instance () > + decay_traits::instance ())); query_base q (table_, column_); q += ">"; @@ -1166,7 +1337,8 @@ namespace odb { // We can compare columns only if we can compare their C++ types. // - (void) (sizeof (type_instance () <= type_instance ())); + (void) (sizeof (decay_traits::instance () <= + decay_traits::instance ())); query_base q (table_, column_); q += "<="; @@ -1180,7 +1352,8 @@ namespace odb { // We can compare columns only if we can compare their C++ types. // - (void) (sizeof (type_instance () >= type_instance ())); + (void) (sizeof (decay_traits::instance () >= + decay_traits::instance ())); query_base q (table_, column_); q += ">="; @@ -1317,7 +1490,7 @@ namespace odb template struct query_param_impl: query_param { - query_param_impl (ref_bind r) : query_param (&r.ref) {} + query_param_impl (ref_bind r) : query_param (r.ptr ()) {} query_param_impl (val_bind v) : query_param (0) {init (v.val);} virtual bool @@ -1338,7 +1511,7 @@ namespace odb private: void - init (const T& v) + init (typename decay_traits::type v) { bool is_null (false); // Can't be NULL. value_traits::set_image (image_, is_null, v); @@ -1353,7 +1526,7 @@ namespace odb template struct query_param_impl: query_param { - query_param_impl (ref_bind r) : query_param (&r.ref) {} + query_param_impl (ref_bind r) : query_param (r.ptr ()) {} query_param_impl (val_bind v) : query_param (0) {init (v.val);} virtual bool @@ -1374,7 +1547,7 @@ namespace odb private: void - init (const T& v) + init (typename decay_traits::type v) { bool is_null (false); // Can't be NULL. value_traits::set_image (image_, is_null, v); @@ -1389,7 +1562,7 @@ namespace odb template struct query_param_impl: query_param { - query_param_impl (ref_bind r) : query_param (&r.ref) {} + query_param_impl (ref_bind r) : query_param (r.ptr ()) {} query_param_impl (val_bind v) : query_param (0) {init (v.val);} virtual bool @@ -1410,7 +1583,7 @@ namespace odb private: void - init (const T& v) + init (typename decay_traits::type v) { bool is_null (false); // Can't be NULL. std::size_t size (0); @@ -1428,7 +1601,7 @@ namespace odb template struct query_param_impl: query_param { - query_param_impl (ref_bind r) : query_param (&r.ref) {} + query_param_impl (ref_bind r) : query_param (r.ptr ()) {} query_param_impl (val_bind v) : query_param (0) {init (v.val);} virtual bool @@ -1449,7 +1622,7 @@ namespace odb private: void - init (const T& v) + init (typename decay_traits::type v) { bool is_null (false); // Can't be NULL. value_traits::set_image (image_, is_null, v); @@ -1464,7 +1637,7 @@ namespace odb template struct query_param_impl: query_param { - query_param_impl (ref_bind r) : query_param (&r.ref) {} + query_param_impl (ref_bind r) : query_param (r.ptr ()) {} query_param_impl (val_bind v) : query_param (0) {init (v.val);} virtual bool @@ -1485,7 +1658,7 @@ namespace odb private: void - init (const T& v) + init (typename decay_traits::type v) { bool is_null (false); // Can't be NULL. value_traits::set_image (image_, is_null, v); @@ -1500,7 +1673,7 @@ namespace odb template struct query_param_impl: query_param { - query_param_impl (ref_bind r) : query_param (&r.ref) {} + query_param_impl (ref_bind r) : query_param (r.ptr ()) {} query_param_impl (val_bind v) : query_param (0) {init (v.val);} virtual bool @@ -1521,7 +1694,7 @@ namespace odb private: void - init (const T& v) + init (typename decay_traits::type v) { bool is_null (false); // Can't be NULL. std::size_t size (0); @@ -1539,7 +1712,7 @@ namespace odb template struct query_param_impl: query_param { - query_param_impl (ref_bind r) : query_param (&r.ref) {} + query_param_impl (ref_bind r) : query_param (r.ptr ()) {} query_param_impl (val_bind v) : query_param (0) {init (v.val);} virtual bool @@ -1560,7 +1733,7 @@ namespace odb private: void - init (const T& v) + init (typename decay_traits::type v) { bool is_null (false); // Can't be NULL. value_traits::set_image (image_, is_null, v); @@ -1576,7 +1749,7 @@ namespace odb struct query_param_impl: query_param { query_param_impl (ref_bind r) - : query_param (&r.ref), + : query_param (r.ptr ()), image_ (descriptor_cache) // Cache, don't free. { } @@ -1606,7 +1779,7 @@ namespace odb private: void - init (const T& v) + init (typename decay_traits::type v) { bool is_null (false); // Can't be NULL. value_traits::set_image (image_, is_null, v); @@ -1622,7 +1795,7 @@ namespace odb struct query_param_impl: query_param { query_param_impl (ref_bind r) - : query_param (&r.ref), + : query_param (r.ptr ()), image_ (descriptor_cache) // Cache, don't free. { } @@ -1652,7 +1825,7 @@ namespace odb private: void - init (const T& v) + init (typename decay_traits::type v) { bool is_null (false); // Can't be NULL. value_traits::set_image (image_, is_null, v); @@ -1668,7 +1841,7 @@ namespace odb struct query_param_impl: query_param { query_param_impl (ref_bind r) - : query_param (&r.ref), + : query_param (r.ptr ()), image_ (descriptor_cache) // Cache, don't free. { } @@ -1699,7 +1872,7 @@ namespace odb private: void - init (const T& v) + init (typename decay_traits::type v) { bool is_null (false); // Can't be NULL. value_traits::set_image (image_, is_null, v); @@ -1715,7 +1888,7 @@ namespace odb struct query_param_impl: query_param { query_param_impl (ref_bind r) - : query_param (&r.ref), + : query_param (r.ptr ()), // Default to max (4000). buf_ (r.prec != 0xFFF ? r.prec : 4000) { @@ -1748,7 +1921,7 @@ namespace odb private: void - init (const T& v) + init (typename decay_traits::type v) { bool is_null (false); // Can't be NULL. std::size_t size (0); @@ -1768,7 +1941,7 @@ namespace odb struct query_param_impl: query_param { query_param_impl (ref_bind r) - : query_param (&r.ref), + : query_param (r.ptr ()), // Default to max (4000). buf_ (r.prec != 0xFFF ? r.prec : 4000) { @@ -1801,7 +1974,7 @@ namespace odb private: void - init (const T& v) + init (typename decay_traits::type v) { bool is_null (false); // Can't be NULL. std::size_t size (0); @@ -1821,7 +1994,7 @@ namespace odb struct query_param_impl: query_param { query_param_impl (ref_bind r) - : query_param (&r.ref), + : query_param (r.ptr ()), // Default to max (2000). buf_ (r.prec != 0xFFF ? r.prec : 2000) { @@ -1854,7 +2027,7 @@ namespace odb private: void - init (const T& v) + init (typename decay_traits::type v) { bool is_null (false); // Can't be NULL. std::size_t size (0); diff --git a/odb/oracle/query.txx b/odb/oracle/query.txx index 5921efe..879072b 100644 --- a/odb/oracle/query.txx +++ b/odb/oracle/query.txx @@ -27,7 +27,7 @@ namespace odb // template query_base query_column:: - in (const T& v1, const T& v2) const + in (decayed_type v1, decayed_type v2) const { query_base q (table_, column_); q += "IN ("; @@ -40,7 +40,7 @@ namespace odb template query_base query_column:: - in (const T& v1, const T& v2, const T& v3) const + in (decayed_type v1, decayed_type v2, decayed_type v3) const { query_base q (table_, column_); q += "IN ("; @@ -55,7 +55,8 @@ namespace odb template query_base query_column:: - in (const T& v1, const T& v2, const T& v3, const T& v4) const + in (decayed_type v1, decayed_type v2, decayed_type v3, + decayed_type v4) const { query_base q (table_, column_); q += "IN ("; @@ -72,7 +73,8 @@ namespace odb template query_base query_column:: - in (const T& v1, const T& v2, const T& v3, const T& v4, const T& v5) const + in (decayed_type v1, decayed_type v2, decayed_type v3, decayed_type v4, + decayed_type v5) const { query_base q (table_, column_); q += "IN ("; diff --git a/odb/oracle/traits.cxx b/odb/oracle/traits.cxx index 6927f65..5ab0d1e 100644 --- a/odb/oracle/traits.cxx +++ b/odb/oracle/traits.cxx @@ -11,9 +11,54 @@ namespace odb namespace oracle { // - // string_lob_value_traits + // c_array_value_traits_base // + void c_array_value_traits_base:: + set_value (char* const& v, + const char* b, + size_t n, + bool is_null, + size_t N) + { + if (!is_null) + { + n = n < N ? n : N; + + if (n != 0) + memcpy (v, b, n); + } + else + n = 0; + + if (n != N) // Append '\0' if there is space. + v[n] = '\0'; + } + + void c_array_value_traits_base:: + set_image (char* b, + size_t c, + size_t& n, + bool& is_null, + const char* v, + size_t N) + { + is_null = false; + // Figure out the length. We cannot use strlen since it may + // not be 0-terminated (strnlen is not standard). + // + for (n = 0; n != N && v[n] != '\0'; ++n); + + if (n > c) + n = c; + + if (n != 0) + memcpy (b, v, n); + } + + // + // string_lob_value_traits + // bool string_lob_value_traits:: result_callback (void* c, ub4*, void* b, ub4 s, chunk_position p) { @@ -58,31 +103,8 @@ namespace odb } // - // c_string_lob_value_traits - // - - bool c_string_lob_value_traits:: - param_callback (const void* c, - ub4*, - const void** b, - ub4* s, - chunk_position* p, - void*, - ub4) - { - const char* v (static_cast (c)); - - *p = chunk_one; - *s = static_cast (strlen (v)); - *b = v; - - return true; - } - - // // default_value_traits, id_blob> // - bool default_value_traits, id_blob>:: result_callback (void* c, ub4*, void* b, ub4 s, chunk_position p) { @@ -131,7 +153,6 @@ namespace odb // // default_value_traits, id_blob> // - bool default_value_traits, id_blob>:: result_callback (void* c, ub4*, void* b, ub4 s, chunk_position p) { diff --git a/odb/oracle/traits.hxx b/odb/oracle/traits.hxx index 2cbce04..13bb1dc 100644 --- a/odb/oracle/traits.hxx +++ b/odb/oracle/traits.hxx @@ -546,7 +546,7 @@ namespace odb { }; - // const char* specialization. + // char*/const char* specialization. // // Specialization for const char* which only supports initialization // of an image from the value but not the other way around. This way @@ -577,45 +577,151 @@ namespace odb }; template <> + struct LIBODB_ORACLE_EXPORT default_value_traits: + c_string_value_traits {}; + + template <> + struct LIBODB_ORACLE_EXPORT default_value_traits: + c_string_value_traits {}; + + template <> struct LIBODB_ORACLE_EXPORT default_value_traits: - c_string_value_traits - { - typedef const char* query_type; - }; + c_string_value_traits {}; template <> struct LIBODB_ORACLE_EXPORT default_value_traits: - c_string_value_traits + c_string_value_traits {}; + + // char[N] specializations. + // + struct LIBODB_ORACLE_EXPORT c_array_value_traits_base { - typedef const char* query_type; + static void + set_value (char* const& v, + const char* b, + std::size_t n, + bool is_null, + std::size_t N); + + static void + set_image (char* b, + std::size_t c, + std::size_t& n, + bool& is_null, + const char* v, + std::size_t N); }; template - struct default_value_traits: c_string_value_traits + struct c_array_value_traits { + typedef char* value_type; typedef char query_type[N]; + typedef details::buffer image_type; + + static void + set_value (char* const& v, + const char* b, + std::size_t n, + bool is_null) + { + c_array_value_traits_base::set_value (v, b, n, is_null, N); + } + + static void + set_image (char* b, + std::size_t c, + std::size_t& n, + bool& is_null, + const char* v) + { + c_array_value_traits_base::set_image (b, c, n, is_null, v, N); + } }; template - struct default_value_traits: - c_string_value_traits - { - typedef const char query_type[N]; - }; + struct default_value_traits: + c_array_value_traits {}; template - struct default_value_traits: c_string_value_traits + struct default_value_traits: + c_array_value_traits {}; + + // std::array (string) specialization. + // +#ifdef ODB_CXX11 + template + struct std_array_value_traits { - typedef char query_type[N]; + typedef std::array value_type; + typedef std::array query_type; + typedef details::buffer image_type; + + static void + set_value (value_type& v, + const char* b, + std::size_t n, + bool is_null) + { + c_array_value_traits_base::set_value (v.data (), b, n, is_null, N); + } + + static void + set_image (char* b, + std::size_t c, + std::size_t& n, + bool& is_null, + const value_type& v) + { + c_array_value_traits_base::set_image (b, c, n, is_null, v.data (), N); + } }; template - struct default_value_traits: - c_string_value_traits + struct default_value_traits, id_string>: + std_array_value_traits {}; + + template + struct default_value_traits, id_nstring>: + std_array_value_traits {}; +#endif + + // char specialization. + // + struct LIBODB_ORACLE_EXPORT char_value_traits { - typedef const char query_type[N]; + typedef char value_type; + typedef char query_type; + typedef details::buffer image_type; + + static void + set_value (char& v, + const char* b, + std::size_t n, + bool is_null) + { + c_array_value_traits_base::set_value (&v, b, n, is_null, 1); + } + + static void + set_image (char* b, + std::size_t c, + std::size_t& n, + bool& is_null, + char v) + { + c_array_value_traits_base::set_image (b, c, n, is_null, &v, 1); + } }; + template <> + struct LIBODB_ORACLE_EXPORT default_value_traits: + char_value_traits {}; + + template <> + struct LIBODB_ORACLE_EXPORT default_value_traits: + char_value_traits {}; + // std::vector (buffer) specialization for RAW. // template <> @@ -892,81 +998,6 @@ namespace odb { }; - // const char* specialization for LOBs. - // - // Specialization for const char* which only supports initialization - // of an image from the value but not the other way around. This way - // we can pass such values to the queries. - // - class LIBODB_ORACLE_EXPORT c_string_lob_value_traits - { - public: - typedef const char* value_type; - typedef lob_callback image_type; - - static void - set_image (param_callback_type& cb, - const void*& context, - bool& is_null, - const char* v) - { - is_null = false; - cb = ¶m_callback; - context = v; - } - - static bool - param_callback (const void* context, - ub4* position_context, - const void** buffer, - ub4* size, - chunk_position*, - void* temp_buffer, - ub4 capacity); - }; - - template <> - struct LIBODB_ORACLE_EXPORT default_value_traits: - c_string_lob_value_traits - { - typedef const char* query_type; - }; - - template <> - struct LIBODB_ORACLE_EXPORT default_value_traits: - c_string_lob_value_traits - { - typedef const char* query_type; - }; - - template - struct default_value_traits: - c_string_lob_value_traits - { - typedef char query_type[N]; - }; - - template - struct default_value_traits: - c_string_lob_value_traits - { - typedef const char query_type[N]; - }; - - template - struct default_value_traits: - c_string_lob_value_traits - { - typedef char query_type[N]; - }; - - template - struct default_value_traits: - c_string_lob_value_traits - { - typedef const char query_type[N]; - }; - // std::vector (buffer) specialization for BLOBs. // template <> @@ -1392,6 +1423,12 @@ namespace odb }; template <> + struct default_type_traits + { + static const database_type_id db_type_id = id_string; + }; + + template <> struct default_type_traits { static const database_type_id db_type_id = id_string; @@ -1403,37 +1440,44 @@ namespace odb static const database_type_id db_type_id = id_string; }; - template - struct default_type_traits + template <> + struct default_type_traits { static const database_type_id db_type_id = id_string; }; - // Binary types. Assume BLOB. + // Binary types. Assume RAW since LOBs cannot be compared in + // Oracle and this is only used in queries. // + template + struct default_type_traits + { + static const database_type_id db_type_id = id_raw; + }; + template <> struct default_type_traits > { - static const database_type_id db_type_id = id_blob; + static const database_type_id db_type_id = id_raw; }; template <> struct default_type_traits > { - static const database_type_id db_type_id = id_blob; + static const database_type_id db_type_id = id_raw; }; #ifdef ODB_CXX11 template struct default_type_traits > { - static const database_type_id db_type_id = id_blob; + static const database_type_id db_type_id = id_raw; }; template struct default_type_traits > { - static const database_type_id db_type_id = id_blob; + static const database_type_id db_type_id = id_raw; }; #endif } -- cgit v1.1