/usr/include/odb/mysql/polymorphic-object-statements.hxx is in libodb-mysql-dev 2.4.0-1ubuntu1.
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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 | // file : odb/mysql/polymorphic-object-statements.hxx
// copyright : Copyright (c) 2005-2015 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef ODB_MYSQL_POLYMORPHIC_OBJECT_STATEMENTS_HXX
#define ODB_MYSQL_POLYMORPHIC_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/mysql/version.hxx>
#include <odb/mysql/forward.hxx>
#include <odb/mysql/mysql.hxx>
#include <odb/mysql/binding.hxx>
#include <odb/mysql/statement.hxx>
#include <odb/mysql/statements-base.hxx>
#include <odb/mysql/simple-object-statements.hxx>
namespace odb
{
namespace mysql
{
//
// Implementation for polymorphic objects.
//
template <typename T>
class polymorphic_root_object_statements: public object_statements<T>
{
public:
typedef typename object_statements<T>::connection_type connection_type;
typedef typename object_statements<T>::object_traits object_traits;
typedef typename object_statements<T>::id_image_type id_image_type;
typedef
typename object_traits::discriminator_image_type
discriminator_image_type;
typedef
typename object_statements<T>::select_statement_type
select_statement_type;
public:
// Interface compatibility with derived_object_statements.
//
typedef polymorphic_root_object_statements root_statements_type;
root_statements_type&
root_statements ()
{
return *this;
}
public:
// Discriminator binding.
//
discriminator_image_type&
discriminator_image () {return discriminator_image_;}
std::size_t
discriminator_image_version () const
{return discriminator_image_version_;}
void
discriminator_image_version (std::size_t v)
{discriminator_image_version_ = v;}
binding&
discriminator_image_binding () {return discriminator_image_binding_;}
my_bool*
discriminator_image_truncated () {return discriminator_image_truncated_;}
// Id binding for discriminator retrieval.
//
id_image_type&
discriminator_id_image () {return discriminator_id_image_;}
std::size_t
discriminator_id_image_version () const
{return discriminator_id_image_version_;}
void
discriminator_id_image_version (std::size_t v)
{discriminator_id_image_version_ = v;}
binding&
discriminator_id_image_binding ()
{return discriminator_id_image_binding_;}
//
//
select_statement_type&
find_discriminator_statement ()
{
if (find_discriminator_ == 0)
find_discriminator_.reset (
new (details::shared) select_statement_type (
this->conn_,
object_traits::find_discriminator_statement,
false, // Doesn't need to be processed.
false, // Don't optimize.
discriminator_id_image_binding_,
discriminator_image_binding_,
false));
return *find_discriminator_;
}
public:
polymorphic_root_object_statements (connection_type&);
virtual
~polymorphic_root_object_statements ();
// Static "override" (statements type).
//
void
load_delayed (const schema_version_migration* svm)
{
assert (this->locked ());
if (!this->delayed_.empty ())
this->template load_delayed_<polymorphic_root_object_statements> (
svm);
}
public:
static const std::size_t id_column_count =
object_statements<T>::id_column_count;
static const std::size_t discriminator_column_count =
object_traits::discriminator_column_count;
static const std::size_t managed_optimistic_column_count =
object_traits::managed_optimistic_column_count;
private:
// Discriminator image.
//
discriminator_image_type discriminator_image_;
std::size_t discriminator_image_version_;
binding discriminator_image_binding_;
MYSQL_BIND discriminator_image_bind_[discriminator_column_count +
managed_optimistic_column_count];
my_bool discriminator_image_truncated_[discriminator_column_count +
managed_optimistic_column_count];
// Id image for discriminator retrieval (only used as a parameter).
//
id_image_type discriminator_id_image_;
std::size_t discriminator_id_image_version_;
binding discriminator_id_image_binding_;
MYSQL_BIND discriminator_id_image_bind_[id_column_count];
details::shared_ptr<select_statement_type> find_discriminator_;
};
template <typename T>
class polymorphic_derived_object_statements: public statements_base
{
public:
typedef T object_type;
typedef object_traits_impl<object_type, id_mysql> object_traits;
typedef typename object_traits::id_type id_type;
typedef typename object_traits::pointer_type pointer_type;
typedef typename object_traits::id_image_type id_image_type;
typedef typename object_traits::image_type image_type;
typedef typename object_traits::root_type root_type;
typedef
polymorphic_root_object_statements<root_type>
root_statements_type;
typedef typename object_traits::base_type base_type;
typedef
typename object_traits::base_traits::statements_type
base_statements_type;
typedef
typename object_traits::extra_statement_cache_type
extra_statement_cache_type;
typedef mysql::insert_statement insert_statement_type;
typedef mysql::select_statement select_statement_type;
typedef mysql::update_statement update_statement_type;
typedef mysql::delete_statement delete_statement_type;
typedef typename root_statements_type::auto_lock auto_lock;
public:
polymorphic_derived_object_statements (connection_type&);
virtual
~polymorphic_derived_object_statements ();
public:
// Delayed loading.
//
static void
delayed_loader (odb::database&,
const id_type&,
root_type&,
const schema_version_migration*);
public:
// Root and immediate base statements.
//
root_statements_type&
root_statements ()
{
return root_statements_;
}
base_statements_type&
base_statements ()
{
return base_statements_;
}
public:
// 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;}
std::size_t
insert_id_binding_version () const { return insert_id_binding_version_;}
void
insert_id_binding_version (std::size_t v) {insert_id_binding_version_ = v;}
binding&
insert_image_binding () {return insert_image_binding_;}
// Update binding.
//
std::size_t
update_image_version () const { return update_image_version_;}
void
update_image_version (std::size_t v) {update_image_version_ = v;}
std::size_t
update_id_binding_version () const { return update_id_binding_version_;}
void
update_id_binding_version (std::size_t v) {update_id_binding_version_ = v;}
binding&
update_image_binding () {return update_image_binding_;}
// Select binding.
//
std::size_t*
select_image_versions () { return select_image_versions_;}
binding*
select_image_bindings () {return select_image_bindings_;}
binding&
select_image_binding (std::size_t d)
{
return select_image_bindings_[object_traits::depth - d];
}
my_bool*
select_image_truncated () {return select_image_truncated_;}
// Object id binding (comes from the root statements).
//
id_image_type&
id_image () {return root_statements_.id_image ();}
std::size_t
id_image_version () const {return root_statements_.id_image_version ();}
void
id_image_version (std::size_t v) {root_statements_.id_image_version (v);}
binding&
id_image_binding () {return root_statements_.id_image_binding ();}
binding&
optimistic_id_image_binding () {
return root_statements_.optimistic_id_image_binding ();}
// 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,
false));
return *persist_;
}
select_statement_type&
find_statement (std::size_t d)
{
std::size_t i (object_traits::depth - d);
details::shared_ptr<select_statement_type>& p (find_[i]);
if (p == 0)
p.reset (
new (details::shared) select_statement_type (
conn_,
object_traits::find_statements[i],
object_traits::versioned, // Process if versioned.
false, // Don't optimize.
root_statements_.id_image_binding (),
select_image_bindings_[i],
false));
return *p;
}
update_statement_type&
update_statement ()
{
if (update_ == 0)
update_.reset (
new (details::shared) update_statement_type (
conn_,
object_traits::update_statement,
object_traits::versioned, // Process if versioned.
update_image_binding_,
false));
return *update_;
}
delete_statement_type&
erase_statement ()
{
if (erase_ == 0)
erase_.reset (
new (details::shared) delete_statement_type (
conn_,
object_traits::erase_statement,
root_statements_.id_image_binding (),
false));
return *erase_;
}
// Extra (container, section) statement cache.
//
extra_statement_cache_type&
extra_statement_cache ()
{
return extra_statement_cache_.get (
conn_,
image_,
id_image (),
id_image_binding (),
&id_image_binding ()); // Note, not id+version.
}
public:
// select = total - id - separate_load + base::select
// insert = total - inverse
// update = total - inverse - id - readonly - separate_update
//
static const std::size_t id_column_count =
object_traits::id_column_count;
static const std::size_t select_column_count =
object_traits::column_count -
id_column_count -
object_traits::separate_load_column_count +
base_statements_type::select_column_count;
static const std::size_t insert_column_count =
object_traits::column_count -
object_traits::inverse_column_count;
static const std::size_t update_column_count = insert_column_count -
object_traits::id_column_count -
object_traits::readonly_column_count -
object_traits::separate_update_column_count;
private:
polymorphic_derived_object_statements (
const polymorphic_derived_object_statements&);
polymorphic_derived_object_statements&
operator= (const polymorphic_derived_object_statements&);
private:
root_statements_type& root_statements_;
base_statements_type& base_statements_;
extra_statement_cache_ptr<extra_statement_cache_type,
image_type,
id_image_type> extra_statement_cache_;
image_type image_;
// Select binding. Here we are have an array of statements/bindings
// one for each depth. In other words, if we have classes root, base,
// and derived, then we have the following array of statements:
//
// [0] d + b + r
// [1] d + b
// [2] d
//
// Also, because we have a chain of images bound to these statements,
// we have an array of versions, one entry for each base plus one for
// our own image.
//
// A poly-abstract class only needs the first statement and in this
// case we have only one entry in the the bindings and statements
// arrays (but not versions; we still have a chain of images).
//
std::size_t select_image_versions_[object_traits::depth];
binding select_image_bindings_[
object_traits::abstract ? 1 : object_traits::depth];
MYSQL_BIND select_image_bind_[select_column_count];
my_bool select_image_truncated_[select_column_count];
// Insert binding. The id binding is copied from the hierarchy root.
//
std::size_t insert_image_version_;
std::size_t insert_id_binding_version_;
binding insert_image_binding_;
MYSQL_BIND insert_image_bind_[insert_column_count];
// Update binding. The id suffix binding is copied from the hierarchy
// root.
//
std::size_t update_image_version_;
std::size_t update_id_binding_version_;
binding update_image_binding_;
MYSQL_BIND update_image_bind_[update_column_count + id_column_count];
details::shared_ptr<insert_statement_type> persist_;
details::shared_ptr<select_statement_type> find_[
object_traits::abstract ? 1 : object_traits::depth];
details::shared_ptr<update_statement_type> update_;
details::shared_ptr<delete_statement_type> erase_;
};
}
}
#include <odb/mysql/polymorphic-object-statements.txx>
#include <odb/post.hxx>
#endif // ODB_MYSQL_POLYMORPHIC_OBJECT_STATEMENTS_HXX
|