2023-04-13 03:46:53 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2023-04-18 02:11:59 +00:00
|
|
|
#include "arg.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
2023-04-18 01:07:24 +00:00
|
|
|
#define LAT_USAGE "usage: lat [-cnbVh] [files..]"
|
2023-04-13 13:03:33 +00:00
|
|
|
|
|
|
|
void help(void) {
|
|
|
|
printf("%s\n", LAT_USAGE);
|
|
|
|
printf("options:\n"
|
|
|
|
"\t-c, --color\t toggle whether to print color or not\n"
|
|
|
|
"\t-n, --lines\t toggle whether to print line numbers or not\n"
|
2023-04-18 02:04:03 +00:00
|
|
|
"\t-t, --headers\t toggle whether to print file headers or not\n"
|
2023-04-18 01:07:24 +00:00
|
|
|
"\t-b, --binary\t toggle whether to force the data to be treated as "
|
|
|
|
"binary or not\n"
|
2023-04-13 13:03:33 +00:00
|
|
|
"\t-V, --version\t show program version\n"
|
|
|
|
"\t-h, --help\t display this help text\n");
|
2023-04-18 01:07:24 +00:00
|
|
|
printf("");
|
2023-04-13 13:03:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void version(void) {
|
2023-04-18 01:55:08 +00:00
|
|
|
printf("lat - v%s built %s at %s\n", LAT_VERSION, __DATE__, __TIME__);
|
2023-04-13 13:03:33 +00:00
|
|
|
}
|
|
|
|
|
2023-04-13 03:46:53 +00:00
|
|
|
struct config conf;
|
|
|
|
void argerr(char *r, char *arg) {
|
2023-04-13 13:03:33 +00:00
|
|
|
printf("lat: %s '%s'\n", r, arg);
|
|
|
|
printf("%s\n", LAT_USAGE);
|
2023-04-13 03:46:53 +00:00
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
void parselongarg(char *arg) {
|
|
|
|
if (strcmp(arg, "--color") == 0) {
|
|
|
|
conf.color = !conf.color;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(arg, "--lines") == 0) {
|
|
|
|
conf.lines = !conf.lines;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-04-18 02:11:59 +00:00
|
|
|
if (strcmp(arg, "--headers") == 0) {
|
2023-04-18 02:04:03 +00:00
|
|
|
conf.headers = !conf.headers;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-04-18 01:07:24 +00:00
|
|
|
if (strcmp(arg, "--binary") == 0) {
|
|
|
|
conf.force_binary = !conf.force_binary;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-04-13 13:03:33 +00:00
|
|
|
if (strcmp(arg, "--help") == 0) {
|
|
|
|
help();
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(arg, "--version") == 0) {
|
|
|
|
version();
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-04-13 03:46:53 +00:00
|
|
|
argerr("unrecognized arg", arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void parseshortarg(char *arg) {
|
|
|
|
size_t i = 1;
|
|
|
|
while (arg[i] != '\0') {
|
|
|
|
char c = arg[i];
|
|
|
|
switch (c) {
|
|
|
|
case 'c':
|
|
|
|
conf.color = !conf.color;
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
conf.lines = !conf.lines;
|
|
|
|
break;
|
2023-04-18 02:04:03 +00:00
|
|
|
case 't':
|
|
|
|
conf.headers = !conf.headers;
|
|
|
|
break;
|
2023-04-18 01:07:24 +00:00
|
|
|
case 'b':
|
|
|
|
conf.force_binary = !conf.force_binary;
|
2023-04-13 03:46:53 +00:00
|
|
|
break;
|
2023-04-13 13:03:33 +00:00
|
|
|
case 'V':
|
|
|
|
version();
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
break;
|
2023-04-18 01:07:24 +00:00
|
|
|
case 'h':
|
|
|
|
help();
|
|
|
|
exit(EXIT_SUCCESS);
|
|
|
|
break;
|
2023-04-13 13:03:33 +00:00
|
|
|
default: {
|
|
|
|
char *str = malloc(2);
|
|
|
|
str[0] = c;
|
|
|
|
str[1] = '\0';
|
|
|
|
argerr("unrecognized flag", str);
|
|
|
|
free(str);
|
|
|
|
break;
|
|
|
|
}
|
2023-04-13 03:46:53 +00:00
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int parseargs(int argc, char *argv[]) {
|
|
|
|
int i;
|
|
|
|
for (i = 1; i < argc; i++) { // offset for argv[0]
|
|
|
|
char *arg = argv[i];
|
|
|
|
|
2023-04-13 13:37:24 +00:00
|
|
|
if (arg[0] == '-' && arg[1] == '\0') {
|
2023-04-13 13:24:41 +00:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2023-04-13 03:46:53 +00:00
|
|
|
if (arg[0] == '-') {
|
|
|
|
if (arg[1] == '-') {
|
|
|
|
parselongarg(arg);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
parseshortarg(arg);
|
|
|
|
} else {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return i;
|
|
|
|
}
|