2009-02-22 17:23:33 +03:00
|
|
|
void Init_golf(void);
|
2011-12-21 10:23:15 +04:00
|
|
|
#define ruby_options goruby_options
|
2007-12-31 01:39:34 +03:00
|
|
|
#define ruby_run_node goruby_run_node
|
2007-12-25 10:04:30 +03:00
|
|
|
#include "main.c"
|
2011-12-21 10:23:15 +04:00
|
|
|
#undef ruby_options
|
2007-12-31 01:39:34 +03:00
|
|
|
#undef ruby_run_node
|
|
|
|
|
2011-12-21 11:03:06 +04:00
|
|
|
#if defined _WIN32
|
|
|
|
#include <io.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#define pipe(p) _pipe(p, 32L, _O_NOINHERIT)
|
|
|
|
#elif defined HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
2011-12-21 10:23:15 +04:00
|
|
|
RUBY_EXTERN void *ruby_options(int argc, char **argv);
|
2007-12-31 01:39:34 +03:00
|
|
|
RUBY_EXTERN int ruby_run_node(void*);
|
|
|
|
RUBY_EXTERN void ruby_init_ext(const char *name, void (*init)(void));
|
|
|
|
|
|
|
|
static VALUE
|
|
|
|
init_golf(VALUE arg)
|
|
|
|
{
|
2016-08-23 11:00:09 +03:00
|
|
|
Init_golf();
|
|
|
|
rb_provide("golf.so");
|
2007-12-31 01:39:34 +03:00
|
|
|
return arg;
|
|
|
|
}
|
|
|
|
|
2011-12-21 10:23:15 +04:00
|
|
|
void *
|
|
|
|
goruby_options(int argc, char **argv)
|
|
|
|
{
|
2012-12-23 10:34:56 +04:00
|
|
|
static const char cmd[] = "END{require 'irb';IRB.start}";
|
2011-12-21 10:23:15 +04:00
|
|
|
int rw[2], infd;
|
|
|
|
void *ret;
|
|
|
|
|
|
|
|
if ((isatty(0) && isatty(1) && isatty(2)) && (pipe(rw) == 0)) {
|
2014-08-10 08:48:10 +04:00
|
|
|
ssize_t n;
|
2011-12-21 10:23:15 +04:00
|
|
|
infd = dup(0);
|
2017-03-09 06:38:06 +03:00
|
|
|
if (infd < 0) {
|
|
|
|
close(rw[0]);
|
|
|
|
close(rw[1]);
|
|
|
|
goto no_irb;
|
|
|
|
}
|
2011-12-21 10:23:15 +04:00
|
|
|
dup2(rw[0], 0);
|
|
|
|
close(rw[0]);
|
2014-08-10 08:48:10 +04:00
|
|
|
n = write(rw[1], cmd, sizeof(cmd) - 1);
|
2011-12-21 10:23:15 +04:00
|
|
|
close(rw[1]);
|
2014-08-10 08:48:10 +04:00
|
|
|
ret = n > 0 ? ruby_options(argc, argv) : NULL;
|
2011-12-21 10:23:15 +04:00
|
|
|
dup2(infd, 0);
|
|
|
|
close(infd);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
else {
|
2017-03-09 06:38:06 +03:00
|
|
|
no_irb:
|
2011-12-21 10:23:15 +04:00
|
|
|
return ruby_options(argc, argv);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-12-31 01:39:34 +03:00
|
|
|
int
|
|
|
|
goruby_run_node(void *arg)
|
|
|
|
{
|
|
|
|
int state;
|
|
|
|
if (NIL_P(rb_protect(init_golf, Qtrue, &state))) {
|
|
|
|
return state == EXIT_SUCCESS ? EXIT_FAILURE : state;
|
|
|
|
}
|
|
|
|
return ruby_run_node(arg);
|
|
|
|
}
|