lat/src/main.c

75 lines
1.5 KiB
C
Raw Normal View History

2023-04-11 00:14:18 +00:00
#include <libgen.h>
2023-04-10 04:58:48 +00:00
#include <stdio.h>
#include <stdlib.h>
2023-04-10 18:36:45 +00:00
#include <string.h>
2023-04-10 18:51:49 +00:00
#include <unistd.h>
2023-04-10 04:58:48 +00:00
2023-04-11 00:14:18 +00:00
#include "file.h"
2023-04-10 04:58:48 +00:00
#include "lib.h"
2023-04-10 16:51:42 +00:00
#define INVERT_T "\x1b[7m"
#define UINVERT_T "\x1b[27m"
2023-04-10 18:36:45 +00:00
#define GREY "\x1b[90m"
#define RESET "\x1b[0m"
2023-04-10 16:51:42 +00:00
2023-04-11 03:06:08 +00:00
void run(FILE *fp, char *filename) {
2023-04-10 18:51:49 +00:00
int tty = isatty(STDOUT_FILENO);
2023-04-10 16:51:42 +00:00
if (fp == NULL)
2023-04-10 04:58:48 +00:00
die("fopen");
2023-04-10 16:51:42 +00:00
2023-04-11 00:14:18 +00:00
struct filedata f;
f = readfile(fp);
2023-04-10 16:51:42 +00:00
2023-04-11 03:06:08 +00:00
if (tty)
fprintf(stderr, "\r%s%s%s\r\n", INVERT_T, basename(filename), UINVERT_T);
2023-04-10 18:36:45 +00:00
2023-04-11 00:14:18 +00:00
int lcpad = intlen(f.lc);
2023-04-10 18:36:45 +00:00
2023-04-11 00:14:18 +00:00
f.lc = 0;
2023-04-10 18:36:45 +00:00
char pc = '\0';
2023-04-11 00:14:18 +00:00
char c;
for (unsigned i = 0; i < f.len; i++) {
c = f.buf[i];
2023-04-10 04:58:48 +00:00
2023-04-11 00:49:43 +00:00
if (tty && (pc == '\n' || i == 0)) {
2023-04-11 00:14:18 +00:00
f.lc++;
int padlen = lcpad - intlen(f.lc);
2023-04-10 18:36:45 +00:00
char padding[padlen];
2023-04-10 23:09:11 +00:00
memset(padding, ' ', padlen);
2023-04-11 00:14:18 +00:00
2023-04-11 03:06:08 +00:00
fprintf(stderr, "\r%s%s%d:%s ", GREY, padding, f.lc, RESET);
2023-04-10 18:36:45 +00:00
}
pc = c;
printf("%c", c);
}
2023-04-10 16:51:42 +00:00
2023-04-11 00:49:43 +00:00
if (tty) {
float rounded;
char *format = formatBytes(f.len, &rounded);
2023-04-10 16:51:42 +00:00
2023-04-11 03:06:08 +00:00
fprintf(stderr, "\r%s%.2f %s%s\r\n", INVERT_T, rounded, format, UINVERT_T);
2023-04-11 00:49:43 +00:00
}
2023-04-10 18:36:45 +00:00
}
int main(int argc, char *argv[]) {
2023-04-11 03:06:08 +00:00
if (argc > 1) {
for (int i = 1; i < argc; i++) { // start at one to offset argv[0]
printf("%s\r\n", argv[i]);
2023-04-10 18:36:45 +00:00
2023-04-11 03:06:08 +00:00
FILE *fp = fopen(argv[i], "rb");
run(fp, argv[i]);
fclose(fp);
2023-04-10 18:36:45 +00:00
2023-04-11 03:06:08 +00:00
if (i + 1 != argc) {
fprintf(stderr, "\r\n"); // separate concurrent files
}
2023-04-10 18:36:45 +00:00
}
2023-04-11 03:06:08 +00:00
} else {
run(stdin, "stdin"); // for piped-input or repl-like behavior
2023-04-10 18:36:45 +00:00
}
2023-04-10 04:58:48 +00:00
2023-04-09 17:42:44 +00:00
return 0;
}