archive_write_open_file.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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_write_open_file.c,v 1.19 2007/01/09 08:05:56 kientzle Exp $");
  27. #ifdef HAVE_SYS_STAT_H
  28. #include <sys/stat.h>
  29. #endif
  30. #ifdef HAVE_ERRNO_H
  31. #include <errno.h>
  32. #endif
  33. #ifdef HAVE_FCNTL_H
  34. #include <fcntl.h>
  35. #endif
  36. #ifdef HAVE_STDLIB_H
  37. #include <stdlib.h>
  38. #endif
  39. #ifdef HAVE_STRING_H
  40. #include <string.h>
  41. #endif
  42. #ifdef HAVE_UNISTD_H
  43. #include <unistd.h>
  44. #endif
  45. #include "archive.h"
  46. struct write_FILE_data {
  47. FILE *f;
  48. };
  49. static int file_close(struct archive *, void *);
  50. static int file_open(struct archive *, void *);
  51. static ssize_t file_write(struct archive *, void *, const void *buff, size_t);
  52. int
  53. archive_write_open_FILE(struct archive *a, FILE *f)
  54. {
  55. struct write_FILE_data *mine;
  56. mine = (struct write_FILE_data *)malloc(sizeof(*mine));
  57. if (mine == NULL) {
  58. archive_set_error(a, ENOMEM, "No memory");
  59. return (ARCHIVE_FATAL);
  60. }
  61. mine->f = f;
  62. return (archive_write_open(a, mine,
  63. file_open, file_write, file_close));
  64. }
  65. static int
  66. file_open(struct archive *a, void *client_data)
  67. {
  68. (void)a; /* UNUSED */
  69. (void)client_data; /* UNUSED */
  70. return (ARCHIVE_OK);
  71. }
  72. static ssize_t
  73. file_write(struct archive *a, void *client_data, const void *buff, size_t length)
  74. {
  75. struct write_FILE_data *mine;
  76. size_t bytesWritten;
  77. mine = client_data;
  78. bytesWritten = fwrite(buff, 1, length, mine->f);
  79. if (bytesWritten < length) {
  80. archive_set_error(a, errno, "Write error");
  81. return (-1);
  82. }
  83. return (bytesWritten);
  84. }
  85. static int
  86. file_close(struct archive *a, void *client_data)
  87. {
  88. struct write_FILE_data *mine = client_data;
  89. (void)a; /* UNUSED */
  90. free(mine);
  91. return (ARCHIVE_OK);
  92. }