mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Add DEFINE_validator macro for convenient registration of a flag validator.
git-svn-id: https://gflags.googlecode.com/svn/trunk@82 6586e3c6-dcc4-952a-343f-ff74eb82781d
This commit is contained in:
parent
8011f61247
commit
45a53dea87
2 changed files with 7 additions and 7 deletions
|
@ -135,6 +135,11 @@ extern bool RegisterFlagValidator(const std::string* flag,
|
|||
bool (*validate_fn)(const char*,
|
||||
const std::string&));
|
||||
|
||||
// Convenience macro for the registration of a flag validator
|
||||
#define DEFINE_validator(name, validator) \
|
||||
static const bool name##_validator_registered = \
|
||||
@ac_google_namespace@::RegisterFlagValidator(&FLAGS_##name, validator)
|
||||
|
||||
|
||||
// --------------------------------------------------------------------
|
||||
// These methods are the best way to get access to info about the
|
||||
|
|
|
@ -143,9 +143,7 @@ DEFINE_bool(long_helpstring, false,
|
|||
|
||||
static bool AlwaysFail(const char* flag, bool value) { return value == false; }
|
||||
DEFINE_bool(always_fail, false, "will fail to validate when you set it");
|
||||
namespace {
|
||||
bool dummy = RegisterFlagValidator(&FLAGS_always_fail, AlwaysFail);
|
||||
}
|
||||
DEFINE_validator(always_fail, AlwaysFail);
|
||||
|
||||
// See the comment by GetAllFlags in gflags.h
|
||||
static bool DeadlockIfCantLockInValidators(const char* flag, bool value) {
|
||||
|
@ -160,10 +158,7 @@ DEFINE_bool(deadlock_if_cant_lock,
|
|||
false,
|
||||
"will deadlock if set to true and "
|
||||
"if locking of registry in validators fails.");
|
||||
namespace {
|
||||
bool dummy1 = RegisterFlagValidator(&FLAGS_deadlock_if_cant_lock,
|
||||
DeadlockIfCantLockInValidators);
|
||||
}
|
||||
DEFINE_validator(deadlock_if_cant_lock, DeadlockIfCantLockInValidators);
|
||||
|
||||
#define MAKEFLAG(x) DEFINE_int32(test_flag_num##x, x, "Test flag")
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue