342 lines
9.8 KiB
C
342 lines
9.8 KiB
C
// @BAKE cc -std=c99 -O2 -Wall -Wextra -Wpedantic -Wno-implicit-fallthrough -o @SHORT @FILENAME @ARGS @STOP
|
|
#define _GNU_SOURCE
|
|
|
|
#include <ctype.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <limits.h>
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/mman.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/wait.h>
|
|
#include <unistd.h>
|
|
|
|
#define BUFFER_SIZE (1 << 12)
|
|
|
|
#define START ("@" "BAKE" " ")
|
|
#define STOP ("@" "STOP")
|
|
|
|
#define AUTONOMOUS_COMPILE 0
|
|
|
|
#define ENABLE_COLOR 1
|
|
|
|
#if ENABLE_COLOR == 1
|
|
# define RED "\033[91m"
|
|
# define GREEN "\033[92m"
|
|
# define YELLOW "\033[93m"
|
|
# define BOLD "\033[1m"
|
|
# define RESET "\033[0m"
|
|
#elif ENABLE_COLOR
|
|
# define RED "\033[91;5m"
|
|
# define GREEN "\033[96;7m"
|
|
# define YELLOW "\033[94m"
|
|
# define BOLD "\033[1;4m"
|
|
# define RESET "\033[0m"
|
|
#else
|
|
# define RED
|
|
# define GREEN
|
|
# define YELLOW
|
|
# define BOLD
|
|
# define RESET
|
|
#endif
|
|
|
|
#define ARRLEN(x) (sizeof (x) / sizeof (x [0]))
|
|
|
|
#if AUTONOMOUS_COMPILE
|
|
__attribute__((__section__(".text"))) static char autonomous_compile [] =
|
|
"@BAKE" " cc -w @FILENAME.c -o @FILENAME @ARGS\n";
|
|
#endif
|
|
|
|
static void
|
|
swap (char * a, char * b) {
|
|
*a ^= *b;
|
|
*b ^= *a;
|
|
*a ^= *b;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
static char *
|
|
shorten (char * filename) {
|
|
size_t i, last, len;
|
|
static char sh [FILENAME_MAX];
|
|
len = strlen (filename);
|
|
for (last = i = 0; i < len; ++i) {
|
|
if (filename [i] == '.') { last = i; }
|
|
}
|
|
last = last ? last : i;
|
|
strncpy (sh, filename, last);
|
|
sh [last] = '\0';
|
|
return sh;
|
|
}
|
|
|
|
static char *
|
|
all_args (size_t argc, char ** argv) {
|
|
static char buffer [BUFFER_SIZE] = {0};
|
|
if (argc > 0) {
|
|
size_t i, len = argc;
|
|
for (i = 0; i < argc; ++i) { len += strlen (argv [i]); }
|
|
buffer [len] = '\0';
|
|
for (len = 0, i = 0; i < argc; ++i) {
|
|
strcpy (buffer + len, argv [i]);
|
|
len += strlen (argv [i]) + 1;
|
|
if (i + 1 < argc) { buffer [len - 1] = ' '; }
|
|
}}
|
|
return buffer;
|
|
}
|
|
|
|
static size_t
|
|
lines (char * buffer, size_t off) {
|
|
size_t line = 1;
|
|
char * end = buffer + off;
|
|
while (buffer < end) {
|
|
if (*buffer == '\n') { ++line; }
|
|
++buffer;
|
|
}
|
|
return line;
|
|
}
|
|
|
|
static char *
|
|
expand (char * buffer, size_t length, char ** pairs, size_t count) {
|
|
static char expanded [BUFFER_SIZE] = {0};
|
|
size_t old, new, i, f, off = 0;
|
|
/* I need to test the bounds checking here, it'll crash normally if this provision doesn't do anything, though. */
|
|
length &= (1 << 12) - 1;
|
|
for (f = 0; f < length; ++f) {
|
|
for (i = 0; i < count; i += 2) {
|
|
old = strlen (pairs [i]);
|
|
new = strlen (pairs [i + 1]);
|
|
if (memcmp (buffer + f - off, pairs [i], old) == 0) {
|
|
if (f && buffer [f - off - 1] == '\\')
|
|
{ --f; --off; break; }
|
|
memcpy (expanded + f, pairs [i + 1], new);
|
|
f += new;
|
|
length += new - old;
|
|
off += new - old;
|
|
break;
|
|
}}
|
|
expanded [f] = buffer [f - off];
|
|
}
|
|
expanded [f] = '\0';
|
|
return expanded;
|
|
}
|
|
|
|
static char *
|
|
getmap (char * filename, size_t * length) {
|
|
char * buffer = NULL;
|
|
int fd = open (filename, O_RDONLY);
|
|
if (fd != -1) {
|
|
struct stat s;
|
|
if (!fstat (fd, &s)
|
|
&& s.st_mode & S_IFREG
|
|
&& s.st_size) {
|
|
*length = (size_t) s.st_size;
|
|
buffer = (char *) mmap (NULL, s.st_size, PROT_READ, MAP_SHARED, fd, 0);
|
|
}
|
|
close (fd);
|
|
}
|
|
return buffer;
|
|
}
|
|
|
|
# define color_printf(...) color_fprintf (stdout, __VA_ARGS__)
|
|
/* not perfect, too simple, doesn't work with a var, only a literal. */
|
|
# define color_fputs(fp, msg) color_fprintf (fp, msg "\n")
|
|
# define color_puts(msg) color_fputs (stdout, msg)
|
|
|
|
static int color = ENABLE_COLOR;
|
|
|
|
static void
|
|
color_fprintf (FILE * fp, char * format, ...) {
|
|
va_list ap;
|
|
char * buf;
|
|
|
|
va_start (ap, format);
|
|
|
|
if (color) {
|
|
vfprintf (fp, format, ap);
|
|
va_end (ap);
|
|
return;
|
|
}
|
|
vasprintf (&buf, format, ap);
|
|
|
|
if (buf) {
|
|
char * expanded, * colors [] = {
|
|
YELLOW, "",
|
|
GREEN, "",
|
|
RED, "",
|
|
BOLD, "",
|
|
RESET, ""
|
|
};
|
|
size_t count = ARRLEN (colors);
|
|
expanded = expand (buf, strlen (buf), colors, count - 2);
|
|
expanded = expand (expanded, strlen (buf), colors + count - 2, 2);
|
|
fwrite (expanded, strlen (expanded), 1, fp);
|
|
}
|
|
|
|
free (buf);
|
|
va_end (ap);
|
|
}
|
|
/* -- */
|
|
|
|
int main (int argc, char ** argv) {
|
|
void help (void);
|
|
int off, run = 1, list = 0, select_input, select = 1;
|
|
size_t length, begin = 0, end = 0;
|
|
pid_t pid;
|
|
char line [10], expanded [BUFFER_SIZE], * buffer, * expandedp, * args, * shortened, * filename = NULL;
|
|
/* opts */
|
|
for (off = 1; off < argc; ++off) {
|
|
if (argv [off][0] != '-') { filename = argv [off]; ++off; break; }
|
|
if (argv [off][1] != '-') {
|
|
while (*(++argv [off]))
|
|
switch (argv [off][0]) {
|
|
case_select: case 's':
|
|
select = atoi (argv [off] + 1);
|
|
if (!select) {
|
|
++off;
|
|
if (off >= argc) { help (); }
|
|
select = atoi (argv [off]);
|
|
}
|
|
if (select) { goto next; }
|
|
case_help: default: case 'h': help ();
|
|
case_list: case 'l': list = 1;
|
|
case_dryrun: case 'n': run = 0; break;
|
|
case_color: case 'c': color = 0; break;
|
|
}
|
|
continue;
|
|
}
|
|
argv[off] += 2;
|
|
if (strcmp(argv[off], "select") == 0) { goto case_select; }
|
|
else if (strcmp(argv[off], "list") == 0) { goto case_list; }
|
|
else if (strcmp(argv[off], "dry-run") == 0) { goto case_dryrun; }
|
|
else if (strcmp(argv[off], "color") == 0) { goto case_color; }
|
|
else if (strcmp(argv[off], "help") == 0) { goto case_help; }
|
|
next:;
|
|
}
|
|
if (argc == 1 || !filename) { help (); }
|
|
select_input = select;
|
|
/* roots to directory of filename and mutates filename with the change */
|
|
root (&filename);
|
|
|
|
buffer = getmap (filename, &length);
|
|
if (!buffer) {
|
|
color_fprintf (stderr, RED "%s" RESET ": Could not access '" BOLD "%s" RESET "'\n", argv [0], filename);
|
|
return 1;
|
|
}
|
|
for (begin = 0; (list || select) && begin < length - strlen (START); ++begin) {
|
|
if (memcmp (buffer + begin, START, strlen (START)) == 0) {
|
|
size_t stop = begin;
|
|
end = begin;
|
|
again: while (end < length && buffer[end] != '\n') { ++end; }
|
|
if (buffer[end - 1] == '\\') { ++end; goto again; }
|
|
while (stop < length - strlen(STOP)) {
|
|
if (memcmp(buffer + stop, STOP, strlen(STOP)) == 0) {
|
|
if (stop && buffer[stop - 1] == '\\') { ++stop; continue; }
|
|
end = stop;
|
|
break;
|
|
}
|
|
++stop;
|
|
}
|
|
if (list) {
|
|
color_printf (GREEN "%d,%d" RESET ": " BOLD, select++, lines (buffer, begin));
|
|
fwrite (buffer + begin, 1, end - begin, stdout);
|
|
color_puts (RESET);
|
|
} else { --select; }
|
|
}}
|
|
begin += strlen (START) - 1;
|
|
|
|
if (list) { return 0; }
|
|
if (end < begin) {
|
|
color_fprintf (stderr, RED "%s" RESET ": " BOLD "%d" RESET " is out of range\n", argv [0], select_input);
|
|
return 1;
|
|
}
|
|
|
|
/* expansion */
|
|
|
|
args = all_args (argc - off, argv + off);
|
|
shortened = shorten (filename);
|
|
char * pair [] = {
|
|
"@FILENAME", filename,
|
|
"@FILE", filename,
|
|
"$@", filename,
|
|
"@SHORT", shortened,
|
|
"$*", shortened,
|
|
"@ARGS", args,
|
|
"$+", args,
|
|
"@LINE", line
|
|
};
|
|
size_t count = ARRLEN (pair);
|
|
snprintf (line, 16, "%lu", lines (buffer, begin));
|
|
expandedp = expand (buffer + begin, end - begin, pair, count);
|
|
memcpy(expanded, expandedp, BUFFER_SIZE);
|
|
munmap (buffer, length);
|
|
|
|
/* print and execute */
|
|
color_printf (GREEN "%s" RESET ": " BOLD "%s" RESET, argv [0], expanded);
|
|
if (expanded[strlen(expanded)] != '\n') { puts(""); }
|
|
if (!run) { return 0; }
|
|
fflush(stdout);
|
|
color_fprintf (stderr, GREEN "output" RESET ":\n");
|
|
if ((pid = fork ()) == 0) {
|
|
execl ("/bin/sh", "sh", "-c", expanded, NULL);
|
|
return 0; /* execl overwrites the process anyways */
|
|
}
|
|
|
|
if (pid == -1) {
|
|
color_fprintf (stderr, GREEN "%s" RESET ": %s, %s\n",
|
|
argv [0], "Fork Error", strerror (errno));
|
|
return 1;
|
|
}
|
|
|
|
/* reuse of run as status return */
|
|
if (waitpid (pid, &run, 0) < 0) {
|
|
color_fprintf (stderr, GREEN "%s" RESET ": " RED "%s" RESET ", %s\n",
|
|
argv [0], "Wait PID Error", strerror (errno));
|
|
return 1;
|
|
}
|
|
if (!WIFEXITED (run)) {
|
|
return 1;
|
|
}
|
|
return WEXITSTATUS (run);
|
|
}
|
|
|
|
void help (void) {
|
|
char * help =
|
|
BOLD "bake [-chln] [-s <n>] <FILENAME> [ARGS...]; version 20240804\n\n" RESET
|
|
GREEN "Bake" RESET " is a simple tool meant to execute embedded shell commands within\n"
|
|
"any file. It executes with /bin/sh the command after a \"" BOLD "@BAKE" RESET " \" to\n"
|
|
"the end of the line (a UNIX newline: '\\n').\n\n"
|
|
"It expands some macros,\n"
|
|
YELLOW "\t@NAME " RESET "- filename\n"
|
|
YELLOW "\t@SHORT " RESET "- shortened filename\n"
|
|
YELLOW "\t@ARGS " RESET "- other arguments to the program\n"
|
|
YELLOW "\t@LINE " RESET "- line number at the selected " BOLD "@BAKE" RESET "\n\n"
|
|
"All macros can be exempted by prefixing them with a backslash,\n"
|
|
"which'll be subtracted in the expansion. multi-line commands may be\n"
|
|
"done by a leading backslash, which are NOT subtracted.\n\n"
|
|
"It has five options, this message (-h, --help); prevents the execution\n"
|
|
"of the shell command (-n, --dry-run); disable color (-c, --color); list\n"
|
|
"(-l, --list) and select (-s<n>, --select <n>) which respectively lists\n"
|
|
"all " BOLD "@BAKE" RESET " commands and select & run the Nth command.\n\n"
|
|
"It roots the shell execution in the directory of the given file.\n\n"
|
|
"Licensed under the public domain.\n";
|
|
color_printf ("%s", help);
|
|
exit (1);
|
|
}
|