File: transaction.cpp

package info (click to toggle)
openmw 0.49.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 33,992 kB
  • sloc: cpp: 372,479; xml: 2,149; sh: 1,403; python: 797; makefile: 26
file content (58 lines) | stat: -rw-r--r-- 1,932 bytes parent folder | download
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
#include "transaction.hpp"

#include <components/debug/debuglog.hpp>

#include <sqlite3.h>

#include <stdexcept>
#include <string>

namespace Sqlite3
{
    namespace
    {
        const char* getBeginStatement(TransactionMode mode)
        {
            switch (mode)
            {
                case TransactionMode::Default:
                    return "BEGIN";
                case TransactionMode::Deferred:
                    return "BEGIN DEFERRED";
                case TransactionMode::Immediate:
                    return "BEGIN IMMEDIATE";
                case TransactionMode::Exclusive:
                    return "BEGIN EXCLUSIVE";
            }
            throw std::logic_error("Invalid transaction mode: "
                + std::to_string(static_cast<std::underlying_type_t<TransactionMode>>(mode)));
        }
    }

    void Rollback::operator()(sqlite3* db) const
    {
        if (db == nullptr)
            return;
        if (const int ec = sqlite3_exec(db, "ROLLBACK", nullptr, nullptr, nullptr); ec != SQLITE_OK)
            Log(Debug::Debug) << "Failed to rollback SQLite3 transaction: " << sqlite3_errmsg(db) << " (" << ec << ")";
    }

    Transaction::Transaction(sqlite3& db, TransactionMode mode)
        : mDb(&db)
    {
        if (const int ec = sqlite3_exec(&db, getBeginStatement(mode), nullptr, nullptr, nullptr); ec != SQLITE_OK)
        {
            (void)mDb.release();
            throw std::runtime_error(
                "Failed to start transaction: " + std::string(sqlite3_errmsg(&db)) + " (" + std::to_string(ec) + ")");
        }
    }

    void Transaction::commit()
    {
        if (const int ec = sqlite3_exec(mDb.get(), "COMMIT", nullptr, nullptr, nullptr); ec != SQLITE_OK)
            throw std::runtime_error("Failed to commit transaction: " + std::string(sqlite3_errmsg(mDb.get())) + " ("
                + std::to_string(ec) + ")");
        (void)mDb.release();
    }
}