aboutsummaryrefslogtreecommitdiff
path: root/odb/qt/basic/sqlite/qstring-traits.hxx
blob: 45a8888fe1d6d826d789c4ab0686db887b6b0220 (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
// file      : odb/qt/basic/sqlite/qstring-traits.hxx
// copyright : Copyright (c) 2009-2017 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#ifndef ODB_QT_BASIC_SQLITE_QSTRING_TRAITS_HXX
#define ODB_QT_BASIC_SQLITE_QSTRING_TRAITS_HXX

#include <odb/pre.hxx>

#include <cstring> // std::memcpy
#include <cstddef> // std::size_t

#include <QtCore/QString>

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

namespace odb
{
  namespace sqlite
  {
    template <>
    struct image_traits<QString, id_text>
    {
      typedef details::buffer image_type;

      // Use UTF-16 binding for QString.
      //
      static const bind::buffer_type bind_value = bind::text16;
    };

    template <>
    struct default_value_traits <QString, id_text>
    {
    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 ();
        else
          v.setUtf16 (reinterpret_cast<const ushort*> (b.data ()),
                      static_cast<int> (n / 2)); // In characters.
      }

      static void
      set_image (details::buffer& b,
                 std::size_t& n,
                 bool& is_null,
                 const QString& v)
      {
        if (v.isNull ())
          is_null = true;
        else
        {
          is_null = false;
          n = static_cast<std::size_t> (v.size ()) * 2; // In bytes.

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

          std::memcpy (b.data (), v.utf16 (), n);
        }
      }
    };

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

#include <odb/post.hxx>

#endif // ODB_QT_BASIC_SQLITE_QSTRING_TRAITS_HXX