wildcard.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, 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. #include "curl_setup.h"
  25. #ifndef CURL_DISABLE_FTP
  26. #include "wildcard.h"
  27. #include "llist.h"
  28. #include "fileinfo.h"
  29. /* The last 3 #include files should be in this order */
  30. #include "curl_printf.h"
  31. #include "curl_memory.h"
  32. #include "memdebug.h"
  33. static void fileinfo_dtor(void *user, void *element)
  34. {
  35. (void)user;
  36. Curl_fileinfo_cleanup(element);
  37. }
  38. CURLcode Curl_wildcard_init(struct WildcardData *wc)
  39. {
  40. Curl_llist_init(&wc->filelist, fileinfo_dtor);
  41. wc->state = CURLWC_INIT;
  42. return CURLE_OK;
  43. }
  44. void Curl_wildcard_dtor(struct WildcardData *wc)
  45. {
  46. if(!wc)
  47. return;
  48. if(wc->dtor) {
  49. wc->dtor(wc->protdata);
  50. wc->dtor = ZERO_NULL;
  51. wc->protdata = NULL;
  52. }
  53. DEBUGASSERT(wc->protdata == NULL);
  54. Curl_llist_destroy(&wc->filelist, NULL);
  55. free(wc->path);
  56. wc->path = NULL;
  57. free(wc->pattern);
  58. wc->pattern = NULL;
  59. wc->customptr = NULL;
  60. wc->state = CURLWC_INIT;
  61. }
  62. #endif /* if disabled */