Improved main.c and syntax for the sake of the future children of the world

Removed division from get_stdin, and made it fail properly on failed allocation
Fixed the retard brain #include syntax/c.h shit (god I hope I didn't break highlightlighting I'm not - I checked and it outputs the same under the last commit, it's probably fine anon'll fix it what a cuck)
Much better input handling, properly using perror and handling multible files even under a noexist condition, probably fixed a seggy on noexist condition
This commit is contained in:
Emil 2023-09-20 23:49:36 +00:00
parent 757ab99f3e
commit ac4a07e9d4
No known key found for this signature in database
GPG Key ID: 5432DB986FDBCF8A
3 changed files with 62 additions and 71 deletions

View File

@ -1,23 +1,27 @@
const char * c_keywords[] = { void
"register", "volatile", "auto", "const", "static", "extern", "if", "else", highlight_c(void)
"do", "while", "for", "continue", "switch", "case", "default", "break", {
"enum", "union", "struct", "typedef", "goto", "void", "return", "sizeof", const char * c_keywords[] = {
"char", "short", "int", "long", "signed", "unsigned", "float", "double", "register", "volatile", "auto", "const", "static", "extern", "if", "else",
NULL "do", "while", "for", "continue", "switch", "case", "default", "break",
}; "enum", "union", "struct", "typedef", "goto", "void", "return", "sizeof",
"char", "short", "int", "long", "signed", "unsigned", "float", "double",
NULL
};
const char * preprocessor_keywords[] = { const char * preprocessor_keywords[] = {
"#include", "#pragma", "#define", "#undef", "#ifdef", "#ifndef", "#elifdef", "#elifndef", "#include", "#pragma", "#define", "#undef", "#ifdef", "#ifndef", "#elifdef", "#elifndef",
"#if", "#elif", "#else", "#endif", "#embed", "#line", "#error", "#warning", "#if", "#elif", "#else", "#endif", "#embed", "#line", "#error", "#warning",
NULL NULL
}; };
new_char_tokens("+-&|.()[]{}", operator_hl); new_char_tokens("+-&|.()[]{}", operator_hl);
new_keyword_tokens(c_keywords, control_hl); new_keyword_tokens(c_keywords, control_hl);
new_keyword_tokens(preprocessor_keywords, special_hl); new_keyword_tokens(preprocessor_keywords, special_hl);
new_region_token("/\\*", "\\*/", comment_hl); new_region_token("/\\*", "\\*/", comment_hl);
new_region_token("//", "\\n", comment_hl); new_region_token("//", "\\n", comment_hl);
new_region_token("\"", "\"", string_literal_hl); new_region_token("\"", "\"", string_literal_hl);
new_region_token("<", ">", string_literal_hl); new_region_token("<", ">", string_literal_hl);
new_keyword_token("keyword", special_hl); new_keyword_token("keyword", special_hl);
new_keyword_token("while", operator_hl); new_keyword_token("while", operator_hl);
}

6
include/syntax/syntax.h Normal file
View File

@ -0,0 +1,6 @@
#ifndef SYNTAX_H_
#include "c.h"
#define SYNTAX_H_
#endif

View File

