s/pxeldr/pxeboot/
[dragonfly.git] / contrib / libarchive / archive_read_data_into_fd.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: src/lib/libarchive/archive_read_data_into_fd.c,v 1.7 2004/06/27 01:15:31 kientzle Exp $");
29
30 #include <sys/types.h>
31 #include <unistd.h>
32
33 #include "archive.h"
34 #include "archive_private.h"
35
36 /* Maximum amount of data to write at one time. */
37 #define MAX_WRITE       (1024 * 1024)
38
39 /*
40  * This implementation minimizes copying of data and is sparse-file aware.
41  */
42 int
43 archive_read_data_into_fd(struct archive *a, int fd)
44 {
45         int r;
46         const void *buff;
47         ssize_t size, bytes_to_write;
48         ssize_t bytes_written, total_written;
49         off_t offset;
50         off_t output_offset;
51
52         archive_check_magic(a, ARCHIVE_READ_MAGIC, ARCHIVE_STATE_DATA);
53
54         total_written = 0;
55         output_offset = 0;
56
57         while ((r = archive_read_data_block(a, &buff, &size, &offset)) ==
58             ARCHIVE_OK) {
59                 if (offset > output_offset) {
60                         lseek(fd, offset - output_offset, SEEK_CUR);
61                         output_offset = offset;
62                 }
63                 while (size > 0) {
64                         bytes_to_write = size;
65                         if (bytes_to_write > MAX_WRITE)
66                                 bytes_to_write = MAX_WRITE;
67                         bytes_written = write(fd, buff, bytes_to_write);
68                         if (bytes_written < 0)
69                                 return (-1);
70                         output_offset += bytes_written;
71                         total_written += bytes_written;
72                         size -= bytes_written;
73                         if (a->extract_progress != NULL)
74                                 (*a->extract_progress)(a->extract_progress_user_data);
75                 }
76         }
77
78         if (r != ARCHIVE_EOF)
79                 return (r);
80         return (ARCHIVE_OK);
81 }