Couchbase C++ SDK 1.0.2 (rev. 51f4775)
Loading...
Searching...
No Matches
transaction_get_result Class Reference

The representation of the document in context of distributed transaction. More...

#include <couchbase/transactions/transaction_get_result.hxx>

Public Member Functions

template<typename Document , typename Transcoder = codec::default_json_transcoder, std::enable_if_t<!codec::is_transcoder_v< Document >, bool > = true, std::enable_if_t< codec::is_transcoder_v< Transcoder >, bool > = true>
auto content_as () const -> Document
 Content of the document.
 
template<typename Transcoder , std::enable_if_t< codec::is_transcoder_v< Transcoder >, bool > = true>
auto content_as () const -> typename Transcoder::document_type
 Content of the document.
 
auto id () const -> const std::string &
 Get document id.
 

Friends

class couchbase::core::transactions::transaction_get_result
 
class couchbase::core::transactions::attempt_context_impl
 

Detailed Description

The representation of the document in context of distributed transaction.

By default transactions operate on JSON documents, that is a native encoding for Couchbase, but it is possible to use any other type, as long as its transcoder can encode it into bytestring.

The following example shows how to use custom type with custom encoding in context of the transactions.

We start with defining the type and its transcoder.

struct ledger_entry {
std::string date{};
std::string description{};
std::string account{};
std::uint64_t debit{};
std::uint64_t credit{};
};
class ledger
{
public:
void add_record(const std::string& date,
const std::string& from_account,
const std::string& to_account,
std::uint64_t amount,
const std::string& description)
{
entries_.push_back({
description,
to_account,
/* debit */ amount,
/* credit */ 0,
});
entries_.push_back({
description,
from_account,
/* debit */ 0,
/* credit */ amount,
});
}
[[nodiscard]] auto entries() const -> const std::vector<ledger_entry>&
{
return entries_;
}
[[nodiscard]] auto to_csv() const -> std::vector<std::byte>
{
std::vector<std::byte> buffer;
byte_appender output(buffer);
fmt::format_to(output, "Date,Description,Account,Debit,Credit\n");
for (const auto& entry : entries_) {
fmt::format_to(output,
"{},{},{},{},{}\n",
entry.date,
entry.description,
entry.account,
entry.debit,
entry.credit);
}
return buffer;
}
static auto from_csv(const std::vector<std::byte>& blob) -> ledger
{
ledger ret;
std::istringstream input(std::string{
reinterpret_cast<const char*>(blob.data()),
blob.size(),
});
std::string line;
bool header_line{ true };
while (std::getline(input, line)) {
if (header_line) {
header_line = false;
continue;
}
std::istringstream line_stream(line);
ledger_entry entry;
std::getline(line_stream, entry.date, ',');
std::getline(line_stream, entry.description, ',');
std::getline(line_stream, entry.account, ',');
std::string field;
std::getline(line_stream, field, ',');
if (!field.empty()) {
entry.debit = std::stoul(field);
}
std::getline(line_stream, field, ',');
if (!field.empty()) {
entry.credit = std::stoul(field);
}
ret.entries_.push_back(entry);
}
return ret;
}
private:
std::vector<ledger_entry> entries_{};
};
struct csv_transcoder {
using document_type = ledger;
template<typename Document = document_type>
static auto encode(const Document& document) -> couchbase::codec::encoded_value
{
return {
document.to_csv(),
};
}
template<typename Document = document_type>
static auto decode(const couchbase::codec::encoded_value& encoded) -> Document
{
if (encoded.flags == 0 &&
throw std::system_error(
"csv_transcoder expects document to have binary common flags, flags=" +
std::to_string(encoded.flags));
}
return Document::from_csv(encoded.data);
}
};
template<>
struct couchbase::codec::is_transcoder<csv_transcoder> : public std::true_type {
};

Then populate initial state of the system.

// Lets represent a ledger, which keeps the moving of funds between accounts
// in the system. Lets also assume that the system cannot use JSON representation
// for some reason, and we will be storing the ledger formatted as CSV (comma-
// separated values).
//
// This is how the ledger might look like at some point in time:
//
// Date,Description,Account,Debit,Credit
// 2024-08-30,Payment received,Cash,1500,0
// 2024-08-30,Payment received,Accounts Receivable,0,1500
// 2024-08-31,Rent payment,Expenses,1000,0
// 2024-08-31,Rent payment,Cash,0,1000
// 2024-09-01,Office Supplies,Expenses,200,0
// 2024-09-01,Office Supplies,Cash,0,200
// 2024-09-02,Client Invoice,Accounts Receivable,1200,0
// 2024-09-02,Client Invoice,Revenue,0,1200
//
// The application must inform the SDK that this is a "binary" (as a opposed
// to "JSON") data, and provide custom transcoder to ensure that the SDK will
// handle everything correctly.
ledger initial_state;
initial_state.add_record("2024-08-30", "Accounts Receivable", "Cash", 1500, "Payment received");
auto [err, res] = collection.upsert<csv_transcoder, ledger>("the_ledger", initial_state).get();
if (err.ec()) {
fmt::print(
stderr,
"Create initial state of \"the_ledger\" has failed before starting transaction: {}\n",
err.ec().message());
return 1;
}

Now the actual transactional mutation of the document.

auto [tx_err, tx_res] = cluster.transactions()->run(
[=](std::shared_ptr<couchbase::transactions::attempt_context> ctx) -> couchbase::error {
auto [err_ctx, doc] = ctx->get(collection, "the_ledger");
if (err_ctx.ec()) {
fmt::print(stderr, "Failed to retrieve \"the_ledger\": {}\n", err_ctx.ec().message());
return {};
}
// decode binary object into an application struct
auto the_ledger = doc.content_as<ledger, csv_transcoder>();
the_ledger.add_record("2024-09-01", "Cash", "Expenses", 1000, "Rent payment");
// replace the document contents, that will be treated by Couchbase as a binary object
ctx->replace<csv_transcoder, ledger>(doc, the_ledger);
return {};
});
if (tx_err.ec()) {
fmt::print(stderr,
"error in transaction {}, cause: {}\n",
tx_err.ec().message(),
tx_err.cause().has_value() ? tx_err.cause().value().ec().message() : "");
retval = 1;
} else {
fmt::print("transaction {} completed successfully\n", tx_res.transaction_id);
}

Member Function Documentation

◆ content_as() [1/2]

template<typename Document , typename Transcoder = codec::default_json_transcoder, std::enable_if_t<!codec::is_transcoder_v< Document >, bool > = true, std::enable_if_t< codec::is_transcoder_v< Transcoder >, bool > = true>
auto content_as ( ) const -> Document
inlinenodiscard

Content of the document.

Returns
content of the document.

◆ content_as() [2/2]

template<typename Transcoder , std::enable_if_t< codec::is_transcoder_v< Transcoder >, bool > = true>
auto content_as ( ) const -> typename Transcoder::document_type
inlinenodiscard

Content of the document.

Returns
content of the document.

◆ id()

auto id ( ) const -> const std::string &
nodiscard

Get document id.

Returns
the id of this document.

Friends And Related Symbol Documentation

◆ couchbase::core::transactions::attempt_context_impl

friend class couchbase::core::transactions::attempt_context_impl
friend

◆ couchbase::core::transactions::transaction_get_result

friend class couchbase::core::transactions::transaction_get_result
friend

The documentation for this class was generated from the following file: