|
| Object_filter (Mysql::Tools::Base::Abstract_program *program) |
|
void | create_options () override |
| Creates all options that will be provided. More...
|
|
bool | is_object_included_in_dump (Abstract_data_object *object) |
|
void | add_providers (I_options_provider *first,...) |
| Adds new providers to list. More...
|
|
void | add_provider (I_options_provider *options_provider) |
| Adds new provider to list. More...
|
|
void | options_parsed () override |
| This callback is to be called after all options were parsed. More...
|
|
std::vector< my_option > | generate_options () override |
| Aggregates all options from itsself and all contained providers. More...
|
|
Simple_option * | create_new_option (std::string name, std::string description) |
| Creates and attach new simple option. More...
|
|
Disabled_option * | create_new_disabled_option (std::string name, std::string description) |
| Creates and attach new disabled option. More...
|
|
Char_array_option * | create_new_option (char **value, std::string name, std::string description) |
| Creates and attach new string option stored in char* type object. More...
|
|
Password_option * | create_new_password_option (std::optional< std::string > *value, std::string name, std::string description) |
| Creates and attach new password option. More...
|
|
String_option * | create_new_option (std::optional< std::string > *value, std::string name, std::string description) |
| Creates and attach new string option. More...
|
|
Number_option< int32 > * | create_new_option (int32 *value, std::string name, std::string description) |
| Creates and attach new 32-bit signed number option. More...
|
|
Number_option< uint32 > * | create_new_option (uint32 *value, std::string name, std::string description) |
| Creates and attach new 32-bit unsigned number option. More...
|
|
Number_option< int64 > * | create_new_option (int64 *value, std::string name, std::string description) |
| Creates and attach new 64-bit signed number option. More...
|
|
Number_option< uint64 > * | create_new_option (uint64 *value, std::string name, std::string description) |
| Creates and attach new 64-bit unsigned number option. More...
|
|
Number_option< double > * | create_new_option (double *value, std::string name, std::string description) |
| Creates and attach new floating-point number option. More...
|
|
Bool_option * | create_new_option (bool *value, std::string name, std::string description) |
| Creates and attach new boolean option with value received from argument. More...
|
|
template<typename T_type , typename T_typelib > |
Enum_option< T_type, T_typelib > * | create_new_enum_option (T_type *value, const T_typelib *type, std::string name, std::string description) |
|
virtual | ~I_option_changed_listener ()=default |
|
|
bool | is_object_included_by_lists (const std::string &schema_name, const std::string &object_name, std::vector< std::pair< std::string, std::string > > *include_list, std::vector< std::pair< std::string, std::string > > *exclude_list) |
|
void | include_databases_callback (char *) |
|
void | exclude_databases_callback (char *) |
|
void | include_tables_callback (char *) |
|
void | exclude_tables_callback (char *) |
|
void | include_routines_callback (char *) |
|
void | exclude_routines_callback (char *) |
|
void | include_triggers_callback (char *) |
|
void | exclude_triggers_callback (char *) |
|
void | include_events_callback (char *) |
|
void | exclude_events_callback (char *) |
|
void | include_users_callback (char *) |
|
void | exclude_users_callback (char *) |
|
bool | is_user_included_by_lists (const std::string &object_name, std::vector< std::pair< std::string, std::string > > *include_list, std::vector< std::pair< std::string, std::string > > *exclude_list) |
|
void | process_object_inclusion_string (std::vector< std::pair< std::string, std::string > > &list, bool allow_schema=true, bool is_user_object=false) |
|