1 | /***************************************************************************
|
---|
2 | * _ _ ____ _
|
---|
3 | * Project ___| | | | _ \| |
|
---|
4 | * / __| | | | |_) | |
|
---|
5 | * | (__| |_| | _ <| |___
|
---|
6 | * \___|\___/|_| \_\_____|
|
---|
7 | *
|
---|
8 | * Copyright (C) 1998 - 2022, Daniel Stenberg, <[email protected]>, et al.
|
---|
9 | *
|
---|
10 | * This software is licensed as described in the file COPYING, which
|
---|
11 | * you should have received as part of this distribution. The terms
|
---|
12 | * are also available at https://curl.se/docs/copyright.html.
|
---|
13 | *
|
---|
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 | * SPDX-License-Identifier: curl
|
---|
22 | *
|
---|
23 | ***************************************************************************/
|
---|
24 |
|
---|
25 | #include "curl_setup.h"
|
---|
26 |
|
---|
27 | #ifndef CURL_DISABLE_FTP
|
---|
28 |
|
---|
29 | #include "wildcard.h"
|
---|
30 | #include "llist.h"
|
---|
31 | #include "fileinfo.h"
|
---|
32 | /* The last 3 #include files should be in this order */
|
---|
33 | #include "curl_printf.h"
|
---|
34 | #include "curl_memory.h"
|
---|
35 | #include "memdebug.h"
|
---|
36 |
|
---|
37 | static void fileinfo_dtor(void *user, void *element)
|
---|
38 | {
|
---|
39 | (void)user;
|
---|
40 | Curl_fileinfo_cleanup(element);
|
---|
41 | }
|
---|
42 |
|
---|
43 | CURLcode Curl_wildcard_init(struct WildcardData *wc)
|
---|
44 | {
|
---|
45 | Curl_llist_init(&wc->filelist, fileinfo_dtor);
|
---|
46 | wc->state = CURLWC_INIT;
|
---|
47 |
|
---|
48 | return CURLE_OK;
|
---|
49 | }
|
---|
50 |
|
---|
51 | void Curl_wildcard_dtor(struct WildcardData *wc)
|
---|
52 | {
|
---|
53 | if(!wc)
|
---|
54 | return;
|
---|
55 |
|
---|
56 | if(wc->dtor) {
|
---|
57 | wc->dtor(wc->protdata);
|
---|
58 | wc->dtor = ZERO_NULL;
|
---|
59 | wc->protdata = NULL;
|
---|
60 | }
|
---|
61 | DEBUGASSERT(wc->protdata == NULL);
|
---|
62 |
|
---|
63 | Curl_llist_destroy(&wc->filelist, NULL);
|
---|
64 |
|
---|
65 |
|
---|
66 | free(wc->path);
|
---|
67 | wc->path = NULL;
|
---|
68 | free(wc->pattern);
|
---|
69 | wc->pattern = NULL;
|
---|
70 |
|
---|
71 | wc->customptr = NULL;
|
---|
72 | wc->state = CURLWC_INIT;
|
---|
73 | }
|
---|
74 |
|
---|
75 | #endif /* if disabled */
|
---|