/* -*- Mode: C++; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */ /* * Copyright 2023-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 #include #include namespace couchbase { /** * The conjunction query is a compound query. The result documents must satisfy all of the child * queries. It is possible to recursively nest compound queries. * * At execution, a conjunction query that has no child queries is not allowed and will fail fast. * * Match documents with `"location"` in the field `reviews.content` and `true` in the field * `free_breakfast`. * @snippet test_unit_search.cxx search-conjunction * * @see https://docs.couchbase.com/server/current/fts/fts-supported-queries-conjuncts-disjuncts.html * server documentation * * @since 1.0.0 * @committed */ class conjunction_query : public search_query { public: /** * Create a conjunction query. * * @tparam SearchQuery any subclass of @ref search_query * @param queries sequence of query arguments * * @since 1.0.0 * @committed */ template explicit conjunction_query(SearchQuery&&... queries) { and_also(std::forward(queries)...); } /** * Add one or more queries to add to the conjunction. * * @tparam SearchQuery any subclass of @ref search_query * @param queries sequence of query arguments * * @return this query for chaining purposes. * * @since 1.0.0 * @committed */ template auto and_also(SearchQuery... queries) -> conjunction_query& { (conjuncts_.emplace_back(std::make_shared(std::move(queries))), ...); return *this; } /** * @return encoded representation of the query. * * @since 1.0.0 * @internal */ [[nodiscard]] auto encode() const -> encoded_search_query override; private: std::vector> conjuncts_{}; }; } // namespace couchbase