Open SCAP Library
oscap_acquire.h
1 /*
2  * Copyright 2012 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  */
20 
21 #ifndef OSCAP_ACQUIRE_H_
22 #define OSCAP_ACQUIRE_H_
23 
24 #include "util.h"
25 #include <stdbool.h>
26 
27 OSCAP_HIDDEN_START;
28 
37 char *oscap_acquire_temp_dir(void);
38 
43 void oscap_acquire_cleanup_dir(char **dir_path);
44 
54 int oscap_acquire_temp_file(const char *dir, const char *template, char **filename);
55 
62 char *oscap_acquire_url_download(const char *temp_dir, const char *url);
63 
69 bool oscap_acquire_url_is_supported(const char *url);
70 
76 char *oscap_acquire_url_to_filename(const char *url);
77 
78 // FIXME: SCE engine uses this particular function
79 OSCAP_HIDDEN_END;
80 
87 char *oscap_acquire_pipe_to_string(int fd);
88 
89 OSCAP_HIDDEN_START;
90 
91 OSCAP_HIDDEN_END;
92 
93 #endif