aboutsummaryrefslogtreecommitdiffstats
path: root/nopen.c
blob: 7e74416e156e8f2e0bfe307e5d0b0f579275b651 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* See LICENSE file for copyright and license details. */
#include <sys/types.h>
#include <sys/wait.h>

#include <regex.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include "util.h"

struct assoc {
	char *regex; /* Regex to match on filename */
	char *file;
	char *argv[NR_ARGS];
	regex_t regcomp;
};

#include "nopenconf.h"

void
run(struct assoc *assoc, char *arg)
{
	char *argv[NR_ARGS];
	int i;

	for (i = 0; assoc->argv[i]; i++) {
		if (strcmp(assoc->argv[i], "{}") == 0) {
			argv[i] = arg;
			continue;
		}
		argv[i] = assoc->argv[i];
	}
	argv[i] = NULL;
	spawnvp(NULL, assoc->file, argv);
}

struct assoc *
openwith(char *file)
{
	int i;

	for (i = 0; i < LEN(assocs); i++) {
		if (regexec(&assocs[i].regcomp, file, 0, NULL, 0) == 0)
			return &assocs[i];
	}
	return NULL;
}

void
initassocs(void)
{
	char errbuf[256];
	int i, r;

	for (i = 0; i < LEN(assocs); i++) {
		r = regcomp(&assocs[i].regcomp, assocs[i].regex,
			    REG_NOSUB | REG_EXTENDED | REG_ICASE);
		if (r != 0) {
			regerror(r, &assocs[i].regcomp, errbuf, sizeof(errbuf));
			fprintf(stderr, "invalid regex assocs[%d]: %s: %s\n",
			        i, assocs[i].regex, errbuf);
			exit(1);
		}
	}
}

void
usage(char *argv0)
{
	fprintf(stderr, "usage: %s file...\n", argv0);
	exit(1);
}

int
main(int argc, char *argv[])
{
	if (argc == 1)
		usage(argv[0]);
	argc--;
	argv++;
	initassocs();
	for (; *argv != NULL; argv++) {
		struct assoc *assoc;

		if ((assoc = openwith(argv[0])) == NULL)
			continue;
		run(assoc, argv[0]);
	}
	return 0;
}
Un proyecto texto-plano.xyz