-
Notifications
You must be signed in to change notification settings - Fork 0
/
inject-meta.cc
227 lines (201 loc) · 5.17 KB
/
inject-meta.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/* inject-meta.cc - Inject meta-data into a document
*
* Provides an example of how to perform multiple conversions.
*
* Copyright (C) 2014,2015,2018 Olly Betts
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#include <config.h>
#include <cerrno>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <map>
#include <string>
#include <fcntl.h>
#include <sysexits.h>
#include <unistd.h>
#include "convert.h"
using namespace std;
// Create a temporary directory called ${TMPDIR-/tmp} + this with XXXXXX
// replaced.
#define TEMP_DIR_TEMPLATE "/inject-meta-XXXXXX"
static void
usage(ostream& os)
{
os << "Usage: " << program << " -mNAME=VALUE[...] INPUT_FILE OUTPUT_FILE\n\n";
os << flush;
}
static void
write_xml_tag(FILE * out, const char * tag, const char * content)
{
fprintf(out, "<%s>", tag);
for (const char * p = content; *p; ++p) {
switch (*p) {
case '&':
fputs("&", out);
break;
case '<':
fputs("<", out);
break;
case '>':
fputs(">", out);
break;
default:
putc(*p, out);
break;
}
}
fprintf(out, "</%s>", tag);
}
int
main(int argc, char **argv)
{
program = argv[0];
map<string, const char *> meta;
// FIXME: Use getopt() or something.
++argv;
--argc;
while (argv[0] && argv[0][0] == '-') {
switch (argv[0][1]) {
case '-':
if (argv[0][2] == '\0') {
// End of options.
++argv;
--argc;
goto last_option;
}
if (strcmp(argv[0] + 2, "help") == 0) {
usage(cout);
exit(0);
}
if (strcmp(argv[0] + 2, "version") == 0) {
cout << "inject-meta - " PACKAGE_STRING "\n";
exit(0);
}
break;
case 'm': {
const char * tag = argv[0] + 2;
const char * eq = strchr(tag, '=');
if (!eq) {
cerr << "Option '" << argv[0] << "' missing '='\n\n";
usage(cerr);
_Exit(EX_USAGE);
}
meta[string(tag, eq - tag)] = eq + 1;
++argv;
--argc;
continue;
}
}
cerr << "Option '" << argv[0] << "' unknown\n\n";
argc = -1;
break;
}
last_option:
if (argc != 2) {
usage(cerr);
_Exit(EX_USAGE);
}
const char * input = argv[0];
const char * output = argv[1];
void * handle = convert_init();
// Create a temporary directory.
const char * p = getenv("TMPDIR");
if (!p) p = "/tmp";
char * dir_template = new char[sizeof(TEMP_DIR_TEMPLATE) + strlen(p)];
strcpy(dir_template, p);
strcat(dir_template, TEMP_DIR_TEMPLATE);
p = mkdtemp(dir_template);
if (!p) {
cerr << program << ": mkdtemp() failed (" << strerror(errno) << ")\n";
_Exit(1);
}
string tmpdir(p);
string odt = tmpdir + "/tmp.odt";
int rc = convert(handle, false, input, odt.c_str());
if (!rc) {
int cwd_fd = open(".", O_RDONLY);
if (cwd_fd < 0) {
cerr << program << ": open(\".\") failed (" << strerror(errno) << ")\n";
_Exit(1);
}
if (chdir(tmpdir.c_str()) < 0) {
cerr << program << ": chdir() failed (" << strerror(errno) << ")\n";
_Exit(1);
}
FILE * f = popen("unzip -p tmp.odt meta.xml", "r");
if (!f) {
cerr << program << ": popen() failed (" << strerror(errno) << ")\n";
_Exit(1);
}
FILE * out = fopen("meta.xml", "w");
if (!out) {
cerr << program << ": fopen() failed (" << strerror(errno) << ")\n";
_Exit(1);
}
char *line = NULL;
size_t len = 0;
ssize_t c;
bool in_meta = false;
while ((c = getdelim(&line, &len, '>', f)) != -1) {
if (in_meta) {
if (strncmp(line, "</office:meta>", sizeof("</office:meta>") - 1) == 0) {
in_meta = false;
map<string, const char *>::const_iterator i;
for (i = meta.begin(); i != meta.end(); ++i) {
const char * tag = i->first.c_str();
write_xml_tag(out, tag, i->second);
}
meta.clear();
} else if (line[0] == '<') {
map<string, const char *>::iterator i;
for (i = meta.begin(); i != meta.end(); ++i) {
const char * tag = i->first.c_str();
if (strncmp(line + 1, tag, i->first.size()) == 0 &&
line[1 + i->first.size()] == '>') {
write_xml_tag(out, tag, i->second);
meta.erase(i);
if ((c = getdelim(&line, &len, '>', f)) == -1) break;
goto next;
}
}
}
} else {
if (strncmp(line, "<office:meta>", sizeof("<office:meta>") - 1) == 0) {
in_meta = true;
}
}
fwrite(line, c, 1, out);
next:;
}
if (fclose(out) < 0) {
cerr << program << ": fclose() failed (" << strerror(errno) << ")\n";
_Exit(1);
}
if (pclose(f) < 0) {
cerr << program << ": pclose() failed (" << strerror(errno) << ")\n";
_Exit(1);
}
int r = system("zip tmp.odt meta.xml");
unlink("meta.xml");
if (!WIFEXITED(r) || WEXITSTATUS(r) != 0) {
cerr << program << ": failed to run zip command\n";
_Exit(1);
}
if (fchdir(cwd_fd) < 0) {
cerr << program << ": fchdir() failed (" << strerror(errno) << ")\n";
_Exit(1);
}
rc = convert(handle, false, odt.c_str(), output);
unlink(odt.c_str());
}
rmdir(tmpdir.c_str());
convert_cleanup(handle);
// Avoid segfault from LibreOffice by terminating swiftly.
_Exit(rc);
}