blob: 8ba0989b4a62cbd07551263b56755f0192e787d6 [file] [log] [blame]
Lucas Eckels9bd90e62012-08-06 15:07:02 -07001/***************************************************************************
2 * _ _ ____ _
3 * Project ___| | | | _ \| |
4 * / __| | | | |_) | |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
7 *
Elliott Hughes1ef06ba2018-05-30 15:43:58 -07008 * Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al.
Lucas Eckels9bd90e62012-08-06 15:07:02 -07009 *
10 * This software is licensed as described in the file COPYING, which
11 * you should have received as part of this distribution. The terms
Alex Deymo8f1a2142016-06-28 14:49:26 -070012 * are also available at https://curl.haxx.se/docs/copyright.html.
Lucas Eckels9bd90e62012-08-06 15:07:02 -070013 *
14 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15 * copies of the Software, and permit persons to whom the Software is
16 * furnished to do so, under the terms of the COPYING file.
17 *
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
20 *
21 ***************************************************************************/
22
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070023#include "curl_setup.h"
24
Lucas Eckels9bd90e62012-08-06 15:07:02 -070025#include "wildcard.h"
26#include "llist.h"
27#include "fileinfo.h"
Alex Deymo8f1a2142016-06-28 14:49:26 -070028/* The last 3 #include files should be in this order */
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070029#include "curl_printf.h"
Lucas Eckels9bd90e62012-08-06 15:07:02 -070030#include "curl_memory.h"
Lucas Eckels9bd90e62012-08-06 15:07:02 -070031#include "memdebug.h"
32
Elliott Hughes1ef06ba2018-05-30 15:43:58 -070033static void fileinfo_dtor(void *user, void *element)
34{
35 (void)user;
36 Curl_fileinfo_cleanup(element);
37}
38
Lucas Eckels9bd90e62012-08-06 15:07:02 -070039CURLcode Curl_wildcard_init(struct WildcardData *wc)
40{
Elliott Hughes1ef06ba2018-05-30 15:43:58 -070041 Curl_llist_init(&wc->filelist, fileinfo_dtor);
Elliott Hughes82be86d2017-09-20 17:00:17 -070042 wc->state = CURLWC_INIT;
43
Lucas Eckels9bd90e62012-08-06 15:07:02 -070044 return CURLE_OK;
45}
46
47void Curl_wildcard_dtor(struct WildcardData *wc)
48{
49 if(!wc)
50 return;
51
Elliott Hughes1ef06ba2018-05-30 15:43:58 -070052 if(wc->dtor) {
53 wc->dtor(wc->protdata);
54 wc->dtor = ZERO_NULL;
55 wc->protdata = NULL;
Lucas Eckels9bd90e62012-08-06 15:07:02 -070056 }
Elliott Hughes1ef06ba2018-05-30 15:43:58 -070057 DEBUGASSERT(wc->protdata == NULL);
Lucas Eckels9bd90e62012-08-06 15:07:02 -070058
Elliott Hughes82be86d2017-09-20 17:00:17 -070059 Curl_llist_destroy(&wc->filelist, NULL);
60
Lucas Eckels9bd90e62012-08-06 15:07:02 -070061
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070062 free(wc->path);
63 wc->path = NULL;
64 free(wc->pattern);
65 wc->pattern = NULL;
Lucas Eckels9bd90e62012-08-06 15:07:02 -070066
67 wc->customptr = NULL;
68 wc->state = CURLWC_INIT;
69}