-
Notifications
You must be signed in to change notification settings - Fork 517
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(config): support retrieving configuration fields using glob patterns #2592
Conversation
src/vendor/globmatch.cc
Outdated
|
||
// NOLINTBEGIN | ||
/* Glob-style pattern matching. */ | ||
int stringmatchlen(const char *pattern, int patternLen, const char *string, int stringLen, int nocase) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems we already have one called StringMatch
in https://github.com/apache/kvrocks/blob/unstable/src/common/string_util.cc .
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, i'll use this one
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
src/config/config.cc
Outdated
@@ -867,7 +868,7 @@ Status Config::Load(const CLIOptions &opts) { | |||
void Config::Get(const std::string &key, std::vector<std::string> *values) const { | |||
values->clear(); | |||
for (const auto &iter : fields_) { | |||
if (key == "*" || util::ToLower(key) == iter.first) { | |||
if (util::StringMatchLen(key.c_str(), key.size(), iter.first.c_str(), iter.first.size(), 1)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (util::StringMatchLen(key.c_str(), key.size(), iter.first.c_str(), iter.first.size(), 1)) { | |
if (util::StringMatch(key, iter.first, 1)) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me.
It can be difficult to remember the full configuration field, so providing a keyword to retrieve the configuration value, as is done in Redis, can be more convenient.