1999-12-29 09:20:26 -05:00
|
|
|
#ifndef __URLGLOB_H
|
|
|
|
#define __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
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2009-05-18 08:25:45 -04:00
|
|
|
* Copyright (C) 1998 - 2009, 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
|
|
|
***************************************************************************/
|
2004-03-08 07:51:33 -05:00
|
|
|
typedef enum {
|
|
|
|
UPTSet=1,
|
|
|
|
UPTCharRange,
|
|
|
|
UPTNumRange
|
|
|
|
} URLPatternType;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
URLPatternType type;
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
char **elements;
|
|
|
|
short size;
|
|
|
|
short ptr_s;
|
|
|
|
} Set;
|
|
|
|
struct {
|
|
|
|
char min_c, max_c;
|
|
|
|
char ptr_c;
|
2005-11-10 17:11:01 -05:00
|
|
|
int step;
|
1999-12-29 09:20:26 -05:00
|
|
|
} CharRange;
|
|
|
|
struct {
|
|
|
|
int min_n, max_n;
|
|
|
|
short padlength;
|
|
|
|
int ptr_n;
|
2005-11-10 17:11:01 -05:00
|
|
|
int step;
|
1999-12-29 09:20:26 -05:00
|
|
|
} NumRange ;
|
|
|
|
} content;
|
|
|
|
} URLPattern;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
char* literal[10];
|
|
|
|
URLPattern pattern[9];
|
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;
|
2004-03-08 07:47:37 -05:00
|
|
|
char errormsg[80]; /* error message buffer */
|
1999-12-29 09:20:26 -05:00
|
|
|
} URLGlob;
|
|
|
|
|
2003-06-10 05:42:22 -04:00
|
|
|
int glob_url(URLGlob**, char*, int *, FILE *);
|
|
|
|
char* glob_next_url(URLGlob*);
|
2005-11-10 17:11:01 -05:00
|
|
|
char* glob_match_url(char*, URLGlob *);
|
2000-11-21 04:38:41 -05:00
|
|
|
void glob_cleanup(URLGlob* glob);
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
#endif
|