/usr/include/odb/sqlite/no-id-object-statements.hxx is in libodb-sqlite-dev 2.4.0-1+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 | // file : odb/sqlite/no-id-object-statements.hxx
// copyright : Copyright (c) 2005-2015 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef ODB_SQLITE_NO_ID_OBJECT_STATEMENTS_HXX
#define ODB_SQLITE_NO_ID_OBJECT_STATEMENTS_HXX
#include <odb/pre.hxx>
#include <cstddef> // std::size_t
#include <odb/forward.hxx>
#include <odb/traits.hxx>
#include <odb/details/shared-ptr.hxx>
#include <odb/sqlite/version.hxx>
#include <odb/sqlite/forward.hxx>
#include <odb/sqlite/sqlite-types.hxx>
#include <odb/sqlite/binding.hxx>
#include <odb/sqlite/statement.hxx>
#include <odb/sqlite/statements-base.hxx>
namespace odb
{
namespace sqlite
{
//
// Implementation for objects without object id.
//
template <typename T>
class no_id_object_statements: public statements_base
{
public:
typedef T object_type;
typedef object_traits_impl<object_type, id_sqlite> object_traits;
typedef typename object_traits::pointer_type pointer_type;
typedef typename object_traits::image_type image_type;
typedef sqlite::insert_statement insert_statement_type;
public:
no_id_object_statements (connection_type&);
virtual
~no_id_object_statements ();
// Object image.
//
image_type&
image () {return image_;}
// Insert binding.
//
std::size_t
insert_image_version () const { return insert_image_version_;}
void
insert_image_version (std::size_t v) {insert_image_version_ = v;}
binding&
insert_image_binding () {return insert_image_binding_;}
// Select binding.
//
std::size_t
select_image_version () const { return select_image_version_;}
void
select_image_version (std::size_t v) {select_image_version_ = v;}
binding&
select_image_binding () {return select_image_binding_;}
bool*
select_image_truncated () {return select_image_truncated_;}
// Statements.
//
insert_statement_type&
persist_statement ()
{
if (persist_ == 0)
{
persist_.reset (
new (details::shared) insert_statement_type (
conn_,
object_traits::persist_statement,
object_traits::versioned, // Process if versioned.
insert_image_binding_,
0));
}
return *persist_;
}
public:
// select = total
// insert = total - inverse; inverse == 0 for object without id
//
static const std::size_t insert_column_count =
object_traits::column_count;
static const std::size_t select_column_count =
object_traits::column_count;
private:
no_id_object_statements (const no_id_object_statements&);
no_id_object_statements& operator= (const no_id_object_statements&);
private:
image_type image_;
// Select binding.
//
std::size_t select_image_version_;
binding select_image_binding_;
bind select_image_bind_[select_column_count];
bool select_image_truncated_[select_column_count];
// Insert binding.
//
std::size_t insert_image_version_;
binding insert_image_binding_;
bind insert_image_bind_[insert_column_count];
details::shared_ptr<insert_statement_type> persist_;
};
}
}
#include <odb/sqlite/no-id-object-statements.txx>
#include <odb/post.hxx>
#endif // ODB_SQLITE_NO_ID_OBJECT_STATEMENTS_HXX
|