Upgrade to libarchive 2.0.25 which gives us a nice speed boost along with
[dragonfly/port-amd64.git] / contrib / libarchive-1.3.1 / libarchive / archive_write_open_file.c
blobf38019304a854a7963cea4d44e6952878e5e4900
1 /*-
2 * Copyright (c) 2003-2004 Tim Kientzle
3 * All rights reserved.
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.
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.
27 #include "archive_platform.h"
28 __FBSDID("$FreeBSD: src/lib/libarchive/archive_write_open_file.c,v 1.11 2005/03/13 01:47:31 kientzle Exp $");
30 #include <sys/stat.h>
31 #include <errno.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #include <unistd.h>
37 #include "archive.h"
38 #include "archive_private.h"
40 struct write_FILE_data {
41 FILE *f;
44 static int file_close(struct archive *, void *);
45 static int file_open(struct archive *, void *);
46 static ssize_t file_write(struct archive *, void *, void *buff, size_t);
48 int
49 archive_write_open_FILE(struct archive *a, FILE *f)
51 struct write_FILE_data *mine;
53 mine = malloc(sizeof(*mine));
54 if (mine == NULL) {
55 archive_set_error(a, ENOMEM, "No memory");
56 return (ARCHIVE_FATAL);
58 mine->f = f;
59 return (archive_write_open(a, mine,
60 file_open, file_write, file_close));
63 static int
64 file_open(struct archive *a, void *client_data)
66 (void)a; /* UNUSED */
67 (void)client_data; /* UNUSED */
69 return (ARCHIVE_OK);
72 static ssize_t
73 file_write(struct archive *a, void *client_data, void *buff, size_t length)
75 struct write_FILE_data *mine;
76 size_t bytesWritten;
78 mine = client_data;
79 bytesWritten = fwrite(buff, 1, length, mine->f);
80 if (bytesWritten < length) {
81 archive_set_error(a, errno, "Write error");
82 return (-1);
84 return (bytesWritten);
87 static int
88 file_close(struct archive *a, void *client_data)
90 struct write_FILE_data *mine = client_data;
92 (void)a; /* UNUSED */
93 free(mine);
94 return (ARCHIVE_OK);