1 /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3  * test-bzip.c:
4  *
5  * Copyright (C) 2003-2006 Dom Lachowicz (cinamod@hotmail.com)
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of version 2.1 of the GNU Lesser General Public
9  * License as published by the Free Software Foundation.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301
19  * USA
20  */
21 
22 #include <stdio.h>
23 #include <gsf/gsf-input-stdio.h>
24 #include <gsf/gsf-utils.h>
25 #include <gsf/gsf-input-bzip.h>
26 
27 static int
test(int argc,char * argv[])28 test (int argc, char *argv[])
29 {
30 	GsfInput *input;
31 	GsfInput *bzip;
32 	GError   *err = NULL;
33 	int i;
34 
35 	for (i = 1 ; i < argc ; i++) {
36 		puts (argv[i]);
37 		input = gsf_input_stdio_new (argv[i], &err);
38 		if (input == NULL) {
39 
40 			g_return_val_if_fail (err != NULL, 1);
41 
42 			g_warning ("'%s' error: %s", argv[i], err->message);
43 			g_error_free (err);
44 			err = NULL;
45 			continue;
46 		}
47 
48 		bzip = gsf_input_memory_new_from_bzip (input, &err);
49 		if (bzip == NULL) {
50 
51 			g_return_val_if_fail (err != NULL, 1);
52 
53 			g_warning ("'%s' Not a BZip file: %s", argv[i], err->message);
54 			g_error_free (err);
55 			err = NULL;
56 			g_object_unref (G_OBJECT (input));
57 			continue;
58 		}
59 		gsf_input_dump (bzip, FALSE);
60 
61 		g_object_unref (G_OBJECT (bzip));
62 		g_object_unref (G_OBJECT (input));
63 	}
64 
65 	return 0;
66 }
67 
68 int
main(int argc,char * argv[])69 main (int argc, char *argv[])
70 {
71 	int res;
72 
73 	gsf_init ();
74 	res = test (argc, argv);
75 	gsf_shutdown ();
76 
77 	return res;
78 }
79