-
Notifications
You must be signed in to change notification settings - Fork 4.6k
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
2 changed files
with
76 additions
and
59 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 |
---|---|---|
@@ -1,35 +1,34 @@ | ||
// Copyright(c) 2015-present, Gabi Melman & spdlog contributors. | ||
// Distributed under the MIT License (http://opensource.org/licenses/MIT) | ||
|
||
#pragma once | ||
|
||
#include <map> | ||
#include <string> | ||
|
||
namespace spdlog { | ||
class mdc { | ||
public: | ||
using mdc_map_t = std::map<std::string, std::string>; | ||
|
||
static void put(const std::string &key, const std::string &value) { | ||
get_context()[key] = value; | ||
} | ||
|
||
class mdc { | ||
public: | ||
static void put(const std::string &key, const std::string &value) { | ||
get_context()[key] = value; | ||
} | ||
|
||
static std::string get(const std::string &key) { | ||
auto &context = get_context(); | ||
auto it = context.find(key); | ||
if (it != context.end()) { | ||
return it->second; | ||
static std::string get(const std::string &key) { | ||
auto &context = get_context(); | ||
auto it = context.find(key); | ||
if (it != context.end()) { | ||
return it->second; | ||
} | ||
return ""; | ||
} | ||
return ""; | ||
} | ||
|
||
static void remove(const std::string &key) { get_context().erase(key); } | ||
static void remove(const std::string &key) { get_context().erase(key); } | ||
|
||
static void clear() { get_context().clear(); } | ||
static void clear() { get_context().clear(); } | ||
|
||
static std::map<std::string, std::string> &get_context() { | ||
static thread_local std::map<std::string, std::string> context; | ||
return context; | ||
} | ||
}; | ||
static mdc_map_t &get_context() { | ||
static thread_local mdc_map_t context; | ||
return context; | ||
} | ||
}; | ||
|
||
} // namespace spdlog | ||
} // namespace spdlog |
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