/* * Copyright (c) 2017, Matias Fontanini * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following disclaimer * in the documentation and/or other materials provided with the * distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * */ #ifndef CPPKAFKA_TOPIC_CONFIGURATION_H #define CPPKAFKA_TOPIC_CONFIGURATION_H #include #include #include #include #include "clonable_ptr.h" #include "configuration_base.h" #include "macros.h" namespace cppkafka { class Topic; class Buffer; /** * \brief Represents the topic configuration * * ConfigurationBase provides some extra overloads for set */ class CPPKAFKA_API TopicConfiguration : public ConfigurationBase { public: /** * \brief Partitioner callback * * This has the same requirements as rdkafka's partitioner calback: * - *Must not* call any rd_kafka_*() functions except: * rd_kafka_topic_partition_available(). This is done via Topic::is_partition_available * - *Must not* block or execute for prolonged periods of time. * - *Must* return a value between 0 and partition_count-1, or the * special RD_KAFKA_PARTITION_UA value if partitioning * could not be performed. */ using PartitionerCallback = std::function; using ConfigurationBase::set; using ConfigurationBase::get; /** * Default constructs a topic configuration object */ TopicConfiguration(); /** * Constructs a TopicConfiguration object using a list of options */ TopicConfiguration(const std::vector& options); /** * Constructs a TopicConfiguration object using a list of options */ TopicConfiguration(const std::initializer_list& options); /** * Sets an option * * \param name The name of the option * \param value The value of the option */ TopicConfiguration& set(const std::string& name, const std::string& value); /** * \brief Sets the partitioner callback * * This translates into a call to rd_kafka_topic_conf_set_partitioner_cb */ TopicConfiguration& set_partitioner_callback(PartitionerCallback callback); /** * \brief Sets the "this" pointer as the opaque pointer for this handle * * This method will be called by consumers/producers when the topic configuration object * has been put in a persistent memory location. Users of cppkafka do not need to use this. */ TopicConfiguration& set_as_opaque(); /** * Gets the partitioner callback */ const PartitionerCallback& get_partitioner_callback() const; /** * Returns true iff the given property name has been set */ bool has_property(const std::string& name) const; /** * Gets an option's value * * \param name The option's name */ std::string get(const std::string& name) const; /** * Gets all options, including default values which are set by rdkafka */ std::map get_all() const; /** * Gets the rdkafka handle */ rd_kafka_topic_conf_t* get_handle() const; private: using HandlePtr = ClonablePtr; TopicConfiguration(rd_kafka_topic_conf_t* ptr); static HandlePtr make_handle(rd_kafka_topic_conf_t* ptr); HandlePtr handle_; PartitionerCallback partitioner_callback_; }; } // cppkafka #endif // CPPKAFKA_TOPIC_CONFIGURATION_H