Open SCAP Library
oval_variables.h
Go to the documentation of this file.
1 
14 /*
15  * Copyright 2009-2014 Red Hat Inc., Durham, North Carolina.
16  * All Rights Reserved.
17  *
18  * This library is free software; you can redistribute it and/or
19  * modify it under the terms of the GNU Lesser General Public
20  * License as published by the Free Software Foundation; either
21  * version 2.1 of the License, or (at your option) any later version.
22  *
23  * This library is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
26  * Lesser General Public License for more details.
27  *
28  * You should have received a copy of the GNU Lesser General Public
29  * License along with this library; if not, write to the Free Software
30  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31  *
32  * Authors:
33  * "David Niemoller" <David.Niemoller@g2-inc.com>
34  */
35 
36 #ifndef OVAL_VARIABLES_H_
37 #define OVAL_VARIABLES_H_
38 
39 #include "oval_types.h"
40 #include "oscap.h"
41 #include "oscap_source.h"
42 #include "oscap_export.h"
43 
48 OSCAP_API struct oval_variable_model *oval_variable_model_new(void);
49 
57 
69 OSCAP_API void oval_variable_model_free(struct oval_variable_model *);
74 OSCAP_API int oval_variable_model_export (struct oval_variable_model *, const char *file);
75 
76 
81 OSCAP_API void oval_variable_model_set_generator(struct oval_variable_model *model, struct oval_generator *generator);
89 OSCAP_API void oval_variable_model_add(struct oval_variable_model *model, char *varid, const char *comment, oval_datatype_t datatype, char *value);
96 OSCAP_API struct oval_generator *oval_variable_model_get_generator(struct oval_variable_model *model);
103 
110 OSCAP_API bool oval_variable_model_has_variable(struct oval_variable_model *model, const char * id);
126 OSCAP_API const char *oval_variable_model_get_comment (struct oval_variable_model *, char *);
173 #endif /* OVAL_VARIABLES_H_ */
174 
175 
oval_variable_model_iterator::oval_variable_model_iterator_free
OSCAP_API void oval_variable_model_iterator_free(struct oval_variable_model_iterator *)
Free iterator.
Definition: oval_varModel.c:95
oscap_source
Definition: oscap_source.c:66
oval_variable_model::oval_variable_model_new
OSCAP_API struct oval_variable_model * oval_variable_model_new(void)
Create a new empty OVAL variable model.
Definition: oval_varModel.c:116
oscap.h
oval_string_iterator
oval_generator
Definition: oval_generator.c:47
oval_types.h
oval_variable_model_iterator
oval_variable_model_iterator::oval_variable_model_iterator_next
OSCAP_API struct oval_variable_model * oval_variable_model_iterator_next(struct oval_variable_model_iterator *)
Returns next instance of oval_variable_model.
Definition: oval_varModel.c:90
oval_datatype_t
oval_datatype_t
Datatypes.
Definition: oval_definitions.h:149
oval_variable_model::oval_variable_model_get_variable_ids
OSCAP_API struct oval_string_iterator * oval_variable_model_get_variable_ids(struct oval_variable_model *)
Get all external variables managed by a specified oval_variable_model.
Definition: oval_varModel.c:406
oval_variable_model::oval_variable_model_free
OSCAP_API void oval_variable_model_free(struct oval_variable_model *)
Free memory allocated to a specified oval_variable_model.
Definition: oval_varModel.c:148
oval_variable_model::oval_variable_model_add
OSCAP_API void oval_variable_model_add(struct oval_variable_model *model, char *varid, const char *comment, oval_datatype_t datatype, char *value)
Get the values bound to a specified external variable.
Definition: oval_varModel.c:169
oval_variable_model::oval_variable_model_has_variable
OSCAP_API bool oval_variable_model_has_variable(struct oval_variable_model *model, const char *id)
Return true if variable with ID is present in variable model, false otherwise.
Definition: oval_varModel.c:392
oval_variable_model_iterator::oval_variable_model_iterator_has_more
OSCAP_API bool oval_variable_model_iterator_has_more(struct oval_variable_model_iterator *)
Returns true if iterator not exhausted.
Definition: oval_varModel.c:85
oval_variable_model::oval_variable_model_clone
OSCAP_API struct oval_variable_model * oval_variable_model_clone(struct oval_variable_model *)
Clone an OVAL variable model.
Definition: oval_varModel.c:126
oval_value_iterator
Definition: oval_definitions.h:447
oval_variable_model::oval_variable_model_export
OSCAP_API int oval_variable_model_export(struct oval_variable_model *, const char *file)
Export the specified oval_variable_model into file.
Definition: oval_varModel.c:375
oval_variable_model
Definition: oval_varModel.c:56
oval_variable_model::oval_variable_model_get_comment
const OSCAP_API char * oval_variable_model_get_comment(struct oval_variable_model *, char *)
Get a specified external variable comment.
Definition: oval_varModel.c:419
oval_variable_model::oval_variable_model_import_source
OSCAP_API struct oval_variable_model * oval_variable_model_import_source(struct oscap_source *source)
Import the content from the oscap_source into a new oval_variable_model.
Definition: oval_varModel.c:302
oval_variable_model::oval_variable_model_get_values
OSCAP_API struct oval_value_iterator * oval_variable_model_get_values(struct oval_variable_model *, char *)
Get the values bound to a specified external variable.
Definition: oval_varModel.c:426
oval_variable_model::oval_variable_model_get_datatype
OSCAP_API oval_datatype_t oval_variable_model_get_datatype(struct oval_variable_model *, char *)
Get a specified external variable datatype.
Definition: oval_varModel.c:411