39 #include "oscap_reference.h"
44 #if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)
45 # define OSCAP_DEPRECATED(func) func __attribute__ ((deprecated))
46 #elif defined(_MSC_VER)
47 # define OSCAP_DEPRECATED(func) __declspec(deprecated) func
49 # pragma message("WARNING: You need to implement OSCAP_DEPRECATED for this compiler---in order to get deprecation warnings.")
50 # define OSCAP_DEPRECATED(func) func
112 typedef int (*xml_reporter)(
const char *file,
int line,
const char *msg,
void *arg);
158 int oscap_apply_xslt(
const char *xmlfile,
const char *xsltfile,
const char *outfile,
const char **params);
const char * oscap_path_to_cpe(void)
Function returns path used to locate OpenSCAP Default CPE files.
Definition: oscapxml.c:94
Definition: reporter.c:31
int oscap_apply_xslt(const char *xmlfile, const char *xsltfile, const char *outfile, const char **params)
Apply a XSLT stylesheet to a XML file.
Definition: oscapxml.c:561
OVAL results file.
Definition: oscap.h:88
const char * oscap_document_type_to_string(oscap_document_type_t type)
Convert oscap_document_type_t constant to human readable (english) representation.
Definition: oscapxml.c:641
const char * oscap_path_to_schemas(void)
Function returns path used to locate OpenSCAP XML schemas.
Definition: oscapxml.c:78
#define OSCAP_DEPRECATED(func)
This macro will warn, when a deprecated function is used.
Definition: oscap.h:50
OVAL Variables.
Definition: oscap.h:86
Source Data Stream file.
Definition: oscap.h:95
void oscap_cleanup(void)
Release library internal caches.
Definition: oscapxml.c:105
CVE NVD feed.
Definition: oscap.h:93
CPE dictionary file.
Definition: oscap.h:92
OVAL system characteristics file.
Definition: oscap.h:87
int oscap_validate_document(const char *xmlfile, oscap_document_type_t doctype, const char *version, xml_reporter reporter, void *arg)
Validate a SCAP document file against a XML schema.
Definition: oscapxml.c:302
OVAL Definitions file.
Definition: oscap.h:85
enum oscap_document_type oscap_document_type_t
SCAP document type identifiers.
SCE result file.
Definition: oscap.h:94
int oscap_schematron_validate_document(const char *xmlfile, oscap_document_type_t doctype, const char *version, const char *outfile)
Validate a SCAP document file against schematron rules.
Definition: oscapxml.c:522
void oscap_init(void)
Initialize OpenSCAP library.
Definition: oscapxml.c:98
CPE language file.
Definition: oscap.h:91
Multilingual text processing interface.
OVAL directives file.
Definition: oscap.h:89
Result Data Stream file.
Definition: oscap.h:96
oscap_document_type
SCAP document type identifiers.
Definition: oscap.h:84
XCCDF tailoring file.
Definition: oscap.h:97
XCCDF benchmark file.
Definition: oscap.h:90
const char * oscap_path_to_schematron(void)
Function returns path used to locate OpenSCAP Schematron files.
Definition: oscapxml.c:92
const char * oscap_get_version(void)
Get version of the OpenSCAP library.
Definition: oscapxml.c:112
int oscap_determine_document_type(const char *document, oscap_document_type_t *doc_type)
Determine document type.
Definition: oscapxml.c:566