Open SCAP Library
|
An oval variable resolves an oval_value stream which specifies constraints for oval_objects and oval_states.
#include <oval_definitions.h>
Public Member Functions | |
struct oval_variable * | oval_variable_new (struct oval_definition_model *model, const char *id, oval_variable_type_t type) |
Construct new instance of oval_variable. More... | |
struct oval_variable * | oval_variable_clone (struct oval_definition_model *new_model, struct oval_variable *old_variable) |
Clone instance of oval_variable and add it to the specified oval_definition_model. More... | |
void | oval_variable_free (struct oval_variable *) |
Free instance of oval_variable. | |
Setters | |
void | oval_variable_set_comment (struct oval_variable *, char *comment) |
set attribute oval_variable->comment. More... | |
void | oval_variable_set_version (struct oval_variable *, int version) |
set attribute oval_variable->version. More... | |
void | oval_variable_set_deprecated (struct oval_variable *, bool deprecated) |
set attribute oval_variable->deprecated. More... | |
void | oval_variable_set_datatype (struct oval_variable *, oval_datatype_t) |
set attribute oval_variable->datatype. More... | |
void | oval_variable_add_value (struct oval_variable *, struct oval_value *) |
Append an instance of Oval_value to the attribute Oval_constant->values. More... | |
void | oval_variable_add_possible_value (struct oval_variable *variable, struct oval_variable_possible_value *pv) |
Add a new possible value to an external variable. More... | |
void | oval_variable_add_possible_restriction (struct oval_variable *variable, struct oval_variable_possible_restriction *pr) |
Add a new possible restriction to an external variable. More... | |
void | oval_variable_set_component (struct oval_variable *, struct oval_component *component) |
Bind an instance of Oval_component to the attribute Oval_local->component. More... | |
Getters | |
char * | oval_variable_get_id (struct oval_variable *) |
Returns attribute oval_variable->id. More... | |
char * | oval_variable_get_comment (struct oval_variable *) |
Returns attribute oval_variable->comment. More... | |
int | oval_variable_get_version (struct oval_variable *) |
Returns attribute oval_variable->version. | |
bool | oval_variable_get_deprecated (struct oval_variable *) |
Returns attribute oval_variable->deprecated. | |
oval_variable_type_t | oval_variable_get_type (struct oval_variable *) |
Returns attribute oval_variable->type. | |
oval_datatype_t | oval_variable_get_datatype (struct oval_variable *) |
Returns attribute oval_variable->datatype. | |
struct oval_value_iterator * | oval_variable_get_values (struct oval_variable *) |
Returns attribute Oval_external/Oval_constant->values. More... | |
struct oval_component * | oval_variable_get_component (struct oval_variable *) |
Returns attribute Oval_local->component. More... | |
struct oval_iterator * | oval_variable_get_possible_values (struct oval_variable *variable) |
Get list of allowed values for an external variable. More... | |
struct oval_iterator * | oval_variable_get_possible_restrictions (struct oval_variable *variable) |
Get list of constraints for an external variable. More... | |
const char * | oval_component_type_get_text (oval_component_type_t type) |
Returns attribute Oval_component_type->text. | |
Data Fields | |
VAR_BASE | |