aboutsummaryrefslogtreecommitdiff
path: root/odb/qt/mysql/qstring-traits.hxx
blob: 5b0191afab93bf0e617eab22cc03c41347886b8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// file      : odb/qt/mysql/qstring-traits.hxx
// author    : Constantin Michael <constantin@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#ifndef ODB_QT_MYSQL_QSTRING_TRAITS_HXX
#define ODB_QT_MYSQL_QSTRING_TRAITS_HXX

#include <odb/pre.hxx>

#include <cstddef> // std::size_t

#include <odb/mysql/traits.hxx>
#include <odb/details/buffer.hxx>

#include <QString>

namespace odb
{
  namespace mysql
  {
    class LIBODB_MYSQL_EXPORT qstring_value_traits
    {
    public:
      typedef QString value_type;
      typedef QString query_type;
      typedef details::buffer image_type;

      static void
      set_value (QString& v,
                 const details::buffer& b,
                 std::size_t n,
                 bool is_null)
      {
        if (!is_null)
          v = QString::fromLocal8Bit (b.data (), n);
        else
          v.clear ();
      }

      static void
      set_image (details::buffer& b,
                 std::size_t& n,
                 bool& is_null,
                 const QString& v)
      {
        is_null = false;

        const std::string& s (v.toStdString ());
        n = s.size ();

        if (n > b.capacity ())
          b.capacity (n);

        if (n != 0)
          memcpy (b.data (), s.data (), n);
      }
    };

    template <>
    struct LIBODB_MYSQL_EXPORT default_value_traits<
      QString, details::buffer, id_string>: qstring_value_traits
    {
    };

    template <>
    struct LIBODB_MYSQL_EXPORT default_value_traits<
      QString, details::buffer, id_decimal>: qstring_value_traits
    {
    };

    template <>
    struct LIBODB_MYSQL_EXPORT default_value_traits<
      QString, details::buffer, id_enum>: qstring_value_traits
    {
    };

    template <>
    struct LIBODB_MYSQL_EXPORT default_value_traits<
      QString, details::buffer, id_set>: qstring_value_traits
    {
    };

    template <>
    struct default_type_traits<QString>
    {
      static const database_type_id db_type_id = id_string;
    };
  }
}

#include <odb/post.hxx>

#endif // ODB_QT_MYSQL_QSTRING_TRAITS_HXX