summaryrefslogtreecommitdiff
path: root/ruby-runner.c
blob: f44a02bcc70ffb0a6b45f96252506201c87ecca1 (plain)
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
#define _POSIX_C_SOURCE 200809L
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include "ruby-runner.h"

#define STRINGIZE(expr) STRINGIZE0(expr)
#define STRINGIZE0(expr) #expr

int
main(int argc, char **argv)
{
    static const char builddir[] = BUILDDIR;
    static const char rubypath[] = BUILDDIR"/"STRINGIZE(RUBY_INSTALL_NAME);
    const size_t dirsize = sizeof(builddir);
    const size_t namesize = sizeof(rubypath) - dirsize;
    const char *rubyname = rubypath + dirsize;
    char *arg0 = argv[0], *p;
    const char *libpath = getenv(LIBPATHENV);
    char c = 0;

    if (libpath) {
	while ((c = *libpath) == PATH_SEP) ++libpath;
    }
    if (c) {
	size_t n = strlen(libpath);
	char *e = malloc(dirsize+n+1);
	memcpy(e, builddir, dirsize-1);
	e[dirsize-1] = PATH_SEP;
	memcpy(e+dirsize, libpath, n+1);
	libpath = e;
    }
    else {
	libpath = builddir;
    }
    setenv(LIBPATHENV, libpath, 1);

    if (!(p = strrchr(arg0, '/'))) p = arg0; else p++;
    if (strlen(p) < namesize - 1) {
	argv[0] = malloc(p - arg0 + namesize);
	memcpy(argv[0], arg0, p - arg0);
	memcpy(argv[0] + (p - arg0), rubypath + dirsize, namesize);
    }
    else {
	memcpy(p, rubyname, namesize);
    }

    execv(rubypath, argv);
    return -1;
}