Skip to content

Commit 151ac34

Browse files
committed
Added "builtin.features" property to allow applications to query for built-in features (e.g., gzip, snappy, zlib)
1 parent 9b922df commit 151ac34

File tree

5 files changed

+55
-1
lines changed

5 files changed

+55
-1
lines changed

examples/rdkafka_example.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -292,11 +292,13 @@ int main (int argc, char **argv) {
292292

293293
if (mode.empty() || topic_str.empty() || optind != argc) {
294294
usage:
295+
std::string features;
296+
conf->get("builtin.features", features);
295297
fprintf(stderr,
296298
"Usage: %s [-C|-P] -t <topic> "
297299
"[-p <partition>] [-b <host1:port1,host2:port2,..>]\n"
298300
"\n"
299-
"librdkafka version %s (0x%08x)\n"
301+
"librdkafka version %s (0x%08x, builtin.features \"%s\")\n"
300302
"\n"
301303
" Options:\n"
302304
" -C | -P Consumer or Producer mode\n"
@@ -331,6 +333,7 @@ int main (int argc, char **argv) {
331333
"\n",
332334
argv[0],
333335
RdKafka::version_str().c_str(), RdKafka::version(),
336+
features.c_str(),
334337
RdKafka::get_debug_contexts().c_str());
335338
exit(1);
336339
}

src-cpp/rdkafkacpp.h

+4
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,10 @@ class RD_EXPORT Conf {
392392
RebalanceCb *rebalance_cb,
393393
std::string &errstr) = 0;
394394

395+
/* Query single configuration value */
396+
virtual Conf::ConfResult get(const std::string &name,
397+
std::string &value) const = 0;
398+
395399
/**
396400
* Dump configuration names and values to list containing name,value tuples
397401
*/

src-cpp/rdkafkacpp_int.h

+28
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,34 @@ class ConfImpl : public Conf {
325325
return Conf::CONF_OK;
326326
}
327327

328+
Conf::ConfResult get(const std::string &name, std::string &value) const {
329+
size_t size;
330+
rd_kafka_conf_res_t res = RD_KAFKA_CONF_OK;
331+
if (rk_conf_) {
332+
if ((res = rd_kafka_conf_get(rk_conf_,
333+
name.c_str(), NULL, &size)) != RD_KAFKA_CONF_OK)
334+
return static_cast<Conf::ConfResult>(res);
335+
336+
value.resize(size);
337+
if ((res = rd_kafka_conf_get(rk_conf_, name.c_str(),
338+
(char *)value.c_str(), &size)) != RD_KAFKA_CONF_OK)
339+
return static_cast<Conf::ConfResult>(res);
340+
}
341+
else if (rkt_conf_) {
342+
if ((res = rd_kafka_topic_conf_get(rkt_conf_,
343+
name.c_str(), NULL, &size)) != RD_KAFKA_CONF_OK)
344+
return static_cast<Conf::ConfResult>(res);
345+
346+
value.resize(size);
347+
if ((res = rd_kafka_topic_conf_get(rkt_conf_, name.c_str(),
348+
(char *)value.c_str(), &size)) != RD_KAFKA_CONF_OK)
349+
return static_cast<Conf::ConfResult>(res);
350+
}
351+
352+
return Conf::CONF_OK;
353+
}
354+
355+
328356

329357
std::list<std::string> *dump ();
330358

src/rdkafka_conf.c

+18
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,24 @@ struct rd_kafka_property {
7272
*/
7373
static const struct rd_kafka_property rd_kafka_properties[] = {
7474
/* Global properties */
75+
{ _RK_GLOBAL, "builtin.features", _RK_C_S2F, _RK(builtin_features),
76+
"Indicates the builtin features for this build of librdkafka. "
77+
"An application can either query this value or attempt to set it "
78+
"with its list of required features to check for library support.",
79+
0, 0x7fffffff, 0xff,
80+
.s2i = {
81+
#if WITH_ZLIB
82+
{ 0x1, "gzip" },
83+
#endif
84+
#ifndef _MSC_VER
85+
{ 0x2, "snappy" },
86+
#endif
87+
#if WITH_SSL
88+
{ 0x4, "ssl" },
89+
#endif
90+
{ 0, NULL }
91+
}
92+
},
7593
{ _RK_GLOBAL, "client.id", _RK_C_STR, _RK(client_id_str),
7694
"Client identifier.",
7795
.sdef = "rdkafka" },

src/rdkafka_conf.h

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ struct rd_kafka_conf_s {
8686
/* Client group configuration */
8787
int coord_query_intvl_ms;
8888

89+
int builtin_features;
8990
/*
9091
* Consumer configuration
9192
*/

0 commit comments

Comments
 (0)