bake/bake.c

318 lines
7.3 KiB
C
Raw Normal View History

/* bake.c - Ever burned a cake?
2023-09-28 14:32:53 -04:00
* Copyright 2023 Emil Williams
*
* Licensed under the GNU Public License version 3 only, see LICENSE.
*
* Using COMPILECMD and including the # STOP for bake & shake support
* @COMPILECMD pwd; cc $@ -o $* -std=gnu89 -O2 -Wall -Wextra -Wpedantic -pipe $CFLAGS # @STOP
* @EXEC pwd; cc $@ -o $* -std=gnu89 -O2 -Wall -Wextra -Wpedantic -pipe $CFLAGS # @STOP
2023-09-28 02:20:48 -04:00
*/
2023-09-27 01:28:54 -04:00
#include <assert.h>
2023-09-28 14:32:53 -04:00
#include <ctype.h>
2023-09-27 01:28:54 -04:00
#include <errno.h>
2023-09-29 03:05:40 -04:00
#include <fcntl.h>
2023-10-06 22:17:40 -04:00
#include <locale.h>
2023-09-27 01:28:54 -04:00
#include <stdarg.h>
#include <stddef.h>
2023-09-27 01:28:54 -04:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2023-09-29 03:05:40 -04:00
#include <sys/mman.h>
2023-09-27 01:28:54 -04:00
#include <sys/stat.h>
2023-09-28 14:32:53 -04:00
#include <unistd.h>
2023-09-27 01:28:54 -04:00
/* Require space after COMPILECMD/EXEC and before STOP (no space required around newline) */
#define REQUIRE_SPACE
/* May be be left undefined, comes second */
#define OTHER_START "@EXEC"
#define START "@COMPILECMD"
#define STOP "@STOP"
2023-10-09 22:19:18 -04:00
#define HELP \
2023-10-09 21:29:56 -04:00
"target-file [arguments ...]\n" \
"Use the format `@EXEC cmd ...' within the target-file, this will execute the\n" \
"rest of line, or if found within the file, until the @STOP marker. You may use\n" \
2023-10-09 21:29:56 -04:00
"@COMPILECMD instead of @EXEC. Whitespace is required after and before both\n" \
"operators always.\n"
#define DESC \
"Options [Must always be first]\n" \
2023-10-09 22:19:18 -04:00
"\t-h --help, -n --dry-run\n" \
"Expansions\n" \
"\t$@ returns target-file (abc.x.txt)\n" \
"\t$* returns target-file without suffix (^-> abc.x)\n" \
2023-09-27 01:28:54 -04:00
"\t$+ returns arguments\n"
static char * g_filename;
/*** Utility functions ***/
2023-09-27 18:50:55 -04:00
2023-09-27 01:28:54 -04:00
static void
swap(char * a, char * b) {
2023-09-27 01:28:54 -04:00
*a ^= *b;
*b ^= *a;
*a ^= *b;
}
static char *
find(char * x, char * buf, char * end) {
size_t len = strlen(x);
for (; (buf < end) && len < (size_t)(end - buf); ++buf) {
if (!strncmp(buf, x, len))
{ return buf; }
}
return NULL;
2023-09-27 01:28:54 -04:00
}
static char *
insert(char * new, char * str, size_t offset, size_t shift) {
2023-09-28 01:02:34 -04:00
size_t len, max;
len = strlen(new);
2023-09-28 22:27:55 -04:00
max = (strlen(str) + 1 - offset - shift);
memmove(str + offset + len, str + offset + shift, max);
2023-09-27 01:28:54 -04:00
memcpy(str + offset, new, len);
return str;
}
/*** g_short, g_all Functions ***/
static char * g_short, * g_all;
2023-09-27 01:28:54 -04:00
static char *
shorten(char * fn) {
2023-09-28 01:02:34 -04:00
size_t i, last = 0, len;
char * sh;
len = strlen(fn);
sh = malloc(len + 1);
if (!sh) { return NULL; }
for (i = 0; i < len; ++i) {
if (fn[i] == '.') { last = i; }
2023-09-27 01:28:54 -04:00
}
last = last ? last : i;
2023-09-27 18:50:55 -04:00
strncpy(sh, fn, last);
sh[last] = '\0';
return sh;
}
static char *
all_args(size_t argc, char ** argv) {
2023-09-27 18:50:55 -04:00
char * all = NULL;
if (argc > 2) {
size_t i, len = argc;
for (i = 2; i < argc; ++i) { len += strlen(argv[i]); }
2023-09-27 18:50:55 -04:00
all = malloc(len + 1);
if (!all) { return NULL; }
2023-09-27 18:50:55 -04:00
all[len] = '\0';
2023-09-27 01:28:54 -04:00
len = 0;
for (i = 2; i < argc; ++i) {
2023-09-27 18:50:55 -04:00
strcpy(all + len, argv[i]);
len += strlen(argv[i]) + 1;
if (i + 1 < argc) { all[len - 1] = ' '; }
2023-09-27 01:28:54 -04:00
}
}
2023-09-27 18:50:55 -04:00
return all;
2023-09-27 01:28:54 -04:00
}
/*** Map ***/
typedef struct {
char * str;
size_t len;
} map_t;
static map_t
map(char * fn) {
struct stat s;
int fd;
map_t fs = {0};
fd = open(fn, O_RDONLY);
if (fd != -1) {
if (!fstat(fd,&s)
&& s.st_mode & S_IFREG
&& s.st_size) {
fs.len = s.st_size;
fs.str = (char *) mmap(NULL, s.st_size, PROT_READ, MAP_SHARED, fd, 0);
}
close(fd);
}
return fs;
}
/*** Important Functions ***/
static char *
find_region(map_t m) {
char * buf = NULL;
char * start, * stop;
start = find(START, m.str, m.str + m.len);
#ifdef OTHER_START
if (!start) {
start = find(OTHER_START, m.str, m.str + m.len);
start = (char *) /* DON'T QUESTION IT */
((ptrdiff_t) (start - strlen(START) + strlen(OTHER_START)) * (start != 0));
}
#endif /* OTHER_START */
if (start) {
start += strlen(START);
#ifdef REQUIRE_SPACE
if (!isspace(*start)) {
fprintf(stderr, "ERROR: Found start without suffix spacing.\n");
return buf;
}
#endif
stop = find(STOP, start, start + m.len - (start - m.str));
if (!stop) {
stop = start;
while (*stop
&& *stop != '\n') {
if (stop[0] == '\\'
&& stop[1] == '\n') { stop += 2; }
++stop;
}
}
#ifdef REQUIRE_SPACE
else {
if (!isspace(*(stop - 1))) {
fprintf(stderr, "ERROR: Found stop without prefixing spacing.\n");
return buf;
}
}
#endif
if (stop) { buf = strndup(start, (stop - m.str) - (start - m.str)); }
}
return buf;
}
static int
root(char ** rootp) {
char x[1] = "\0";
char * root = *rootp;
size_t len = strlen(root);
int ret;
while (len
&& root[len] != '/')
{ --len; }
if (!len) { return 0; }
swap(root + len, x);
ret = chdir(root);
swap(root + len, x);
*rootp += len + 1;
return ret;
}
2023-09-28 01:02:34 -04:00
static size_t
expand_size(char * buf, int argc, char ** argv) {
2023-09-28 22:27:55 -04:00
size_t i, len, max;
len = max = strlen(buf) + 1;
for (i = 0; i < len; ++i) {
if (buf[i] == '\\') { i += 2; continue; }
else if (buf[i] == '$') {
switch (buf[++i]) {
2023-09-28 01:02:34 -04:00
case '@':
max += strlen(g_filename);
break;
case '*':
if (!g_short) { g_short = shorten(g_filename); }
2023-09-29 03:05:40 -04:00
max += g_short ? strlen(g_short) : 0;
2023-09-28 01:02:34 -04:00
break;
case '+':
if (!g_all) { g_all = all_args((size_t) argc, argv); }
2023-09-28 01:02:34 -04:00
max += g_all ? strlen(g_all) : 0;
break;
}
}
}
return max;
}
static char *
expand(char * buf) {
2023-09-28 01:02:34 -04:00
size_t i;
char * ptr = NULL;
for (i = 0; buf[i]; ++i) {
if (buf[i] == '\\') { i += 2; continue; }
else if (buf[i] == '$') {
switch (buf[++i]) {
case '@':
2023-09-28 01:02:34 -04:00
ptr = g_filename;
break;
case '*':
2023-09-28 01:02:34 -04:00
ptr = g_short;
break;
case '+':
2023-09-28 01:02:34 -04:00
ptr = g_all ? g_all : "";
break;
default: continue;
}
buf = insert(ptr, buf, i - 1, 2);
}
}
2023-09-28 01:02:34 -04:00
free(g_short); free(g_all);
return buf;
}
2023-09-28 14:32:53 -04:00
static size_t
strip(char * buf) {
2023-09-28 14:32:53 -04:00
size_t i = strlen(buf);
if (!i) { return 0; }
while (isspace(buf[i - 1])) { --i; }
2023-09-28 14:32:53 -04:00
buf[i] = '\0';
for (i = 0; isspace(buf[i]); ++i);
return i - (buf[i - 1] == '\n');
2023-09-28 14:32:53 -04:00
}
2023-09-28 02:14:17 -04:00
static int
run(char * buf) {
2023-09-28 02:14:17 -04:00
fputs("Output:\n", stderr);
return system(buf);
}
2023-09-27 01:28:54 -04:00
int
main(int argc, char ** argv) {
2023-09-28 02:14:17 -04:00
int ret = 0;
char * buf = NULL;
setlocale(LC_ALL, "C");
2023-10-06 22:17:40 -04:00
2023-09-28 02:14:17 -04:00
if (argc < 2
2023-10-09 22:19:18 -04:00
|| !strcmp(argv[1], "-h")
|| !strcmp(argv[1], "--help"))
{ goto help; }
2023-09-28 02:14:17 -04:00
g_filename = argv[1];
2023-10-09 22:19:18 -04:00
if (!strcmp(argv[1], "-n")
|| !strcmp(argv[1], "--dry-run")) {
if (argc > 2) { ret = 1; g_filename = argv[2]; }
else { goto help; }
2023-09-29 03:05:40 -04:00
}
2023-09-28 02:14:17 -04:00
{ map_t m = map(argv[1]);
if (m.str) {
buf = find_region(m);
munmap(m.str, m.len);
}
}
if (!buf) {
if (errno) { perror(argv[0]); }
else { fprintf(stderr, "%s: File unrecognized.\n", argv[0]); }
2023-09-29 03:05:40 -04:00
return 1;
}
2023-09-28 02:14:17 -04:00
root(&g_filename);
2023-09-29 03:05:40 -04:00
buf = realloc(buf, expand_size(buf, argc, argv));
if (!buf) { free(g_short); free(g_all); return 1; }
2023-09-29 03:05:40 -04:00
buf = expand(buf);
fprintf(stderr, "Exec: %s\n", buf + strip(buf));
2023-09-28 02:14:17 -04:00
if ((ret = ret ? 0 : run(buf)))
{ fprintf(stderr, "Result: %d\n", ret); }
2023-09-27 01:28:54 -04:00
free(buf);
return ret;
help:
fprintf(stderr, "%s: %s", argv[0], HELP DESC);
return 1;
2023-09-27 01:28:54 -04:00
}