]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libarchive/archive_write_open_file.c
This commit was generated by cvs2svn to compensate for changes in r165670,
[FreeBSD/FreeBSD.git] / lib / libarchive / archive_write_open_file.c
1 /*-
2  * Copyright (c) 2003-2004 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  *    in this position and unchanged.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26
27 #include "archive_platform.h"
28 __FBSDID("$FreeBSD$");
29
30 #ifdef HAVE_SYS_STAT_H
31 #include <sys/stat.h>
32 #endif
33 #ifdef HAVE_ERRNO_H
34 #include <errno.h>
35 #endif
36 #ifdef HAVE_FCNTL_H
37 #include <fcntl.h>
38 #endif
39 #ifdef HAVE_STDLIB_H
40 #include <stdlib.h>
41 #endif
42 #ifdef HAVE_STRING_H
43 #include <string.h>
44 #endif
45 #ifdef HAVE_UNISTD_H
46 #include <unistd.h>
47 #endif
48
49 #include "archive.h"
50
51 struct write_FILE_data {
52         FILE            *f;
53 };
54
55 static int      file_close(struct archive *, void *);
56 static int      file_open(struct archive *, void *);
57 static ssize_t  file_write(struct archive *, void *, const void *buff, size_t);
58
59 int
60 archive_write_open_FILE(struct archive *a, FILE *f)
61 {
62         struct write_FILE_data *mine;
63
64         mine = (struct write_FILE_data *)malloc(sizeof(*mine));
65         if (mine == NULL) {
66                 archive_set_error(a, ENOMEM, "No memory");
67                 return (ARCHIVE_FATAL);
68         }
69         mine->f = f;
70         return (archive_write_open(a, mine,
71                     file_open, file_write, file_close));
72 }
73
74 static int
75 file_open(struct archive *a, void *client_data)
76 {
77         (void)a; /* UNUSED */
78         (void)client_data; /* UNUSED */
79
80         return (ARCHIVE_OK);
81 }
82
83 static ssize_t
84 file_write(struct archive *a, void *client_data, const void *buff, size_t length)
85 {
86         struct write_FILE_data  *mine;
87         size_t  bytesWritten;
88
89         mine = client_data;
90         bytesWritten = fwrite(buff, 1, length, mine->f);
91         if (bytesWritten < length) {
92                 archive_set_error(a, errno, "Write error");
93                 return (-1);
94         }
95         return (bytesWritten);
96 }
97
98 static int
99 file_close(struct archive *a, void *client_data)
100 {
101         struct write_FILE_data  *mine = client_data;
102
103         (void)a; /* UNUSED */
104         free(mine);
105         return (ARCHIVE_OK);
106 }