libhl/source/main.c

110 lines
2.1 KiB
C
Raw Normal View History

2023-08-24 06:24:46 -04:00
/* main.c
* Copyright 2023 Anon Anonson, Ognjen 'xolatile' Milan Robovic, Emil Williams
* SPDX Identifier: GPL-3.0-only / NO WARRANTY / NO GUARANTEE */
2023-08-21 09:05:27 -04:00
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
2023-08-28 15:58:20 -04:00
2023-08-29 13:09:55 -04:00
#include "terminal.h"
#include "syntax/syntax.h"
#define ALLOCATION_CHUNK (128UL)
2023-08-29 13:11:18 -04:00
static const char * argv0;
2023-08-29 13:11:18 -04:00
static char *
read_entire_file(const char * fn)
2023-08-29 13:11:18 -04:00
{
FILE * fp = fopen(fn, "r");
if (fp)
{
size_t len;
char * b;
fseek(fp, 0, SEEK_END);
len = ftell(fp);
rewind(fp);
b = malloc(len + 1);
if (b && fread(b, 1, len, fp)) {
b[len] = '\0';
}
fclose(fp);
return b;
}
else
{ return NULL; }
2023-08-29 13:11:18 -04:00
}
2023-08-29 13:11:18 -04:00
static char *
get_stdin(void)
{
size_t buffer_size = 0;
size_t n = 1;
char * buffer = malloc(ALLOCATION_CHUNK);
if (!buffer)
{ return NULL; }
do {
if (buffer_size + 1 >= (ALLOCATION_CHUNK * n)) {
buffer = realloc(buffer, ALLOCATION_CHUNK * ++n + 1);
if (!buffer)
{ return NULL; }
buffer[ALLOCATION_CHUNK * n] = '\0';
}
2023-08-29 13:11:18 -04:00
if (read(STDIN_FILENO, &buffer[buffer_size], sizeof (*buffer)) == -1)
{
free(buffer);
fprintf(stderr, "%s: Failed to read from stdin\n", argv0);
return NULL;
}
} while (buffer[buffer_size++]);
buffer[buffer_size - 1] = '\0';
return buffer;
2023-08-29 13:11:18 -04:00
}
int
main(int argc,
2023-08-29 13:11:18 -04:00
char ** argv) {
int arg = 0;
int ret = 0;
char * buffer = NULL;
argv0 = argv[0];
2023-08-23 21:37:40 -04:00
terminal_hl_init();
highlight_c(); /* this mustn't break overrides (but definitely does) */
while (++argv,
--argc) {
if (**argv == '-') {
/* TODO use uthash */
if (strcmp(*argv+1, "c") == 0) {
highlight_c();
}
else {
fprintf(stderr, "%s: Unimplemented syntax '%s'\n", argv0, *argv+1);
return 1;
}
}
else {
free(buffer);
arg = 1;
buffer = read_entire_file(*argv);
if (!buffer) {
fprintf(stderr,"%s: cannot access '%s': ", argv0, *argv);
perror(NULL);
ret = 2;
}
else
{ render_string(buffer, "cterm"); }
}
}
if (!arg) {
buffer = get_stdin();
render_string(buffer, "cterm");
}
2023-08-21 14:07:39 -04:00
fflush(stdout);
2023-09-20 16:43:29 -04:00
hl_deinit();
2023-08-19 18:49:10 -04:00
free(buffer);
return ret;
}