gsf 3.0.9-x64-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (166) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +55 -0
  3. data/lib/gsf/input.rb +26 -0
  4. data/lib/gsf/loader.rb +57 -0
  5. data/lib/gsf.rb +53 -0
  6. data/test/gsf-test-utils.rb +22 -0
  7. data/test/run-test.rb +46 -0
  8. data/test/test-input-stdio.rb +25 -0
  9. data/vendor/local/bin/gsf-office-thumbnailer.exe +0 -0
  10. data/vendor/local/bin/gsf-vba-dump.exe +0 -0
  11. data/vendor/local/bin/gsf.exe +0 -0
  12. data/vendor/local/bin/libgsf-1-114.dll +0 -0
  13. data/vendor/local/bin/libgsf-win32-1-114.dll +0 -0
  14. data/vendor/local/include/libgsf-1/gsf/gsf-blob.h +39 -0
  15. data/vendor/local/include/libgsf-1/gsf/gsf-clip-data.h +72 -0
  16. data/vendor/local/include/libgsf-1/gsf/gsf-doc-meta-data.h +66 -0
  17. data/vendor/local/include/libgsf-1/gsf/gsf-docprop-vector.h +47 -0
  18. data/vendor/local/include/libgsf-1/gsf/gsf-fwd.h +121 -0
  19. data/vendor/local/include/libgsf-1/gsf/gsf-impl-utils.h +156 -0
  20. data/vendor/local/include/libgsf-1/gsf/gsf-infile-impl.h +50 -0
  21. data/vendor/local/include/libgsf-1/gsf/gsf-infile-msole.h +45 -0
  22. data/vendor/local/include/libgsf-1/gsf/gsf-infile-msvba.h +49 -0
  23. data/vendor/local/include/libgsf-1/gsf/gsf-infile-stdio.h +43 -0
  24. data/vendor/local/include/libgsf-1/gsf/gsf-infile-tar.h +40 -0
  25. data/vendor/local/include/libgsf-1/gsf/gsf-infile-zip.h +43 -0
  26. data/vendor/local/include/libgsf-1/gsf/gsf-infile.h +46 -0
  27. data/vendor/local/include/libgsf-1/gsf/gsf-input-bzip.h +34 -0
  28. data/vendor/local/include/libgsf-1/gsf/gsf-input-gio.h +44 -0
  29. data/vendor/local/include/libgsf-1/gsf/gsf-input-gzip.h +43 -0
  30. data/vendor/local/include/libgsf-1/gsf/gsf-input-http.h +45 -0
  31. data/vendor/local/include/libgsf-1/gsf/gsf-input-impl.h +68 -0
  32. data/vendor/local/include/libgsf-1/gsf/gsf-input-iochannel.h +35 -0
  33. data/vendor/local/include/libgsf-1/gsf/gsf-input-memory.h +46 -0
  34. data/vendor/local/include/libgsf-1/gsf/gsf-input-proxy.h +46 -0
  35. data/vendor/local/include/libgsf-1/gsf/gsf-input-stdio.h +48 -0
  36. data/vendor/local/include/libgsf-1/gsf/gsf-input-textline.h +46 -0
  37. data/vendor/local/include/libgsf-1/gsf/gsf-input.h +69 -0
  38. data/vendor/local/include/libgsf-1/gsf/gsf-libxml.h +225 -0
  39. data/vendor/local/include/libgsf-1/gsf/gsf-meta-names.h +482 -0
  40. data/vendor/local/include/libgsf-1/gsf/gsf-msole-utils.h +70 -0
  41. data/vendor/local/include/libgsf-1/gsf/gsf-open-pkg-utils.h +95 -0
  42. data/vendor/local/include/libgsf-1/gsf/gsf-opendoc-utils.h +162 -0
  43. data/vendor/local/include/libgsf-1/gsf/gsf-outfile-impl.h +46 -0
  44. data/vendor/local/include/libgsf-1/gsf/gsf-outfile-msole.h +47 -0
  45. data/vendor/local/include/libgsf-1/gsf/gsf-outfile-stdio.h +49 -0
  46. data/vendor/local/include/libgsf-1/gsf/gsf-outfile-zip.h +61 -0
  47. data/vendor/local/include/libgsf-1/gsf/gsf-outfile.h +49 -0
  48. data/vendor/local/include/libgsf-1/gsf/gsf-output-bzip.h +43 -0
  49. data/vendor/local/include/libgsf-1/gsf/gsf-output-csv.h +84 -0
  50. data/vendor/local/include/libgsf-1/gsf/gsf-output-gio.h +44 -0
  51. data/vendor/local/include/libgsf-1/gsf/gsf-output-gzip.h +43 -0
  52. data/vendor/local/include/libgsf-1/gsf/gsf-output-iconv.h +47 -0
  53. data/vendor/local/include/libgsf-1/gsf/gsf-output-impl.h +37 -0
  54. data/vendor/local/include/libgsf-1/gsf/gsf-output-iochannel.h +43 -0
  55. data/vendor/local/include/libgsf-1/gsf/gsf-output-memory.h +44 -0
  56. data/vendor/local/include/libgsf-1/gsf/gsf-output-stdio.h +52 -0
  57. data/vendor/local/include/libgsf-1/gsf/gsf-output.h +99 -0
  58. data/vendor/local/include/libgsf-1/gsf/gsf-shared-memory.h +51 -0
  59. data/vendor/local/include/libgsf-1/gsf/gsf-structured-blob.h +45 -0
  60. data/vendor/local/include/libgsf-1/gsf/gsf-timestamp.h +70 -0
  61. data/vendor/local/include/libgsf-1/gsf/gsf-utils.h +340 -0
  62. data/vendor/local/include/libgsf-1/gsf/gsf.h +98 -0
  63. data/vendor/local/include/libgsf-1/gsf-win32/gsf-input-win32.h +41 -0
  64. data/vendor/local/include/libgsf-1/gsf-win32/gsf-output-win32.h +41 -0
  65. data/vendor/local/lib/libgsf-1.a +0 -0
  66. data/vendor/local/lib/libgsf-1.dll.a +0 -0
  67. data/vendor/local/lib/libgsf-1.la +41 -0
  68. data/vendor/local/lib/libgsf-win32-1.a +0 -0
  69. data/vendor/local/lib/libgsf-win32-1.dll.a +0 -0
  70. data/vendor/local/lib/libgsf-win32-1.la +41 -0
  71. data/vendor/local/lib/pkgconfig/libgsf-1.pc +11 -0
  72. data/vendor/local/lib/pkgconfig/libgsf-win32-1.pc +11 -0
  73. data/vendor/local/share/gtk-doc/html/gsf/annotation-glossary.html +56 -0
  74. data/vendor/local/share/gtk-doc/html/gsf/api.html +107 -0
  75. data/vendor/local/share/gtk-doc/html/gsf/dependencies.html +109 -0
  76. data/vendor/local/share/gtk-doc/html/gsf/gsf-Compression.html +369 -0
  77. data/vendor/local/share/gtk-doc/html/gsf/gsf-GIO.html +307 -0
  78. data/vendor/local/share/gtk-doc/html/gsf/gsf-GIOChannel.html +119 -0
  79. data/vendor/local/share/gtk-doc/html/gsf/gsf-Infile-reading-structed-files.html +397 -0
  80. data/vendor/local/share/gtk-doc/html/gsf/gsf-Input-from-unstructured-files.html +887 -0
  81. data/vendor/local/share/gtk-doc/html/gsf/gsf-MS-OLE2.html +894 -0
  82. data/vendor/local/share/gtk-doc/html/gsf/gsf-OASIS-Open-Document.html +398 -0
  83. data/vendor/local/share/gtk-doc/html/gsf/gsf-Outfile-writing-structed-files.html +237 -0
  84. data/vendor/local/share/gtk-doc/html/gsf/gsf-Output-to-unstructured-files.html +830 -0
  85. data/vendor/local/share/gtk-doc/html/gsf/gsf-Reading-and-Writing-from-local-files-and-directories.html +593 -0
  86. data/vendor/local/share/gtk-doc/html/gsf/gsf-Text.html +523 -0
  87. data/vendor/local/share/gtk-doc/html/gsf/gsf-XML-and-libxml.html +2032 -0
  88. data/vendor/local/share/gtk-doc/html/gsf/gsf-Zip.html +338 -0
  89. data/vendor/local/share/gtk-doc/html/gsf/gsf-blobs.html +56 -0
  90. data/vendor/local/share/gtk-doc/html/gsf/gsf-clip-data.html +444 -0
  91. data/vendor/local/share/gtk-doc/html/gsf/gsf-index.html +875 -0
  92. data/vendor/local/share/gtk-doc/html/gsf/gsf-memory.html +332 -0
  93. data/vendor/local/share/gtk-doc/html/gsf/gsf-metadata.html +1762 -0
  94. data/vendor/local/share/gtk-doc/html/gsf/gsf-users.html +73 -0
  95. data/vendor/local/share/gtk-doc/html/gsf/gsf-utils.html +2503 -0
  96. data/vendor/local/share/gtk-doc/html/gsf/gsf.devhelp2 +440 -0
  97. data/vendor/local/share/gtk-doc/html/gsf/history.html +45 -0
  98. data/vendor/local/share/gtk-doc/html/gsf/home.png +0 -0
  99. data/vendor/local/share/gtk-doc/html/gsf/index.html +98 -0
  100. data/vendor/local/share/gtk-doc/html/gsf/index.sgml +572 -0
  101. data/vendor/local/share/gtk-doc/html/gsf/intro.html +39 -0
  102. data/vendor/local/share/gtk-doc/html/gsf/io.html +38 -0
  103. data/vendor/local/share/gtk-doc/html/gsf/left-insensitive.png +0 -0
  104. data/vendor/local/share/gtk-doc/html/gsf/left.png +0 -0
  105. data/vendor/local/share/gtk-doc/html/gsf/misc.html +33 -0
  106. data/vendor/local/share/gtk-doc/html/gsf/parsers.html +59 -0
  107. data/vendor/local/share/gtk-doc/html/gsf/right-insensitive.png +0 -0
  108. data/vendor/local/share/gtk-doc/html/gsf/right.png +0 -0
  109. data/vendor/local/share/gtk-doc/html/gsf/sources.html +50 -0
  110. data/vendor/local/share/gtk-doc/html/gsf/style.css +461 -0
  111. data/vendor/local/share/gtk-doc/html/gsf/up-insensitive.png +0 -0
  112. data/vendor/local/share/gtk-doc/html/gsf/up.png +0 -0
  113. data/vendor/local/share/license/libgsf/AUTHORS +3 -0
  114. data/vendor/local/share/license/libgsf/COPYING +340 -0
  115. data/vendor/local/share/license/libgsf/COPYING.LIB +504 -0
  116. data/vendor/local/share/locale/as/LC_MESSAGES/libgsf.mo +0 -0
  117. data/vendor/local/share/locale/bs/LC_MESSAGES/libgsf.mo +0 -0
  118. data/vendor/local/share/locale/ca/LC_MESSAGES/libgsf.mo +0 -0
  119. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/libgsf.mo +0 -0
  120. data/vendor/local/share/locale/cs/LC_MESSAGES/libgsf.mo +0 -0
  121. data/vendor/local/share/locale/da/LC_MESSAGES/libgsf.mo +0 -0
  122. data/vendor/local/share/locale/de/LC_MESSAGES/libgsf.mo +0 -0
  123. data/vendor/local/share/locale/el/LC_MESSAGES/libgsf.mo +0 -0
  124. data/vendor/local/share/locale/en_GB/LC_MESSAGES/libgsf.mo +0 -0
  125. data/vendor/local/share/locale/eo/LC_MESSAGES/libgsf.mo +0 -0
  126. data/vendor/local/share/locale/es/LC_MESSAGES/libgsf.mo +0 -0
  127. data/vendor/local/share/locale/eu/LC_MESSAGES/libgsf.mo +0 -0
  128. data/vendor/local/share/locale/fi/LC_MESSAGES/libgsf.mo +0 -0
  129. data/vendor/local/share/locale/fr/LC_MESSAGES/libgsf.mo +0 -0
  130. data/vendor/local/share/locale/gl/LC_MESSAGES/libgsf.mo +0 -0
  131. data/vendor/local/share/locale/he/LC_MESSAGES/libgsf.mo +0 -0
  132. data/vendor/local/share/locale/hu/LC_MESSAGES/libgsf.mo +0 -0
  133. data/vendor/local/share/locale/id/LC_MESSAGES/libgsf.mo +0 -0
  134. data/vendor/local/share/locale/it/LC_MESSAGES/libgsf.mo +0 -0
  135. data/vendor/local/share/locale/ja/LC_MESSAGES/libgsf.mo +0 -0
  136. data/vendor/local/share/locale/ko/LC_MESSAGES/libgsf.mo +0 -0
  137. data/vendor/local/share/locale/lt/LC_MESSAGES/libgsf.mo +0 -0
  138. data/vendor/local/share/locale/lv/LC_MESSAGES/libgsf.mo +0 -0
  139. data/vendor/local/share/locale/ml/LC_MESSAGES/libgsf.mo +0 -0
  140. data/vendor/local/share/locale/nb/LC_MESSAGES/libgsf.mo +0 -0
  141. data/vendor/local/share/locale/nn/LC_MESSAGES/libgsf.mo +0 -0
  142. data/vendor/local/share/locale/oc/LC_MESSAGES/libgsf.mo +0 -0
  143. data/vendor/local/share/locale/pa/LC_MESSAGES/libgsf.mo +0 -0
  144. data/vendor/local/share/locale/pl/LC_MESSAGES/libgsf.mo +0 -0
  145. data/vendor/local/share/locale/pt/LC_MESSAGES/libgsf.mo +0 -0
  146. data/vendor/local/share/locale/pt_BR/LC_MESSAGES/libgsf.mo +0 -0
  147. data/vendor/local/share/locale/ro/LC_MESSAGES/libgsf.mo +0 -0
  148. data/vendor/local/share/locale/ru/LC_MESSAGES/libgsf.mo +0 -0
  149. data/vendor/local/share/locale/sk/LC_MESSAGES/libgsf.mo +0 -0
  150. data/vendor/local/share/locale/sl/LC_MESSAGES/libgsf.mo +0 -0
  151. data/vendor/local/share/locale/sr/LC_MESSAGES/libgsf.mo +0 -0
  152. data/vendor/local/share/locale/sr@latin/LC_MESSAGES/libgsf.mo +0 -0
  153. data/vendor/local/share/locale/sv/LC_MESSAGES/libgsf.mo +0 -0
  154. data/vendor/local/share/locale/ta/LC_MESSAGES/libgsf.mo +0 -0
  155. data/vendor/local/share/locale/tg/LC_MESSAGES/libgsf.mo +0 -0
  156. data/vendor/local/share/locale/th/LC_MESSAGES/libgsf.mo +0 -0
  157. data/vendor/local/share/locale/tr/LC_MESSAGES/libgsf.mo +0 -0
  158. data/vendor/local/share/locale/uk/LC_MESSAGES/libgsf.mo +0 -0
  159. data/vendor/local/share/locale/zh_CN/LC_MESSAGES/libgsf.mo +0 -0
  160. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/libgsf.mo +0 -0
  161. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/libgsf.mo +0 -0
  162. data/vendor/local/share/man/man1/gsf-office-thumbnailer.1 +71 -0
  163. data/vendor/local/share/man/man1/gsf-vba-dump.1 +61 -0
  164. data/vendor/local/share/man/man1/gsf.1 +91 -0
  165. data/vendor/local/share/thumbnailers/gsf-office.thumbnailer +4 -0
  166. metadata +235 -0
