Sha256: c83e419c098c8ad033ceaf6a21f758badd17b81cf21030c1aa78ba2e5c6df8b6

Contents?: true

Size: 1.71 KB

Versions: 1

Compression:

Stored size: 1.71 KB

Contents

/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
 *     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.
 */

#include <couchbase/transactions/transaction_keyspace.hxx>

#include <couchbase/collection.hxx>
#include <couchbase/scope.hxx>

namespace couchbase::transactions
{
transaction_keyspace::transaction_keyspace(std::string bucket_name,
                                           std::string scope_name,
                                           std::string collection_name)
  : bucket(std::move(bucket_name))
  , scope(std::move(scope_name))
  , collection(std::move(collection_name))
{
  if (scope.empty()) {
    scope = couchbase::scope::default_name;
  }
  if (collection.empty()) {
    collection = couchbase::collection::default_name;
  }
}

transaction_keyspace::transaction_keyspace(const std::string& bucket_name)
  : transaction_keyspace{ bucket_name,
                          couchbase::scope::default_name,
                          couchbase::collection::default_name }
{
}

auto
transaction_keyspace::valid() -> bool
{
  return !bucket.empty() && !scope.empty() && !collection.empty();
}
} // namespace couchbase::transactions

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
couchbase-3.5.2 ext/couchbase/core/transactions/transaction_keyspace.cxx