-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtcucodec.c
1357 lines (1274 loc) · 36.5 KB
/
tcucodec.c
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*************************************************************************************************
* Popular encoders and decoders of the utility API
* Copyright (C) 2006-2011 FAL Labs
* This file is part of Tokyo Cabinet.
* Tokyo Cabinet is free software; you can redistribute it and/or modify it under the terms of
* the GNU Lesser General Public License as published by the Free Software Foundation; either
* version 2.1 of the License or any later version. Tokyo Cabinet is distributed in the hope
* that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
* License for more details.
* You should have received a copy of the GNU Lesser General Public License along with Tokyo
* Cabinet; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA.
*************************************************************************************************/
#include <tcutil.h>
#include "myconf.h"
/* global variables */
const char *g_progname; // program name
/* function prototypes */
int main(int argc, char **argv);
static void usage(void);
static void eprintf(const char *format, ...);
static int runurl(int argc, char **argv);
static int runbase(int argc, char **argv);
static int runquote(int argc, char **argv);
static int runmime(int argc, char **argv);
static int runhex(int argc, char **argv);
static int runpack(int argc, char **argv);
static int runtcbs(int argc, char **argv);
static int runzlib(int argc, char **argv);
static int runbzip(int argc, char **argv);
static int runxml(int argc, char **argv);
static int runcstr(int argc, char **argv);
static int runucs(int argc, char **argv);
static int runhash(int argc, char **argv);
static int runcipher(int argc, char **argv);
static int rundate(int argc, char **argv);
static int runtmpl(int argc, char **argv);
static int runconf(int argc, char **argv);
static int procurl(const char *ibuf, int isiz, bool dec, bool br, const char *base);
static int procbase(const char *ibuf, int isiz, bool dec);
static int procquote(const char *ibuf, int isiz, bool dec);
static int procmime(const char *ibuf, int isiz, bool dec, const char *ename, bool qb, bool on,
bool hd, bool bd, int part);
static int prochex(const char *ibuf, int isiz, bool dec);
static int procpack(const char *ibuf, int isiz, bool dec, bool bwt);
static int proctcbs(const char *ibuf, int isiz, bool dec);
static int proczlib(const char *ibuf, int isiz, bool dec, bool gz);
static int procbzip(const char *ibuf, int isiz, bool dec);
static int procxml(const char *ibuf, int isiz, bool dec, bool br);
static int proccstr(const char *ibuf, int isiz, bool dec, bool js);
static int procucs(const char *ibuf, int isiz, bool dec, bool un, const char *kw);
static int prochash(const char *ibuf, int isiz, bool crc, int ch);
static int proccipher(const char *ibuf, int isiz, const char *key);
static int procdate(const char *str, int jl, bool wf, bool rf);
static int proctmpl(const char *ibuf, int isiz, TCMAP *vars);
static int procconf(int mode);
/* main routine */
int main(int argc, char **argv){
g_progname = argv[0];
if(argc < 2) usage();
int rv = 0;
if(!strcmp(argv[1], "url")){
rv = runurl(argc, argv);
} else if(!strcmp(argv[1], "base")){
rv = runbase(argc, argv);
} else if(!strcmp(argv[1], "quote")){
rv = runquote(argc, argv);
} else if(!strcmp(argv[1], "mime")){
rv = runmime(argc, argv);
} else if(!strcmp(argv[1], "hex")){
rv = runhex(argc, argv);
} else if(!strcmp(argv[1], "pack")){
rv = runpack(argc, argv);
} else if(!strcmp(argv[1], "tcbs")){
rv = runtcbs(argc, argv);
} else if(!strcmp(argv[1], "zlib")){
rv = runzlib(argc, argv);
} else if(!strcmp(argv[1], "bzip")){
rv = runbzip(argc, argv);
} else if(!strcmp(argv[1], "xml")){
rv = runxml(argc, argv);
} else if(!strcmp(argv[1], "cstr")){
rv = runcstr(argc, argv);
} else if(!strcmp(argv[1], "ucs")){
rv = runucs(argc, argv);
} else if(!strcmp(argv[1], "hash")){
rv = runhash(argc, argv);
} else if(!strcmp(argv[1], "cipher")){
rv = runcipher(argc, argv);
} else if(!strcmp(argv[1], "date")){
rv = rundate(argc, argv);
} else if(!strcmp(argv[1], "tmpl")){
rv = runtmpl(argc, argv);
} else if(!strcmp(argv[1], "conf")){
rv = runconf(argc, argv);
} else {
usage();
}
return rv;
}
/* print the usage and exit */
static void usage(void){
fprintf(stderr, "%s: popular encoders and decoders of Tokyo Cabinet\n", g_progname);
fprintf(stderr, "\n");
fprintf(stderr, "usage:\n");
fprintf(stderr, " %s url [-d] [-br] [-rs base] [file]\n", g_progname);
fprintf(stderr, " %s base [-d] [file]\n", g_progname);
fprintf(stderr, " %s quote [-d] [file]\n", g_progname);
fprintf(stderr, " %s mime [-d] [-en name] [-q] [-on] [-hd] [-bd] [-part num] [file]\n",
g_progname);
fprintf(stderr, " %s hex [-d] [file]\n", g_progname);
fprintf(stderr, " %s pack [-d] [-bwt] [file]\n", g_progname);
fprintf(stderr, " %s tcbs [-d] [file]\n", g_progname);
fprintf(stderr, " %s zlib [-d] [-gz] [file]\n", g_progname);
fprintf(stderr, " %s bzip [-d] [file]\n", g_progname);
fprintf(stderr, " %s xml [-d] [-br] [file]\n", g_progname);
fprintf(stderr, " %s cstr [-d] [-js] [file]\n", g_progname);
fprintf(stderr, " %s ucs [-d] [-un] [file]\n", g_progname);
fprintf(stderr, " %s hash [-crc] [-ch num] [file]\n", g_progname);
fprintf(stderr, " %s cipher [-key str] [file]\n", g_progname);
fprintf(stderr, " %s date [-ds str] [-jl num] [-wf] [-rf]\n", g_progname);
fprintf(stderr, " %s tmpl [-var name val] [file]\n", g_progname);
fprintf(stderr, " %s conf [-v|-i|-l|-p]\n", g_progname);
fprintf(stderr, "\n");
exit(1);
}
/* print formatted error string */
static void eprintf(const char *format, ...){
va_list ap;
va_start(ap, format);
fprintf(stderr, "%s: ", g_progname);
vfprintf(stderr, format, ap);
fprintf(stderr, "\n");
va_end(ap);
}
/* parse arguments of url command */
static int runurl(int argc, char **argv){
char *path = NULL;
bool dec = false;
bool br = false;
char *base = NULL;
for(int i = 2; i < argc; i++){
if(!path && argv[i][0] == '-'){
if(!strcmp(argv[i], "-d")){
dec = true;
} else if(!strcmp(argv[i], "-br")){
br = true;
} else if(!strcmp(argv[i], "-rs")){
if(++i >= argc) usage();
base = argv[i];
} else {
usage();
}
} else if(!path){
path = argv[i];
} else {
usage();
}
}
char *ibuf;
int isiz;
if(path && path[0] == '@'){
isiz = strlen(path) - 1;
ibuf = tcmemdup(path + 1, isiz);
} else {
ibuf = tcreadfile(path, -1, &isiz);
}
if(!ibuf){
eprintf("%s: cannot open", path ? path : "(stdin)");
return 1;
}
int rv = procurl(ibuf, isiz, dec, br, base);
if(path && path[0] == '@' && !br) printf("\n");
tcfree(ibuf);
return rv;
}
/* parse arguments of base command */
static int runbase(int argc, char **argv){
char *path = NULL;
bool dec = false;
for(int i = 2; i < argc; i++){
if(!path && argv[i][0] == '-'){
if(!strcmp(argv[i], "-d")){
dec = true;
} else {
usage();
}
} else if(!path){
path = argv[i];
} else {
usage();
}
}
char *ibuf;
int isiz;
if(path && path[0] == '@'){
isiz = strlen(path) - 1;
ibuf = tcmemdup(path + 1, isiz);
} else {
ibuf = tcreadfile(path, -1, &isiz);
}
if(!ibuf){
eprintf("%s: cannot open", path ? path : "(stdin)");
return 1;
}
int rv = procbase(ibuf, isiz, dec);
if(path && path[0] == '@') printf("\n");
tcfree(ibuf);
return rv;
}
/* parse arguments of quote command */
static int runquote(int argc, char **argv){
char *path = NULL;
bool dec = false;
for(int i = 2; i < argc; i++){
if(!path && argv[i][0] == '-'){
if(!strcmp(argv[i], "-d")){
dec = true;
} else {
usage();
}
} else if(!path){
path = argv[i];
} else {
usage();
}
}
char *ibuf;
int isiz;
if(path && path[0] == '@'){
isiz = strlen(path) - 1;
ibuf = tcmemdup(path + 1, isiz);
} else {
ibuf = tcreadfile(path, -1, &isiz);
}
if(!ibuf){
eprintf("%s: cannot open", path ? path : "(stdin)");
return 1;
}
int rv = procquote(ibuf, isiz, dec);
if(path && path[0] == '@') printf("\n");
tcfree(ibuf);
return rv;
}
/* parse arguments of mime command */
static int runmime(int argc, char **argv){
char *path = NULL;
bool dec = false;
char *ename = NULL;
bool qb = false;
bool on = false;
bool hd = false;
bool bd = false;
int part = -1;
for(int i = 2; i < argc; i++){
if(!path && argv[i][0] == '-'){
if(!strcmp(argv[i], "-d")){
dec = true;
} else if(!strcmp(argv[i], "-en")){
if(++i >= argc) usage();
ename = argv[i];
} else if(!strcmp(argv[i], "-q")){
qb = true;
} else if(!strcmp(argv[i], "-on")){
on = true;
} else if(!strcmp(argv[i], "-hd")){
hd = true;
} else if(!strcmp(argv[i], "-bd")){
bd = true;
} else if(!strcmp(argv[i], "-part")){
if(++i >= argc) usage();
part = tcatoix(argv[i]);
} else {
usage();
}
} else if(!path){
path = argv[i];
} else {
usage();
}
}
char *ibuf;
int isiz;
if(path && path[0] == '@'){
isiz = strlen(path) - 1;
ibuf = tcmemdup(path + 1, isiz);
} else {
ibuf = tcreadfile(path, -1, &isiz);
}
if(!ibuf){
eprintf("%s: cannot open", path ? path : "(stdin)");
return 1;
}
if(!ename) ename = "UTF-8";
int rv = procmime(ibuf, isiz, dec, ename, qb, on, hd, bd, part);
if(path && path[0] == '@') printf("\n");
tcfree(ibuf);
return rv;
}
/* parse arguments of hex command */
static int runhex(int argc, char **argv){
char *path = NULL;
bool dec = false;
for(int i = 2; i < argc; i++){
if(!path && argv[i][0] == '-'){
if(!strcmp(argv[i], "-d")){
dec = true;
} else {
usage();
}
} else if(!path){
path = argv[i];
} else {
usage();
}
}
char *ibuf;
int isiz;
if(path && path[0] == '@'){
isiz = strlen(path) - 1;
ibuf = tcmemdup(path + 1, isiz);
} else {
ibuf = tcreadfile(path, -1, &isiz);
}
if(!ibuf){
eprintf("%s: cannot open", path ? path : "(stdin)");
return 1;
}
int rv = prochex(ibuf, isiz, dec);
if(path && path[0] == '@') printf("\n");
tcfree(ibuf);
return rv;
}
/* parse arguments of pack command */
static int runpack(int argc, char **argv){
char *path = NULL;
bool dec = false;
bool bwt = false;
for(int i = 2; i < argc; i++){
if(!path && argv[i][0] == '-'){
if(!strcmp(argv[i], "-d")){
dec = true;
} else if(!strcmp(argv[i], "-bwt")){
bwt = true;
} else {
usage();
}
} else if(!path){
path = argv[i];
} else {
usage();
}
}
char *ibuf;
int isiz;
if(path && path[0] == '@'){
isiz = strlen(path) - 1;
ibuf = tcmemdup(path + 1, isiz);
} else {
ibuf = tcreadfile(path, -1, &isiz);
}
if(!ibuf){
eprintf("%s: cannot open", path ? path : "(stdin)");
return 1;
}
int rv = procpack(ibuf, isiz, dec, bwt);
if(path && path[0] == '@') printf("\n");
tcfree(ibuf);
return rv;
}
/* parse arguments of tcbs command */
static int runtcbs(int argc, char **argv){
char *path = NULL;
bool dec = false;
for(int i = 2; i < argc; i++){
if(!path && argv[i][0] == '-'){
if(!strcmp(argv[i], "-d")){
dec = true;
} else {
usage();
}
} else if(!path){
path = argv[i];
} else {
usage();
}
}
char *ibuf;
int isiz;
if(path && path[0] == '@'){
isiz = strlen(path) - 1;
ibuf = tcmemdup(path + 1, isiz);
} else {
ibuf = tcreadfile(path, -1, &isiz);
}
if(!ibuf){
eprintf("%s: cannot open", path ? path : "(stdin)");
return 1;
}
int rv = proctcbs(ibuf, isiz, dec);
if(path && path[0] == '@') printf("\n");
tcfree(ibuf);
return rv;
}
/* parse arguments of zlib command */
static int runzlib(int argc, char **argv){
char *path = NULL;
bool dec = false;
bool gz = false;
for(int i = 2; i < argc; i++){
if(!path && argv[i][0] == '-'){
if(!strcmp(argv[i], "-d")){
dec = true;
} else if(!strcmp(argv[i], "-gz")){
gz = true;
} else {
usage();
}
} else if(!path){
path = argv[i];
} else {
usage();
}
}
char *ibuf;
int isiz;
if(path && path[0] == '@'){
isiz = strlen(path) - 1;
ibuf = tcmemdup(path + 1, isiz);
} else {
ibuf = tcreadfile(path, -1, &isiz);
}
if(!ibuf){
eprintf("%s: cannot open", path ? path : "(stdin)");
return 1;
}
int rv = proczlib(ibuf, isiz, dec, gz);
if(path && path[0] == '@') printf("\n");
tcfree(ibuf);
return rv;
}
/* parse arguments of bzip command */
static int runbzip(int argc, char **argv){
char *path = NULL;
bool dec = false;
for(int i = 2; i < argc; i++){
if(!path && argv[i][0] == '-'){
if(!strcmp(argv[i], "-d")){
dec = true;
} else {
usage();
}
} else if(!path){
path = argv[i];
} else {
usage();
}
}
char *ibuf;
int isiz;
if(path && path[0] == '@'){
isiz = strlen(path) - 1;
ibuf = tcmemdup(path + 1, isiz);
} else {
ibuf = tcreadfile(path, -1, &isiz);
}
if(!ibuf){
eprintf("%s: cannot open", path ? path : "(stdin)");
return 1;
}
int rv = procbzip(ibuf, isiz, dec);
if(path && path[0] == '@') printf("\n");
tcfree(ibuf);
return rv;
}
/* parse arguments of xml command */
static int runxml(int argc, char **argv){
char *path = NULL;
bool dec = false;
bool br = false;
for(int i = 2; i < argc; i++){
if(!path && argv[i][0] == '-'){
if(!strcmp(argv[i], "-d")){
dec = true;
} else if(!strcmp(argv[i], "-br")){
br = true;
} else {
usage();
}
} else if(!path){
path = argv[i];
} else {
usage();
}
}
char *ibuf;
int isiz;
if(path && path[0] == '@'){
isiz = strlen(path) - 1;
ibuf = tcmemdup(path + 1, isiz);
} else {
ibuf = tcreadfile(path, -1, &isiz);
}
if(!ibuf){
eprintf("%s: cannot open", path ? path : "(stdin)");
return 1;
}
int rv = procxml(ibuf, isiz, dec, br);
if(path && path[0] == '@') printf("\n");
tcfree(ibuf);
return rv;
}
/* parse arguments of cstr command */
static int runcstr(int argc, char **argv){
char *path = NULL;
bool dec = false;
bool js = false;
for(int i = 2; i < argc; i++){
if(!path && argv[i][0] == '-'){
if(!strcmp(argv[i], "-d")){
dec = true;
} else if(!strcmp(argv[i], "-js")){
js = true;
} else {
usage();
}
} else if(!path){
path = argv[i];
} else {
usage();
}
}
char *ibuf;
int isiz;
if(path && path[0] == '@'){
isiz = strlen(path) - 1;
ibuf = tcmemdup(path + 1, isiz);
} else {
ibuf = tcreadfile(path, -1, &isiz);
}
if(!ibuf){
eprintf("%s: cannot open", path ? path : "(stdin)");
return 1;
}
int rv = proccstr(ibuf, isiz, dec, js);
if(path && path[0] == '@') printf("\n");
tcfree(ibuf);
return rv;
}
/* parse arguments of ucs command */
static int runucs(int argc, char **argv){
char *path = NULL;
bool dec = false;
bool un = false;
char *kw = NULL;
for(int i = 2; i < argc; i++){
if(!path && argv[i][0] == '-'){
if(!strcmp(argv[i], "-d")){
dec = true;
} else if(!strcmp(argv[i], "-un")){
un = true;
} else if(!strcmp(argv[i], "-kw")){
if(++i >= argc) usage();
kw = argv[i];
} else {
usage();
}
} else if(!path){
path = argv[i];
} else {
usage();
}
}
char *ibuf;
int isiz;
if(path && path[0] == '@'){
isiz = strlen(path) - 1;
ibuf = tcmemdup(path + 1, isiz);
} else {
ibuf = tcreadfile(path, -1, &isiz);
}
if(!ibuf){
eprintf("%s: cannot open", path ? path : "(stdin)");
return 1;
}
int rv = procucs(ibuf, isiz, dec, un, kw);
if(path && path[0] == '@') printf("\n");
tcfree(ibuf);
return rv;
}
/* parse arguments of hash command */
static int runhash(int argc, char **argv){
char *path = NULL;
bool crc = false;
int ch = 0;
for(int i = 2; i < argc; i++){
if(!path && argv[i][0] == '-'){
if(!strcmp(argv[i], "-crc")){
crc = true;
} else if(!strcmp(argv[i], "-ch")){
if(++i >= argc) usage();
ch = tcatoix(argv[i]);
} else {
usage();
}
} else if(!path){
path = argv[i];
} else {
usage();
}
}
char *ibuf;
int isiz;
if(path && path[0] == '@'){
isiz = strlen(path) - 1;
ibuf = tcmemdup(path + 1, isiz);
} else {
ibuf = tcreadfile(path, -1, &isiz);
}
if(!ibuf){
eprintf("%s: cannot open", path ? path : "(stdin)");
return 1;
}
int rv = prochash(ibuf, isiz, crc, ch);
tcfree(ibuf);
return rv;
}
/* parse arguments of cipher command */
static int runcipher(int argc, char **argv){
char *path = NULL;
char *key = NULL;
for(int i = 2; i < argc; i++){
if(!path && argv[i][0] == '-'){
if(!strcmp(argv[i], "-key")){
if(++i >= argc) usage();
key = argv[i];
} else {
usage();
}
} else if(!path){
path = argv[i];
} else {
usage();
}
}
char *ibuf;
int isiz;
if(path && path[0] == '@'){
isiz = strlen(path) - 1;
ibuf = tcmemdup(path + 1, isiz);
} else {
ibuf = tcreadfile(path, -1, &isiz);
}
if(!ibuf){
eprintf("%s: cannot open", path ? path : "(stdin)");
return 1;
}
int rv = proccipher(ibuf, isiz, key);
if(path && path[0] == '@') printf("\n");
tcfree(ibuf);
return rv;
}
/* parse arguments of date command */
static int rundate(int argc, char **argv){
char *str = NULL;
int jl = INT_MAX;
bool wf = false;
bool rf = false;
for(int i = 2; i < argc; i++){
if(argv[i][0] == '-'){
if(!strcmp(argv[i], "-ds")){
if(++i >= argc) usage();
str = argv[i];
} else if(!strcmp(argv[i], "-jl")){
if(++i >= argc) usage();
jl = tcatoix(argv[i]);
} else if(!strcmp(argv[i], "-wf")){
wf = true;
} else if(!strcmp(argv[i], "-rf")){
rf = true;
} else {
usage();
}
} else {
usage();
}
}
int rv = procdate(str, jl, wf, rf);
return rv;
}
/* parse arguments of tmpl command */
static int runtmpl(int argc, char **argv){
char *path = NULL;
TCMAP *vars = tcmpoolmapnew(tcmpoolglobal());
for(int i = 2; i < argc; i++){
if(!path && argv[i][0] == '-'){
if(!strcmp(argv[i], "-var")){
if(++i >= argc) usage();
const char *name = argv[i];
if(++i >= argc) usage();
const char *value = argv[i];
tcmapput2(vars, name, value);
} else {
usage();
}
} else if(!path){
path = argv[i];
} else {
usage();
}
}
char *ibuf;
int isiz;
if(path && path[0] == '@'){
isiz = strlen(path) - 1;
ibuf = tcmemdup(path + 1, isiz);
} else {
ibuf = tcreadfile(path, -1, &isiz);
}
if(!ibuf){
eprintf("%s: cannot open", path ? path : "(stdin)");
return 1;
}
int rv = proctmpl(ibuf, isiz, vars);
if(path && path[0] == '@') printf("\n");
tcfree(ibuf);
return rv;
}
/* parse arguments of conf command */
static int runconf(int argc, char **argv){
int mode = 0;
for(int i = 2; i < argc; i++){
if(argv[i][0] == '-'){
if(!strcmp(argv[i], "-v")){
mode = 'v';
} else if(!strcmp(argv[i], "-i")){
mode = 'i';
} else if(!strcmp(argv[i], "-l")){
mode = 'l';
} else if(!strcmp(argv[i], "-p")){
mode = 'p';
} else {
usage();
}
} else {
usage();
}
}
int rv = procconf(mode);
return rv;
}
/* perform url command */
static int procurl(const char *ibuf, int isiz, bool dec, bool br, const char *base){
if(base){
char *obuf = tcurlresolve(base, ibuf);
printf("%s", obuf);
tcfree(obuf);
} else if(br){
TCMAP *elems = tcurlbreak(ibuf);
const char *elem;
if((elem = tcmapget2(elems, "self")) != NULL) printf("self: %s\n", elem);
if((elem = tcmapget2(elems, "scheme")) != NULL) printf("scheme: %s\n", elem);
if((elem = tcmapget2(elems, "host")) != NULL) printf("host: %s\n", elem);
if((elem = tcmapget2(elems, "port")) != NULL) printf("port: %s\n", elem);
if((elem = tcmapget2(elems, "authority")) != NULL) printf("authority: %s\n", elem);
if((elem = tcmapget2(elems, "path")) != NULL) printf("path: %s\n", elem);
if((elem = tcmapget2(elems, "file")) != NULL) printf("file: %s\n", elem);
if((elem = tcmapget2(elems, "query")) != NULL) printf("query: %s\n", elem);
if((elem = tcmapget2(elems, "fragment")) != NULL) printf("fragment: %s\n", elem);
tcmapdel(elems);
} else if(dec){
int osiz;
char *obuf = tcurldecode(ibuf, &osiz);
fwrite(obuf, 1, osiz, stdout);
tcfree(obuf);
} else {
char *obuf = tcurlencode(ibuf, isiz);
fwrite(obuf, 1, strlen(obuf), stdout);
tcfree(obuf);
}
return 0;
}
/* perform base command */
static int procbase(const char *ibuf, int isiz, bool dec){
if(dec){
int osiz;
char *obuf = tcbasedecode(ibuf, &osiz);
fwrite(obuf, 1, osiz, stdout);
tcfree(obuf);
} else {
char *obuf = tcbaseencode(ibuf, isiz);
fwrite(obuf, 1, strlen(obuf), stdout);
tcfree(obuf);
}
return 0;
}
/* perform quote command */
static int procquote(const char *ibuf, int isiz, bool dec){
if(dec){
int osiz;
char *obuf = tcquotedecode(ibuf, &osiz);
fwrite(obuf, 1, osiz, stdout);
tcfree(obuf);
} else {
char *obuf = tcquoteencode(ibuf, isiz);
fwrite(obuf, 1, strlen(obuf), stdout);
tcfree(obuf);
}
return 0;
}
/* perform mime command */
static int procmime(const char *ibuf, int isiz, bool dec, const char *ename, bool qb, bool on,
bool hd, bool bd, int part){
if(hd || bd || part > 0){
TCMAP *hmap = tcmapnew2(16);
int osiz;
char *obuf = tcmimebreak(ibuf, isiz, hmap, &osiz);
if(part > 0){
const char *value;
if(!(value = tcmapget2(hmap, "TYPE")) || !tcstrifwm(value, "multipart/") ||
!(value = tcmapget2(hmap, "BOUNDARY"))){
eprintf("not multipart");
} else {
TCLIST *parts = tcmimeparts(obuf, osiz, value);
if(part <= tclistnum(parts)){
int bsiz;
const char *body = tclistval(parts, part - 1, &bsiz);
fwrite(body, 1, bsiz, stdout);
} else {
eprintf("no such part");
}
tclistdel(parts);
}
} else {
if(hd){
TCLIST *names = tcmapkeys(hmap);
tclistsort(names);
int num = tclistnum(names);
for(int i = 0; i < num; i++){
const char *name = tclistval2(names, i);
printf("%s\t%s\n", name, tcmapget2(hmap, name));
}
tclistdel(names);
if(bd) putchar('\n');
}
if(bd) fwrite(obuf, 1, osiz, stdout);
}
tcfree(obuf);
tcmapdel(hmap);
} else if(dec){
char ebuf[32];
char *obuf = tcmimedecode(ibuf, ebuf);
if(on){
fwrite(ebuf, 1, strlen(ebuf), stdout);
} else {
fwrite(obuf, 1, strlen(obuf), stdout);
}
tcfree(obuf);
} else {
char *obuf = tcmimeencode(ibuf, ename, !qb);
fwrite(obuf, 1, strlen(obuf), stdout);
tcfree(obuf);
}
return 0;
}
/* perform hex command */
static int prochex(const char *ibuf, int isiz, bool dec){
if(dec){
int osiz;
char *obuf = tchexdecode(ibuf, &osiz);
fwrite(obuf, 1, osiz, stdout);
tcfree(obuf);
} else {
char *obuf = tchexencode(ibuf, isiz);
fwrite(obuf, 1, strlen(obuf), stdout);
tcfree(obuf);
}
return 0;
}
/* perform pack command */
static int procpack(const char *ibuf, int isiz, bool dec, bool bwt){
if(dec){
int osiz;
char *obuf = tcpackdecode(ibuf, isiz, &osiz);
if(bwt && osiz > 0){
int idx, step;
TCREADVNUMBUF(obuf, idx, step);
char *tbuf = tcbwtdecode(obuf + step, osiz - step, idx);
fwrite(tbuf, 1, osiz - step, stdout);
tcfree(tbuf);
} else {
fwrite(obuf, 1, osiz, stdout);
}
tcfree(obuf);
} else {
char *tbuf = NULL;
if(bwt){
int idx;
tbuf = tcbwtencode(ibuf, isiz, &idx);
char vnumbuf[sizeof(int)+1];
int step;
TCSETVNUMBUF(step, vnumbuf, idx);
tbuf = tcrealloc(tbuf, isiz + step + 1);
memmove(tbuf + step, tbuf, isiz);
memcpy(tbuf, vnumbuf, step);
isiz += step;
ibuf = tbuf;
}
int osiz;
char *obuf = tcpackencode(ibuf, isiz, &osiz);
fwrite(obuf, 1, osiz, stdout);
tcfree(obuf);
tcfree(tbuf);
}
return 0;
}
/* perform tcbs command */
static int proctcbs(const char *ibuf, int isiz, bool dec){
if(dec){
int osiz;
char *obuf = tcbsdecode(ibuf, isiz, &osiz);
fwrite(obuf, 1, osiz, stdout);
tcfree(obuf);
} else {
int osiz;
char *obuf = tcbsencode(ibuf, isiz, &osiz);
fwrite(obuf, 1, osiz, stdout);
tcfree(obuf);
}
return 0;
}
/* perform zlib command */
static int proczlib(const char *ibuf, int isiz, bool dec, bool gz){
if(dec){
int osiz;
char *obuf = gz ? tcgzipdecode(ibuf, isiz, &osiz) : tcinflate(ibuf, isiz, &osiz);
if(obuf){