archive_read_support_format_all.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*-
  2. * Copyright (c) 2003-2011 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_read_support_format_all.c 174991 2007-12-30 04:58:22Z kientzle $");
  27. #include "archive.h"
  28. #include "archive_private.h"
  29. int
  30. archive_read_support_format_all(struct archive *a)
  31. {
  32. archive_check_magic(a, ARCHIVE_READ_MAGIC,
  33. ARCHIVE_STATE_NEW, "archive_read_support_format_all");
  34. /* TODO: It would be nice to compute the ordering
  35. * here automatically so that people who enable just
  36. * a few formats can still get the benefits. That
  37. * may just require the format registration to include
  38. * a "maximum read-ahead" value (anything that uses seek
  39. * would be essentially infinite read-ahead). The core
  40. * bid management can then sort the bidders before calling
  41. * them.
  42. *
  43. * If you implement the above, please return the list below
  44. * to alphabetic order.
  45. */
  46. /*
  47. * These bidders are all pretty cheap; they just examine a
  48. * small initial part of the archive. If one of these bids
  49. * high, we can maybe avoid running any of the more expensive
  50. * bidders below.
  51. */
  52. archive_read_support_format_ar(a);
  53. archive_read_support_format_cpio(a);
  54. archive_read_support_format_empty(a);
  55. archive_read_support_format_lha(a);
  56. archive_read_support_format_mtree(a);
  57. archive_read_support_format_tar(a);
  58. archive_read_support_format_xar(a);
  59. /*
  60. * Install expensive bidders last. By doing them last, we
  61. * increase the chance that a high bid from someone else will
  62. * make it unnecessary for these to do anything at all.
  63. */
  64. /* These three have potentially large look-ahead. */
  65. archive_read_support_format_7zip(a);
  66. archive_read_support_format_cab(a);
  67. archive_read_support_format_rar(a);
  68. archive_read_support_format_iso9660(a);
  69. /* Seek is really bad, since it forces the read-ahead
  70. * logic to discard buffered data. */
  71. archive_read_support_format_zip(a);
  72. /* Note: We always return ARCHIVE_OK here, even if some of the
  73. * above return ARCHIVE_WARN. The intent here is to enable
  74. * "as much as possible." Clients who need specific
  75. * compression should enable those individually so they can
  76. * verify the level of support. */
  77. /* Clear any warning messages set by the above functions. */
  78. archive_clear_error(a);
  79. return (ARCHIVE_OK);
  80. }