aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/monlib/encode/buffered/string_pool.cpp
diff options
context:
space:
mode:
authormsherbakov <msherbakov@yandex-team.ru>2022-02-10 16:49:17 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:17 +0300
commita0ffafe83b7d6229709a32fa942c71d672ac989c (patch)
tree5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/monlib/encode/buffered/string_pool.cpp
parentc224a621661ddd69699f9476922eb316607ef57e (diff)
downloadydb-a0ffafe83b7d6229709a32fa942c71d672ac989c.tar.gz
Restoring authorship annotation for <msherbakov@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/monlib/encode/buffered/string_pool.cpp')
-rw-r--r--library/cpp/monlib/encode/buffered/string_pool.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/library/cpp/monlib/encode/buffered/string_pool.cpp b/library/cpp/monlib/encode/buffered/string_pool.cpp
index 3c274f27f7..b4c7988ba3 100644
--- a/library/cpp/monlib/encode/buffered/string_pool.cpp
+++ b/library/cpp/monlib/encode/buffered/string_pool.cpp
@@ -5,16 +5,16 @@ namespace NMonitoring {
// TStringPoolBuilder
////////////////////////////////////////////////////////////////////////////////
const TStringPoolBuilder::TValue* TStringPoolBuilder::PutIfAbsent(TStringBuf str) {
- Y_ENSURE(!IsBuilt_, "Cannot add more values after string has been built");
+ Y_ENSURE(!IsBuilt_, "Cannot add more values after string has been built");
- auto [it, isInserted] = StrMap_.try_emplace(str, Max<ui32>(), 0);
- if (isInserted) {
+ auto [it, isInserted] = StrMap_.try_emplace(str, Max<ui32>(), 0);
+ if (isInserted) {
BytesSize_ += str.size();
it->second.Index = StrVector_.size();
StrVector_.emplace_back(it->first, &it->second);
}
-
- TValue* value = &it->second;
+
+ TValue* value = &it->second;
++value->Frequency;
return value;
}
@@ -23,12 +23,12 @@ namespace NMonitoring {
return StrVector_.at(index).second;
}
- TStringPoolBuilder& TStringPoolBuilder::Build() {
- if (RequiresSorting_) {
- // sort in reversed order
- std::sort(StrVector_.begin(), StrVector_.end(), [](auto& a, auto& b) {
- return a.second->Frequency > b.second->Frequency;
- });
+ TStringPoolBuilder& TStringPoolBuilder::Build() {
+ if (RequiresSorting_) {
+ // sort in reversed order
+ std::sort(StrVector_.begin(), StrVector_.end(), [](auto& a, auto& b) {
+ return a.second->Frequency > b.second->Frequency;
+ });
ui32 i = 0;
for (auto& value : StrVector_) {
@@ -36,9 +36,9 @@ namespace NMonitoring {
}
}
- IsBuilt_ = true;
-
- return *this;
+ IsBuilt_ = true;
+
+ return *this;
}
////////////////////////////////////////////////////////////////////////////////