archive_write_set_format_by_name.c 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*-
  2. * Copyright (c) 2003-2007 Tim Kientzle
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. *
  14. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
  15. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  16. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  17. * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
  18. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  19. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  20. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  21. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  22. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  23. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24. */
  25. #include "archive_platform.h"
  26. __FBSDID("$FreeBSD: head/lib/libarchive/archive_write_set_format_by_name.c 201168 2009-12-29 06:15:32Z kientzle $");
  27. #ifdef HAVE_SYS_TYPES_H
  28. #include <sys/types.h>
  29. #endif
  30. #ifdef HAVE_ERRNO_H
  31. #include <errno.h>
  32. #endif
  33. #ifdef HAVE_STRING_H
  34. #include <string.h>
  35. #endif
  36. #include "archive.h"
  37. #include "archive_private.h"
  38. /* A table that maps names to functions. */
  39. static
  40. struct { const char *name; int (*setter)(struct archive *); } names[] =
  41. {
  42. { "7zip", archive_write_set_format_7zip },
  43. { "ar", archive_write_set_format_ar_bsd },
  44. { "arbsd", archive_write_set_format_ar_bsd },
  45. { "argnu", archive_write_set_format_ar_svr4 },
  46. { "arsvr4", archive_write_set_format_ar_svr4 },
  47. { "bsdtar", archive_write_set_format_pax_restricted },
  48. { "cd9660", archive_write_set_format_iso9660 },
  49. { "cpio", archive_write_set_format_cpio },
  50. { "gnutar", archive_write_set_format_gnutar },
  51. { "iso", archive_write_set_format_iso9660 },
  52. { "iso9660", archive_write_set_format_iso9660 },
  53. { "mtree", archive_write_set_format_mtree },
  54. { "mtree-classic", archive_write_set_format_mtree_classic },
  55. { "newc", archive_write_set_format_cpio_newc },
  56. { "odc", archive_write_set_format_cpio },
  57. { "oldtar", archive_write_set_format_v7tar },
  58. { "pax", archive_write_set_format_pax },
  59. { "paxr", archive_write_set_format_pax_restricted },
  60. { "posix", archive_write_set_format_pax },
  61. { "raw", archive_write_set_format_raw },
  62. { "rpax", archive_write_set_format_pax_restricted },
  63. { "shar", archive_write_set_format_shar },
  64. { "shardump", archive_write_set_format_shar_dump },
  65. { "ustar", archive_write_set_format_ustar },
  66. { "v7tar", archive_write_set_format_v7tar },
  67. { "v7", archive_write_set_format_v7tar },
  68. { "warc", archive_write_set_format_warc },
  69. { "xar", archive_write_set_format_xar },
  70. { "zip", archive_write_set_format_zip },
  71. { NULL, NULL }
  72. };
  73. int
  74. archive_write_set_format_by_name(struct archive *a, const char *name)
  75. {
  76. int i;
  77. for (i = 0; names[i].name != NULL; i++) {
  78. if (strcmp(name, names[i].name) == 0)
  79. return ((names[i].setter)(a));
  80. }
  81. archive_set_error(a, EINVAL, "No such format '%s'", name);
  82. a->state = ARCHIVE_STATE_FATAL;
  83. return (ARCHIVE_FATAL);
  84. }