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
|
|
|
|
|
|
|
#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-10 18:36:45 +00:00
|
|
|
int run(char *filename) {
|
2023-04-10 18:51:49 +00:00
|
|
|
int tty = isatty(STDOUT_FILENO);
|
|
|
|
|
2023-04-10 18:36:45 +00:00
|
|
|
FILE *fp = fopen(filename, "r+b");
|
2023-04-10 04:58:48 +00:00
|
|
|
|
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-10 18:51:49 +00:00
|
|
|
if (tty)
|
|
|
|
fprintf(stderr, "%s%s%s\r\n", INVERT_T, filename, UINVERT_T);
|
2023-04-10 16:51:42 +00:00
|
|
|
|
|
|
|
int bufsize = 4;
|
|
|
|
char *buf;
|
|
|
|
|
|
|
|
buf = malloc(bufsize);
|
|
|
|
if (buf == NULL)
|
|
|
|
die("malloc");
|
|
|
|
|
|
|
|
double fsize = 0;
|
2023-04-10 18:36:45 +00:00
|
|
|
unsigned offset = 0;
|
|
|
|
unsigned lc = 0;
|
2023-04-10 16:51:42 +00:00
|
|
|
char c;
|
|
|
|
while (fread(&c, sizeof(char), 1, fp) > 0) {
|
|
|
|
if (fsize == bufsize - 1) {
|
|
|
|
bufsize *= 2;
|
|
|
|
|
|
|
|
char *new_buf = realloc(buf, bufsize);
|
|
|
|
if (buf == NULL) {
|
|
|
|
free(buf);
|
|
|
|
die("realloc");
|
|
|
|
}
|
|
|
|
|
|
|
|
buf = new_buf;
|
|
|
|
}
|
|
|
|
|
2023-04-10 18:36:45 +00:00
|
|
|
if (c == '\n')
|
|
|
|
lc++;
|
|
|
|
|
2023-04-10 16:51:42 +00:00
|
|
|
buf[offset++] = c;
|
|
|
|
fsize++;
|
2023-04-10 04:58:48 +00:00
|
|
|
}
|
2023-04-10 18:36:45 +00:00
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
int lcpad = intlen(lc);
|
|
|
|
|
|
|
|
lc = 0;
|
|
|
|
char pc = '\0';
|
2023-04-10 18:57:12 +00:00
|
|
|
for (int i = 0; (unsigned)i < offset; i++) {
|
2023-04-10 18:36:45 +00:00
|
|
|
c = buf[i];
|
2023-04-10 04:58:48 +00:00
|
|
|
|
2023-04-10 18:36:45 +00:00
|
|
|
if (pc == '\n' || i == 0) {
|
|
|
|
lc++;
|
|
|
|
int padlen = lcpad - intlen(lc);
|
|
|
|
char padding[padlen];
|
2023-04-10 23:09:11 +00:00
|
|
|
memset(padding, ' ', padlen);
|
2023-04-10 18:51:49 +00:00
|
|
|
if (tty)
|
|
|
|
fprintf(stderr, "%s%s%d:%s ", GREY, padding, lc, RESET);
|
2023-04-10 18:36:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pc = c;
|
|
|
|
printf("%c", c);
|
|
|
|
}
|
2023-04-10 16:51:42 +00:00
|
|
|
|
|
|
|
char *format = formatBytes(&fsize);
|
|
|
|
|
2023-04-10 18:51:49 +00:00
|
|
|
if (tty)
|
|
|
|
fprintf(stderr, "%s%.2f %s%s\r\n", INVERT_T, fsize, format, UINVERT_T);
|
2023-04-10 16:51:42 +00:00
|
|
|
|
2023-04-10 18:36:45 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
if (argc < 2) {
|
2023-04-10 23:09:11 +00:00
|
|
|
fprintf(stderr, "usage: %s <FILE/s>\n", argv[0]);
|
|
|
|
exit(1);
|
2023-04-10 18:36:45 +00:00
|
|
|
}
|
|
|
|
|
2023-04-10 23:09:11 +00:00
|
|
|
for (int i = 1; i < argc; i++) { // start at one to offset argv[0]
|
2023-04-10 18:36:45 +00:00
|
|
|
if (run(argv[i]) != 0)
|
|
|
|
die("run");
|
|
|
|
|
|
|
|
if (i + 1 != argc) {
|
2023-04-10 23:09:11 +00:00
|
|
|
fprintf(stderr, "\r\n"); // separate concurrent files
|
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;
|
|
|
|
}
|