Open SCAP Library
oval_directives.h
Go to the documentation of this file.
1 
15 /*
16  * Copyright 2011--2014 Red Hat Inc., Durham, North Carolina.
17  * All Rights Reserved.
18  *
19  * This library is free software; you can redistribute it and/or
20  * modify it under the terms of the GNU Lesser General Public
21  * License as published by the Free Software Foundation; either
22  * version 2.1 of the License, or (at your option) any later version.
23  *
24  * This library is distributed in the hope that it will be useful,
25  * but WITHOUT ANY WARRANTY; without even the implied warranty of
26  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
27  * Lesser General Public License for more details.
28  *
29  * You should have received a copy of the GNU Lesser General Public
30  * License along with this library; if not, write to the Free Software
31  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
32  *
33  * Authors:
34  * "David Niemoller" <David.Niemoller@g2-inc.com>
35  */
36 
37 #ifndef OVAL_DIRECTIVES_H_
38 #define OVAL_DIRECTIVES_H_
39 
40 #include "oscap.h"
41 #include "oscap_source.h"
42 #include "oval_types.h"
43 #include "oscap_export.h"
44 
49 typedef enum {
54 
55 
61 
65 OSCAP_API struct oval_directives_model *oval_directives_model_new(void);
69 OSCAP_API void oval_directives_model_free(struct oval_directives_model *);
70 
75 OSCAP_API int oval_directives_model_import_source(struct oval_directives_model *model, struct oscap_source *source);
76 
80 OSCAP_API struct oval_generator *oval_directives_model_get_generator(struct oval_directives_model *);
84 OSCAP_API struct oval_result_directives *oval_directives_model_get_defdirs(struct oval_directives_model *);
88 OSCAP_API struct oval_result_directives *oval_directives_model_get_classdir(struct oval_directives_model *, oval_definition_class_t);
92 OSCAP_API struct oval_result_directives *oval_directives_model_get_new_classdir(struct oval_directives_model *, oval_definition_class_t);
96 OSCAP_API int oval_directives_model_export(struct oval_directives_model *, const char *);
97 
98 
99 
113 OSCAP_API void oval_result_directives_free(struct oval_result_directives *);
118 OSCAP_API void oval_result_directives_set_reported(struct oval_result_directives *, int flag, bool val);
127 OSCAP_API void oval_result_directives_set_included(struct oval_result_directives *, bool);
131 OSCAP_API bool oval_result_directives_get_reported(struct oval_result_directives *, oval_result_t);
135 OSCAP_API bool oval_result_directives_get_included(struct oval_result_directives *);
139 OSCAP_API oval_result_directive_content_t oval_result_directives_get_content(struct oval_result_directives *, oval_result_t);
140 
141 #endif /* OVAL_DIRECTIVES_H_ */
OSCAP_API struct oval_result_directives * oval_result_directives_new(void)
Create new OVAL Results Directives instance.
OSCAP_API void oval_result_directives_set_content(struct oval_result_directives *, int flag, oval_result_directive_content_t)
Configure the depth of infomation.
OSCAP_API void oval_result_directives_set_reported(struct oval_result_directives *, int flag, bool val)
Set (or unset) result types that are intended to be reported.
oval_result_directive_content_t
Values for the directives controlling the expected content of the results file.
Definition: oval_directives.h:49
OSCAP_API int oval_directives_model_import_source(struct oval_directives_model *model, struct oscap_source *source)
Import the data from oscap_source to the directives model.
@ OVAL_DIRECTIVE_CONTENT_THIN
Only the minimal amount of information will be provided.
Definition: oval_directives.h:51
@ OVAL_DIRECTIVE_CONTENT_FULL
Very detailed information will be provided allowing in-depth reports to be generated from the results...
Definition: oval_directives.h:52
@ OVAL_DIRECTIVE_CONTENT_UNKNOWN
Undefined value.
Definition: oval_directives.h:50
oval_result_t
Result values for the evaluation of an OVAL Definition or an OVAL Test.
Definition: oval_types.h:445
General OpenScap functions and types.
oval_definition_class_t
Definition: oval_types.h:471
Definition: oscap_source.c:66
This structure holds instance of OVAL Directives.
Definition: oval_generator.c:47
This structure holds instance of either OVAL Default Directives or OVAL Class directives.