archive_virtual.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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: src/lib/libarchive/archive_virtual.c,v 1.1 2007/03/03 07:37:36 kientzle Exp $");
  27. #include "archive.h"
  28. #include "archive_entry.h"
  29. #include "archive_private.h"
  30. int
  31. archive_write_close(struct archive *a)
  32. {
  33. return ((a->vtable->archive_close)(a));
  34. }
  35. int
  36. archive_read_close(struct archive *a)
  37. {
  38. return ((a->vtable->archive_close)(a));
  39. }
  40. #if ARCHIVE_API_VERSION > 1
  41. int
  42. archive_write_finish(struct archive *a)
  43. {
  44. if (a == NULL)
  45. return (ARCHIVE_OK);
  46. return ((a->vtable->archive_finish)(a));
  47. }
  48. #else
  49. /* Temporarily allow library to compile with either 1.x or 2.0 API. */
  50. void
  51. archive_write_finish(struct archive *a)
  52. {
  53. if (a == NULL)
  54. return (ARCHIVE_OK);
  55. (void)(a->vtable->archive_finish)(a);
  56. }
  57. #endif
  58. int
  59. archive_read_finish(struct archive *a)
  60. {
  61. if (a == NULL)
  62. return (ARCHIVE_OK);
  63. return ((a->vtable->archive_finish)(a));
  64. }
  65. int
  66. archive_write_header(struct archive *a, struct archive_entry *entry)
  67. {
  68. ++a->file_count;
  69. return ((a->vtable->archive_write_header)(a, entry));
  70. }
  71. int
  72. archive_write_finish_entry(struct archive *a)
  73. {
  74. return ((a->vtable->archive_write_finish_entry)(a));
  75. }
  76. #if ARCHIVE_API_VERSION > 1
  77. ssize_t
  78. #else
  79. /* Temporarily allow library to compile with either 1.x or 2.0 API. */
  80. int
  81. #endif
  82. archive_write_data(struct archive *a, const void *buff, size_t s)
  83. {
  84. return ((a->vtable->archive_write_data)(a, buff, s));
  85. }
  86. ssize_t
  87. archive_write_data_block(struct archive *a, const void *buff, size_t s, off_t o)
  88. {
  89. return ((a->vtable->archive_write_data_block)(a, buff, s, o));
  90. }