Skip to content

Commit

Permalink
Improve the handling of OPENTELEMETRY_HAVE_WORKING_REGEX.
Browse files Browse the repository at this point in the history
It used to be some places were checking for
defined(OPENTELEMETRY_HAVE_WORKING_REGEX), but it is always being set
(to either 0 or 1) in api/include/opentelemetry/common/macros.h.

Thus move to just checking its value everywhere.

Additionally, even if we did have the feature off - compilation would
fail, since not all the functions were ifdef'd.

My initial motivation for this was to reduce compile times, since
specificing the definition with an std::regex adds a significant penalty
to each translation unit (~700ms on my 5-year old laptop). In a separate
patch, I think this should be moved to a .cc file - happy to receive
advice on how (since api/ seems not to have .cc's).
  • Loading branch information
kylepl committed Dec 5, 2023
1 parent d1143ab commit 3267cce
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
6 changes: 4 additions & 2 deletions api/include/opentelemetry/trace/trace_state.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include "opentelemetry/nostd/unique_ptr.h"
#include "opentelemetry/version.h"

#if defined(OPENTELEMETRY_HAVE_WORKING_REGEX)
#if OPENTELEMETRY_HAVE_WORKING_REGEX
# include <regex>
#endif

Expand Down Expand Up @@ -246,6 +246,7 @@ class OPENTELEMETRY_EXPORT TraceState
return str.substr(left, right - left + 1);
}

#if OPENTELEMETRY_HAVE_WORKING_REGEX
static bool IsValidKeyRegEx(nostd::string_view key)
{
static std::regex reg_key("^[a-z0-9][a-z0-9*_\\-/]{0,255}$");
Expand All @@ -267,7 +268,7 @@ class OPENTELEMETRY_EXPORT TraceState
// Need to benchmark without regex, as a string object is created here.
return std::regex_match(std::string(value.data(), value.size()), reg_value);
}

#else
static bool IsValidKeyNonRegEx(nostd::string_view key)
{
if (key.empty() || key.size() > kKeyMaxSize || !IsLowerCaseAlphaOrDigit(key[0]))
Expand Down Expand Up @@ -307,6 +308,7 @@ class OPENTELEMETRY_EXPORT TraceState
}
return true;
}
#endif

static bool IsLowerCaseAlphaOrDigit(char c) { return isdigit(c) || islower(c); }

Expand Down
2 changes: 1 addition & 1 deletion sdk/include/opentelemetry/sdk/metrics/view/predicate.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include "opentelemetry/nostd/string_view.h"
#include "opentelemetry/sdk/common/global_log_handler.h"

#if defined(OPENTELEMETRY_HAVE_WORKING_REGEX)
#if OPENTELEMETRY_HAVE_WORKING_REGEX
# include <regex>
#endif

Expand Down
2 changes: 1 addition & 1 deletion sdk/src/metrics/instrument_metadata_validator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <algorithm>
#include <iostream>

#if defined(OPENTELEMETRY_HAVE_WORKING_REGEX)
#if OPENTELEMETRY_HAVE_WORKING_REGEX
# include <regex>
#endif

Expand Down
6 changes: 3 additions & 3 deletions sdk/test/metrics/histogram_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

#include <gtest/gtest.h>

#if defined(OPENTELEMETRY_HAVE_WORKING_REGEX)
#if OPENTELEMETRY_HAVE_WORKING_REGEX
# include <regex>
#endif

Expand Down Expand Up @@ -73,7 +73,7 @@ TEST(Histogram, Double)
actual.counts_);
}

#if (OPENTELEMETRY_HAVE_WORKING_REGEX)
#if OPENTELEMETRY_HAVE_WORKING_REGEX
// FIXME - View Preficate search is only supported through regex
TEST(Histogram, DoubleCustomBuckets)
{
Expand Down Expand Up @@ -188,7 +188,7 @@ TEST(Histogram, UInt64)
actual.counts_);
}

#if (OPENTELEMETRY_HAVE_WORKING_REGEX)
#if OPENTELEMETRY_HAVE_WORKING_REGEX
// FIXME - View Preficate search is only supported through regex
TEST(Histogram, UInt64CustomBuckets)
{
Expand Down
2 changes: 1 addition & 1 deletion sdk/test/metrics/view_registry_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#include <gtest/gtest.h>

#if defined(OPENTELEMETRY_HAVE_WORKING_REGEX)
#if OPENTELEMETRY_HAVE_WORKING_REGEX
# include <regex>
#endif

Expand Down

0 comments on commit 3267cce

Please sign in to comment.