2023-09-28 02:20:48 -04:00
|
|
|
/* baked.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.
|
|
|
|
*
|
2023-10-09 20:10:14 -04:00
|
|
|
* @EXEC 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>
|
2023-10-09 21:59:43 -04:00
|
|
|
#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
|
|
|
|
2023-10-09 21:29:56 -04:00
|
|
|
/* Require space after @ABC and before STOP@ (no space required around newline) */
|
2023-10-09 20:10:14 -04:00
|
|
|
#define REQUIRE_SPACE
|
2023-10-09 22:19:18 -04:00
|
|
|
/* May be undefined */
|
|
|
|
#define OTHER_START "@COMPILECMD"
|
2023-10-09 20:10:14 -04:00
|
|
|
|
2023-10-09 22:19:18 -04:00
|
|
|
#define START "@EXEC"
|
|
|
|
#define STOP "STOP@"
|
|
|
|
#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" \
|
|
|
|
"@COMPILECMD instead of @EXEC. Whitespace is required after and before both\n" \
|
|
|
|
"operators always.\n"
|
|
|
|
|
2023-09-27 01:28:54 -04:00
|
|
|
|
2023-10-09 20:10:14 -04:00
|
|
|
#define DESC \
|
|
|
|
"Options [Must always be first]\n" \
|
2023-10-09 22:19:18 -04:00
|
|
|
"\t-h --help, -n --dry-run\n" \
|
2023-10-09 20:10:14 -04:00
|
|
|
"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"
|
|
|
|
|
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-10-09 23:04:59 -04:00
|
|
|
static char *
|
2023-10-11 07:16:07 -04:00
|
|
|
map(char * fn, size_t * len)
|
2023-10-09 23:04:59 -04:00
|
|
|
{
|
|
|
|
struct stat s;
|
|
|
|
int fd;
|
|
|
|
char * addr = NULL;
|
|
|
|
fd = open(fn, O_RDONLY);
|
|
|
|
if (fd != -1)
|
|
|
|
{
|
|
|
|
if (!fstat(fd,&s)
|
|
|
|
&& s.st_mode & S_IFREG
|
|
|
|
&& s.st_size)
|
|
|
|
{
|
|
|
|
*len = s.st_size;
|
|
|
|
addr = mmap(NULL, s.st_size, PROT_READ, MAP_SHARED, fd, 0);
|
|
|
|
}
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
|
2023-10-11 07:16:07 -04:00
|
|
|
static char *
|
|
|
|
find(char * x, char * buf, size_t max, size_t min)
|
2023-10-09 20:10:14 -04:00
|
|
|
{
|
2023-10-11 07:16:07 -04:00
|
|
|
char * start = buf;
|
2023-10-09 20:10:14 -04:00
|
|
|
for (; *buf; ++buf)
|
|
|
|
{
|
|
|
|
if (max - (buf - start) > min && !strncmp(buf, x, min))
|
|
|
|
{ return buf; }
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2023-09-27 18:50:55 -04:00
|
|
|
static char *
|
2023-10-11 07:16:07 -04:00
|
|
|
find_region(char * fn)
|
2023-09-27 01:28:54 -04:00
|
|
|
{
|
2023-10-09 23:37:26 -04:00
|
|
|
size_t len = 0;
|
|
|
|
char * buf = NULL, * addr;
|
2023-10-11 07:16:07 -04:00
|
|
|
char * start, * stop;
|
2023-10-09 23:37:26 -04:00
|
|
|
addr = map(fn, &len);
|
2023-10-11 07:16:07 -04:00
|
|
|
if ((ptrdiff_t) addr > 0)
|
2023-10-09 23:04:59 -04:00
|
|
|
{
|
2023-10-09 23:37:26 -04:00
|
|
|
start = find(START, addr, len, strlen(START));
|
|
|
|
#ifdef OTHER_START
|
|
|
|
if (!start)
|
2023-10-09 23:04:59 -04:00
|
|
|
{
|
2023-10-09 23:37:26 -04:00
|
|
|
start = find(OTHER_START, addr, len, strlen(OTHER_START));
|
2023-10-11 07:16:07 -04:00
|
|
|
start = (char *) /* DON'T QUESTION IT */
|
2023-10-09 23:37:26 -04:00
|
|
|
((ptrdiff_t) (start - strlen(START) + strlen(OTHER_START)) * (start != 0));
|
2023-10-09 23:04:59 -04:00
|
|
|
}
|
2023-10-09 23:37:26 -04:00
|
|
|
#endif /* OTHER_START */
|
|
|
|
if (start)
|
2023-10-09 23:04:59 -04:00
|
|
|
{
|
2023-10-09 23:37:26 -04:00
|
|
|
start += strlen(START);
|
|
|
|
#ifdef REQUIRE_SPACE
|
|
|
|
if (!isspace(*start))
|
2023-10-09 23:04:59 -04:00
|
|
|
{
|
2023-10-09 23:37:26 -04:00
|
|
|
fprintf(stderr, "ERROR: Found start without suffix spacing.\n");
|
|
|
|
goto stop;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
stop = find(STOP, start, len - (start - addr), strlen(STOP));
|
|
|
|
if (!stop)
|
|
|
|
{
|
|
|
|
stop = start;
|
|
|
|
while (*stop && *stop != '\n')
|
|
|
|
{
|
|
|
|
if (stop[0] == '\\' && stop[1] == '\n')
|
|
|
|
{ stop += 2; }
|
|
|
|
++stop;
|
|
|
|
}
|
2023-10-09 23:04:59 -04:00
|
|
|
}
|
2023-10-09 20:10:14 -04:00
|
|
|
#ifdef REQUIRE_SPACE
|
2023-10-09 23:37:26 -04:00
|
|
|
else
|
2023-10-09 23:04:59 -04:00
|
|
|
{
|
2023-10-09 23:37:26 -04:00
|
|
|
if (!isspace(*(stop - 1)))
|
|
|
|
{
|
|
|
|
fprintf(stderr, "ERROR: Found stop without prefixing spacing.\n");
|
|
|
|
goto stop;
|
|
|
|
}
|
2023-09-29 03:05:40 -04:00
|
|
|
}
|
2023-10-09 23:04:59 -04:00
|
|
|
#endif
|
2023-10-09 23:37:26 -04:00
|
|
|
if (stop)
|
|
|
|
{ buf = strndup(start, (stop - addr) - (start - addr)); }
|
|
|
|
}
|
|
|
|
stop:
|
|
|
|
munmap(addr, len);
|
2023-09-27 01:28:54 -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 *
|
2023-10-11 07:16:07 -04:00
|
|
|
insert(char * new, char * str, size_t offset, size_t shift)
|
2023-09-27 01:28:54 -04:00
|
|
|
{
|
2023-09-28 01:02:34 -04:00
|
|
|
size_t len, max;
|
|
|
|
local_assert(new, str);
|
|
|
|
local_assert(str, NULL);
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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-10-09 20:10:14 -04:00
|
|
|
size_t i, len = argc;
|
2023-09-27 18:50:55 -04:00
|
|
|
for (i = 2; i < argc; ++i)
|
|
|
|
{ len += strlen(argv[i]); }
|
|
|
|
all = malloc(len + 1);
|
2023-09-29 03:05:40 -04:00
|
|
|
local_assert(all, NULL);
|
2023-09-27 18:50:55 -04:00
|
|
|
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-10-09 20:10:14 -04:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2023-09-28 01:02:34 -04:00
|
|
|
static size_t
|
2023-09-28 22:27:55 -04:00
|
|
|
expand_size(char * buf, int argc, char ** argv)
|
2023-09-28 01:02:34 -04:00
|
|
|
{
|
2023-09-28 22:27:55 -04:00
|
|
|
size_t i, len, max;
|
|
|
|
len = max = strlen(buf) + 1;
|
2023-09-28 01:02:34 -04:00
|
|
|
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-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); }
|
|
|
|
max += g_all ? strlen(g_all) : 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return max;
|
|
|
|
}
|
|
|
|
|
2023-09-27 19:31:21 -04:00
|
|
|
static char *
|
2023-09-29 03:05:40 -04:00
|
|
|
expand(char * buf)
|
2023-09-27 19:31:21 -04:00
|
|
|
{
|
2023-09-28 01:02:34 -04:00
|
|
|
size_t i;
|
|
|
|
char * ptr = NULL;
|
2023-09-28 22:27:55 -04:00
|
|
|
for (i = 0; buf[i]; ++i)
|
2023-09-27 19:31:21 -04:00
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
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 14:32:53 -04:00
|
|
|
static size_t
|
|
|
|
strip(char * buf)
|
|
|
|
{
|
|
|
|
size_t i = strlen(buf);
|
2023-10-06 22:17:40 -04:00
|
|
|
if (!i)
|
|
|
|
{ return 0; }
|
2023-09-28 14:32:53 -04:00
|
|
|
while (isspace(buf[i - 1]))
|
|
|
|
{ --i; }
|
|
|
|
buf[i] = '\0';
|
|
|
|
for (i = 0; isspace(buf[i]); ++i);
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2023-09-28 02:14:17 -04:00
|
|
|
static int
|
2023-10-11 07:16:07 -04:00
|
|
|
run(char * buf)
|
2023-09-28 02:14:17 -04:00
|
|
|
{
|
|
|
|
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-10-09 23:37:26 -04:00
|
|
|
char * buf;
|
|
|
|
|
2023-10-06 22:17:40 -04:00
|
|
|
assert(setlocale(LC_ALL, "C"));
|
|
|
|
|
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"))
|
2023-09-29 23:04:53 -04:00
|
|
|
{ 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"))
|
2023-09-29 03:05:40 -04:00
|
|
|
{
|
|
|
|
if (argc > 2)
|
|
|
|
{ ret = 1; g_filename = argv[2]; }
|
|
|
|
else
|
2023-09-29 23:04:53 -04:00
|
|
|
{ goto help; }
|
2023-09-29 03:05:40 -04:00
|
|
|
}
|
2023-09-28 02:14:17 -04:00
|
|
|
|
2023-10-09 23:37:26 -04:00
|
|
|
buf = find_region(g_filename);
|
2023-10-09 23:04:59 -04:00
|
|
|
|
2023-09-28 02:14:17 -04:00
|
|
|
if (!buf)
|
2023-09-29 03:05:40 -04:00
|
|
|
{
|
|
|
|
if (errno)
|
|
|
|
{ perror(argv[0]); }
|
|
|
|
else
|
|
|
|
{ fprintf(stderr, "%s: File unrecognized.\n", argv[0]); }
|
|
|
|
return 1;
|
|
|
|
}
|
2023-09-28 02:14:17 -04:00
|
|
|
|
2023-09-29 03:05:40 -04:00
|
|
|
buf = realloc(buf, expand_size(buf, argc, argv));
|
|
|
|
local_assert(buf, 1);
|
|
|
|
buf = expand(buf);
|
2023-09-28 14:32:53 -04:00
|
|
|
fprintf(stderr, "Exec: %s\n", buf + strip(buf) - (buf[0] == '\n'));
|
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;
|
2023-09-29 23:04:53 -04:00
|
|
|
help:
|
|
|
|
fprintf(stderr, "%s: %s", argv[0], HELP DESC);
|
|
|
|
return 1;
|
2023-09-27 01:28:54 -04:00
|
|
|
}
|