Add initial config classes

This commit is contained in:
Matias Fontanini
2016-05-12 20:37:58 -07:00
commit f86c9c1f57
8 changed files with 200 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
#ifndef CPPKAFKA_TOPIC_CONFIGURATION_H
#define CPPKAFKA_TOPIC_CONFIGURATION_H
#include <memory>
#include <string>
#include <librdkafka/rdkafka.h>
namespace cppkafka {
class TopicConfiguration {
public:
TopicConfiguration();
TopicConfiguration(const TopicConfiguration& rhs);
TopicConfiguration(TopicConfiguration&& rhs) noexcept = default;
TopicConfiguration& operator=(const TopicConfiguration& rhs);
TopicConfiguration& operator=(TopicConfiguration&& rhs) noexcept = default;
void set(const std::string& name, const std::string& value);
private:
using HandlePtr = std::unique_ptr<rd_kafka_topic_conf_t,
decltype(&rd_kafka_topic_conf_destroy)>;
TopicConfiguration(rd_kafka_topic_conf_t* ptr);
static HandlePtr make_handle(rd_kafka_topic_conf_t* ptr);
HandlePtr handle_;
};
} // cppkafka
#endif // CPPKAFKA_TOPIC_CONFIGURATION_H