@ -43,21 +43,23 @@ Status Configurable::PrepareOptions(const ConfigOptions& opts) {
Status status = Status : : OK ( ) ;
# ifndef ROCKSDB_LITE
for ( auto opt_iter : options_ ) {
for ( auto map_iter : * ( opt_iter . type_map ) ) {
auto & opt_info = map_iter . second ;
if ( ! opt_info . IsDeprecated ( ) & & ! opt_info . IsAlias ( ) & &
opt_info . IsConfigurable ( ) ) {
if ( ! opt_info . IsEnabled ( OptionTypeFlags : : kDontPrepare ) ) {
Configurable * config =
opt_info . AsRawPointer < Configurable > ( opt_iter . opt_ptr ) ;
if ( config ! = nullptr ) {
status = config - > PrepareOptions ( opts ) ;
if ( ! status . ok ( ) ) {
return status ;
if ( opt_iter . type_map ! = nullptr ) {
for ( auto map_iter : * ( opt_iter . type_map ) ) {
auto & opt_info = map_iter . second ;
if ( ! opt_info . IsDeprecated ( ) & & ! opt_info . IsAlias ( ) & &
opt_info . IsConfigurable ( ) ) {
if ( ! opt_info . IsEnabled ( OptionTypeFlags : : kDontPrepare ) ) {
Configurable * config =
opt_info . AsRawPointer < Configurable > ( opt_iter . opt_ptr ) ;
if ( config ! = nullptr ) {
status = config - > PrepareOptions ( opts ) ;
if ( ! status . ok ( ) ) {
return status ;
}
} else if ( ! opt_info . CanBeNull ( ) ) {
status = Status : : NotFound ( " Missing configurable object " ,
map_iter . first ) ;
}
} else if ( ! opt_info . CanBeNull ( ) ) {
status =
Status : : NotFound ( " Missing configurable object " , map_iter . first ) ;
}
}
}
@ -74,20 +76,22 @@ Status Configurable::ValidateOptions(const DBOptions& db_opts,
Status status ;
# ifndef ROCKSDB_LITE
for ( auto opt_iter : options_ ) {
for ( auto map_iter : * ( opt_iter . type_map ) ) {
auto & opt_info = map_iter . second ;
if ( ! opt_info . IsDeprecated ( ) & & ! opt_info . IsAlias ( ) ) {
if ( opt_info . IsConfigurable ( ) ) {
const Configurable * config =
opt_info . AsRawPointer < Configurable > ( opt_iter . opt_ptr ) ;
if ( config ! = nullptr ) {
status = config - > ValidateOptions ( db_opts , cf_opts ) ;
} else if ( ! opt_info . CanBeNull ( ) ) {
status =
Status : : NotFound ( " Missing configurable object " , map_iter . first ) ;
}
if ( ! status . ok ( ) ) {
return status ;
if ( opt_iter . type_map ! = nullptr ) {
for ( auto map_iter : * ( opt_iter . type_map ) ) {
auto & opt_info = map_iter . second ;
if ( ! opt_info . IsDeprecated ( ) & & ! opt_info . IsAlias ( ) ) {
if ( opt_info . IsConfigurable ( ) ) {
const Configurable * config =
opt_info . AsRawPointer < Configurable > ( opt_iter . opt_ptr ) ;
if ( config ! = nullptr ) {
status = config - > ValidateOptions ( db_opts , cf_opts ) ;
} else if ( ! opt_info . CanBeNull ( ) ) {
status = Status : : NotFound ( " Missing configurable object " ,
map_iter . first ) ;
}
if ( ! status . ok ( ) ) {
return status ;
}
}
}
}
@ -124,11 +128,13 @@ const OptionTypeInfo* ConfigurableHelper::FindOption(
const std : : vector < Configurable : : RegisteredOptions > & options ,
const std : : string & short_name , std : : string * opt_name , void * * opt_ptr ) {
for ( auto iter : options ) {
const auto opt_info =
OptionTypeInfo : : Find ( short_name , * ( iter . type_map ) , opt_name ) ;
if ( opt_info ! = nullptr ) {
* opt_ptr = iter . opt_ptr ;
return opt_info ;
if ( iter . type_map ! = nullptr ) {
const auto opt_info =
OptionTypeInfo : : Find ( short_name , * ( iter . type_map ) , opt_name ) ;
if ( opt_info ! = nullptr ) {
* opt_ptr = iter . opt_ptr ;
return opt_info ;
}
}
}
return nullptr ;
@ -280,12 +286,14 @@ Status ConfigurableHelper::ConfigureOptions(
if ( ! opts_map . empty ( ) ) {
# ifndef ROCKSDB_LITE
for ( const auto & iter : configurable . options_ ) {
s = ConfigureSomeOptions ( config_options , configurable , * ( iter . type_map ) ,
& remaining , iter . opt_ptr ) ;
if ( remaining . empty ( ) ) { // Are there more options left?
break ;
} else if ( ! s . ok ( ) ) {
break ;
if ( iter . type_map ! = nullptr ) {
s = ConfigureSomeOptions ( config_options , configurable , * ( iter . type_map ) ,
& remaining , iter . opt_ptr ) ;
if ( remaining . empty ( ) ) { // Are there more options left?
break ;
} else if ( ! s . ok ( ) ) {
break ;
}
}
}
# else
@ -573,36 +581,38 @@ Status ConfigurableHelper::SerializeOptions(const ConfigOptions& config_options,
std : : string * result ) {
assert ( result ) ;
for ( auto const & opt_iter : configurable . options_ ) {
for ( const auto & map_iter : * ( opt_iter . type_map ) ) {
const auto & opt_name = map_iter . first ;
const auto & opt_info = map_iter . second ;
if ( opt_info . ShouldSerialize ( ) ) {
std : : string value ;
Status s ;
if ( ! config_options . mutable_options_only ) {
s = opt_info . Serialize ( config_options , prefix + opt_name ,
opt_iter . opt_ptr , & value ) ;
} else if ( opt_info . IsMutable ( ) ) {
ConfigOptions copy = config_options ;
copy . mutable_options_only = false ;
s = opt_info . Serialize ( copy , prefix + opt_name , opt_iter . opt_ptr ,
& value ) ;
} else if ( opt_info . IsConfigurable ( ) ) {
// If it is a Configurable and we are either printing all of the
// details or not printing only the name, this option should be
// included in the list
if ( config_options . IsDetailed ( ) | |
! opt_info . IsEnabled ( OptionTypeFlags : : kStringNameOnly ) ) {
if ( opt_iter . type_map ! = nullptr ) {
for ( const auto & map_iter : * ( opt_iter . type_map ) ) {
const auto & opt_name = map_iter . first ;
const auto & opt_info = map_iter . second ;
if ( opt_info . ShouldSerialize ( ) ) {
std : : string value ;
Status s ;
if ( ! config_options . mutable_options_only ) {
s = opt_info . Serialize ( config_options , prefix + opt_name ,
opt_iter . opt_ptr , & value ) ;
} else if ( opt_info . IsMutable ( ) ) {
ConfigOptions copy = config_options ;
copy . mutable_options_only = false ;
s = opt_info . Serialize ( copy , prefix + opt_name , opt_iter . opt_ptr ,
& value ) ;
} else if ( opt_info . IsConfigurable ( ) ) {
// If it is a Configurable and we are either printing all of the
// details or not printing only the name, this option should be
// included in the list
if ( config_options . IsDetailed ( ) | |
! opt_info . IsEnabled ( OptionTypeFlags : : kStringNameOnly ) ) {
s = opt_info . Serialize ( config_options , prefix + opt_name ,
opt_iter . opt_ptr , & value ) ;
}
}
if ( ! s . ok ( ) ) {
return s ;
} else if ( ! value . empty ( ) ) {
// <prefix><opt_name>=<value><delimiter>
result - > append ( prefix + opt_name + " = " + value +
config_options . delimiter ) ;
}
}
if ( ! s . ok ( ) ) {
return s ;
} else if ( ! value . empty ( ) ) {
// <prefix><opt_name>=<value><delimiter>
result - > append ( prefix + opt_name + " = " + value +
config_options . delimiter ) ;
}
}
}
@ -629,16 +639,18 @@ Status ConfigurableHelper::ListOptions(
const std : : string & prefix , std : : unordered_set < std : : string > * result ) {
Status status ;
for ( auto const & opt_iter : configurable . options_ ) {
for ( const auto & map_iter : * ( opt_iter . type_map ) ) {
const auto & opt_name = map_iter . first ;
const auto & opt_info = map_iter . second ;
// If the option is no longer used in rocksdb and marked as deprecated,
// we skip it in the serialization.
if ( ! opt_info . IsDeprecated ( ) & & ! opt_info . IsAlias ( ) ) {
if ( ! config_options . mutable_options_only ) {
result - > emplace ( prefix + opt_name ) ;
} else if ( opt_info . IsMutable ( ) ) {
result - > emplace ( prefix + opt_name ) ;
if ( opt_iter . type_map ! = nullptr ) {
for ( const auto & map_iter : * ( opt_iter . type_map ) ) {
const auto & opt_name = map_iter . first ;
const auto & opt_info = map_iter . second ;
// If the option is no longer used in rocksdb and marked as deprecated,
// we skip it in the serialization.
if ( ! opt_info . IsDeprecated ( ) & & ! opt_info . IsAlias ( ) ) {
if ( ! config_options . mutable_options_only ) {
result - > emplace ( prefix + opt_name ) ;
} else if ( opt_info . IsMutable ( ) ) {
result - > emplace ( prefix + opt_name ) ;
}
}
}
}
@ -702,7 +714,7 @@ bool ConfigurableHelper::AreEquivalent(const ConfigOptions& config_options,
if ( this_offset ! = that_offset ) {
if ( this_offset = = nullptr | | that_offset = = nullptr ) {
return false ;
} else {
} else if ( o . type_map ! = nullptr ) {
for ( const auto & map_iter : * ( o . type_map ) ) {
const auto & opt_info = map_iter . second ;
if ( config_options . IsCheckEnabled ( opt_info . GetSanityLevel ( ) ) ) {