2023-09-28 02:20:48 -04:00
|
|
|
/* baked.c - Ever burned a cake?
|
|
|
|
Copyright 2023 Emil Williams
|
|
|
|
|
|
|
|
Licensed under the GNU Public License version 3 only, see LICENSE.
|
|
|
|
|
|
|
|
EXEC:cc $@ -o $* -std=gnu89 -O2 -Wall -Wextra -Wpedantic -pipe $CFLAGS:STOP
|
|
|
|
@COMPILECMD cc $@ -o $* -std=gnu89 -O2 -Wall -Wextra -Wpedantic -pipe $CFLAGS
|
|
|
|
|
|
|
|
TODO
|
|
|
|
|
|
|
|
1. Possibly trim whitespace from before and after the buffer (no realloc), and
|
|
|
|
make sure single lined commands are not wrapped. (BLOAT)
|
|
|
|
*/
|
2023-09-27 01:28:54 -04:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#ifndef SHAKE_COMPAT
|
2023-09-27 18:50:55 -04:00
|
|
|
# define HELP \
|
|
|
|
"target-file [arguments ...]\n" \
|
2023-09-27 01:28:54 -04:00
|
|
|
"Use the format `EXEC:command ...:STOP' within the target-file\n"
|
|
|
|
# define START "EXEC:"
|
|
|
|
# define STOP ":STOP"
|
|
|
|
#else
|
2023-09-27 18:50:55 -04:00
|
|
|
# define HELP \
|
|
|
|
"target-file [arguments ...]\n" \
|
2023-09-27 01:28:54 -04:00
|
|
|
"Use the format `@COMPILECMD command ...\n' within the target-file\n"
|
2023-09-27 01:46:28 -04:00
|
|
|
# define START "@COMPILECMD "
|
2023-09-27 01:28:54 -04:00
|
|
|
# define STOP "\n"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define DESC \
|
2023-09-27 18:50:55 -04:00
|
|
|
"\t$@ returns target-file\n" \
|
|
|
|
"\t$* returns target-file without suffix\n" \
|
2023-09-27 01:28:54 -04:00
|
|
|
"\t$+ returns arguments\n"
|
|
|
|
|
2023-09-28 01:02:34 -04:00
|
|
|
#define local_assert(expr, ret) do { assert(expr); if (!expr) { return ret; }} while (0)
|
|
|
|
|
|
|
|
static char * g_filename, * g_short, * g_all;
|
|
|
|
|
2023-09-27 18:50:55 -04:00
|
|
|
static char *
|
|
|
|
find(char * buf, const char * token)
|
2023-09-27 01:28:54 -04:00
|
|
|
{
|
2023-09-27 18:50:55 -04:00
|
|
|
size_t len = strlen(token);
|
|
|
|
const char * stop = buf + strlen(buf);
|
|
|
|
do if (!strncmp(buf,token,len))
|
|
|
|
{ return buf + len; }
|
|
|
|
while (buf < stop && ++buf);
|
|
|
|
return NULL;
|
2023-09-27 01:28:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
load(const char * fn)
|
|
|
|
{
|
2023-09-27 18:50:55 -04:00
|
|
|
char * buf = NULL;
|
2023-09-27 01:28:54 -04:00
|
|
|
FILE * fp = fopen(fn, "rb");
|
2023-09-27 18:50:55 -04:00
|
|
|
if (fp)
|
2023-09-27 01:28:54 -04:00
|
|
|
{
|
2023-09-27 18:50:55 -04:00
|
|
|
struct stat s;
|
2023-09-28 01:02:34 -04:00
|
|
|
off_t len;
|
2023-09-27 18:50:55 -04:00
|
|
|
if (! stat(fn,&s)
|
2023-09-28 01:02:34 -04:00
|
|
|
&& s.st_mode & S_IFREG)
|
|
|
|
{
|
|
|
|
len = s.st_size;
|
|
|
|
buf = malloc(len + 1);
|
|
|
|
fread(buf, 1, len, fp);
|
|
|
|
buf[len] = '\0';
|
|
|
|
}
|
2023-09-27 01:28:54 -04:00
|
|
|
fclose(fp);
|
|
|
|
}
|
2023-09-27 18:50:55 -04:00
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
find_region(const char * fn)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
char * buf, * start, * stop;
|
|
|
|
|
|
|
|
if (!(buf = load(fn)))
|
2023-09-28 01:02:34 -04:00
|
|
|
{ if (errno) { fprintf(stderr, "cannot access '%s': ", fn); } return NULL; }
|
2023-09-27 18:50:55 -04:00
|
|
|
|
|
|
|
if (!(start = find(buf, START))
|
|
|
|
|| !(stop = find(start, STOP)))
|
2023-09-28 01:02:34 -04:00
|
|
|
{ fprintf(stderr, "No usable format located in '%s'", fn); free(buf); return NULL; }
|
2023-09-27 18:50:55 -04:00
|
|
|
|
|
|
|
len = stop - start - strlen(STOP);
|
|
|
|
memmove(buf, start, len);
|
|
|
|
buf[len] = '\0';
|
2023-09-28 01:02:34 -04:00
|
|
|
|
2023-09-27 18:50:55 -04:00
|
|
|
return buf;
|
2023-09-27 01:28:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
swap(char * a, char * b)
|
|
|
|
{
|
|
|
|
*a ^= *b;
|
|
|
|
*b ^= *a;
|
|
|
|
*a ^= *b;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
root(char * root)
|
|
|
|
{
|
|
|
|
int ret;
|
2023-09-28 01:02:34 -04:00
|
|
|
char x[1] = "\0";
|
2023-09-27 01:28:54 -04:00
|
|
|
size_t len = strlen(root);
|
|
|
|
while (len && root[len] != '/')
|
|
|
|
{ --len; }
|
|
|
|
if (!len)
|
|
|
|
{ return 0; }
|
|
|
|
swap(root + len, x);
|
|
|
|
ret = chdir(root);
|
|
|
|
swap(root + len, x);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
insert(const char * new, char * str, size_t offset, size_t shift)
|
|
|
|
{
|
2023-09-28 01:02:34 -04:00
|
|
|
size_t len, max;
|
|
|
|
local_assert(new, str);
|
|
|
|
local_assert(str, NULL);
|
|
|
|
len = strlen(new);
|
|
|
|
max = strlen(str) + 1;
|
2023-09-27 01:28:54 -04:00
|
|
|
memmove(str + offset + len, str + offset + shift, max - offset - shift);
|
|
|
|
memcpy(str + offset, new, len);
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
2023-09-27 18:50:55 -04:00
|
|
|
shorten(char * fn)
|
2023-09-27 01:28:54 -04:00
|
|
|
{
|
2023-09-28 01:02:34 -04:00
|
|
|
size_t i, last = 0, len;
|
|
|
|
char * sh;
|
|
|
|
local_assert(fn, NULL);
|
|
|
|
len = strlen(fn);
|
|
|
|
sh = malloc(len + 1);
|
|
|
|
local_assert(sh, NULL);
|
2023-09-27 01:28:54 -04:00
|
|
|
for (i = 0; i < len; ++i)
|
|
|
|
{
|
2023-09-27 18:50:55 -04:00
|
|
|
if (fn[i] == '.')
|
2023-09-27 01:28:54 -04:00
|
|
|
{ last = i; }
|
|
|
|
}
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
char * all = NULL;
|
2023-09-27 01:28:54 -04:00
|
|
|
if (argc > 2)
|
|
|
|
{
|
2023-09-27 18:50:55 -04:00
|
|
|
size_t i, len = 0;
|
|
|
|
for (i = 2; i < argc; ++i)
|
|
|
|
{ len += strlen(argv[i]); }
|
|
|
|
all = malloc(len + 1);
|
|
|
|
all[len] = '\0';
|
2023-09-27 01:28:54 -04:00
|
|
|
len = 0;
|
2023-09-27 18:50:55 -04:00
|
|
|
for (i = 2; i < argc; ++i)
|
2023-09-27 01:28:54 -04:00
|
|
|
{
|
2023-09-27 18:50:55 -04:00
|
|
|
strcpy(all + len, argv[i]);
|
2023-09-27 01:28:54 -04:00
|
|
|
len += strlen(argv[i]);
|
|
|
|
}
|
|
|
|
}
|
2023-09-27 18:50:55 -04:00
|
|
|
return all;
|
2023-09-27 01:28:54 -04:00
|
|
|
}
|
|
|
|
|
2023-09-28 01:02:34 -04:00
|
|
|
static size_t
|
|
|
|
expand_size(char * buf, size_t len, int argc, char ** argv)
|
|
|
|
{
|
|
|
|
size_t i, max = len;
|
|
|
|
for (i = 0; i < len; ++i)
|
|
|
|
{
|
|
|
|
if (buf[i] == '\\')
|
|
|
|
{ i += 2; continue; }
|
|
|
|
else if (buf[i] == '$')
|
|
|
|
{
|
|
|
|
switch (buf[++i])
|
|
|
|
{
|
|
|
|
case '@':
|
|
|
|
max += strlen(g_filename);
|
|
|
|
break;
|
|
|
|
case '*':
|
|
|
|
if (!g_short)
|
2023-09-28 02:14:17 -04:00
|
|
|
{ g_short = shorten(g_filename); }
|
2023-09-28 01:02:34 -04:00
|
|
|
max += strlen(g_short);
|
|
|
|
break;
|
|
|
|
case '+':
|
|
|
|
if (!g_all)
|
|
|
|
{ g_all = all_args((size_t) argc, argv); }
|
|
|
|
max += g_all ? strlen(g_all) : 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return max;
|
|
|
|
}
|
|
|
|
|
2023-09-27 19:31:21 -04:00
|
|
|
static char *
|
2023-09-28 01:02:34 -04:00
|
|
|
expand(char * buf, size_t len)
|
2023-09-27 19:31:21 -04:00
|
|
|
{
|
2023-09-28 01:02:34 -04:00
|
|
|
size_t i;
|
|
|
|
char * ptr = NULL;
|
|
|
|
buf = realloc(buf, len);
|
|
|
|
local_assert(buf, NULL);
|
2023-09-27 19:31:21 -04:00
|
|
|
for (i = 0; i < len; ++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;
|
2023-09-27 19:31:21 -04:00
|
|
|
break;
|
|
|
|
case '*':
|
2023-09-28 01:02:34 -04:00
|
|
|
ptr = g_short;
|
2023-09-27 19:31:21 -04:00
|
|
|
break;
|
|
|
|
case '+':
|
2023-09-28 01:02:34 -04:00
|
|
|
ptr = g_all ? g_all : "";
|
2023-09-27 19:31:21 -04:00
|
|
|
break;
|
|
|
|
default: continue;
|
|
|
|
}
|
|
|
|
buf = insert(ptr, buf, i - 1, 2);
|
|
|
|
len = strlen(buf);
|
|
|
|
}
|
|
|
|
}
|
2023-09-28 01:02:34 -04:00
|
|
|
free(g_short); free(g_all);
|
2023-09-27 19:31:21 -04:00
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2023-09-28 02:14:17 -04:00
|
|
|
static int
|
|
|
|
run(const char * buf)
|
|
|
|
{
|
|
|
|
fputs("Output:\n", stderr);
|
|
|
|
root(g_filename);
|
|
|
|
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;
|
2023-09-27 18:50:55 -04:00
|
|
|
char * buf;
|
2023-09-28 02:14:17 -04:00
|
|
|
|
|
|
|
if (argc < 2
|
|
|
|
|| !strcmp(argv[1], "-h"))
|
2023-09-27 19:31:21 -04:00
|
|
|
{ fprintf(stderr, "%s: %s", argv[0], HELP DESC); return 1; }
|
2023-09-28 02:14:17 -04:00
|
|
|
|
|
|
|
g_filename = argv[1];
|
|
|
|
|
|
|
|
if (!strcmp(argv[1], "-n"))
|
|
|
|
{ ret = 1; g_filename = argv[2]; }
|
|
|
|
|
|
|
|
buf = find_region(g_filename);
|
|
|
|
if (!buf)
|
2023-09-28 01:02:34 -04:00
|
|
|
{ if (errno) { perror(NULL); } return 1; }
|
2023-09-28 02:14:17 -04:00
|
|
|
|
|
|
|
buf = expand(buf, expand_size(buf, strlen(buf), argc, argv) + 1);
|
|
|
|
|
|
|
|
fprintf(stderr, "Exec: %s\n", buf);
|
|
|
|
if ((ret = ret ? 0 : run(buf)))
|
|
|
|
{ fprintf(stderr, "Result: %d\n", ret); }
|
|
|
|
|
2023-09-27 01:28:54 -04:00
|
|
|
free(buf);
|
|
|
|
return ret;
|
|
|
|
}
|