Open SCAP Library
ds_sds_session_priv.h
1 /*
2  * Copyright 2014 Red Hat Inc., Durham, North Carolina.
3  * All Rights Reserved.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18  *
19  *
20  */
21 #ifndef OSCAP_DS_SDS_SESSION_PRIV_H
22 #define OSCAP_DS_SDS_SESSION_PRIV_H
23 
24 #ifdef HAVE_CONFIG_H
25 #include <config.h>
26 #endif
27 
28 #include "common/public/oscap.h"
29 #include "common/util.h"
30 #include "DS/public/scap_ds.h"
31 #include "DS/public/ds_sds_session.h"
32 #include <libxml/tree.h>
33 
34 
35 xmlNode *ds_sds_session_get_selected_datastream(struct ds_sds_session *session);
36 xmlDoc *ds_sds_session_get_xmlDoc(struct ds_sds_session *session);
37 int ds_sds_session_register_component_source(struct ds_sds_session *session, const char *relative_filepath, struct oscap_source *component);
38 const char *ds_sds_session_get_target_dir(struct ds_sds_session *session);
39 struct oscap_htable *ds_sds_session_get_component_sources(struct ds_sds_session *session);
40 struct oscap_htable *ds_sds_session_get_component_uris(struct ds_sds_session *session);
41 const char *ds_sds_session_get_readable_origin(const struct ds_sds_session *session);
42 bool ds_sds_session_fetch_remote_resources(struct ds_sds_session *session);
43 const char *ds_sds_session_local_files(struct ds_sds_session *session);
44 download_progress_calllback_t ds_sds_session_remote_resources_progress(struct ds_sds_session *session);
45 
46 void download_progress_empty_calllback(bool warning, const char * format, ...);
47 #endif
General OpenScap functions and types.
Open-scap Data Stream interface.
Definition: ds_sds_session.c:46
Definition: list.h:179
Definition: oscap_source.c:66