Sha256: b299fc62228e1cb0ac7302f2a9488d4af705da5cb914d157d7d776c2cecf1f9f

Contents?: true

Size: 1.9 KB

Versions: 3

Compression:

Stored size: 1.9 KB

Contents

/*
 *     Copyright 2021-Present Couchbase, Inc.
 *
 *   Licensed under the Apache License, Version 2.0 (the "License");
 *   you may not use this file except in compliance with the License.
 *   You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 *   Unless required by applicable law or agreed to in writing, software
 *   distributed under the License is distributed on an "AS IS" BASIS,
 *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *   See the License for the specific language governing permissions and
 *   limitations under the License.
 */
#pragma once

#include "transaction_fields.hxx"

#include "core/document_id.hxx"

#include <tao/json/forward.hpp>

#include <cstdint>
#include <string>

namespace couchbase::core::transactions
{
struct doc_record {
public:
  static doc_record create_from(const tao::json::value& obj);

  doc_record(std::string bucket_name,
             std::string scope_name,
             std::string collection_name,
             std::string id)
    : id_(std::move(bucket_name), std::move(scope_name), std::move(collection_name), std::move(id))
  {
  }

  [[nodiscard]] const std::string& bucket_name() const
  {
    return id_.bucket();
  }

  [[nodiscard]] const std::string& id() const
  {
    return id_.key();
  }

  [[nodiscard]] const std::string& collection_name() const
  {
    return id_.collection();
  }

  [[nodiscard]] const core::document_id& document_id() const
  {
    return id_;
  }

  template<typename OStream>
  friend OStream& operator<<(OStream& os, const doc_record& dr)
  {
    os << "doc_record{";
    os << "bucket: " << dr.id_.bucket() << ",";
    os << "scope: " << dr.id_.scope() << ",";
    os << "collection: " << dr.id_.collection() << ",";
    os << "key: " << dr.id_.key();
    os << "}";
    return os;
  }

private:
  core::document_id id_;
};
} // namespace couchbase::core::transactions

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
couchbase-3.5.4 ext/couchbase/core/transactions/internal/doc_record.hxx
couchbase-3.5.3 ext/couchbase/core/transactions/internal/doc_record.hxx
couchbase-3.5.2 ext/couchbase/core/transactions/internal/doc_record.hxx