mirror of
https://github.com/codership/wsrep-lib.git
synced 2025-04-27 18:56:49 +03:00
64 lines
1.6 KiB
C++
64 lines
1.6 KiB
C++
//
|
|
// Copyright (C) 2018 Codership Oy <info@codership.com>
|
|
//
|
|
|
|
#ifndef WSREP_GTID_HPP
|
|
#define WSREP_GTID_HPP
|
|
|
|
#include "id.hpp"
|
|
#include "seqno.hpp"
|
|
|
|
#include <iosfwd>
|
|
|
|
namespace wsrep
|
|
{
|
|
class gtid
|
|
{
|
|
public:
|
|
gtid()
|
|
: id_(wsrep::id::undefined())
|
|
, seqno_(wsrep::seqno::undefined())
|
|
{ }
|
|
gtid(const wsrep::id& id, wsrep::seqno seqno)
|
|
: id_(id)
|
|
, seqno_(seqno)
|
|
{ }
|
|
const wsrep::id& id() const { return id_; }
|
|
wsrep::seqno seqno() const { return seqno_ ; }
|
|
bool is_undefined() const
|
|
{
|
|
return (seqno_.is_undefined() && id_.is_undefined());
|
|
}
|
|
static wsrep::gtid undefined()
|
|
{
|
|
static const wsrep::gtid ret(wsrep::id::undefined(),
|
|
wsrep::seqno::undefined());
|
|
return ret;
|
|
}
|
|
private:
|
|
wsrep::id id_;
|
|
wsrep::seqno seqno_;
|
|
};
|
|
|
|
/**
|
|
* Print a GTID into character buffer.
|
|
* @param buf Pointer to the beginning of the buffer
|
|
* @param buf_len Buffer length
|
|
*
|
|
* @return Number of characters printed or negative value for error
|
|
*/
|
|
ssize_t gtid_print_to_c_str(const wsrep::gtid&, char* buf, size_t buf_len);
|
|
/**
|
|
* Return minimum number of bytes guaranteed to store GTID string
|
|
* representation, terminating '\0' not included (36 + 1 + 20)
|
|
*/
|
|
static inline size_t gtid_c_str_len()
|
|
{
|
|
return 57;
|
|
}
|
|
std::ostream& operator<<(std::ostream&, const wsrep::gtid&);
|
|
std::istream& operator>>(std::istream&, wsrep::gtid&);
|
|
}
|
|
|
|
#endif // WSREP_GTID_HPP
|