This is similar to a ConfigVariableList, but it returns its list as a DSearchPath, as a list of directories. More...
#include "configVariableSearchPath.h"
Public Member Functions | |
ConfigVariableSearchPath (const std::string &name, const std::string &description=std::string(), int flags=0) | |
ConfigVariableSearchPath (const std::string &name, const DSearchPath &default_value, const std::string &description, int flags=0) | |
ConfigVariableSearchPath (const std::string &name, const std::string &default_value, const std::string &description, int flags=0) | |
void | append_directory (const Filename &directory) |
Adds a new directory to the end of the search list. More... | |
void | append_path (const std::string &path, const std::string &separator=std::string()) |
Adds all of the directories listed in the search path to the end of the search list. More... | |
void | append_path (const DSearchPath &path) |
Adds all of the directories listed in the search path to the end of the search list. More... | |
void | clear () |
Removes all the directories locally added to the search list, and restores it to its original form. More... | |
bool | clear_local_value () |
Removes all the directories locally added to the search list, and restores it to its original form. More... | |
size_t | find_all_files (const Filename &filename, DSearchPath::Results &results) const |
Searches all the directories in the search list for the indicated file, in order. More... | |
DSearchPath::Results | find_all_files (const Filename &filename) const |
This variant of find_all_files() returns the new Results object, instead of filling on in on the parameter list. More... | |
Filename | find_file (const Filename &filename) const |
Searches all the directories in the search list for the indicated file, in order. More... | |
const DSearchPath & | get_default_value () const |
Filename | get_directory (size_t n) const |
size_t | get_num_directories () const |
DSearchPath | get_value () const |
bool | is_empty () const |
Returns true if the search list is empty, false otherwise. More... | |
operator DSearchPath () const | |
Returns the variable's value. More... | |
void | output (std::ostream &out) const |
void | prepend_directory (const Filename &directory) |
Adds a new directory to the front of the search list. More... | |
void | prepend_path (const DSearchPath &path) |
Adds all of the directories listed in the search path to the beginning of the search list. More... | |
void | write (std::ostream &out) const |
Public Member Functions inherited from ConfigVariableBase | |
bool | clear_local_value () |
Removes the local value defined for this variable, and allows its value to be once again retrieved from the .prc files. More... | |
const std::string & | get_description () const |
int | get_flags () const |
Returns the flags value as set by set_flags(). More... | |
const std::string & | get_name () const |
int | get_trust_level () const |
ValueType | get_value_type () const |
bool | has_local_value () const |
Returns true if this variable's value has been shadowed by a local assignment (as created via make_local_value()), or false otherwise. More... | |
bool | has_value () const |
Returns true if this variable has an explicit value, either from a prc file or locally set, or false if variable has its default value. More... | |
bool | is_closed () const |
bool | is_dynamic () const |
void | output (std::ostream &out) const |
void | write (std::ostream &out) const |
Public Attributes | |
get_default_value | |
get_directory | |
Returns the nth directory on the search list. More... | |
get_num_directories | |
Returns the number of directories on the search list. More... | |
get_value | |
Public Attributes inherited from ConfigVariableBase | |
get_description | |
Returns the brief description of this variable, if it has been defined. More... | |
get_name | |
Returns the name of the variable. More... | |
get_trust_level | |
Returns the minimum trust_level a prc file must demonstrate in order to redefine the value for this variable. More... | |
get_value_type | |
Returns the stated type of this variable. More... | |
is_closed | |
Returns true if the variable is not trusted by any prc file (and hence cannot be modified from its compiled-in default value), or false for the normal case, in which the variable can be modified by any prc file at or above its trust level (see get_trust_level()). More... | |
is_dynamic | |
Returns true if the variable was indicated as "dynamic" by its constructor, indicating that its name was dynamically generated, possibly from a large pool, and it should not be listed along with the other variables. More... | |
Additional Inherited Members | |
Public Types inherited from ConfigFlags | |
enum | ValueType { VT_undefined, VT_list, VT_string, VT_filename, VT_bool, VT_int, VT_double, VT_enum, VT_search_path, VT_int64, VT_color } |
enum | VariableFlags { F_trust_level_mask = 0x00000fff, F_open = 0x00001000, F_closed = 0x00002000, F_dynamic = 0x00004000, F_dconfig = 0x00008000 } |
This is similar to a ConfigVariableList, but it returns its list as a DSearchPath, as a list of directories.
You may locally append directories to the end of the search path with the methods here, or prepend them to the beginning. Use these methods to make adjustments to the path; do not attempt to directly modify the const DSearchPath object returned by get_value().
Unlike other ConfigVariable types, local changes (made by calling append_directory() and prepend_directory()) are specific to this particular instance of the ConfigVariableSearchPath. A separate instance of the same variable, created by using the same name to the constructor, will not reflect the local changes.
Definition at line 36 of file configVariableSearchPath.h.
|
inline |
Adds a new directory to the end of the search list.
Definition at line 159 of file configVariableSearchPath.I.
References DSearchPath::append_directory().
|
inline |
Adds all of the directories listed in the search path to the end of the search list.
Definition at line 182 of file configVariableSearchPath.I.
References DSearchPath::append_path().
|
inline |
Adds all of the directories listed in the search path to the end of the search list.
Definition at line 194 of file configVariableSearchPath.I.
References DSearchPath::append_path().
|
inline |
Removes all the directories locally added to the search list, and restores it to its original form.
Definition at line 151 of file configVariableSearchPath.I.
References clear_local_value().
|
inline |
Removes all the directories locally added to the search list, and restores it to its original form.
Definition at line 129 of file configVariableSearchPath.I.
Referenced by clear().
|
inline |
Searches all the directories in the search list for the indicated file, in order.
Fills up the results list with *all* of the matching filenames found, if any. Returns the number of matches found.
It is the responsibility of the the caller to clear the results list first; otherwise, the newly-found files will be appended to the list.
Definition at line 260 of file configVariableSearchPath.I.
|
inline |
This variant of find_all_files() returns the new Results object, instead of filling on in on the parameter list.
This is a little more convenient to call from Python.
Definition at line 271 of file configVariableSearchPath.I.
Searches all the directories in the search list for the indicated file, in order.
Returns the full matching pathname of the first match if found, or the empty string if not found.
Definition at line 247 of file configVariableSearchPath.I.
|
inline |
Returns true if the search list is empty, false otherwise.
Definition at line 217 of file configVariableSearchPath.I.
|
inline |
Returns the variable's value.
Definition at line 96 of file configVariableSearchPath.I.
|
inline |
Adds a new directory to the front of the search list.
Definition at line 170 of file configVariableSearchPath.I.
References DSearchPath::prepend_directory().
|
inline |
Adds all of the directories listed in the search path to the beginning of the search list.
Definition at line 206 of file configVariableSearchPath.I.
References DSearchPath::prepend_path().
|
inline |
Returns the nth directory on the search list.
Definition at line 70 of file configVariableSearchPath.h.
|
inline |
Returns the number of directories on the search list.
Definition at line 70 of file configVariableSearchPath.h.