aboutsummaryrefslogtreecommitdiff
path: root/odb/oracle
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-11-09 14:09:53 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-11-09 14:09:53 +0200
commit6ab5b0c382d66bc30724c04485c325d573858c0c (patch)
tree6f09f4e1c1f10e23108d75ad56700c45fff7b7a0 /odb/oracle
parent1d664d31bdfc341ca642948efdf395e7922141f6 (diff)
Avoid copying statement text if it is statically allocated
Diffstat (limited to 'odb/oracle')
-rw-r--r--odb/oracle/statement.cxx124
-rw-r--r--odb/oracle/statement.hxx49
2 files changed, 146 insertions, 27 deletions
diff --git a/odb/oracle/statement.cxx b/odb/oracle/statement.cxx
index 8b608a4..01d5b23 100644
--- a/odb/oracle/statement.cxx
+++ b/odb/oracle/statement.cxx
@@ -3,7 +3,7 @@
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license : ODB NCUEL; see accompanying LICENSE file
-#include <limits>
+#include <cstring> // std::strlen
#include <cassert>
#include <oci.h>
@@ -147,17 +147,30 @@ namespace odb
}
statement::
- statement (connection& conn, const string& s)
+ statement (connection& conn, const string& text)
: conn_ (conn)
{
+ init (text.c_str (), text.size ());
+ }
+
+ statement::
+ statement (connection& conn, const char* text)
+ : conn_ (conn)
+ {
+ init (text, strlen (text));
+ }
+
+ void statement::
+ init (const char* text, size_t text_size)
+ {
OCIError* err (conn_.error_handle ());
OCIStmt* handle (0);
sword r (OCIStmtPrepare2 (conn_.handle (),
&handle,
err,
- reinterpret_cast<const OraText*> (s.c_str ()),
- static_cast<ub4> (s.size ()),
+ reinterpret_cast<const OraText*> (text),
+ static_cast<ub4> (text_size),
0,
0,
OCI_NTV_SYNTAX,
@@ -805,8 +818,21 @@ namespace odb
//
generic_statement::
- generic_statement (connection& conn, const string& s)
- : statement (conn, s), bound_ (false)
+ generic_statement (connection& conn, const string& text)
+ : statement (conn, text), bound_ (false)
+ {
+ init ();
+ }
+
+ generic_statement::
+ generic_statement (connection& conn, const char* text)
+ : statement (conn, text), bound_ (false)
+ {
+ init ();
+ }
+
+ void generic_statement::
+ init ()
{
OCIError* err (conn_.error_handle ());
@@ -971,11 +997,11 @@ namespace odb
select_statement::
select_statement (connection& conn,
- const string& s,
+ const string& text,
binding& param,
binding& result,
size_t lob_prefetch_size)
- : statement (conn, s),
+ : statement (conn, text),
result_ (result),
result_version_ (0),
lob_prefetch_size_ (lob_prefetch_size),
@@ -988,10 +1014,42 @@ namespace odb
select_statement::
select_statement (connection& conn,
- const string& s,
+ const char* text,
+ binding& param,
+ binding& result,
+ size_t lob_prefetch_size)
+ : statement (conn, text),
+ result_ (result),
+ result_version_ (0),
+ lob_prefetch_size_ (lob_prefetch_size),
+ done_ (true)
+ {
+ bind_param (param.bind, param.count);
+ bind_result (result.bind, result.count, lob_prefetch_size);
+ result_version_ = result_.version;
+ }
+
+ select_statement::
+ select_statement (connection& conn,
+ const string& text,
+ binding& result,
+ size_t lob_prefetch_size)
+ : statement (conn, text),
+ result_ (result),
+ result_version_ (0),
+ lob_prefetch_size_ (lob_prefetch_size),
+ done_ (true)
+ {
+ bind_result (result.bind, result.count, lob_prefetch_size);
+ result_version_ = result_.version;
+ }
+
+ select_statement::
+ select_statement (connection& conn,
+ const char* text,
binding& result,
size_t lob_prefetch_size)
- : statement (conn, s),
+ : statement (conn, text),
result_ (result),
result_version_ (0),
lob_prefetch_size_ (lob_prefetch_size),
@@ -1166,10 +1224,26 @@ namespace odb
insert_statement::
insert_statement (connection& conn,
- const string& s,
+ const string& text,
+ binding& param,
+ bool returning)
+ : statement (conn, text)
+ {
+ init (param, returning);
+ }
+
+ insert_statement::
+ insert_statement (connection& conn,
+ const char* text,
binding& param,
bool returning)
- : statement (conn, s)
+ : statement (conn, text)
+ {
+ init (param, returning);
+ }
+
+ void insert_statement::
+ init (binding& param, bool returning)
{
bind_param (param.bind, param.count);
@@ -1287,10 +1361,15 @@ namespace odb
}
update_statement::
- update_statement (connection& conn,
- const string& s,
- binding& param)
- : statement (conn, s)
+ update_statement (connection& conn, const string& text, binding& param)
+ : statement (conn, text)
+ {
+ bind_param (param.bind, param.count);
+ }
+
+ update_statement::
+ update_statement (connection& conn, const char* text, binding& param)
+ : statement (conn, text)
{
bind_param (param.bind, param.count);
}
@@ -1348,10 +1427,15 @@ namespace odb
}
delete_statement::
- delete_statement (connection& conn,
- const string& s,
- binding& param)
- : statement (conn, s)
+ delete_statement (connection& conn, const string& text, binding& param)
+ : statement (conn, text)
+ {
+ bind_param (param.bind, param.count);
+ }
+
+ delete_statement::
+ delete_statement (connection& conn, const char* text, binding& param)
+ : statement (conn, text)
{
bind_param (param.bind, param.count);
}
diff --git a/odb/oracle/statement.hxx b/odb/oracle/statement.hxx
index f3e86f0..8d97ab4 100644
--- a/odb/oracle/statement.hxx
+++ b/odb/oracle/statement.hxx
@@ -42,8 +42,14 @@ namespace odb
text () const;
protected:
- statement (connection&, const std::string& statement);
+ statement (connection&, const std::string& text);
+ statement (connection&, const char* text);
+ private:
+ void
+ init (const char* text, std::size_t text_size);
+
+ protected:
// Bind parameters for this statement. This function must only
// be called once. Multiple calls to it will result in memory
// leaks due to lost OCIBind resources.
@@ -87,7 +93,8 @@ namespace odb
virtual
~generic_statement ();
- generic_statement (connection&, const std::string& statement);
+ generic_statement (connection&, const std::string& text);
+ generic_statement (connection&, const char* text);
unsigned long long
execute ();
@@ -97,6 +104,10 @@ namespace odb
generic_statement& operator= (const generic_statement&);
private:
+ void
+ init ();
+
+ private:
ub2 stmt_type_;
bool bound_;
};
@@ -108,13 +119,24 @@ namespace odb
~select_statement ();
select_statement (connection& conn,
- const std::string& statement,
+ const std::string& text,
binding& param,
binding& result,
std::size_t lob_prefetch_size = 0);
select_statement (connection& conn,
- const std::string& statement,
+ const char* text,
+ binding& param,
+ binding& result,
+ std::size_t lob_prefetch_size = 0);
+
+ select_statement (connection& conn,
+ const std::string& text,
+ binding& result,
+ std::size_t lob_prefetch_size = 0);
+
+ select_statement (connection& conn,
+ const char* text,
binding& result,
std::size_t lob_prefetch_size = 0);
@@ -157,7 +179,12 @@ namespace odb
~insert_statement ();
insert_statement (connection& conn,
- const std::string& statement,
+ const std::string& text,
+ binding& param,
+ bool returning);
+
+ insert_statement (connection& conn,
+ const char* text,
binding& param,
bool returning);
@@ -192,6 +219,10 @@ namespace odb
};
private:
+ void
+ init (binding& param, bool returning);
+
+ private:
id_bind_type id_bind_;
};
@@ -202,9 +233,11 @@ namespace odb
~update_statement ();
update_statement (connection& conn,
- const std::string& statement,
+ const std::string& text,
binding& param);
+ update_statement (connection& conn, const char* text, binding& param);
+
unsigned long long
execute ();
@@ -220,9 +253,11 @@ namespace odb
~delete_statement ();
delete_statement (connection& conn,
- const std::string& statement,
+ const std::string& text,
binding& param);
+ delete_statement (connection& conn, const char* text, binding& param);
+
unsigned long long
execute ();