aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShav Kinderlehrer <[email protected]>2023-04-29 15:08:36 -0400
committerShav Kinderlehrer <[email protected]>2023-05-01 18:13:13 -0400
commit216682498d49722625ca0b2990c5bad17123fffd (patch)
tree97ccc7e5d24e72321b65e2889c129a9c20f1e887
parentd5c32592251039350fb290011df9cac3e5ea9e78 (diff)
downloadlat-216682498d49722625ca0b2990c5bad17123fffd.tar.gz
lat-216682498d49722625ca0b2990c5bad17123fffd.zip
Refactor codebasev0.12.2
-rw-r--r--include/arg.h2
-rw-r--r--src/lib/file.c5
-rw-r--r--src/main.c64
3 files changed, 46 insertions, 25 deletions
diff --git a/include/arg.h b/include/arg.h
index 0a0bc3f..6782ef5 100644
--- a/include/arg.h
+++ b/include/arg.h
@@ -5,7 +5,7 @@
#define LAT_VERSION "0.12.2"
struct config {
- bool stdin;
+ bool isstdin;
bool process;
bool color;
bool lines;
diff --git a/src/lib/file.c b/src/lib/file.c
index 6dba950..69772ca 100644
--- a/src/lib/file.c
+++ b/src/lib/file.c
@@ -4,6 +4,7 @@
#include "types.h"
#include "util.h"
+#include "arg.h"
bool isbinary(struct filedata *f) {
@@ -22,7 +23,7 @@ bool isbinary(struct filedata *f) {
}
}
-struct filedata readfile(FILE *fp, bool isstdin) {
+struct filedata readfile(FILE *fp) {
struct filedata f;
f.lc = 0;
@@ -32,7 +33,7 @@ struct filedata readfile(FILE *fp, bool isstdin) {
f.buf = NULL;
f.lines = NULL;
- if (isstdin) {
+ if (conf.isstdin) {
size_t bufsize = 1024;
f.buf = malloc(bufsize);
if (f.buf == NULL)
diff --git a/src/main.c b/src/main.c
index eb9a2aa..4afabc8 100644
--- a/src/main.c
+++ b/src/main.c
@@ -15,13 +15,41 @@
FILE *st;
FILE *err;
+struct colors {
+ char *invert_t;
+ char *grey;
+ char *reset;
+};
+
+struct colors c;
+
+void initcolor(void) {
+ c.invert_t = conf.color ? INVERT_T : "";
+ c.grey = conf.color ? GREY : "";
+ c.reset = conf.color ? RESET : "";
+}
+
+void printheadertop(char *filename, bool binary) {
+ char *name = conf.name == NULL ? filename : conf.name;
+ char *addon = binary ? "<binary>" : "";
+ if (conf.isstdin && !conf.pager)
+ fprintf(err, "\x1b[2K\r%s%s%s%s\n", c.invert_t, name, addon, c.reset);
+ else
+ fprintf(err, "%s%s%s%s\n", c.invert_t, name, addon, c.reset);
+}
+
+void printheaderbottom(size_t buflen) {
+ float rounded;
+ char *format = formatbytes(buflen, &rounded);
+
+ fprintf(err, "%s%.2f %s%s\n", c.invert_t, rounded, format, c.reset);
+}
+
void run(FILE *fp, char *filename, bool tty) {
- const char *invert_t = conf.color ? INVERT_T : "";
- const char *grey = conf.color ? GREY : "";
- const char *reset = conf.color ? RESET : "";
+ initcolor();
struct filedata f;
- f = readfile(fp, conf.stdin);
+ f = readfile(fp, conf.isstdin);
if (conf.pager) {
st = popen("less", "w");
@@ -41,15 +69,11 @@ void run(FILE *fp, char *filename, bool tty) {
f.binary = false;
}
- char *name = conf.name == NULL ? filename : conf.name;
if (conf.headers) {
- char *addon = f.binary ? "<binary>" : "";
- if (conf.stdin && !conf.pager)
- fprintf(err, "\x1b[2K\r%s%s%s%s\n", invert_t, name, addon, reset);
- else
- fprintf(err, "%s%s%s%s\n", invert_t, name, addon, reset);
+ printheadertop(filename, f.binary);
}
+ // any/all processing to be done
conf.process = (tty && !f.binary);
if (conf.process) { // file display processing
loadlines(&f);
@@ -60,7 +84,7 @@ void run(FILE *fp, char *filename, bool tty) {
for (int i = 0; i < f.lc; i++) {
if (conf.lines) {
char *padding = linepad(linecount, f.lc);
- fprintf(st, "%s%s%d│%s ", grey, padding, i + 1, reset);
+ fprintf(st, "%s%s%d│%s ", c.grey, padding, i + 1, c.reset);
fwrite(f.lines[i].buf, 1, f.lines[i].len, st);
fprintf(st, "\n");
free(padding);
@@ -82,10 +106,7 @@ void run(FILE *fp, char *filename, bool tty) {
fflush(err);
if (conf.headers) {
- float rounded;
- char *format = formatbytes(f.buflen, &rounded);
-
- fprintf(err, "%s%.2f %s%s\n", invert_t, rounded, format, reset);
+ printheaderbottom(f.buflen);
}
if (conf.pager) {
@@ -95,7 +116,7 @@ void run(FILE *fp, char *filename, bool tty) {
void initconf(void) {
conf.force_binary = -1;
- conf.stdin = false;
+ conf.isstdin = false;
conf.has_read_stdin = false;
conf.pager = false;
conf.literal = false;
@@ -131,16 +152,15 @@ int main(int argc, char *argv[]) {
if (argc > 1) {
int offset = parseargs(argc, argv);
+
tty = tty || conf.literal;
- conf.headers = conf.headers && tty; // tty still overrides user
- conf.pager = conf.pager && tty;
for (int i = offset; i < argc; i++) {
if (*argv[i] == '-') {
if (conf.has_read_stdin)
clearstdin();
conf.has_read_stdin = true;
- conf.stdin = true;
+ conf.isstdin = true;
run(stdin, "stdin", tty);
if (tty && (i + 1 != argc)) {
fprintf(err, "\n"); // separate concurrent files in tty
@@ -149,7 +169,7 @@ int main(int argc, char *argv[]) {
continue;
}
- conf.stdin = false;
+ conf.isstdin = false;
FILE *fp = fopen(argv[i], "rb");
if (fp == NULL)
die(argv[i]);
@@ -161,11 +181,11 @@ int main(int argc, char *argv[]) {
}
if (offset == argc) {
- conf.stdin = true;
+ conf.isstdin = true;
run(stdin, "stdin", tty);
}
} else {
- conf.stdin = true;
+ conf.isstdin = true;
run(stdin, "stdin", tty); // for piped-input or repl-like behavior
}