-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathview.c
executable file
·58 lines (40 loc) · 1.3 KB
/
view.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
#include "utils.h"
int view_main(int argc, char *argv[]){
int c;
int comment = 0;
int blank = 0;
while ((c = getopt(argc, argv, "cb")) >= 0) {
if (c == 'c') comment = 1;
else if (c == 'b') blank = 1;
}
if ( optind == argc || argc != optind + 1) {
fprintf(stderr, "\nUsage: atlas-utils view <tsv>\n\n");
fprintf(stderr, "Options:\n");
fprintf(stderr, " -c Add comment char '#' to the first line. \n");
fprintf(stderr, " -b Remove the blank lines.\n\n");
return 1;
}
kstring_t kt = {0, 0, 0};
gzFile fp;
fp = strcmp(argv[ optind ], "-")? gzopen(argv[ optind ], "r") : gzdopen(fileno(stdin), "r");
if (fp) {
kstream_t *ks;
ks = ks_init(fp);
if(ks_getuntil(ks, '\n', &kt, 0) >= 0 && kt.l > 0){
if(comment) printf("%c", '#');
puts(kt.s);
}
while(ks_getuntil(ks, '\n', &kt, 0) >= 0){
if(kt.s[0] == '#') continue;
if(blank && kt.l == 0) continue;
puts(kt.s);
}
ks_destroy(ks);
gzclose(fp);
}else{
fprintf(stderr, "[ERR]: can't open file %s\n", argv[ optind ]);
exit(1);
}
free(kt.s);
return 0;
}