curl/src/urlglob.h

69 lines
1.8 KiB
C
Raw Normal View History

1999-12-29 09:20:26 -05:00
#ifndef __URLGLOB_H
#define __URLGLOB_H
2002-09-03 07:52:59 -04:00
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
1999-12-29 09:20:26 -05:00
* \___|\___/|_| \_\_____|
*
* Copyright (C) 1998 - 2005, 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.
*
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
*
2001-01-03 04:29:33 -05:00
* $Id$
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;
int step;
1999-12-29 09:20:26 -05:00
} CharRange;
struct {
int min_n, max_n;
short padlength;
int ptr_n;
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;
char *glob_buffer;
2001-01-08 02:37:44 -05:00
char beenhere;
char errormsg[80]; /* error message buffer */
1999-12-29 09:20:26 -05:00
} URLGlob;
int glob_url(URLGlob**, char*, int *, FILE *);
char* glob_next_url(URLGlob*);
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