-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
rdkafkacpp_int.h
1641 lines (1352 loc) · 45.1 KB
/
rdkafkacpp_int.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* librdkafka - Apache Kafka C/C++ library
*
* Copyright (c) 2014-2022, Magnus Edenhill
* 2023, Confluent Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. 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 _RDKAFKACPP_INT_H_
#define _RDKAFKACPP_INT_H_
#include <string>
#include <iostream>
#include <cstring>
#include <stdlib.h>
#include "rdkafkacpp.h"
extern "C" {
#include "../src/rdkafka.h"
}
#ifdef _WIN32
/* Visual Studio */
#include "../src/win32_config.h"
#else
/* POSIX / UNIX based systems */
#include "../config.h" /* mklove output */
#endif
#ifdef _MSC_VER
typedef int mode_t;
#pragma warning(disable : 4250)
#endif
namespace RdKafka {
void consume_cb_trampoline(rd_kafka_message_t *msg, void *opaque);
void log_cb_trampoline(const rd_kafka_t *rk,
int level,
const char *fac,
const char *buf);
void error_cb_trampoline(rd_kafka_t *rk,
int err,
const char *reason,
void *opaque);
void throttle_cb_trampoline(rd_kafka_t *rk,
const char *broker_name,
int32_t broker_id,
int throttle_time_ms,
void *opaque);
int stats_cb_trampoline(rd_kafka_t *rk,
char *json,
size_t json_len,
void *opaque);
int socket_cb_trampoline(int domain, int type, int protocol, void *opaque);
int open_cb_trampoline(const char *pathname,
int flags,
mode_t mode,
void *opaque);
void rebalance_cb_trampoline(rd_kafka_t *rk,
rd_kafka_resp_err_t err,
rd_kafka_topic_partition_list_t *c_partitions,
void *opaque);
void offset_commit_cb_trampoline0(rd_kafka_t *rk,
rd_kafka_resp_err_t err,
rd_kafka_topic_partition_list_t *c_offsets,
void *opaque);
void oauthbearer_token_refresh_cb_trampoline(rd_kafka_t *rk,
const char *oauthbearer_config,
void *opaque);
int ssl_cert_verify_cb_trampoline(rd_kafka_t *rk,
const char *broker_name,
int32_t broker_id,
int *x509_error,
int depth,
const char *buf,
size_t size,
char *errstr,
size_t errstr_size,
void *opaque);
rd_kafka_topic_partition_list_t *partitions_to_c_parts(
const std::vector<TopicPartition *> &partitions);
/**
* @brief Update the application provided 'partitions' with info from 'c_parts'
*/
void update_partitions_from_c_parts(
std::vector<TopicPartition *> &partitions,
const rd_kafka_topic_partition_list_t *c_parts);
class ErrorImpl : public Error {
public:
~ErrorImpl() {
rd_kafka_error_destroy(c_error_);
}
ErrorImpl(ErrorCode code, const std::string *errstr) {
c_error_ = rd_kafka_error_new(static_cast<rd_kafka_resp_err_t>(code),
errstr ? "%s" : NULL,
errstr ? errstr->c_str() : NULL);
}
ErrorImpl(rd_kafka_error_t *c_error) : c_error_(c_error) {
}
static Error *create(ErrorCode code, const std::string *errstr) {
return new ErrorImpl(code, errstr);
}
ErrorCode code() const {
return static_cast<ErrorCode>(rd_kafka_error_code(c_error_));
}
std::string name() const {
return std::string(rd_kafka_error_name(c_error_));
}
std::string str() const {
return std::string(rd_kafka_error_string(c_error_));
}
bool is_fatal() const {
return !!rd_kafka_error_is_fatal(c_error_);
}
bool is_retriable() const {
return !!rd_kafka_error_is_retriable(c_error_);
}
bool txn_requires_abort() const {
return !!rd_kafka_error_txn_requires_abort(c_error_);
}
rd_kafka_error_t *c_error_;
};
class EventImpl : public Event {
public:
~EventImpl() {
}
EventImpl(Type type,
ErrorCode err,
Severity severity,
const char *fac,
const char *str) :
type_(type),
err_(err),
severity_(severity),
fac_(fac ? fac : ""),
str_(str),
id_(0),
throttle_time_(0),
fatal_(false) {
}
EventImpl(Type type) :
type_(type),
err_(ERR_NO_ERROR),
severity_(EVENT_SEVERITY_EMERG),
fac_(""),
str_(""),
id_(0),
throttle_time_(0),
fatal_(false) {
}
Type type() const {
return type_;
}
ErrorCode err() const {
return err_;
}
Severity severity() const {
return severity_;
}
std::string fac() const {
return fac_;
}
std::string str() const {
return str_;
}
std::string broker_name() const {
if (type_ == EVENT_THROTTLE)
return str_;
else
return std::string("");
}
int broker_id() const {
return id_;
}
int throttle_time() const {
return throttle_time_;
}
bool fatal() const {
return fatal_;
}
Type type_;
ErrorCode err_;
Severity severity_;
std::string fac_;
std::string str_; /* reused for THROTTLE broker_name */
int id_;
int throttle_time_;
bool fatal_;
};
class QueueImpl : virtual public Queue {
public:
QueueImpl(rd_kafka_queue_t *c_rkqu) : queue_(c_rkqu) {
}
~QueueImpl() {
rd_kafka_queue_destroy(queue_);
}
static Queue *create(Handle *base);
ErrorCode forward(Queue *queue);
Message *consume(int timeout_ms);
int poll(int timeout_ms);
void io_event_enable(int fd, const void *payload, size_t size);
rd_kafka_queue_t *queue_;
};
class HeadersImpl : public Headers {
public:
HeadersImpl() : headers_(rd_kafka_headers_new(8)) {
}
HeadersImpl(rd_kafka_headers_t *headers) : headers_(headers) {
}
HeadersImpl(const std::vector<Header> &headers) {
if (headers.size() > 0) {
headers_ = rd_kafka_headers_new(headers.size());
from_vector(headers);
} else {
headers_ = rd_kafka_headers_new(8);
}
}
~HeadersImpl() {
if (headers_) {
rd_kafka_headers_destroy(headers_);
}
}
ErrorCode add(const std::string &key, const char *value) {
rd_kafka_resp_err_t err;
err = rd_kafka_header_add(headers_, key.c_str(), key.size(), value, -1);
return static_cast<RdKafka::ErrorCode>(err);
}
ErrorCode add(const std::string &key, const void *value, size_t value_size) {
rd_kafka_resp_err_t err;
err = rd_kafka_header_add(headers_, key.c_str(), key.size(), value,
value_size);
return static_cast<RdKafka::ErrorCode>(err);
}
ErrorCode add(const std::string &key, const std::string &value) {
rd_kafka_resp_err_t err;
err = rd_kafka_header_add(headers_, key.c_str(), key.size(), value.c_str(),
value.size());
return static_cast<RdKafka::ErrorCode>(err);
}
ErrorCode add(const Header &header) {
rd_kafka_resp_err_t err;
err =
rd_kafka_header_add(headers_, header.key().c_str(), header.key().size(),
header.value(), header.value_size());
return static_cast<RdKafka::ErrorCode>(err);
}
ErrorCode remove(const std::string &key) {
rd_kafka_resp_err_t err;
err = rd_kafka_header_remove(headers_, key.c_str());
return static_cast<RdKafka::ErrorCode>(err);
}
std::vector<Headers::Header> get(const std::string &key) const {
std::vector<Headers::Header> headers;
const void *value;
size_t size;
rd_kafka_resp_err_t err;
for (size_t idx = 0; !(err = rd_kafka_header_get(headers_, idx, key.c_str(),
&value, &size));
idx++) {
headers.push_back(Headers::Header(key, value, size));
}
return headers;
}
Headers::Header get_last(const std::string &key) const {
const void *value;
size_t size;
rd_kafka_resp_err_t err;
err = rd_kafka_header_get_last(headers_, key.c_str(), &value, &size);
return Headers::Header(key, value, size,
static_cast<RdKafka::ErrorCode>(err));
}
std::vector<Headers::Header> get_all() const {
std::vector<Headers::Header> headers;
size_t idx = 0;
const char *name;
const void *valuep;
size_t size;
while (!rd_kafka_header_get_all(headers_, idx++, &name, &valuep, &size)) {
headers.push_back(Headers::Header(name, valuep, size));
}
return headers;
}
size_t size() const {
return rd_kafka_header_cnt(headers_);
}
/** @brief Reset the C headers pointer to NULL. */
void c_headers_destroyed() {
headers_ = NULL;
}
/** @returns the underlying C headers, or NULL. */
rd_kafka_headers_t *c_ptr() {
return headers_;
}
private:
void from_vector(const std::vector<Header> &headers) {
if (headers.size() == 0)
return;
for (std::vector<Header>::const_iterator it = headers.begin();
it != headers.end(); it++)
this->add(*it);
}
HeadersImpl(HeadersImpl const &) /*= delete*/;
HeadersImpl &operator=(HeadersImpl const &) /*= delete*/;
rd_kafka_headers_t *headers_;
};
class MessageImpl : public Message {
public:
~MessageImpl() {
if (free_rkmessage_)
rd_kafka_message_destroy(const_cast<rd_kafka_message_t *>(rkmessage_));
if (key_)
delete key_;
if (headers_)
delete headers_;
}
MessageImpl(rd_kafka_type_t rk_type,
RdKafka::Topic *topic,
rd_kafka_message_t *rkmessage) :
topic_(topic),
rkmessage_(rkmessage),
free_rkmessage_(true),
key_(NULL),
headers_(NULL),
rk_type_(rk_type) {
}
MessageImpl(rd_kafka_type_t rk_type,
RdKafka::Topic *topic,
rd_kafka_message_t *rkmessage,
bool dofree) :
topic_(topic),
rkmessage_(rkmessage),
free_rkmessage_(dofree),
key_(NULL),
headers_(NULL),
rk_type_(rk_type) {
}
MessageImpl(rd_kafka_type_t rk_type, rd_kafka_message_t *rkmessage) :
topic_(NULL),
rkmessage_(rkmessage),
free_rkmessage_(true),
key_(NULL),
headers_(NULL),
rk_type_(rk_type) {
if (rkmessage->rkt) {
/* Possibly NULL */
topic_ = static_cast<Topic *>(rd_kafka_topic_opaque(rkmessage->rkt));
}
}
/* Create errored message */
MessageImpl(rd_kafka_type_t rk_type,
RdKafka::Topic *topic,
RdKafka::ErrorCode err) :
topic_(topic),
free_rkmessage_(false),
key_(NULL),
headers_(NULL),
rk_type_(rk_type) {
rkmessage_ = &rkmessage_err_;
memset(&rkmessage_err_, 0, sizeof(rkmessage_err_));
rkmessage_err_.err = static_cast<rd_kafka_resp_err_t>(err);
}
std::string errstr() const {
const char *es;
/* message_errstr() is only available for the consumer. */
if (rk_type_ == RD_KAFKA_CONSUMER)
es = rd_kafka_message_errstr(rkmessage_);
else
es = rd_kafka_err2str(rkmessage_->err);
return std::string(es ? es : "");
}
ErrorCode err() const {
return static_cast<RdKafka::ErrorCode>(rkmessage_->err);
}
Topic *topic() const {
return topic_;
}
std::string topic_name() const {
if (rkmessage_->rkt)
return rd_kafka_topic_name(rkmessage_->rkt);
else
return "";
}
int32_t partition() const {
return rkmessage_->partition;
}
void *payload() const {
return rkmessage_->payload;
}
size_t len() const {
return rkmessage_->len;
}
const std::string *key() const {
if (key_) {
return key_;
} else if (rkmessage_->key) {
key_ = new std::string(static_cast<char const *>(rkmessage_->key),
rkmessage_->key_len);
return key_;
}
return NULL;
}
const void *key_pointer() const {
return rkmessage_->key;
}
size_t key_len() const {
return rkmessage_->key_len;
}
int64_t offset() const {
return rkmessage_->offset;
}
MessageTimestamp timestamp() const {
MessageTimestamp ts;
rd_kafka_timestamp_type_t tstype;
ts.timestamp = rd_kafka_message_timestamp(rkmessage_, &tstype);
ts.type = static_cast<MessageTimestamp::MessageTimestampType>(tstype);
return ts;
}
void *msg_opaque() const {
return rkmessage_->_private;
}
int64_t latency() const {
return rd_kafka_message_latency(rkmessage_);
}
struct rd_kafka_message_s *c_ptr() {
return rkmessage_;
}
Status status() const {
return static_cast<Status>(rd_kafka_message_status(rkmessage_));
}
Headers *headers() {
ErrorCode err;
return headers(&err);
}
Headers *headers(ErrorCode *err) {
*err = ERR_NO_ERROR;
if (!headers_) {
rd_kafka_headers_t *c_hdrs;
rd_kafka_resp_err_t c_err;
if ((c_err = rd_kafka_message_detach_headers(rkmessage_, &c_hdrs))) {
*err = static_cast<RdKafka::ErrorCode>(c_err);
return NULL;
}
headers_ = new HeadersImpl(c_hdrs);
}
return headers_;
}
int32_t broker_id() const {
return rd_kafka_message_broker_id(rkmessage_);
}
int32_t leader_epoch() const {
return rd_kafka_message_leader_epoch(rkmessage_);
}
Error *offset_store() {
rd_kafka_error_t *c_error;
c_error = rd_kafka_offset_store_message(rkmessage_);
if (c_error)
return new ErrorImpl(c_error);
else
return NULL;
}
RdKafka::Topic *topic_;
rd_kafka_message_t *rkmessage_;
bool free_rkmessage_;
/* For error signalling by the C++ layer the .._err_ message is
* used as a place holder and rkmessage_ is set to point to it. */
rd_kafka_message_t rkmessage_err_;
mutable std::string *key_; /* mutable because it's a cached value */
private:
/* "delete" copy ctor + copy assignment, for safety of key_ */
MessageImpl(MessageImpl const &) /*= delete*/;
MessageImpl &operator=(MessageImpl const &) /*= delete*/;
RdKafka::Headers *headers_;
const rd_kafka_type_t rk_type_; /**< Client type */
};
class ConfImpl : public Conf {
public:
ConfImpl(ConfType conf_type) :
consume_cb_(NULL),
dr_cb_(NULL),
event_cb_(NULL),
socket_cb_(NULL),
open_cb_(NULL),
partitioner_cb_(NULL),
partitioner_kp_cb_(NULL),
rebalance_cb_(NULL),
offset_commit_cb_(NULL),
oauthbearer_token_refresh_cb_(NULL),
ssl_cert_verify_cb_(NULL),
conf_type_(conf_type),
rk_conf_(NULL),
rkt_conf_(NULL) {
}
~ConfImpl() {
if (rk_conf_)
rd_kafka_conf_destroy(rk_conf_);
else if (rkt_conf_)
rd_kafka_topic_conf_destroy(rkt_conf_);
}
Conf::ConfResult set(const std::string &name,
const std::string &value,
std::string &errstr);
Conf::ConfResult set(const std::string &name,
DeliveryReportCb *dr_cb,
std::string &errstr) {
if (name != "dr_cb") {
errstr = "Invalid value type, expected RdKafka::DeliveryReportCb";
return Conf::CONF_INVALID;
}
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
dr_cb_ = dr_cb;
return Conf::CONF_OK;
}
Conf::ConfResult set(const std::string &name,
OAuthBearerTokenRefreshCb *oauthbearer_token_refresh_cb,
std::string &errstr) {
if (name != "oauthbearer_token_refresh_cb") {
errstr =
"Invalid value type, expected RdKafka::OAuthBearerTokenRefreshCb";
return Conf::CONF_INVALID;
}
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
oauthbearer_token_refresh_cb_ = oauthbearer_token_refresh_cb;
return Conf::CONF_OK;
}
Conf::ConfResult set(const std::string &name,
EventCb *event_cb,
std::string &errstr) {
if (name != "event_cb") {
errstr = "Invalid value type, expected RdKafka::EventCb";
return Conf::CONF_INVALID;
}
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
event_cb_ = event_cb;
return Conf::CONF_OK;
}
Conf::ConfResult set(const std::string &name,
const Conf *topic_conf,
std::string &errstr) {
const ConfImpl *tconf_impl =
dynamic_cast<const RdKafka::ConfImpl *>(topic_conf);
if (name != "default_topic_conf" || !tconf_impl->rkt_conf_) {
errstr = "Invalid value type, expected RdKafka::Conf";
return Conf::CONF_INVALID;
}
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
rd_kafka_conf_set_default_topic_conf(
rk_conf_, rd_kafka_topic_conf_dup(tconf_impl->rkt_conf_));
return Conf::CONF_OK;
}
Conf::ConfResult set(const std::string &name,
PartitionerCb *partitioner_cb,
std::string &errstr) {
if (name != "partitioner_cb") {
errstr = "Invalid value type, expected RdKafka::PartitionerCb";
return Conf::CONF_INVALID;
}
if (!rkt_conf_) {
errstr = "Requires RdKafka::Conf::CONF_TOPIC object";
return Conf::CONF_INVALID;
}
partitioner_cb_ = partitioner_cb;
return Conf::CONF_OK;
}
Conf::ConfResult set(const std::string &name,
PartitionerKeyPointerCb *partitioner_kp_cb,
std::string &errstr) {
if (name != "partitioner_key_pointer_cb") {
errstr = "Invalid value type, expected RdKafka::PartitionerKeyPointerCb";
return Conf::CONF_INVALID;
}
if (!rkt_conf_) {
errstr = "Requires RdKafka::Conf::CONF_TOPIC object";
return Conf::CONF_INVALID;
}
partitioner_kp_cb_ = partitioner_kp_cb;
return Conf::CONF_OK;
}
Conf::ConfResult set(const std::string &name,
SocketCb *socket_cb,
std::string &errstr) {
if (name != "socket_cb") {
errstr = "Invalid value type, expected RdKafka::SocketCb";
return Conf::CONF_INVALID;
}
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
socket_cb_ = socket_cb;
return Conf::CONF_OK;
}
Conf::ConfResult set(const std::string &name,
OpenCb *open_cb,
std::string &errstr) {
if (name != "open_cb") {
errstr = "Invalid value type, expected RdKafka::OpenCb";
return Conf::CONF_INVALID;
}
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
open_cb_ = open_cb;
return Conf::CONF_OK;
}
Conf::ConfResult set(const std::string &name,
RebalanceCb *rebalance_cb,
std::string &errstr) {
if (name != "rebalance_cb") {
errstr = "Invalid value type, expected RdKafka::RebalanceCb";
return Conf::CONF_INVALID;
}
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
rebalance_cb_ = rebalance_cb;
return Conf::CONF_OK;
}
Conf::ConfResult set(const std::string &name,
OffsetCommitCb *offset_commit_cb,
std::string &errstr) {
if (name != "offset_commit_cb") {
errstr = "Invalid value type, expected RdKafka::OffsetCommitCb";
return Conf::CONF_INVALID;
}
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
offset_commit_cb_ = offset_commit_cb;
return Conf::CONF_OK;
}
Conf::ConfResult set(const std::string &name,
SslCertificateVerifyCb *ssl_cert_verify_cb,
std::string &errstr) {
if (name != "ssl_cert_verify_cb") {
errstr = "Invalid value type, expected RdKafka::SslCertificateVerifyCb";
return Conf::CONF_INVALID;
}
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
ssl_cert_verify_cb_ = ssl_cert_verify_cb;
return Conf::CONF_OK;
}
Conf::ConfResult set_engine_callback_data(void *value, std::string &errstr) {
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
rd_kafka_conf_set_engine_callback_data(rk_conf_, value);
return Conf::CONF_OK;
}
Conf::ConfResult set_ssl_cert(RdKafka::CertificateType cert_type,
RdKafka::CertificateEncoding cert_enc,
const void *buffer,
size_t size,
std::string &errstr) {
rd_kafka_conf_res_t res;
char errbuf[512];
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
res = rd_kafka_conf_set_ssl_cert(
rk_conf_, static_cast<rd_kafka_cert_type_t>(cert_type),
static_cast<rd_kafka_cert_enc_t>(cert_enc), buffer, size, errbuf,
sizeof(errbuf));
if (res != RD_KAFKA_CONF_OK)
errstr = errbuf;
return static_cast<Conf::ConfResult>(res);
}
Conf::ConfResult enable_sasl_queue(bool enable, std::string &errstr) {
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
rd_kafka_conf_enable_sasl_queue(rk_conf_, enable ? 1 : 0);
return Conf::CONF_OK;
}
Conf::ConfResult get(const std::string &name, std::string &value) const {
if (name.compare("dr_cb") == 0 || name.compare("event_cb") == 0 ||
name.compare("partitioner_cb") == 0 ||
name.compare("partitioner_key_pointer_cb") == 0 ||
name.compare("socket_cb") == 0 || name.compare("open_cb") == 0 ||
name.compare("rebalance_cb") == 0 ||
name.compare("offset_commit_cb") == 0 ||
name.compare("oauthbearer_token_refresh_cb") == 0 ||
name.compare("ssl_cert_verify_cb") == 0 ||
name.compare("set_engine_callback_data") == 0 ||
name.compare("enable_sasl_queue") == 0) {
return Conf::CONF_INVALID;
}
rd_kafka_conf_res_t res = RD_KAFKA_CONF_INVALID;
/* Get size of property */
size_t size;
if (rk_conf_)
res = rd_kafka_conf_get(rk_conf_, name.c_str(), NULL, &size);
else if (rkt_conf_)
res = rd_kafka_topic_conf_get(rkt_conf_, name.c_str(), NULL, &size);
if (res != RD_KAFKA_CONF_OK)
return static_cast<Conf::ConfResult>(res);
char *tmpValue = new char[size];
if (rk_conf_)
res = rd_kafka_conf_get(rk_conf_, name.c_str(), tmpValue, &size);
else if (rkt_conf_)
res = rd_kafka_topic_conf_get(rkt_conf_, name.c_str(), tmpValue, &size);
if (res == RD_KAFKA_CONF_OK)
value.assign(tmpValue);
delete[] tmpValue;
return static_cast<Conf::ConfResult>(res);
}
Conf::ConfResult get(DeliveryReportCb *&dr_cb) const {
if (!rk_conf_)
return Conf::CONF_INVALID;
dr_cb = this->dr_cb_;
return Conf::CONF_OK;
}
Conf::ConfResult get(
OAuthBearerTokenRefreshCb *&oauthbearer_token_refresh_cb) const {
if (!rk_conf_)
return Conf::CONF_INVALID;
oauthbearer_token_refresh_cb = this->oauthbearer_token_refresh_cb_;
return Conf::CONF_OK;
}
Conf::ConfResult get(EventCb *&event_cb) const {
if (!rk_conf_)
return Conf::CONF_INVALID;
event_cb = this->event_cb_;
return Conf::CONF_OK;
}
Conf::ConfResult get(PartitionerCb *&partitioner_cb) const {
if (!rkt_conf_)
return Conf::CONF_INVALID;
partitioner_cb = this->partitioner_cb_;
return Conf::CONF_OK;
}
Conf::ConfResult get(PartitionerKeyPointerCb *&partitioner_kp_cb) const {
if (!rkt_conf_)
return Conf::CONF_INVALID;
partitioner_kp_cb = this->partitioner_kp_cb_;
return Conf::CONF_OK;
}
Conf::ConfResult get(SocketCb *&socket_cb) const {
if (!rk_conf_)
return Conf::CONF_INVALID;
socket_cb = this->socket_cb_;
return Conf::CONF_OK;
}
Conf::ConfResult get(OpenCb *&open_cb) const {
if (!rk_conf_)
return Conf::CONF_INVALID;
open_cb = this->open_cb_;
return Conf::CONF_OK;
}
Conf::ConfResult get(RebalanceCb *&rebalance_cb) const {
if (!rk_conf_)
return Conf::CONF_INVALID;
rebalance_cb = this->rebalance_cb_;
return Conf::CONF_OK;
}
Conf::ConfResult get(OffsetCommitCb *&offset_commit_cb) const {
if (!rk_conf_)
return Conf::CONF_INVALID;
offset_commit_cb = this->offset_commit_cb_;
return Conf::CONF_OK;
}
Conf::ConfResult get(SslCertificateVerifyCb *&ssl_cert_verify_cb) const {
if (!rk_conf_)
return Conf::CONF_INVALID;
ssl_cert_verify_cb = this->ssl_cert_verify_cb_;
return Conf::CONF_OK;
}
std::list<std::string> *dump();
Conf::ConfResult set(const std::string &name,
ConsumeCb *consume_cb,
std::string &errstr) {
if (name != "consume_cb") {
errstr = "Invalid value type, expected RdKafka::ConsumeCb";
return Conf::CONF_INVALID;
}
if (!rk_conf_) {
errstr = "Requires RdKafka::Conf::CONF_GLOBAL object";
return Conf::CONF_INVALID;
}
consume_cb_ = consume_cb;
return Conf::CONF_OK;
}
struct rd_kafka_conf_s *c_ptr_global() {
if (conf_type_ == CONF_GLOBAL)
return rk_conf_;
else
return NULL;
}
struct rd_kafka_topic_conf_s *c_ptr_topic() {
if (conf_type_ == CONF_TOPIC)
return rkt_conf_;
else
return NULL;
}
ConsumeCb *consume_cb_;
DeliveryReportCb *dr_cb_;
EventCb *event_cb_;
SocketCb *socket_cb_;
OpenCb *open_cb_;
PartitionerCb *partitioner_cb_;
PartitionerKeyPointerCb *partitioner_kp_cb_;