@ -9,13 +9,14 @@
#include <fcntl.h> #include <fcntl.h>
#include "terminal.h" #include "terminal.h"
#include "syntax/syntax.h"
#define ALLOCATION_CHUNK (128UL) #define ALLOCATION_CHUNK (128UL)
static const char * argv0; static const char * argv0;
static char * static char *
slurp(const char * fn) read_entire_file(const char * fn)
{ {
FILE * fp = fopen(fn, "r"); FILE * fp = fopen(fn, "r");
if (fp) if (fp)
@ -26,8 +27,7 @@ slurp(const char * fn)
len = ftell(fp); len = ftell(fp);
rewind(fp); rewind(fp);
b = malloc(len + 1); b = malloc(len + 1);
if (b && fread(b, 1, len, fp)) if (b && fread(b, 1, len, fp)) {
{
b[len] = '\0'; b[len] = '\0';
} }
fclose(fp); fclose(fp);
@ -41,88 +41,69 @@ static char *
get_stdin(void) get_stdin(void)
{ {
size_t buffer_size = 0; size_t buffer_size = 0;
size_t n = 1;
char * buffer = malloc(ALLOCATION_CHUNK); char * buffer = malloc(ALLOCATION_CHUNK);
if (!buffer)
{ return NULL; }
do { do {
if (!((buffer_size + 1) % ALLOCATION_CHUNK)) { if (buffer_size + 1 >= (ALLOCATION_CHUNK * n)) {
buffer = realloc(buffer, (((buffer_size + 1) / ALLOCATION_CHUNK) + 1) * ALLOCATION_CHUNK); buffer = realloc(buffer, ALLOCATION_CHUNK * ++n + 1);
if (!buffer)
{ return NULL; }
buffer[ALLOCATION_CHUNK * n] = '\0';
} }
buffer[buffer_size] = '\0';
if (read(STDIN_FILENO, &buffer[buffer_size], sizeof (*buffer)) == -1) if (read(STDIN_FILENO, &buffer[buffer_size], sizeof (*buffer)) == -1)
{ {
free(buffer); free(buffer);
fprintf(stderr, "%s: Failed to read from STDIN\n", argv0); fprintf(stderr, "%s: Failed to read from stdin\n", argv0);
return NULL; return NULL;
} }
++buffer_size; } while (buffer[buffer_size++]);
} while (buffer[buffer_size - 1]);
buffer[buffer_size - 1] = '\0'; buffer[buffer_size - 1] = '\0';
return buffer; return buffer;
} }
/* TODO: fix the shit going on with syntax/c.h , replace with a function,
* and ideally how make it hotswappable. */
int int
main(int argc, main(int argc,
char ** argv) { char ** argv) {
int arg = 0; int arg = 0;
int syn = 0; int ret = 0;
char * buffer = NULL; char * buffer = NULL;
argv0 = argv[0]; argv0 = argv[0];
terminal_hl_init(); terminal_hl_init();
highlight_c(); /* this mustn't break overrides (but definitely does) */
while (++argv, while (++argv,
--argc) --argc) {
{ if (**argv == '-') {
if (**argv == '-') /* TODO use uthash */
{ if (strcmp(*argv+1, "c") == 0) {
syn = 1; highlight_c();
/* fprintf(stderr, "handle '%s'\n", *argv+1); */
/* lazy as hell, TODO use uthash */
if (strcmp(*argv+1, "c") == 0)
{
#include "syntax/c.h"
} }
else else {
{
fprintf(stderr, "%s: Unimplemented syntax '%s'\n", argv0, *argv+1); fprintf(stderr, "%s: Unimplemented syntax '%s'\n", argv0, *argv+1);
return 1; return 1;
} }
} }
else else {
{
if (!syn)
{
#include "syntax/c.h"
}
free(buffer); free(buffer);
arg = 1; arg = 1;
buffer = slurp(*argv); buffer = read_entire_file(*argv);
render_string(buffer, "cterm"); if (!buffer) {
if (!buffer) fprintf(stderr,"%s: cannot access '%s': ", argv0, *argv);
{ perror(NULL);
perror(argv0); ret = 2;
return 1;
} }
else
{ render_string(buffer, "cterm"); }
} }
} }
if (!arg) if (!arg) {
{
if (!syn)
{
#include "syntax/c.h"
}
buffer = get_stdin(); buffer = get_stdin();
render_string(buffer, "cterm"); render_string(buffer, "cterm");
} }
fflush(stdout); fflush(stdout);
hl_deinit(); hl_deinit();
free(buffer); free(buffer);
return ret;
//terminal_hl_deinit();
return 0;
} }