2011-10-05 14:16:16 -04:00
|
|
|
#ifndef HEADER_CURL_TOOL_URLGLOB_H
|
|
|
|
#define HEADER_CURL_TOOL_URLGLOB_H
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2005-11-10 17:11:01 -05:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2013-08-15 07:05:25 -04:00
|
|
|
* Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2005-11-10 17:11:01 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2012-04-06 17:35:15 -04:00
|
|
|
#include "tool_setup.h"
|
2011-09-14 05:27:12 -04:00
|
|
|
|
2004-03-08 07:51:33 -05:00
|
|
|
typedef enum {
|
2011-10-05 14:16:16 -04:00
|
|
|
UPTSet = 1,
|
2004-03-08 07:51:33 -05:00
|
|
|
UPTCharRange,
|
|
|
|
UPTNumRange
|
|
|
|
} URLPatternType;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
URLPatternType type;
|
2013-08-15 07:05:25 -04:00
|
|
|
int globindex; /* the number of this particular glob or -1 if not used
|
|
|
|
within {} or [] */
|
1999-12-29 09:20:26 -05:00
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
char **elements;
|
2013-08-15 07:05:25 -04:00
|
|
|
int size;
|
|
|
|
int ptr_s;
|
1999-12-29 09:20:26 -05:00
|
|
|
} Set;
|
|
|
|
struct {
|
2011-10-05 14:16:16 -04:00
|
|
|
char min_c;
|
|
|
|
char max_c;
|
1999-12-29 09:20:26 -05:00
|
|
|
char ptr_c;
|
2005-11-10 17:11:01 -05:00
|
|
|
int step;
|
1999-12-29 09:20:26 -05:00
|
|
|
} CharRange;
|
|
|
|
struct {
|
2013-08-15 07:05:25 -04:00
|
|
|
unsigned long min_n;
|
|
|
|
unsigned long max_n;
|
|
|
|
int padlength;
|
|
|
|
unsigned long ptr_n;
|
|
|
|
unsigned long step;
|
1999-12-29 09:20:26 -05:00
|
|
|
} NumRange ;
|
|
|
|
} content;
|
|
|
|
} URLPattern;
|
|
|
|
|
2012-08-07 07:45:59 -04:00
|
|
|
/* the total number of globs supported */
|
2013-08-15 07:05:25 -04:00
|
|
|
#define GLOB_PATTERN_NUM 100
|
2012-08-07 07:45:59 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
typedef struct {
|
2013-08-15 07:05:25 -04:00
|
|
|
URLPattern pattern[GLOB_PATTERN_NUM];
|
2004-03-23 04:12:51 -05:00
|
|
|
size_t size;
|
|
|
|
size_t urllen;
|
2000-12-06 05:10:31 -05:00
|
|
|
char *glob_buffer;
|
2001-01-08 02:37:44 -05:00
|
|
|
char beenhere;
|
2013-09-06 17:27:47 -04:00
|
|
|
const char *error; /* error message */
|
|
|
|
size_t pos; /* column position of error or 0 */
|
1999-12-29 09:20:26 -05:00
|
|
|
} URLGlob;
|
|
|
|
|
2013-08-15 07:05:25 -04:00
|
|
|
int glob_url(URLGlob**, char*, unsigned long *, FILE *);
|
2011-10-05 16:01:42 -04:00
|
|
|
int glob_next_url(char **, URLGlob *);
|
|
|
|
int glob_match_url(char **, char*, URLGlob *);
|
2000-11-21 04:38:41 -05:00
|
|
|
void glob_cleanup(URLGlob* glob);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2011-10-05 14:16:16 -04:00
|
|
|
#endif /* HEADER_CURL_TOOL_URLGLOB_H */
|
|
|
|
|