blob: b7826123adaed17ddda89574bca367680f22281a [file] [log] [blame]
Lucas Eckels9bd90e62012-08-06 15:07:02 -07001#ifndef HEADER_CURL_WILDCARD_H
2#define HEADER_CURL_WILDCARD_H
3/***************************************************************************
4 * _ _ ____ _
5 * Project ___| | | | _ \| |
6 * / __| | | | |_) | |
7 * | (__| |_| | _ <| |___
8 * \___|\___/|_| \_\_____|
9 *
Elliott Hughes1ef06ba2018-05-30 15:43:58 -070010 * Copyright (C) 2010 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al.
Lucas Eckels9bd90e62012-08-06 15:07:02 -070011 *
12 * This software is licensed as described in the file COPYING, which
13 * you should have received as part of this distribution. The terms
Alex Deymod15eaac2016-06-28 14:49:26 -070014 * are also available at https://curl.haxx.se/docs/copyright.html.
Lucas Eckels9bd90e62012-08-06 15:07:02 -070015 *
16 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
17 * copies of the Software, and permit persons to whom the Software is
18 * furnished to do so, under the terms of the COPYING file.
19 *
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
22 *
23 ***************************************************************************/
24
25#include <curl/curl.h>
26
Elliott Hughes82be86d2017-09-20 17:00:17 -070027#include "llist.h"
28
Lucas Eckels9bd90e62012-08-06 15:07:02 -070029/* list of wildcard process states */
30typedef enum {
Elliott Hughes82be86d2017-09-20 17:00:17 -070031 CURLWC_CLEAR = 0,
32 CURLWC_INIT = 1,
Lucas Eckels9bd90e62012-08-06 15:07:02 -070033 CURLWC_MATCHING, /* library is trying to get list of addresses for
34 downloading */
35 CURLWC_DOWNLOADING,
36 CURLWC_CLEAN, /* deallocate resources and reset settings */
37 CURLWC_SKIP, /* skip over concrete file */
38 CURLWC_ERROR, /* error cases */
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070039 CURLWC_DONE /* if is wildcard->state == CURLWC_DONE wildcard loop
40 will end */
Lucas Eckels9bd90e62012-08-06 15:07:02 -070041} curl_wildcard_states;
42
Elliott Hughes1ef06ba2018-05-30 15:43:58 -070043typedef void (*curl_wildcard_dtor)(void *ptr);
Lucas Eckels9bd90e62012-08-06 15:07:02 -070044
45/* struct keeping information about wildcard download process */
46struct WildcardData {
47 curl_wildcard_states state;
48 char *path; /* path to the directory, where we trying wildcard-match */
49 char *pattern; /* wildcard pattern */
Elliott Hughes82be86d2017-09-20 17:00:17 -070050 struct curl_llist filelist; /* llist with struct Curl_fileinfo */
Elliott Hughes1ef06ba2018-05-30 15:43:58 -070051 void *protdata; /* pointer to protocol specific temporary data */
52 curl_wildcard_dtor dtor;
Lucas Eckels9bd90e62012-08-06 15:07:02 -070053 void *customptr; /* for CURLOPT_CHUNK_DATA pointer */
54};
55
56CURLcode Curl_wildcard_init(struct WildcardData *wc);
57void Curl_wildcard_dtor(struct WildcardData *wc);
58
Alex Deymoe3149cc2016-10-05 11:18:42 -070059struct Curl_easy;
Lucas Eckels9bd90e62012-08-06 15:07:02 -070060
61#endif /* HEADER_CURL_WILDCARD_H */