@@ -0,0 +1,156 @@
1
+ /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
+ /*
3
+ * gsf-impl-utils.h:
4
+ *
5
+ * Copyright (C) 2002-2006 Jody Goldberg (jody@gnome.org)
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
+ #ifndef GSF_IMPL_UTILS_H
23
+ #define GSF_IMPL_UTILS_H
24
+
25
+ #include <gsf/gsf.h>
26
+ #include <glib-object.h>
27
+
28
+ G_BEGIN_DECLS
29
+
30
+ /* We need to do this with a version check as this header gets installed.
31
+ *
32
+ * DEPRECATED in favour of G_PARAM_STATIC_STRINGS
33
+ **/
34
+ #if GLIB_CHECK_VERSION(2,7,0)
35
+ #define GSF_PARAM_STATIC (G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)
36
+ #else
37
+ #define GSF_PARAM_STATIC 0
38
+ #endif
39
+
40
+ /*************************************************************************/
41
+
42
+ #define GSF_CLASS_FULL(name, prefix, base_init, base_finalize, \
43
+ class_init, class_finalize, instance_init, parent_type, \
44
+ abstract, interface_decl) \
45
+ GType \
46
+ prefix ## _get_type (void) \
47
+ { \
48
+ static GType type = 0; \
49
+ if (G_UNLIKELY (type == 0)) { \
50
+ static GTypeInfo const object_info = { \
51
+ sizeof (name ## Class), \
52
+ (GBaseInitFunc) base_init, \
53
+ (GBaseFinalizeFunc) base_finalize, \
54
+ (GClassInitFunc) class_init, \
55
+ (GClassFinalizeFunc) class_finalize, \
56
+ NULL, /* class_data */ \
57
+ sizeof (name), \
58
+ 0, /* n_preallocs */ \
59
+ (GInstanceInitFunc) instance_init, \
60
+ NULL \
61
+ }; \
62
+ type = g_type_register_static (parent_type, #name, \
63
+ &object_info, (GTypeFlags) abstract); \
64
+ interface_decl \
65
+ } \
66
+ return type; \
67
+ }
68
+
69
+ /**
70
+ * GSF_CLASS:
71
+ * @name: Name of the class.
72
+ * @prefix: Symbol prefix designating the namespace to be used for
73
+ * implementing the class.
74
+ * @class_init: Initialisation function of type #GClassInitFunc for the class.
75
+ * @instance_init: Initialisation function of type #GInstanceInitFunc
76
+ * for an instance of the class.
77
+ * @parent: Parent class to this class.
78
+ *
79
+ * Set up a GSF class.
80
+ *
81
+ */
82
+ #define GSF_CLASS(name, prefix, class_init, instance_init, parent) \
83
+ GSF_CLASS_FULL(name, prefix, NULL, NULL, class_init, NULL, \
84
+ instance_init, parent, 0, {})
85
+ #define GSF_CLASS_ABSTRACT(name, prefix, class_init, instance_init, parent) \
86
+ GSF_CLASS_FULL(name, prefix, NULL, NULL, class_init, NULL, \
87
+ instance_init, parent, G_TYPE_FLAG_ABSTRACT, {})
88
+
89
+ #define GSF_INTERFACE_FULL(type, init_func, iface_type) { \
90
+ static GInterfaceInfo const iface = { \
91
+ (GInterfaceInitFunc) init_func, NULL, NULL }; \
92
+ g_type_add_interface_static (type, iface_type, &iface); \
93
+ }
94
+
95
+ #define GSF_INTERFACE(init_func, iface_type) \
96
+ GSF_INTERFACE_FULL(type, init_func, iface_type)
97
+
98
+ /*************************************************************************/
99
+
100
+ #define GSF_DYNAMIC_CLASS_FULL(name, prefix, base_init, base_finalize, \
101
+ class_init, class_finalize, instance_init, parent_type, \
102
+ abstract, interface_decl) \
103
+ static GType prefix ## _type; \
104
+ \
105
+ GType prefix ## _get_type (void); \
106
+ void prefix ## _register_type (GTypeModule *module); \
107
+ \
108
+ GType \
109
+ prefix ## _get_type (void) \
110
+ { \
111
+ g_return_val_if_fail (prefix ## _type != 0, 0); \
112
+ return prefix ## _type; \
113
+ } \
114
+ void \
115
+ prefix ## _register_type (GTypeModule *module) \
116
+ { \
117
+ GTypeInfo const type_info = { \
118
+ sizeof (name ## Class), \
119
+ (GBaseInitFunc) base_init, \
120
+ (GBaseFinalizeFunc) base_finalize, \
121
+ (GClassInitFunc) class_init, \
122
+ (GClassFinalizeFunc) class_finalize, \
123
+ NULL, /* class_data */ \
124
+ sizeof (name), \
125
+ 0, /* n_preallocs */ \
126
+ (GInstanceInitFunc) instance_init, \
127
+ NULL \
128
+ }; \
129
+ GType type; \
130
+ \
131
+ g_return_if_fail (prefix ## _type == 0); \
132
+ \
133
+ prefix ## _type = type = g_type_module_register_type (module, \
134
+ parent_type, #name, &type_info, (GTypeFlags) abstract); \
135
+ interface_decl \
136
+ }
137
+
138
+ #define GSF_DYNAMIC_CLASS(name, prefix, class_init, instance_init, parent) \
139
+ GSF_DYNAMIC_CLASS_FULL(name, prefix, NULL, NULL, class_init, NULL, \
140
+ instance_init, parent, 0, {})
141
+ #define GSF_DYNAMIC_CLASS_ABSTRACT(name, prefix, class_init, instance_init, parent) \
142
+ GSF_DYNAMIC_CLASS_FULL(name, prefix, NULL, NULL, class_init, NULL, \
143
+ instance_init, parent, G_TYPE_FLAG_ABSTRACT, {})
144
+
145
+ #define GSF_DYNAMIC_INTERFACE_FULL(type, init_func, iface_type, module) { \
146
+ GInterfaceInfo const iface = { \
147
+ (GInterfaceInitFunc) init_func, NULL, NULL }; \
148
+ g_type_module_add_interface (module, type, iface_type, &iface); \
149
+ }
150
+
151
+ #define GSF_DYNAMIC_INTERFACE(init_func, iface_type, module) \
152
+ GSF_DYNAMIC_INTERFACE_FULL(type, init_func, iface_type, module)
153
+
154
+ G_END_DECLS
155
+
156
+ #endif /* GSF_IMPL_UTILS_H */
@@ -0,0 +1,50 @@
1
+ /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
+ /*
3
+ * gsf-infile-impl.h:
4
+ *
5
+ * Copyright (C) 2002-2006 Jody Goldberg (jody@gnome.org)
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
+ #ifndef GSF_INFILE_IMPL_H
23
+ #define GSF_INFILE_IMPL_H
24
+
25
+ #include <gsf/gsf-fwd.h>
26
+ #include <gsf/gsf-input-impl.h>
27
+ #include <gsf/gsf-infile.h>
28
+
29
+ G_BEGIN_DECLS
30
+
31
+ struct _GsfInfile {
32
+ GsfInput parent;
33
+ };
34
+
35
+ typedef struct {
36
+ GsfInputClass input_class;
37
+ int (*num_children) (GsfInfile *infile);
38
+ char const *(*name_by_index) (GsfInfile *infile, int i);
39
+ GsfInput *(*child_by_index) (GsfInfile *infile,
40
+ int i, GError **err);
41
+ GsfInput *(*child_by_name) (GsfInfile *infile,
42
+ char const *name, GError **err);
43
+ } GsfInfileClass;
44
+
45
+ #define GSF_INFILE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), GSF_INFILE_TYPE, GsfInfileClass))
46
+ #define GSF_IS_INFILE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GSF_INFILE_TYPE))
47
+
48
+ G_END_DECLS
49
+
50
+ #endif /* GSF_INFILE_IMPL_H */
@@ -0,0 +1,45 @@
1
+ /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
+ /*
3
+ * gsf-infile-msole.h:
4
+ *
5
+ * Copyright (C) 2002-2006 Jody Goldberg (jody@gnome.org)
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
+ #ifndef GSF_INFILE_MSOLE_H
23
+ #define GSF_INFILE_MSOLE_H
24
+
25
+ #include <gsf/gsf-fwd.h>
26
+ #include <gsf/gsf-infile.h>
27
+
28
+ G_BEGIN_DECLS
29
+
30
+ typedef struct _GsfInfileMSOle GsfInfileMSOle;
31
+
32
+ #define GSF_INFILE_MSOLE_TYPE (gsf_infile_msole_get_type ())
33
+ #define GSF_INFILE_MSOLE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GSF_INFILE_MSOLE_TYPE, GsfInfileMSOle))
34
+ #define GSF_IS_INFILE_MSOLE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GSF_INFILE_MSOLE_TYPE))
35
+
36
+ GType gsf_infile_msole_get_type (void) G_GNUC_CONST;
37
+ /* void gsf_infile_msole_register_type (GTypeModule *module); glib dynamic types are not thread safe */
38
+
39
+ GsfInfile *gsf_infile_msole_new (GsfInput *source, GError **err);
40
+ gboolean gsf_infile_msole_get_class_id (GsfInfileMSOle const *ole,
41
+ guint8 *res);
42
+
43
+ G_END_DECLS
44
+
45
+ #endif /* GSF_INFILE_MSOLE_H */
@@ -0,0 +1,49 @@
1
+ /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
+ /*
3
+ * gsf-infile-msvba.h:
4
+ *
5
+ * Copyright (C) 2002-2006 Jody Goldberg (jody@gnome.org)
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
+ #ifndef GSF_INFILE_MSVBA_H
23
+ #define GSF_INFILE_MSVBA_H
24
+
25
+ #include <gsf/gsf-fwd.h>
26
+ #include <gsf/gsf-infile.h>
27
+
28
+ G_BEGIN_DECLS
29
+
30
+ typedef struct _GsfInfileMSVBA GsfInfileMSVBA;
31
+
32
+ #define GSF_INFILE_MSVBA_TYPE (gsf_infile_msvba_get_type ())
33
+ #define GSF_INFILE_MSVBA(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GSF_INFILE_MSVBA_TYPE, GsfInfileMSVBA))
34
+ #define GSF_IS_INFILE_MSVBA(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GSF_INFILE_MSVBA_TYPE))
35
+
36
+ GType gsf_infile_msvba_get_type (void) G_GNUC_CONST;
37
+ /* void gsf_infile_msvba_register_type (GTypeModule *module); glib dynamic types are not thread safe */
38
+
39
+ GsfInfile *gsf_infile_msvba_new (GsfInfile *source, GError **err);
40
+ GHashTable *gsf_infile_msvba_get_modules (GsfInfileMSVBA const *vba_stream);
41
+ GHashTable *gsf_infile_msvba_steal_modules (GsfInfileMSVBA *vba_stream);
42
+ guint8 *gsf_vba_inflate (GsfInput *input, gsf_off_t offset, int *size, gboolean add_null_terminator);
43
+
44
+ /* Utility */
45
+ GsfInfileMSVBA *gsf_input_find_vba (GsfInput *input, GError **err);
46
+
47
+ G_END_DECLS
48
+
49
+ #endif /* GSF_INFILE_MSVBA_H */
@@ -0,0 +1,43 @@
1
+ /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
+ /*
3
+ * gsf-infile-stdio.h:
4
+ *
5
+ * Copyright (C) 2004-2006 Novell, Inc.
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
+ #ifndef GSF_INFILE_STDIO_H
23
+ #define GSF_INFILE_STDIO_H
24
+
25
+ #include <gsf/gsf-fwd.h>
26
+ #include <gsf/gsf-infile.h>
27
+
28
+ G_BEGIN_DECLS
29
+
30
+ typedef struct _GsfInfileStdio GsfInfileStdio;
31
+
32
+ #define GSF_INFILE_STDIO_TYPE (gsf_infile_stdio_get_type ())
33
+ #define GSF_INFILE_STDIO(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GSF_INFILE_STDIO_TYPE, GsfInfileStdio))
34
+ #define GSF_IS_INFILE_STDIO(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GSF_INFILE_STDIO_TYPE))
35
+
36
+ GType gsf_infile_stdio_get_type (void) G_GNUC_CONST;
37
+ /* void gsf_infile_stdio_register_type (GTypeModule *module); glib dynamic types are not thread safe */
38
+
39
+ GsfInfile *gsf_infile_stdio_new (char const *root, GError **err);
40
+
41
+ G_END_DECLS
42
+
43
+ #endif /* GSF_INFILE_STDIO_H */
@@ -0,0 +1,40 @@
1
+ /*
2
+ * gsf-infile-tar.h:
3
+ *
4
+ * Copyright (C) 2008 Morten Welinder (terra@gnome.org)
5
+ *
6
+ * This program is free software; you can redistribute it and/or
7
+ * modify it under the terms of version 2.1 of the GNU Lesser General Public
8
+ * License as published by the Free Software Foundation.
9
+ *
10
+ * This program is distributed in the hope that it will be useful,
11
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
+ * GNU General Public License for more details.
14
+ *
15
+ * You should have received a copy of the GNU Lesser General Public License
16
+ * along with this program; if not, write to the Free Software
17
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
18
+ * USA
19
+ */
20
+
21
+ #ifndef GSF_INFILE_TAR_H
22
+ #define GSF_INFILE_TAR_H
23
+
24
+ #include <gsf/gsf-fwd.h>
25
+ #include <gsf/gsf-infile.h>
26
+
27
+ G_BEGIN_DECLS
28
+
29
+ typedef struct _GsfInfileTar GsfInfileTar;
30
+
31
+ #define GSF_INFILE_TAR_TYPE (gsf_infile_tar_get_type ())
32
+ #define GSF_INFILE_TAR(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GSF_INFILE_TAR_TYPE, GsfInfileTar))
33
+ #define GSF_IS_INFILE_TAR(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GSF_INFILE_TAR_TYPE))
34
+
35
+ GType gsf_infile_tar_get_type (void) G_GNUC_CONST;
36
+ GsfInfile *gsf_infile_tar_new (GsfInput *source, GError **err);
37
+
38
+ G_END_DECLS
39
+
40
+ #endif /* GSF_INFILE_TAR_H */
@@ -0,0 +1,43 @@
1
+ /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
+ /*
3
+ * gsf-infile-zip.h:
4
+ *
5
+ * Copyright (C) 2002-2006 Jody Goldberg (jody@gnome.org)
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
+ #ifndef GSF_INFILE_ZIP_H
23
+ #define GSF_INFILE_ZIP_H
24
+
25
+ #include <gsf/gsf-fwd.h>
26
+ #include <gsf/gsf-infile.h>
27
+
28
+ G_BEGIN_DECLS
29
+
30
+ typedef struct _GsfInfileZip GsfInfileZip;
31
+
32
+ #define GSF_INFILE_ZIP_TYPE (gsf_infile_zip_get_type ())
33
+ #define GSF_INFILE_ZIP(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GSF_INFILE_ZIP_TYPE, GsfInfileZip))
34
+ #define GSF_IS_INFILE_ZIP(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GSF_INFILE_ZIP_TYPE))
35
+
36
+ GType gsf_infile_zip_get_type (void) G_GNUC_CONST;
37
+ /* void gsf_infile_zip_register_type (GTypeModule *module); glib dynamic types are not thread safe */
38
+
39
+ GsfInfile *gsf_infile_zip_new (GsfInput *source, GError **err);
40
+
41
+ G_END_DECLS
42
+
43
+ #endif /* GSF_INFILE_ZIP_H */
@@ -0,0 +1,46 @@
1
+ /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
+ /*
3
+ * gsf-infile.h:
4
+ *
5
+ * Copyright (C) 2002-2006 Jody Goldberg (jody@gnome.org)
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
+ #ifndef GSF_INFILE_H
23
+ #define GSF_INFILE_H
24
+
25
+ #include <gsf/gsf-fwd.h>
26
+
27
+ G_BEGIN_DECLS
28
+
29
+ #define GSF_INFILE_TYPE (gsf_infile_get_type ())
30
+ #define GSF_INFILE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GSF_INFILE_TYPE, GsfInfile))
31
+ #define GSF_IS_INFILE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GSF_INFILE_TYPE))
32
+
33
+ GType gsf_infile_get_type (void) G_GNUC_CONST;
34
+ /* void gsf_infile_register_type (GTypeModule *module); glib dynamic types are not thread safe */
35
+
36
+ int gsf_infile_num_children (GsfInfile *infile);
37
+ char const *gsf_infile_name_by_index (GsfInfile *infile, int i);
38
+ GsfInput *gsf_infile_child_by_index (GsfInfile *infile, int i);
39
+ GsfInput *gsf_infile_child_by_name (GsfInfile *infile, char const *name);
40
+ GsfInput *gsf_infile_child_by_vname (GsfInfile *infile, ...);
41
+ GsfInput *gsf_infile_child_by_aname (GsfInfile *infile, char const *names[]);
42
+ GsfInput *gsf_infile_child_by_vaname (GsfInfile *infile, va_list names);
43
+
44
+ G_END_DECLS
45
+
46
+ #endif /* GSF_INFILE_H */
@@ -0,0 +1,34 @@
1
+ /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
+ /*
3
+ * gsf-input-bzip.h: wrapper to uncompress to bzipped output
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
+ #ifndef GSF_INPUT_BZIP_H
23
+ #define GSF_INPUT_BZIP_H
24
+
25
+ #include <gsf/gsf-fwd.h>
26
+ #include <gsf/gsf-input.h>
27
+
28
+ G_BEGIN_DECLS
29
+
30
+ GsfInput *gsf_input_memory_new_from_bzip (GsfInput *source, GError **err);
31
+
32
+ G_END_DECLS
33
+
34
+ #endif /* GSF_INPUT_BZIP_H */
@@ -0,0 +1,44 @@
1
+ /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
+ /*
3
+ * gsf-input-gio.h:
4
+ *
5
+ * Copyright (C) 2007 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
+ #ifndef GSF_INPUT_GIO_H
23
+ #define GSF_INPUT_GIO_H
24
+
25
+ #include <gsf/gsf-fwd.h>
26
+ #include <gio/gio.h>
27
+ #include <gsf/gsf-input.h>
28
+
29
+ G_BEGIN_DECLS
30
+
31
+ #define GSF_INPUT_GIO_TYPE (gsf_input_gio_get_type ())
32
+ #define GSF_INPUT_GIO(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GSF_INPUT_GIO_TYPE, GsfInputGio))
33
+ #define GSF_IS_INPUT_GIO(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GSF_INPUT_GIO_TYPE))
34
+
35
+ typedef struct _GsfInputGio GsfInputGio;
36
+
37
+ GType gsf_input_gio_get_type (void);
38
+ GsfInput *gsf_input_gio_new (GFile *file, GError **err);
39
+ GsfInput *gsf_input_gio_new_for_path (char const *path, GError **err);
40
+ GsfInput *gsf_input_gio_new_for_uri (char const *uri, GError **err);
41
+
42
+ G_END_DECLS
43
+
44
+ #endif /* GSF_INPUT_GIO_H */
@@ -0,0 +1,43 @@
1
+ /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
+ /*
3
+ * gsf-input-gzip.h: wrapper to uncompress gzipped input
4
+ *
5
+ * Copyright (C) 2002-2006 Jody Goldberg (jody@gnome.org)
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
+ #ifndef GSF_INPUT_GZIP_H
23
+ #define GSF_INPUT_GZIP_H
24
+
25
+ #include <gsf/gsf-fwd.h>
26
+ #include <gsf/gsf-input.h>
27
+
28
+ G_BEGIN_DECLS
29
+
30
+ #define GSF_INPUT_GZIP_TYPE (gsf_input_gzip_get_type ())
31
+ #define GSF_INPUT_GZIP(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GSF_INPUT_GZIP_TYPE, GsfInputGZip))
32
+ #define GSF_IS_INPUT_GZIP(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GSF_INPUT_GZIP_TYPE))
33
+
34
+ typedef struct _GsfInputGZip GsfInputGZip;
35
+
36
+ GType gsf_input_gzip_get_type (void) G_GNUC_CONST;
37
+ /* void gsf_input_gzip_register_type (GTypeModule *module); glib dynamic types are not thread safe */
38
+
39
+ GsfInput *gsf_input_gzip_new (GsfInput *source, GError **err);
40
+
41
+ G_END_DECLS
42
+
43
+ #endif /* GSF_INPUT_GZIP_H */
@@ -0,0 +1,45 @@
1
+ /* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
+ /*
3
+ * gsf-input-http.h:
4
+ *
5
+ * Copyright (C) 2006 Michael Lawrence (lawremi@iastate.edu)
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
+ #ifndef __GSF_INPUT_HTTP_H__
23
+ #define __GSF_INPUT_HTTP_H__
24
+
25
+ #include <gsf/gsf-fwd.h>
26
+ #include <gsf/gsf-input.h>
27
+
28
+ G_BEGIN_DECLS
29
+
30
+ #define GSF_INPUT_HTTP_TYPE (gsf_input_http_get_type())
31
+ #define GSF_INPUT_HTTP(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), GSF_INPUT_HTTP_TYPE, GsfInputHTTP))
32
+ #define GSF_IS_INPUT_HTTP(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), GSF_INPUT_HTTP_TYPE))
33
+
34
+ typedef struct _GsfInputHTTP GsfInputHTTP;
35
+
36
+ GType gsf_input_http_get_type (void) G_GNUC_CONST;
37
+ /* void gsf_input_http_register_type (GTypeModule *module); glib dynamic types are not thread safe */
38
+
39
+ GsfInput *gsf_input_http_new (gchar const *url, GError **error);
40
+ gchar *gsf_input_http_get_url (GsfInputHTTP *input);
41
+ gchar *gsf_input_http_get_content_type (GsfInputHTTP *input);
42
+
43
+ G_END_DECLS
44
+
45
+ #endif /* __GSF_INPUT_HTTP_H__ */