]> sjero.net Git - wget/blob - src/wget.h
[svn] Rename LARGE_INT to SUM_SIZE_INT, and simplify its handling.
[wget] / src / wget.h
1 /* Miscellaneous declarations.
2    Copyright (C) 1995, 1996, 1997, 1998, 2003 Free Software Foundation, Inc.
3
4 This file is part of GNU Wget.
5
6 GNU Wget is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 GNU Wget is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Wget; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 In addition, as a special exception, the Free Software Foundation
21 gives permission to link the code of its release of Wget with the
22 OpenSSL project's "OpenSSL" library (or with modified versions of it
23 that use the same license as the "OpenSSL" library), and distribute
24 the linked executables.  You must obey the GNU General Public License
25 in all respects for all of the code used other than "OpenSSL".  If you
26 modify this file, you may extend this exception to your version of the
27 file, but you are not obligated to do so.  If you do not wish to do
28 so, delete this exception statement from your version.  */
29
30 /* This file contains declarations that are universally useful and
31    those that don't fit elsewhere.  It also includes sysdep.h which
32    includes some often-needed system includes, like the obnoxious
33    <time.h> inclusion.  */
34
35 #ifndef WGET_H
36 #define WGET_H
37
38 /* Disable assertions when debug support is not compiled in. */
39 #ifndef ENABLE_DEBUG
40 # define NDEBUG
41 #endif
42
43 /* `gettext (FOO)' is long to write, so we use `_(FOO)'.  If NLS is
44    unavailable, _(STRING) simply returns STRING.  */
45 #ifdef HAVE_NLS
46 # define _(string) gettext (string)
47 # ifdef HAVE_LIBINTL_H
48 #  include <libintl.h>
49 # else  /* not HAVE_LIBINTL_H */
50    const char *gettext ();
51 # endif /* not HAVE_LIBINTL_H */
52 #else  /* not HAVE_NLS */
53 # define _(string) (string)
54 #endif /* not HAVE_NLS */
55
56 /* A pseudo function call that serves as a marker for the automated
57    extraction of messages, but does not call gettext().  The run-time
58    translation is done at a different place in the code.  The purpose
59    of the N_("...") call is to make the message snarfer aware that the
60    "..." string needs to be translated.  STRING should be a string
61    literal.  Concatenated strings and other string expressions won't
62    work.  The macro's expansion is not parenthesized, so that it is
63    suitable as initializer for static 'char[]' or 'const char[]'
64    variables.  -- explanation partly taken from GNU make.  */
65 #define N_(string) string
66
67 /* I18N NOTE: You will notice that none of the DEBUGP messages are
68    marked as translatable.  This is intentional, for a few reasons:
69
70    1) The debug messages are not meant for the users to look at, but
71    for the developers; as such, they should be considered more like
72    source comments than real program output.
73
74    2) The messages are numerous, and yet they are random and frivolous
75    ("double yuck!" and such).  There would be a lot of work with no
76    gain.
77
78    3) Finally, the debug messages are meant to be a clue for me to
79    debug problems with Wget.  If I get them in a language I don't
80    understand, debugging will become a new challenge of its own!  */
81
82
83 /* Include these, so random files need not include them.  */
84 #include "sysdep.h"
85 /* locale independent replacement for ctype.h */
86 #include "safe-ctype.h"
87
88 /* Conditionalize the use of GCC's __attribute__((format)) and
89    __builtin_expect features using macros.  */
90
91 #if defined(__GNUC__) && __GNUC__ >= 3
92 # define GCC_FORMAT_ATTR(a, b) __attribute__ ((format (printf, a, b)))
93 # define LIKELY(exp)   __builtin_expect (!!(exp), 1)
94 # define UNLIKELY(exp) __builtin_expect ((exp), 0)
95 #else
96 # define GCC_FORMAT_ATTR(a, b)
97 # define LIKELY(exp)   (exp)
98 # define UNLIKELY(exp) (exp)
99 #endif
100
101 /* Execute the following statement if debugging is both enabled at
102    compile-time and requested at run-time; a no-op otherwise.  */
103
104 #ifdef ENABLE_DEBUG
105 # define IF_DEBUG if (UNLIKELY (opt.debug))
106 #else
107 # define IF_DEBUG if (0)
108 #endif
109
110 #define DEBUGP(x) do { IF_DEBUG { debug_logprintf x; } } while (0)
111
112 /* Define an integer type that works for file sizes, content lengths,
113    and such.  Normally we could just use off_t, but off_t is always
114    32-bit on Windows.  */
115
116 #ifndef WINDOWS
117 typedef off_t wgint;
118 # define SIZEOF_WGINT SIZEOF_OFF_T
119 #endif
120
121 /* Define a strtol/strtoll clone that works with wgint.  */
122 #ifndef str_to_wgint            /* mswindows.h defines its own alias */
123 # if SIZEOF_WGINT == SIZEOF_LONG
124 #  define str_to_wgint strtol
125 #  define WGINT_MAX LONG_MAX
126 # else
127 #  define str_to_wgint strtoll
128 #  define WGINT_MAX LLONG_MAX
129 # endif
130 #endif
131
132 /* Now define a large integral type useful for storing sizes of *sums*
133    of downloads, such as the value of the --quota option.  This should
134    be a type able to hold 2G+ values even on systems without large
135    file support.  (It is useful to limit Wget's download quota to say
136    10G even if a single file cannot be that large.)
137
138    To make sure we get the largest size possible, we use `double' on
139    systems without a 64-bit integral type.  (Since it is used in very
140    few places in Wget, this is acceptable.)  */
141
142 #if SIZEOF_WGINT >= 8
143 /* just use wgint, which we already know how to print */
144 typedef wgint SUM_SIZE_INT;
145 # define with_thousand_seps_sum with_thousand_seps
146 #else
147 /* On systems without LFS, use double, which buys us integers up to 2^53. */
148 typedef double SUM_SIZE_INT;
149 #endif
150
151 #include "options.h"
152
153 /* Everything uses this, so include them here directly.  */
154 #include "xmalloc.h"
155
156 /* Likewise for logging functions.  */
157 #include "log.h"
158 \f
159 /* Useful macros used across the code: */
160
161 /* The number of elements in an array.  For example:
162    static char a[] = "foo";     -- countof(a) == 4 (note terminating \0)
163    int a[5] = {1, 2};           -- countof(a) == 5
164    char *a[] = {                -- countof(a) == 3
165      "foo", "bar", "baz"
166    }; */
167 #define countof(array) (sizeof (array) / sizeof ((array)[0]))
168
169 /* Zero out a value.  */
170 #define xzero(x) memset (&(x), '\0', sizeof (x))
171
172 /* Convert an ASCII hex digit to the corresponding number between 0
173    and 15.  H should be a hexadecimal digit that satisfies isxdigit;
174    otherwise, the result is undefined.  */
175 #define XDIGIT_TO_NUM(h) ((h) < 'A' ? (h) - '0' : TOUPPER (h) - 'A' + 10)
176 #define X2DIGITS_TO_NUM(h1, h2) ((XDIGIT_TO_NUM (h1) << 4) + XDIGIT_TO_NUM (h2))
177
178 /* The reverse of the above: convert a number in the [0, 16) range to
179    the ASCII representation of the corresponding hexadecimal digit.
180    `+ 0' is there so you can't accidentally use it as an lvalue.  */
181 #define XNUM_TO_DIGIT(x) ("0123456789ABCDEF"[x] + 0)
182 #define XNUM_TO_digit(x) ("0123456789abcdef"[x] + 0)
183
184 /* Copy the data delimited with BEG and END to alloca-allocated
185    storage, and zero-terminate it.  Arguments are evaluated only once,
186    in the order BEG, END, PLACE.  */
187 #define BOUNDED_TO_ALLOCA(beg, end, place) do { \
188   const char *BTA_beg = (beg);                  \
189   int BTA_len = (end) - BTA_beg;                \
190   char **BTA_dest = &(place);                   \
191   *BTA_dest = alloca (BTA_len + 1);             \
192   memcpy (*BTA_dest, BTA_beg, BTA_len);         \
193   (*BTA_dest)[BTA_len] = '\0';                  \
194 } while (0)
195
196 /* Return non-zero if string bounded between BEG and END is equal to
197    STRING_LITERAL.  The comparison is case-sensitive.  */
198 #define BOUNDED_EQUAL(beg, end, string_literal)                         \
199   ((end) - (beg) == sizeof (string_literal) - 1                         \
200    && !memcmp (beg, string_literal, sizeof (string_literal) - 1))
201
202 /* The same as above, except the comparison is case-insensitive. */
203 #define BOUNDED_EQUAL_NO_CASE(beg, end, string_literal)                 \
204   ((end) - (beg) == sizeof (string_literal) - 1                         \
205    && !strncasecmp (beg, string_literal, sizeof (string_literal) - 1))
206
207 /* Like ptr=strdup(str), but allocates the space for PTR on the stack.
208    This cannot be an expression because this is not portable:
209      #define STRDUP_ALLOCA(str) (strcpy (alloca (strlen (str) + 1), str))
210    The problem is that some compilers can't handle alloca() being an
211    argument to a function.  */
212
213 #define STRDUP_ALLOCA(ptr, str) do {                    \
214   char **SA_dest = &(ptr);                              \
215   const char *SA_src = (str);                           \
216   *SA_dest = (char *)alloca (strlen (SA_src) + 1);      \
217   strcpy (*SA_dest, SA_src);                            \
218 } while (0)
219
220 /* Generally useful if you want to avoid arbitrary size limits but
221    don't need a full dynamic array.  Assumes that BASEVAR points to a
222    malloced array of TYPE objects (or possibly a NULL pointer, if
223    SIZEVAR is 0), with the total size stored in SIZEVAR.  This macro
224    will realloc BASEVAR as necessary so that it can hold at least
225    NEEDED_SIZE objects.  The reallocing is done by doubling, which
226    ensures constant amortized time per element.  */
227
228 #define DO_REALLOC(basevar, sizevar, needed_size, type) do {            \
229   long DR_needed_size = (needed_size);                                  \
230   long DR_newsize = 0;                                                  \
231   while ((sizevar) < (DR_needed_size)) {                                \
232     DR_newsize = sizevar << 1;                                          \
233     if (DR_newsize < 16)                                                \
234       DR_newsize = 16;                                                  \
235     (sizevar) = DR_newsize;                                             \
236   }                                                                     \
237   if (DR_newsize)                                                       \
238     basevar = xrealloc (basevar, DR_newsize * sizeof (type));           \
239 } while (0)
240
241 /* Used to print pointers (usually for debugging).  Print pointers
242    using printf ("%0*lx", PTR_FORMAT (p)).  (%p is too unpredictable;
243    some implementations prepend 0x, while some don't, and most don't
244    0-pad the address.)  */
245 #define PTR_FORMAT(p) 2 * sizeof (void *), (unsigned long) (p)
246
247 extern const char *exec_name;
248 \f
249 /* Document type ("dt") flags */
250 enum
251 {
252   TEXTHTML             = 0x0001,        /* document is of type text/html
253                                            or application/xhtml+xml */
254   RETROKF              = 0x0002,        /* retrieval was OK */
255   HEAD_ONLY            = 0x0004,        /* only send the HEAD request */
256   SEND_NOCACHE         = 0x0008,        /* send Pragma: no-cache directive */
257   ACCEPTRANGES         = 0x0010,        /* Accept-ranges header was found */
258   ADDED_HTML_EXTENSION = 0x0020         /* added ".html" extension due to -E */
259 };
260
261 /* Universal error type -- used almost everywhere.  Error reporting of
262    this detail is not generally used or needed and should be
263    simplified.  */
264 typedef enum
265 {
266   NOCONERROR, HOSTERR, CONSOCKERR, CONERROR, CONSSLERR,
267   CONIMPOSSIBLE, NEWLOCATION, NOTENOUGHMEM, CONPORTERR,
268   CONCLOSED, FTPOK, FTPLOGINC, FTPLOGREFUSED, FTPPORTERR, FTPSYSERR,
269   FTPNSFOD, FTPRETROK, FTPUNKNOWNTYPE, FTPRERR,
270   FTPREXC, FTPSRVERR, FTPRETRINT, FTPRESTFAIL, URLERROR,
271   FOPENERR, FOPEN_EXCL_ERR, FWRITEERR, HOK, HLEXC, HEOF,
272   HERR, RETROK, RECLEVELEXC, FTPACCDENIED, WRONGCODE,
273   FTPINVPASV, FTPNOPASV,
274   CONTNOTSUPPORTED, RETRUNNEEDED, RETRFINISHED, READERR, TRYLIMEXC,
275   URLBADPATTERN, FILEBADFILE, RANGEERR, RETRBADPATTERN,
276   RETNOTSUP, ROBOTSOK, NOROBOTS, PROXERR, AUTHFAILED,
277   QUOTEXC, WRITEFAILED, SSLINITFAILED
278 } uerr_t;
279
280 #endif /* WGET_H */