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
|
#ifndef LIGHTSTEP_TEXT_MAP_CARRIER
#define LIGHTSTEP_TEXT_MAP_CARRIER
#include <opentracing/propagation.h>
#include <string>
#include <unordered_map>
using opentracing::expected;
using opentracing::string_view;
using opentracing::TextMapReader;
using opentracing::TextMapWriter;
class TextMapCarrier : public TextMapReader, public TextMapWriter {
public:
TextMapCarrier(std::unordered_map<std::string, std::string>& text_map)
: text_map_(text_map) {}
expected<void> Set(string_view key, string_view value) const override {
text_map_[key] = value;
return {};
}
expected<void> ForeachKey(
std::function<expected<void>(string_view key, string_view value)> f)
const override {
for (const auto& key_value : text_map_) {
auto result = f(key_value.first, key_value.second);
if (!result) return result;
}
return {};
}
private:
std::unordered_map<std::string, std::string>& text_map_;
};
#endif // LIGHTSTEP_TEXT_MAP_CARRIER
|