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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
|
#include <assert.h>
#include <ctype.h>
#include <getopt.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <qr/bitmap.h>
#include <qr/bitstream.h>
#include <qr/code.h>
#include <qr/data.h>
#include <qr/version.h>
struct config {
int version;
enum qr_ec_level ec;
enum qr_data_type dtype;
int ansi;
const char * file;
const char * outfile;
const char * input;
};
struct qr_code * create(int version,
enum qr_ec_level ec,
enum qr_data_type dtype,
const char * input,
size_t len)
{
struct qr_data * data;
struct qr_code * code;
data = qr_data_create(version, ec, dtype, input, len);
if (!data) {
/* BUG: this could also indicate OOM or
* some other error.
*/
fprintf(stderr, "Invalid data\n");
exit(1);
}
code = qr_code_create(data);
qr_data_destroy(data);
if (!code) {
perror("Failed to create code");
exit(2);
}
return code;
}
void output_pbm(FILE * file, const struct qr_bitmap * bmp, const char * comment)
{
unsigned char * row;
int x, y;
fputs("P1\n", file);
if (comment)
fprintf(file, "# %s\n", comment);
fprintf(file, "%u %u\n",
(unsigned)bmp->width + 8,
(unsigned)bmp->height + 8);
row = bmp->bits;
for (y = -4; y < (int)bmp->height + 4; ++y) {
if (y < 0 || y >= (int)bmp->height) {
for (x = 0; x < (int)bmp->width + 8; ++x)
fputs("0 ", file);
fputc('\n', file);
continue;
}
fputs("0 0 0 0 ", file);
for (x = 0; x < (int)bmp->width; ++x) {
int mask = 1 << x % CHAR_BIT;
int byte = row[x / CHAR_BIT];
fprintf(file, "%c ", (byte & mask) ? '1' : '0');
}
fputs("0 0 0 0\n", file);
row += bmp->stride;
}
}
void output_ansi(FILE * file, const struct qr_bitmap * bmp)
{
const char * out[2] = {
" ",
"\033[7m \033[0m",
};
unsigned char * line;
size_t x, y;
line = bmp->bits;
for (y = 0; y < bmp->height; ++y) {
for (x = 0; x < bmp->width; ++x) {
int mask = 1 << (x % CHAR_BIT);
int byte = line[x / CHAR_BIT];
fprintf(file, "%s", out[!!(byte & mask)]);
}
fputc('\n', file);
line += bmp->stride;
}
}
void show_help() {
fprintf(stderr,
"Usage:\n\t%s [options] <data>\n\n"
"\t-h Display this help message\n"
"\t-f <file> File containing data to encode (- for stdin)\n"
"\t-v <n> Specify QR version (size) 1 <= n <= 40\n"
"\t-e <type> Specify EC type: L, M, Q, H\n"
"\t-a Output as ANSI graphics (default)\n"
"\t-p Output as PBM\n"
"\t-o <file> File to write (- for stdout)\n\n",
"qrgen");
}
void set_default_config(struct config * conf)
{
conf->version = 0;
conf->ec = QR_EC_LEVEL_M;
conf->dtype = QR_DATA_8BIT;
conf->ansi = 1;
conf->file = NULL;
conf->outfile = NULL;
conf->input = NULL;
}
void parse_options(int argc, char ** argv, struct config * conf)
{
int c;
for (;;) {
c = getopt(argc, argv, ":hf:v:e:t:apo:");
if (c == -1) /* no more options */
break;
switch (c) {
case 'h': /* help */
show_help();
exit(0);
break;
case 'f': /* file */
conf->file = optarg;
break;
case 'v': /* version */
conf->version = atoi(optarg);
if (conf->version < 1 || conf->version > 40) {
fprintf(stderr,
"Version must be between 1 and 40\n");
exit(1);
}
break;
case 'e': /* ec */
switch (tolower(optarg[0])) {
case 'l': conf->ec = QR_EC_LEVEL_L; break;
case 'm': conf->ec = QR_EC_LEVEL_M; break;
case 'q': conf->ec = QR_EC_LEVEL_Q; break;
case 'h': conf->ec = QR_EC_LEVEL_H; break;
default:
fprintf(stderr,
"Invalid EC type (%c). Choose from"
" L, M, Q or H.\n", optarg[0]);
}
break;
case 't': /* type */
fprintf(stderr, "XXX: ignored \"type\"\n");
break;
case 'a': /* ansi */
conf->ansi = 1; break;
case 'p': /* pnm */
conf->ansi = 0; break;
case 'o': /* output file */
conf->outfile = optarg; break;
case ':':
fprintf(stderr,
"Argument \"%s\" missing parameter\n",
argv[optind-1]);
exit(1);
break;
case '?': default:
fprintf(stderr,
"Invalid argument: \"%s\"\n"
"Try -h for help\n",
argv[optind-1]);
exit(1);
break;
}
}
if (optind < argc)
conf->input = argv[optind++];
if (!conf->file && !conf->input) {
fprintf(stderr, "No data (try -h for help)\n");
exit(1);
}
}
void slurp_file(const char * path, char ** data, size_t * len)
{
const size_t chunk_size = 65536;
FILE * file;
char * tmpbuf;
size_t count;
if (strcmp(path, "-") == 0)
file = stdin;
else
file = fopen(path, "rb");
if (!file) {
fprintf(stderr, "Failed to open %s\n", path);
exit(2);
}
*data = NULL;
*len = 0;
do {
tmpbuf = realloc(*data, *len + chunk_size);
if (!tmpbuf) {
perror("realloc");
exit(2);
}
*data = tmpbuf;
count = fread(*data + *len, 1, chunk_size, file);
if (count == 0 && !feof(file)) {
perror("fread");
exit(2);
}
*len += count;
} while (*len == chunk_size);
fclose(file);
}
int main(int argc, char ** argv) {
struct config conf;
struct qr_code * code;
char * file_data;
size_t len;
FILE * outfile;
set_default_config(&conf);
parse_options(argc, argv, &conf);
if (conf.file)
slurp_file(conf.file, &file_data, &len);
else
len = strlen(conf.input);
if (!conf.outfile) {
conf.outfile = conf.ansi ? "-" : "qr.pbm";
}
if (strcmp(conf.outfile, "-") == 0) {
outfile = stdout;
} else {
outfile = fopen(conf.outfile, "wb");
if (!outfile) {
perror("fopen");
exit(2);
}
}
code = create(conf.version,
conf.ec,
conf.dtype,
conf.file ? file_data : conf.input,
len);
if (conf.file)
free(file_data);
if (conf.ansi)
output_ansi(outfile, code->modules);
else
output_pbm(outfile, code->modules, "libqr v" QR_VERSION);
fclose(outfile);
qr_code_destroy(code);
return 0;
}
|