/** * Copyright (C) 2023-present MongoDB, Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the Server Side Public License, version 1, * as published by MongoDB, Inc. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * Server Side Public License for more details. * * You should have received a copy of the Server Side Public License * along with this program. If not, see * . * * As a special exception, the copyright holders give permission to link the * code of portions of this program with the OpenSSL library under certain * conditions as described in each individual source file and distribute * linked combinations including the program with the OpenSSL library. You * must comply with the Server Side Public License in all respects for * all of the code used other than as permitted herein. If you modify file(s) * with this exception, you may extend this exception to your version of the * file(s), but you are not obligated to do so. If you do not wish to do so, * delete this exception statement from your version. If you delete this * exception statement from all source files in the program, then also delete * it in the license file. */ #pragma once #include #include "mongo/bson/oid.h" #include "mongo/db/namespace_string.h" #include "mongo/db/timeseries/bucket_catalog/bucket_metadata.h" namespace mongo::timeseries::bucket_catalog { /** * Identifier to lookup bucket by namespace and OID, with pre-computed hash. */ struct BucketId { using Hash = std::size_t; BucketId() = delete; BucketId(const NamespaceString& nss, const OID& oid); NamespaceString ns; OID oid; Hash hash; bool operator==(const BucketId& other) const { return oid == other.oid && ns == other.ns; } bool operator!=(const BucketId& other) const { return !(*this == other); } template friend H AbslHashValue(H h, const BucketId& bucketId) { return H::combine(std::move(h), bucketId.oid, bucketId.ns); } }; /** * Key to lookup open Bucket for namespace and metadata, with pre-computed hash. */ struct BucketKey { using Hash = std::size_t; BucketKey() = delete; BucketKey(const NamespaceString& nss, const BucketMetadata& meta); NamespaceString ns; BucketMetadata metadata; Hash hash; bool operator==(const BucketKey& other) const { return ns == other.ns && metadata == other.metadata; } bool operator!=(const BucketKey& other) const { return !(*this == other); } template friend H AbslHashValue(H h, const BucketKey& key) { return H::combine(std::move(h), key.ns, key.metadata); } }; /** * The minimal set of information needed to locate a bucket in the BucketCatalog. */ struct BucketHandle { const BucketId bucketId; const std::uint8_t stripe; }; /** * Hasher to support pre-computed hash lookup for BucketKey. */ struct BucketHasher { std::size_t operator()(const BucketKey& key) const; std::size_t operator()(const BucketId& bucketId) const; std::size_t operator()(const BucketKey::Hash& key) const; }; } // namespace mongo::timeseries::bucket_catalog