[ff042c0] | 1 | /*
|
---|
| 2 | * Copyright (c) 2013 Vojtech Horky
|
---|
| 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 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - 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 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | /** @addtogroup untar
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | */
|
---|
| 34 |
|
---|
| 35 | #include <stdio.h>
|
---|
[24fda5e] | 36 | #include <stdarg.h>
|
---|
| 37 | #include <untar.h>
|
---|
[ff042c0] | 38 |
|
---|
[24fda5e] | 39 | const char *filename;
|
---|
[ff042c0] | 40 |
|
---|
[24fda5e] | 41 | static int tar_open(tar_file_t *tar)
|
---|
[ff042c0] | 42 | {
|
---|
[24fda5e] | 43 | FILE *file = fopen(filename, "rb");
|
---|
| 44 | if (file == NULL)
|
---|
| 45 | return errno;
|
---|
| 46 |
|
---|
| 47 | tar->data = (void *) file;
|
---|
[ff042c0] | 48 | return EOK;
|
---|
| 49 | }
|
---|
| 50 |
|
---|
[24fda5e] | 51 | static void tar_close(tar_file_t *tar)
|
---|
[ff042c0] | 52 | {
|
---|
[24fda5e] | 53 | FILE *file = (FILE *) tar->data;
|
---|
[ff042c0] | 54 | fclose(file);
|
---|
[24fda5e] | 55 | }
|
---|
[ff042c0] | 56 |
|
---|
[24fda5e] | 57 | static size_t tar_read(tar_file_t *tar, void *data, size_t size)
|
---|
| 58 | {
|
---|
| 59 | FILE *file = (FILE *) tar->data;
|
---|
| 60 | return fread(data, 1, size, file);
|
---|
[ff042c0] | 61 | }
|
---|
| 62 |
|
---|
[24fda5e] | 63 | static void tar_vreport(tar_file_t *tar, const char *fmt, va_list args)
|
---|
[ff042c0] | 64 | {
|
---|
[24fda5e] | 65 | vfprintf(stderr, fmt, args);
|
---|
| 66 | }
|
---|
[6e5562a] | 67 |
|
---|
[24fda5e] | 68 | tar_file_t tar = {
|
---|
| 69 | .open = tar_open,
|
---|
| 70 | .close = tar_close,
|
---|
[ff042c0] | 71 |
|
---|
[24fda5e] | 72 | .read = tar_read,
|
---|
| 73 | .vreport = tar_vreport
|
---|
| 74 | };
|
---|
[ff042c0] | 75 |
|
---|
| 76 | int main(int argc, char *argv[])
|
---|
| 77 | {
|
---|
| 78 | if (argc != 2) {
|
---|
| 79 | fprintf(stderr, "Usage: %s tar-file\n", argv[0]);
|
---|
| 80 | return 1;
|
---|
| 81 | }
|
---|
| 82 |
|
---|
[24fda5e] | 83 | filename = argv[1];
|
---|
| 84 | return untar(&tar);
|
---|
[ff042c0] | 85 | }
|
---|
| 86 |
|
---|
| 87 | /** @}
|
---|
| 88 | */
|
---|