-
Notifications
You must be signed in to change notification settings - Fork 417
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
505 additions
and
282 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
/* | ||
* Copyright The OpenTelemetry Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
#pragma once | ||
|
||
#include "opentelemetry/baggage/baggage.h" | ||
#include "opentelemetry/common/attribute_value.h" | ||
#include "opentelemetry/context/propagation/text_map_propagator.h" | ||
#include "opentelemetry/nostd/type_traits.h" | ||
#include "opentracing/propagation.h" | ||
#include "opentracing/value.h" | ||
|
||
OPENTELEMETRY_BEGIN_NAMESPACE | ||
namespace opentracingshim | ||
{ | ||
|
||
template<typename T, nostd::enable_if_t<std::is_base_of<opentracing::TextMapWriter, T>::value, bool> = true> | ||
class CarrierWriterShim : public opentelemetry::context::propagation::TextMapCarrier | ||
{ | ||
public: | ||
CarrierWriterShim(const T& writer) : writer_(writer) {} | ||
|
||
// returns the value associated with the passed key. | ||
virtual nostd::string_view Get(nostd::string_view key) const noexcept override | ||
{ | ||
return ""; | ||
} | ||
|
||
// stores the key-value pair. | ||
virtual void Set(nostd::string_view key, nostd::string_view value) noexcept override | ||
{ | ||
writer_.Set(key.data(), value.data()); | ||
} | ||
|
||
private: | ||
const T& writer_; | ||
}; | ||
|
||
template<typename T, nostd::enable_if_t<std::is_base_of<opentracing::TextMapReader, T>::value, bool> = true> | ||
class CarrierReaderShim : public opentelemetry::context::propagation::TextMapCarrier | ||
{ | ||
public: | ||
CarrierReaderShim(const T& reader) : reader_(reader) {} | ||
|
||
// returns the value associated with the passed key. | ||
virtual nostd::string_view Get(nostd::string_view key) const noexcept override | ||
{ | ||
nostd::string_view value; | ||
|
||
// First try carrier.LookupKey since that can potentially be the fastest approach. | ||
if (auto result = reader_.LookupKey(key.data())) | ||
{ | ||
value = result.value().data(); | ||
} | ||
else // Fall back to iterating through all of the keys. | ||
{ | ||
reader_.ForeachKey([key, &value] | ||
(opentracing::string_view k, opentracing::string_view v) -> opentracing::expected<void> { | ||
if (k == key.data()) | ||
{ | ||
value = v.data(); | ||
// Found key, so bail out of the loop with a success error code. | ||
return opentracing::make_unexpected(std::error_code{}); | ||
} | ||
return opentracing::make_expected(); | ||
}); | ||
} | ||
|
||
return value; | ||
} | ||
|
||
// stores the key-value pair. | ||
virtual void Set(nostd::string_view key, nostd::string_view value) noexcept override | ||
{ | ||
// Not required for Opentracing reader | ||
} | ||
|
||
// list of all the keys in the carrier. | ||
virtual bool Keys(nostd::function_ref<bool(nostd::string_view)> callback) const noexcept override | ||
{ | ||
return reader_.ForeachKey([&callback] | ||
(opentracing::string_view key, opentracing::string_view) -> opentracing::expected<void> { | ||
return callback(key.data()) | ||
? opentracing::make_expected() | ||
: opentracing::make_unexpected(std::error_code{}); | ||
}).has_value(); | ||
} | ||
|
||
private: | ||
const T& reader_; | ||
}; | ||
|
||
} // namespace opentracingshim | ||
OPENTELEMETRY_END_NAMESPACE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.