]> sjero.net Git - wget/blob - src/retr.h
Add --show-progress to force display progress bar
[wget] / src / retr.h
1 /* Declarations for retr.c.
2    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3    2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation,
4    Inc.
5
6 This file is part of GNU Wget.
7
8 GNU Wget is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 GNU Wget is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with Wget.  If not, see <http://www.gnu.org/licenses/>.
20
21 Additional permission under GNU GPL version 3 section 7
22
23 If you modify this program, or any covered work, by linking or
24 combining it with the OpenSSL project's OpenSSL library (or a
25 modified version of that library), containing parts covered by the
26 terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
27 grants you additional permission to convey the resulting work.
28 Corresponding Source for a non-source form of such a combination
29 shall include the source code for the parts of OpenSSL used as well
30 as that of the covered work.  */
31
32 #ifndef RETR_H
33 #define RETR_H
34
35 #include "url.h"
36
37 /* These global vars should be made static to retr.c and exported via
38    functions! */
39 extern SUM_SIZE_INT total_downloaded_bytes;
40 extern double total_download_time;
41 extern FILE *output_stream;
42 extern bool output_stream_regular;
43
44 /* Flags for fd_read_body. */
45 enum {
46   rb_read_exactly  = 1,
47   rb_skip_startpos = 2,
48
49   /* Used by HTTP/HTTPS*/
50   rb_chunked_transfer_encoding = 4
51 };
52
53 int fd_read_body (const char *, int, FILE *, wgint, wgint, wgint *, wgint *, double *, int, FILE *);
54
55 typedef const char *(*hunk_terminator_t) (const char *, const char *, int);
56
57 char *fd_read_hunk (int, hunk_terminator_t, long, long);
58 char *fd_read_line (int);
59
60 uerr_t retrieve_url (struct url *, const char *, char **, char **,
61                      const char *, int *, bool, struct iri *, bool);
62 uerr_t retrieve_from_file (const char *, bool, int *);
63
64 const char *retr_rate (wgint, double);
65 double calc_rate (wgint, double, int *);
66 void printwhat (int, int);
67
68 void sleep_between_retrievals (int);
69
70 void rotate_backups (const char *);
71
72 bool url_uses_proxy (struct url *);
73
74 void set_local_file (const char **, const char *);
75
76 bool input_file_url (const char *);
77
78 #endif /* RETR_H */