curl/src/tool_urlglob.h

78 lines
2.2 KiB
C
Raw Permalink Normal View History

#ifndef HEADER_CURL_TOOL_URLGLOB_H
#define HEADER_CURL_TOOL_URLGLOB_H
2002-09-03 07:52:59 -04:00
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
1999-12-29 09:20:26 -05:00
* \___|\___/|_| \_\_____|
*
* Copyright (C) 1998 - 2016, 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 https://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
*
2002-09-03 07:52:59 -04:00
***************************************************************************/
#include "tool_setup.h"
2004-03-08 07:51:33 -05:00
typedef enum {
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;
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;
int size;
int ptr_s;
1999-12-29 09:20:26 -05:00
} Set;
struct {
char min_c;
char max_c;
1999-12-29 09:20:26 -05:00
char ptr_c;
int step;
1999-12-29 09:20:26 -05:00
} CharRange;
struct {
unsigned long min_n;
unsigned long max_n;
int padlength;
unsigned long ptr_n;
unsigned long step;
} NumRange;
1999-12-29 09:20:26 -05:00
} content;
} URLPattern;
/* the total number of globs supported */
#define GLOB_PATTERN_NUM 100
1999-12-29 09:20:26 -05:00
typedef struct {
URLPattern pattern[GLOB_PATTERN_NUM];
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;
const char *error; /* error message */
size_t pos; /* column position of error or 0 */
1999-12-29 09:20:26 -05:00
} URLGlob;
CURLcode glob_url(URLGlob**, char *, unsigned long *, FILE *);
CURLcode glob_next_url(char **, URLGlob *);
CURLcode 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
#endif /* HEADER_CURL_TOOL_URLGLOB_H */