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
|
#include <iostream>
#include <sstream>
#include "test_helpers.hxx"
using namespace PGSTD;
using namespace pqxx;
// Test program for libpqxx: write large object to test files.
namespace
{
const string Contents = "Large object test contents";
class CreateLargeObject : public transactor<>
{
public:
explicit CreateLargeObject(largeobject &O) :
transactor<>("CreateLargeObject"),
m_Object(),
m_ObjectOutput(O)
{
}
void operator()(argument_type &T)
{
m_Object = largeobject(T);
cout << "Created large object #" << m_Object.id() << endl;
}
void on_commit()
{
m_ObjectOutput = m_Object;
}
private:
largeobject m_Object;
largeobject &m_ObjectOutput;
};
class WriteLargeObject : public transactor<>
{
public:
explicit WriteLargeObject(largeobject &O) :
transactor<>("WriteLargeObject"),
m_Object(O)
{
}
void operator()(argument_type &T)
{
largeobjectaccess A(T, m_Object.id(), ios::out);
cout << "Writing to large object #" << largeobject(A).id() << endl;
A.write(Contents);
}
private:
largeobject m_Object;
};
class CopyLargeObject : public transactor<>
{
public:
explicit CopyLargeObject(largeobject O) : m_Object(O) {}
void operator()(argument_type &T)
{
m_Object.to_file(T, "pqxxlo.txt");
}
private:
largeobject m_Object;
};
class DeleteLargeObject : public transactor<>
{
public:
explicit DeleteLargeObject(largeobject O) : m_Object(O) {}
void operator()(argument_type &T)
{
m_Object.remove(T);
}
private:
largeobject m_Object;
};
void test_052(transaction_base &orgT)
{
connection_base &C(orgT.conn());
orgT.abort();
largeobject Obj;
C.perform(CreateLargeObject(Obj));
C.perform(WriteLargeObject(Obj));
C.perform(CopyLargeObject(Obj));
C.perform(DeleteLargeObject(Obj));
}
} // namespace
PQXX_REGISTER_TEST_T(test_052, nontransaction)
|