2000-05-01 13:42:38 +04:00
|
|
|
/**********************************************************************
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
error.c -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
$Date$
|
|
|
|
created at: Mon Aug 9 16:11:34 JST 1993
|
|
|
|
|
2003-01-16 10:34:03 +03:00
|
|
|
Copyright (C) 1993-2003 Yukihiro Matsumoto
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-05-01 13:42:38 +04:00
|
|
|
**********************************************************************/
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2007-06-10 07:06:15 +04:00
|
|
|
#include "ruby/ruby.h"
|
|
|
|
#include "ruby/st.h"
|
* blockinlining.c: remove "yarv" prefix.
* array.c, numeric.c: ditto.
* insnhelper.ci, insns.def, vm_evalbody.ci: ditto.
* yarvcore.c: removed.
* yarvcore.h: renamed to core.h.
* cont.c, debug.c, error.c, process.c, signal.c : ditto.
* ext/probeprofiler/probeprofiler.c: ditto.
* id.c, id.h: added.
* inits.c: ditto.
* compile.c: rename internal functions.
* compile.h: fix debug flag.
* eval.c, object.c, vm.c: remove ruby_top_self.
use rb_vm_top_self() instead.
* eval_intern.h, eval_load: ditto.
* gc.c: rename yarv_machine_stack_mark() to
rb_gc_mark_machine_stack().
* insnhelper.h: remove unused macros.
* iseq.c: add iseq_compile() to create iseq object
from source string.
* proc.c: rename a internal function.
* template/insns.inc.tmpl: remove YARV prefix.
* thread.c:
* vm.c (rb_iseq_eval): added.
* vm.c: move some functions from yarvcore.c.
* vm_dump.c: fix to remove compiler warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-12 08:25:46 +04:00
|
|
|
#include "vm_core.h"
|
2000-11-14 10:10:31 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
#include <stdio.h>
|
1999-01-20 07:59:39 +03:00
|
|
|
#include <stdarg.h>
|
2004-07-16 06:17:59 +04:00
|
|
|
#ifdef HAVE_STDLIB_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
#endif
|
|
|
|
#ifndef EXIT_SUCCESS
|
|
|
|
#define EXIT_SUCCESS 0
|
|
|
|
#endif
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-03-25 15:01:41 +03:00
|
|
|
extern const char ruby_version[], ruby_release_date[], ruby_platform[];
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-06-02 08:49:46 +04:00
|
|
|
static int
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
err_position_0(char *buf, long len, const char *file, int line)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2007-05-02 01:45:48 +04:00
|
|
|
if (!file) {
|
2003-06-02 08:49:46 +04:00
|
|
|
return 0;
|
1999-10-16 14:33:06 +04:00
|
|
|
}
|
2007-05-02 01:45:48 +04:00
|
|
|
else if (line == 0) {
|
|
|
|
return snprintf(buf, len, "%s: ", file);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
else {
|
2007-05-02 01:45:48 +04:00
|
|
|
return snprintf(buf, len, "%s:%d: ", file, line);
|
1999-10-16 14:33:06 +04:00
|
|
|
}
|
2003-06-02 08:49:46 +04:00
|
|
|
}
|
|
|
|
|
2007-05-02 01:45:48 +04:00
|
|
|
static int
|
|
|
|
err_position(char *buf, long len)
|
|
|
|
{
|
|
|
|
return err_position_0(buf, len, rb_sourcefile(), rb_sourceline());
|
|
|
|
}
|
|
|
|
|
2003-06-02 08:49:46 +04:00
|
|
|
static void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
err_snprintf(char *buf, long len, const char *fmt, va_list args)
|
2003-06-02 08:49:46 +04:00
|
|
|
{
|
|
|
|
long n;
|
|
|
|
|
|
|
|
n = err_position(buf, len);
|
1999-10-16 14:33:06 +04:00
|
|
|
if (len > n) {
|
|
|
|
vsnprintf((char*)buf+n, len-n, fmt, args);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
compile_snprintf(char *buf, long len, const char *file, int line, const char *fmt, va_list args)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2007-05-02 01:45:48 +04:00
|
|
|
long n;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
n = err_position_0(buf, len, file, line);
|
2007-05-02 01:45:48 +04:00
|
|
|
if (len > n) {
|
|
|
|
vsnprintf((char*)buf+n, len-n, fmt, args);
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2007-05-02 01:45:48 +04:00
|
|
|
static void err_append(const char*);
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
void
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
rb_compile_error(const char *file, int line, const char *fmt, ...)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
va_list args;
|
2007-05-02 01:45:48 +04:00
|
|
|
char buf[BUFSIZ];
|
|
|
|
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
va_start(args, fmt);
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
compile_snprintf(buf, BUFSIZ, file, line, fmt, args);
|
1998-01-16 15:13:05 +03:00
|
|
|
va_end(args);
|
2007-05-02 01:45:48 +04:00
|
|
|
err_append(buf);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_compile_error_append(const char *fmt, ...)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
va_start(args, fmt);
|
1999-01-20 07:59:39 +03:00
|
|
|
vsnprintf(buf, BUFSIZ, fmt, args);
|
1998-01-16 15:13:05 +03:00
|
|
|
va_end(args);
|
|
|
|
err_append(buf);
|
|
|
|
}
|
|
|
|
|
2007-05-02 01:45:48 +04:00
|
|
|
static void
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
compile_warn_print(const char *file, int line, const char *fmt, va_list args)
|
2007-05-02 01:45:48 +04:00
|
|
|
{
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
int len;
|
|
|
|
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
compile_snprintf(buf, BUFSIZ, file, line, fmt, args);
|
2007-05-02 01:45:48 +04:00
|
|
|
len = strlen(buf);
|
|
|
|
buf[len++] = '\n';
|
|
|
|
rb_write_error2(buf, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
rb_compile_warn(const char *file, int line, const char *fmt, ...)
|
2007-05-02 01:45:48 +04:00
|
|
|
{
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
if (NIL_P(ruby_verbose)) return;
|
|
|
|
|
|
|
|
snprintf(buf, BUFSIZ, "warning: %s", fmt);
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
compile_warn_print(file, line, buf, args);
|
2007-05-02 01:45:48 +04:00
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* rb_compile_warning() reports only in verbose mode */
|
|
|
|
void
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
rb_compile_warning(const char *file, int line, const char *fmt, ...)
|
2007-05-02 01:45:48 +04:00
|
|
|
{
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
if (!RTEST(ruby_verbose)) return;
|
|
|
|
|
|
|
|
snprintf(buf, BUFSIZ, "warning: %s", fmt);
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
compile_warn_print(file, line, buf, args);
|
2007-05-02 01:45:48 +04:00
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
2000-11-08 08:29:37 +03:00
|
|
|
static void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
warn_print(const char *fmt, va_list args)
|
2000-11-08 08:29:37 +03:00
|
|
|
{
|
|
|
|
char buf[BUFSIZ];
|
2003-08-27 17:33:27 +04:00
|
|
|
int len;
|
2000-11-08 08:29:37 +03:00
|
|
|
|
|
|
|
err_snprintf(buf, BUFSIZ, fmt, args);
|
2003-08-27 17:33:27 +04:00
|
|
|
len = strlen(buf);
|
|
|
|
buf[len++] = '\n';
|
|
|
|
rb_write_error2(buf, len);
|
2000-11-08 08:29:37 +03:00
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
void
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_warn(const char *fmt, ...)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
va_list args;
|
|
|
|
|
2003-07-29 22:26:55 +04:00
|
|
|
if (NIL_P(ruby_verbose)) return;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
snprintf(buf, BUFSIZ, "warning: %s", fmt);
|
|
|
|
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
va_start(args, fmt);
|
2000-11-08 08:29:37 +03:00
|
|
|
warn_print(buf, args);
|
1999-01-20 07:59:39 +03:00
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* rb_warning() reports only in verbose mode */
|
|
|
|
void
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_warning(const char *fmt, ...)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
va_list args;
|
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
if (!RTEST(ruby_verbose)) return;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
snprintf(buf, BUFSIZ, "warning: %s", fmt);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
va_start(args, fmt);
|
2000-11-08 08:29:37 +03:00
|
|
|
warn_print(buf, args);
|
1998-01-16 15:13:05 +03:00
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
|
2003-12-29 06:56:22 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* warn(msg) => nil
|
|
|
|
*
|
|
|
|
* Display the given message (followed by a newline) on STDERR unless
|
|
|
|
* warnings are disabled (for example with the <code>-W0</code> flag).
|
|
|
|
*/
|
|
|
|
|
2003-06-02 08:49:46 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_warn_m(VALUE self, VALUE mesg)
|
2003-06-02 08:49:46 +04:00
|
|
|
{
|
2003-10-02 12:25:00 +04:00
|
|
|
if (!NIL_P(ruby_verbose)) {
|
|
|
|
rb_io_write(rb_stderr, mesg);
|
|
|
|
rb_io_write(rb_stderr, rb_default_rs);
|
|
|
|
}
|
|
|
|
return Qnil;
|
2003-06-02 08:49:46 +04:00
|
|
|
}
|
|
|
|
|
* blockinlining.c: remove "yarv" prefix.
* array.c, numeric.c: ditto.
* insnhelper.ci, insns.def, vm_evalbody.ci: ditto.
* yarvcore.c: removed.
* yarvcore.h: renamed to core.h.
* cont.c, debug.c, error.c, process.c, signal.c : ditto.
* ext/probeprofiler/probeprofiler.c: ditto.
* id.c, id.h: added.
* inits.c: ditto.
* compile.c: rename internal functions.
* compile.h: fix debug flag.
* eval.c, object.c, vm.c: remove ruby_top_self.
use rb_vm_top_self() instead.
* eval_intern.h, eval_load: ditto.
* gc.c: rename yarv_machine_stack_mark() to
rb_gc_mark_machine_stack().
* insnhelper.h: remove unused macros.
* iseq.c: add iseq_compile() to create iseq object
from source string.
* proc.c: rename a internal function.
* template/insns.inc.tmpl: remove YARV prefix.
* thread.c:
* vm.c (rb_iseq_eval): added.
* vm.c: move some functions from yarvcore.c.
* vm_dump.c: fix to remove compiler warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-12 08:25:46 +04:00
|
|
|
void rb_vm_bugreport(void);
|
2006-12-31 18:02:22 +03:00
|
|
|
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
static void
|
|
|
|
report_bug(const char *file, int line, const char *fmt, va_list args)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
char buf[BUFSIZ];
|
2003-08-27 17:33:27 +04:00
|
|
|
FILE *out = stderr;
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
int len = err_position_0(buf, BUFSIZ, file, line);
|
2003-08-27 17:33:27 +04:00
|
|
|
|
|
|
|
if (fwrite(buf, 1, len, out) == len ||
|
|
|
|
fwrite(buf, 1, len, (out = stdout)) == len) {
|
* blockinlining.c: remove "yarv" prefix.
* array.c, numeric.c: ditto.
* insnhelper.ci, insns.def, vm_evalbody.ci: ditto.
* yarvcore.c: removed.
* yarvcore.h: renamed to core.h.
* cont.c, debug.c, error.c, process.c, signal.c : ditto.
* ext/probeprofiler/probeprofiler.c: ditto.
* id.c, id.h: added.
* inits.c: ditto.
* compile.c: rename internal functions.
* compile.h: fix debug flag.
* eval.c, object.c, vm.c: remove ruby_top_self.
use rb_vm_top_self() instead.
* eval_intern.h, eval_load: ditto.
* gc.c: rename yarv_machine_stack_mark() to
rb_gc_mark_machine_stack().
* insnhelper.h: remove unused macros.
* iseq.c: add iseq_compile() to create iseq object
from source string.
* proc.c: rename a internal function.
* template/insns.inc.tmpl: remove YARV prefix.
* thread.c:
* vm.c (rb_iseq_eval): added.
* vm.c: move some functions from yarvcore.c.
* vm_dump.c: fix to remove compiler warning.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12741 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-12 08:25:46 +04:00
|
|
|
rb_vm_bugreport();
|
2003-08-27 17:33:27 +04:00
|
|
|
fputs("[BUG] ", out);
|
|
|
|
vfprintf(out, fmt, args);
|
|
|
|
fprintf(out, "\nruby %s (%s) [%s]\n\n",
|
2004-03-25 15:01:41 +03:00
|
|
|
ruby_version, ruby_release_date, ruby_platform);
|
2003-08-27 17:33:27 +04:00
|
|
|
}
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_bug(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
report_bug(rb_sourcefile(), rb_sourceline(), fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rb_compile_bug(const char *file, int line, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
report_bug(file, line, fmt, args);
|
|
|
|
va_end(args);
|
2006-12-31 18:02:22 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct types {
|
|
|
|
int type;
|
1999-08-13 09:45:20 +04:00
|
|
|
const char *name;
|
1998-01-16 15:13:05 +03:00
|
|
|
} builtin_types[] = {
|
2002-04-24 08:54:16 +04:00
|
|
|
{T_NIL, "nil"},
|
|
|
|
{T_OBJECT, "Object"},
|
|
|
|
{T_CLASS, "Class"},
|
|
|
|
{T_ICLASS, "iClass"}, /* internal use: mixed-in module holder */
|
|
|
|
{T_MODULE, "Module"},
|
|
|
|
{T_FLOAT, "Float"},
|
|
|
|
{T_STRING, "String"},
|
|
|
|
{T_REGEXP, "Regexp"},
|
|
|
|
{T_ARRAY, "Array"},
|
|
|
|
{T_FIXNUM, "Fixnum"},
|
|
|
|
{T_HASH, "Hash"},
|
|
|
|
{T_STRUCT, "Struct"},
|
|
|
|
{T_BIGNUM, "Bignum"},
|
|
|
|
{T_FILE, "File"},
|
|
|
|
{T_TRUE, "true"},
|
|
|
|
{T_FALSE, "false"},
|
|
|
|
{T_SYMBOL, "Symbol"}, /* :symbol */
|
|
|
|
{T_DATA, "Data"}, /* internal use: wrapped C pointers */
|
|
|
|
{T_MATCH, "MatchData"}, /* data of $~ */
|
|
|
|
{T_NODE, "Node"}, /* internal use: syntax tree node */
|
|
|
|
{T_UNDEF, "undef"}, /* internal use: #undef; should not happen */
|
|
|
|
{-1, 0}
|
1998-01-16 15:13:05 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_check_type(VALUE x, int t)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
struct types *type = builtin_types;
|
|
|
|
|
2000-11-10 11:52:23 +03:00
|
|
|
if (x == Qundef) {
|
|
|
|
rb_bug("undef leaked to the Ruby space");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TYPE(x) != t) {
|
1998-01-16 15:13:05 +03:00
|
|
|
while (type->type >= 0) {
|
|
|
|
if (type->type == t) {
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
const char *etype;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
if (NIL_P(x)) {
|
|
|
|
etype = "nil";
|
|
|
|
}
|
|
|
|
else if (FIXNUM_P(x)) {
|
|
|
|
etype = "Fixnum";
|
|
|
|
}
|
2004-03-15 05:27:29 +03:00
|
|
|
else if (SYMBOL_P(x)) {
|
|
|
|
etype = "Symbol";
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
else if (rb_special_const_p(x)) {
|
2006-08-31 14:47:44 +04:00
|
|
|
etype = RSTRING_PTR(rb_obj_as_string(x));
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
else {
|
2003-01-31 07:00:17 +03:00
|
|
|
etype = rb_obj_classname(x);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
rb_raise(rb_eTypeError, "wrong argument type %s (expected %s)",
|
|
|
|
etype, type->name);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
type++;
|
|
|
|
}
|
2005-09-28 07:51:52 +04:00
|
|
|
rb_bug("unknown type 0x%x (0x%x given)", t, TYPE(x));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* exception classes */
|
1999-01-20 07:59:39 +03:00
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
VALUE rb_eException;
|
1999-08-13 09:45:20 +04:00
|
|
|
VALUE rb_eSystemExit;
|
|
|
|
VALUE rb_eInterrupt;
|
|
|
|
VALUE rb_eSignal;
|
|
|
|
VALUE rb_eFatal;
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_eStandardError;
|
|
|
|
VALUE rb_eRuntimeError;
|
|
|
|
VALUE rb_eTypeError;
|
|
|
|
VALUE rb_eArgError;
|
|
|
|
VALUE rb_eIndexError;
|
2004-09-22 08:48:52 +04:00
|
|
|
VALUE rb_eKeyError;
|
2000-03-07 11:37:59 +03:00
|
|
|
VALUE rb_eRangeError;
|
2001-06-05 11:50:59 +04:00
|
|
|
VALUE rb_eNameError;
|
|
|
|
VALUE rb_eNoMethodError;
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_eSecurityError;
|
|
|
|
VALUE rb_eNotImpError;
|
1999-12-14 09:50:43 +03:00
|
|
|
VALUE rb_eNoMemError;
|
2006-07-20 21:36:36 +04:00
|
|
|
VALUE rb_cNameErrorMesg;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2000-02-01 06:12:21 +03:00
|
|
|
VALUE rb_eScriptError;
|
|
|
|
VALUE rb_eSyntaxError;
|
|
|
|
VALUE rb_eLoadError;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE rb_eSystemCallError;
|
|
|
|
VALUE rb_mErrno;
|
2005-03-08 04:46:33 +03:00
|
|
|
static VALUE eNOERROR;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_exc_new(VALUE etype, const char *ptr, long len)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2001-10-03 11:19:19 +04:00
|
|
|
return rb_funcall(etype, rb_intern("new"), 1, rb_str_new(ptr, len));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_exc_new2(VALUE etype, const char *s)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-01-20 07:59:39 +03:00
|
|
|
return rb_exc_new(etype, s, strlen(s));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_exc_new3(VALUE etype, VALUE str)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2001-05-02 08:22:21 +04:00
|
|
|
StringValue(str);
|
2004-03-17 02:03:17 +03:00
|
|
|
return rb_funcall(etype, rb_intern("new"), 1, str);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Exception.new(msg = nil) => exception
|
|
|
|
*
|
|
|
|
* Construct a new Exception object, optionally passing in
|
|
|
|
* a message.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
exc_initialize(int argc, VALUE *argv, VALUE exc)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2003-08-14 21:20:14 +04:00
|
|
|
VALUE arg;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2004-03-17 02:03:17 +03:00
|
|
|
rb_scan_args(argc, argv, "01", &arg);
|
2003-08-14 21:20:14 +04:00
|
|
|
rb_iv_set(exc, "mesg", arg);
|
2002-04-15 11:48:47 +04:00
|
|
|
rb_iv_set(exc, "bt", Qnil);
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
return exc;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
2003-12-30 19:38:32 +03:00
|
|
|
* Document-method: exception
|
|
|
|
*
|
2003-12-21 10:28:54 +03:00
|
|
|
* call-seq:
|
|
|
|
* exc.exception(string) -> an_exception or exc
|
|
|
|
*
|
|
|
|
* With no argument, or if the argument is the same as the receiver,
|
|
|
|
* return the receiver. Otherwise, create a new
|
|
|
|
* exception object of the same class as the receiver, but with a
|
|
|
|
* message equal to <code>string.to_str</code>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
exc_exception(int argc, VALUE *argv, VALUE self)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
2001-07-02 12:46:28 +04:00
|
|
|
VALUE exc;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
if (argc == 0) return self;
|
1999-01-20 07:59:39 +03:00
|
|
|
if (argc == 1 && self == argv[0]) return self;
|
2001-07-02 12:46:28 +04:00
|
|
|
exc = rb_obj_clone(self);
|
2005-05-18 18:43:03 +04:00
|
|
|
exc_initialize(argc, argv, exc);
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
return exc;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* exception.to_s => string
|
|
|
|
*
|
|
|
|
* Returns exception's message (or the name of the exception if
|
|
|
|
* no message is set).
|
|
|
|
*/
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
exc_to_s(VALUE exc)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
2003-05-20 05:51:32 +04:00
|
|
|
VALUE mesg = rb_attr_get(exc, rb_intern("mesg"));
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2004-01-19 12:19:31 +03:00
|
|
|
if (NIL_P(mesg)) return rb_class_name(CLASS_OF(exc));
|
1999-12-01 12:24:48 +03:00
|
|
|
if (OBJ_TAINTED(exc)) OBJ_TAINT(mesg);
|
1999-01-20 07:59:39 +03:00
|
|
|
return mesg;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* exception.message => string
|
|
|
|
*
|
|
|
|
* Returns the result of invoking <code>exception.to_s</code>.
|
|
|
|
* Normally this returns the exception's message or name. By
|
|
|
|
* supplying a to_str method, exceptions are agreeing to
|
|
|
|
* be used where Strings are expected.
|
|
|
|
*/
|
|
|
|
|
* gc.c (Init_stack): stack region is far smaller than usual if
pthread is used.
* marshal.c (w_extended): singleton methods should not be checked
when dumping via marshal_dump() or _dump(). [ruby-talk:85909]
* file.c (getcwdofdrv): avoid using getcwd() directly, use
my_getcwd() instead.
* merged NeXT, OpenStep, Rhapsody ports patch from Eric Sunshine
<sunshine@sunshineco.com>. [ruby-core:01596]
* marshal.c (w_object): LINK check earlier than anything else,
i.e. do not dump TYPE_IVAR for already dumped objects.
(ruby-bugs PR#1220)
* eval.c (rb_eval): call "inherited" only when a new class is
generated; not on reopening.
* eval.c (eval): prepend error position in evaluating string to
* configure.in: revived NextStep, OpenStep, and Rhapsody ports which
had become unbuildable; enhanced --enable-fat-binary option so that
it accepts a list of desired architectures (rather than assuming a
fixed list), or defaults to a platform-appropriate list if user does
not provide an explicit list; made the default list of architectures
for MAB (fat binary) more comprehensive; now uses -fno-common even
when building the interpreter (in addition to using it for
extensions), thus allowing the interpreter to be embedded into a
plugin module of an external project (in addition to allowing
embedding directly into an application); added checks for
<netinet/in_systm.h> (needed by `socket' extension) and getcwd(); now
ensures that -I/usr/local/include is employed when extensions'
extconf.rb scripts invoke have_header() since extension checks on
NextStep and OpenStep will fail without it if the desired resource
resides in the /usr/local tree; fixed formatting of --help message.
* Makefile.in: $(LIBRUBY_A) rule now deletes the archive before
invoking $(AR) since `ar' on Apple/NeXT can not "update" MAB archives
(see configure's --enable-fat-binary option); added rule for new
missing/getcwd.c.
* defines.h: fixed endian handling during MAB build (see configure's
--enable-fat-binary option) to ensure that all portions of the
project see the correct WORDS_BIGENDIAN value (some extension modules
were getting the wrong endian setting); added missing constants
GETPGRP_VOID, WNOHANG, WUNTRACED, X_OK, and type pid_t for NextStep
and OpenStep; removed unnecessary and problematic HAVE_SYS_WAIT_H
define in NeXT section.
* dir.c: do not allow NAMLEN() macro to trust dirent::d_namlen on
NextStep since, on some installations, this value always resolves
uselessly to zero.
* dln.c: added error reporting to NextStep extension loader since the
previous behavior of failing silently was not useful; now ensures
that NSLINKMODULE_OPTION_BINDNOW compatibility constant is defined
for OpenStep and Rhapsody; no longer includes <mach-o/dyld.h> twice
on Rhapsody since this header lacks multiple-include protection,
which resulted in "redefinition" compilation errors.
* main.c: also create hard reference to objc_msgSend() on NeXT
platforms (in addition to Apple platforms).
* lib/mkmf.rb: now exports XCFLAGS from configure script to extension
makefiles so that extensions can be built MAB (see configure's
--enable-fat-binary option); also utilize XCFLAGS in cc_command()
(but not cpp_command() because MAB flags are incompatible with
direct invocation of `cpp').
* ext/curses/extconf.rb: now additionally checks for presence of these
curses functions which are not present on NextStep or Openstep:
bkgd(), bkgdset(), color(), curs(), getbkgd(), init(), scrl(), set(),
setscrreg(), wattroff(), wattron(), wattrset(), wbkgd(), wbkgdset(),
wscrl(), wsetscrreg()
* ext/curses/curses.c: added appropriate #ifdef's for additional set of
curses functions now checked by extconf.rb; fixed curses_bkgd() and
window_bkgd() to correctly return boolean result rather than numeric
result; fixed window_getbkgd() to correctly signal an error by
returning nil rather than -1.
* ext/etc/etc.c: setup_passwd() and setup_group() now check for null
pointers before invoking rb_tainted_str_new2() upon fields extracted
from `struct passwd' and `struct group' since null pointers in some
fields are common on NextStep/OpenStep (especially so for the
`pw_comment' field) and rb_tainted_str_new2() throws an exception
when it receives a null pointer.
* ext/pty/pty.c: include "util.h" for strdup()/ruby_strdup() for
platforms such as NextStep and OpenStep which lack strdup().
* ext/socket/getaddrinfo.c: cast first argument of getservbyname(),
gethostbyaddr(), and gethostbyname() from (const char*) to non-const
(char*) for older platforms such as NextStep and OpenStep.
* ext/socket/socket.c: include "util.h" for strdup()/ruby_strdup() for
platforms such as NextStep and OpenStep which lack strdup(); include
<netinet/in_systm.h> if present for NextStep and OpenStep; cast first
argument of gethostbyaddr() and getservbyname() from (const char*) to
non-const (char*) for older platforms.
* ext/syslog/syslog.c: include "util.h" for strdup()/ruby_strdup() for
platforms such as NextStep and OpenStep which lack strdup().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5002 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-11-22 07:00:03 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
exc_message(VALUE exc)
|
* gc.c (Init_stack): stack region is far smaller than usual if
pthread is used.
* marshal.c (w_extended): singleton methods should not be checked
when dumping via marshal_dump() or _dump(). [ruby-talk:85909]
* file.c (getcwdofdrv): avoid using getcwd() directly, use
my_getcwd() instead.
* merged NeXT, OpenStep, Rhapsody ports patch from Eric Sunshine
<sunshine@sunshineco.com>. [ruby-core:01596]
* marshal.c (w_object): LINK check earlier than anything else,
i.e. do not dump TYPE_IVAR for already dumped objects.
(ruby-bugs PR#1220)
* eval.c (rb_eval): call "inherited" only when a new class is
generated; not on reopening.
* eval.c (eval): prepend error position in evaluating string to
* configure.in: revived NextStep, OpenStep, and Rhapsody ports which
had become unbuildable; enhanced --enable-fat-binary option so that
it accepts a list of desired architectures (rather than assuming a
fixed list), or defaults to a platform-appropriate list if user does
not provide an explicit list; made the default list of architectures
for MAB (fat binary) more comprehensive; now uses -fno-common even
when building the interpreter (in addition to using it for
extensions), thus allowing the interpreter to be embedded into a
plugin module of an external project (in addition to allowing
embedding directly into an application); added checks for
<netinet/in_systm.h> (needed by `socket' extension) and getcwd(); now
ensures that -I/usr/local/include is employed when extensions'
extconf.rb scripts invoke have_header() since extension checks on
NextStep and OpenStep will fail without it if the desired resource
resides in the /usr/local tree; fixed formatting of --help message.
* Makefile.in: $(LIBRUBY_A) rule now deletes the archive before
invoking $(AR) since `ar' on Apple/NeXT can not "update" MAB archives
(see configure's --enable-fat-binary option); added rule for new
missing/getcwd.c.
* defines.h: fixed endian handling during MAB build (see configure's
--enable-fat-binary option) to ensure that all portions of the
project see the correct WORDS_BIGENDIAN value (some extension modules
were getting the wrong endian setting); added missing constants
GETPGRP_VOID, WNOHANG, WUNTRACED, X_OK, and type pid_t for NextStep
and OpenStep; removed unnecessary and problematic HAVE_SYS_WAIT_H
define in NeXT section.
* dir.c: do not allow NAMLEN() macro to trust dirent::d_namlen on
NextStep since, on some installations, this value always resolves
uselessly to zero.
* dln.c: added error reporting to NextStep extension loader since the
previous behavior of failing silently was not useful; now ensures
that NSLINKMODULE_OPTION_BINDNOW compatibility constant is defined
for OpenStep and Rhapsody; no longer includes <mach-o/dyld.h> twice
on Rhapsody since this header lacks multiple-include protection,
which resulted in "redefinition" compilation errors.
* main.c: also create hard reference to objc_msgSend() on NeXT
platforms (in addition to Apple platforms).
* lib/mkmf.rb: now exports XCFLAGS from configure script to extension
makefiles so that extensions can be built MAB (see configure's
--enable-fat-binary option); also utilize XCFLAGS in cc_command()
(but not cpp_command() because MAB flags are incompatible with
direct invocation of `cpp').
* ext/curses/extconf.rb: now additionally checks for presence of these
curses functions which are not present on NextStep or Openstep:
bkgd(), bkgdset(), color(), curs(), getbkgd(), init(), scrl(), set(),
setscrreg(), wattroff(), wattron(), wattrset(), wbkgd(), wbkgdset(),
wscrl(), wsetscrreg()
* ext/curses/curses.c: added appropriate #ifdef's for additional set of
curses functions now checked by extconf.rb; fixed curses_bkgd() and
window_bkgd() to correctly return boolean result rather than numeric
result; fixed window_getbkgd() to correctly signal an error by
returning nil rather than -1.
* ext/etc/etc.c: setup_passwd() and setup_group() now check for null
pointers before invoking rb_tainted_str_new2() upon fields extracted
from `struct passwd' and `struct group' since null pointers in some
fields are common on NextStep/OpenStep (especially so for the
`pw_comment' field) and rb_tainted_str_new2() throws an exception
when it receives a null pointer.
* ext/pty/pty.c: include "util.h" for strdup()/ruby_strdup() for
platforms such as NextStep and OpenStep which lack strdup().
* ext/socket/getaddrinfo.c: cast first argument of getservbyname(),
gethostbyaddr(), and gethostbyname() from (const char*) to non-const
(char*) for older platforms such as NextStep and OpenStep.
* ext/socket/socket.c: include "util.h" for strdup()/ruby_strdup() for
platforms such as NextStep and OpenStep which lack strdup(); include
<netinet/in_systm.h> if present for NextStep and OpenStep; cast first
argument of gethostbyaddr() and getservbyname() from (const char*) to
non-const (char*) for older platforms.
* ext/syslog/syslog.c: include "util.h" for strdup()/ruby_strdup() for
platforms such as NextStep and OpenStep which lack strdup().
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5002 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2003-11-22 07:00:03 +03:00
|
|
|
{
|
|
|
|
return rb_funcall(exc, rb_intern("to_s"), 0, 0);
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* exception.inspect => string
|
|
|
|
*
|
|
|
|
* Return this exception's class name an message
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
exc_inspect(VALUE exc)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1998-01-16 15:19:22 +03:00
|
|
|
VALUE str, klass;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1998-01-16 15:19:22 +03:00
|
|
|
klass = CLASS_OF(exc);
|
1999-01-20 07:59:39 +03:00
|
|
|
exc = rb_obj_as_string(exc);
|
2006-08-31 14:47:44 +04:00
|
|
|
if (RSTRING_LEN(exc) == 0) {
|
2004-01-19 12:19:31 +03:00
|
|
|
return rb_str_dup(rb_class_name(klass));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1998-01-16 15:19:22 +03:00
|
|
|
|
2001-05-30 13:12:34 +04:00
|
|
|
str = rb_str_buf_new2("#<");
|
2004-01-19 12:19:31 +03:00
|
|
|
klass = rb_class_name(klass);
|
2001-05-30 13:12:34 +04:00
|
|
|
rb_str_buf_append(str, klass);
|
|
|
|
rb_str_buf_cat(str, ": ", 2);
|
|
|
|
rb_str_buf_append(str, exc);
|
|
|
|
rb_str_buf_cat(str, ">", 1);
|
1998-01-16 15:19:22 +03:00
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* exception.backtrace => array
|
|
|
|
*
|
|
|
|
* Returns any backtrace associated with the exception. The backtrace
|
|
|
|
* is an array of strings, each containing either ``filename:lineNo: in
|
|
|
|
* `method''' or ``filename:lineNo.''
|
|
|
|
*
|
|
|
|
* def a
|
|
|
|
* raise "boom"
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
* def b
|
|
|
|
* a()
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
* begin
|
|
|
|
* b()
|
|
|
|
* rescue => detail
|
|
|
|
* print detail.backtrace.join("\n")
|
|
|
|
* end
|
|
|
|
*
|
|
|
|
* <em>produces:</em>
|
|
|
|
*
|
|
|
|
* prog.rb:2:in `a'
|
|
|
|
* prog.rb:6:in `b'
|
|
|
|
* prog.rb:10
|
|
|
|
*/
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
exc_backtrace(VALUE exc)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
1999-08-13 09:45:20 +04:00
|
|
|
ID bt = rb_intern("bt");
|
|
|
|
|
|
|
|
if (!rb_ivar_defined(exc, bt)) return Qnil;
|
|
|
|
return rb_ivar_get(exc, bt);
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
check_backtrace(VALUE bt)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
2002-08-21 19:47:54 +04:00
|
|
|
long i;
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
static const char *err = "backtrace must be Array of String";
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
if (!NIL_P(bt)) {
|
|
|
|
int t = TYPE(bt);
|
|
|
|
|
|
|
|
if (t == T_STRING) return rb_ary_new3(1, bt);
|
|
|
|
if (t != T_ARRAY) {
|
|
|
|
rb_raise(rb_eTypeError, err);
|
|
|
|
}
|
2006-09-02 18:42:08 +04:00
|
|
|
for (i=0;i<RARRAY_LEN(bt);i++) {
|
|
|
|
if (TYPE(RARRAY_PTR(bt)[i]) != T_STRING) {
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_raise(rb_eTypeError, err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return bt;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
2004-07-16 06:17:59 +04:00
|
|
|
* exc.set_backtrace(array) => array
|
2003-12-21 10:28:54 +03:00
|
|
|
*
|
|
|
|
* Sets the backtrace information associated with <i>exc</i>. The
|
|
|
|
* argument must be an array of <code>String</code> objects in the
|
|
|
|
* format described in <code>Exception#backtrace</code>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
exc_set_backtrace(VALUE exc, VALUE bt)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
|
|
|
return rb_iv_set(exc, "bt", check_backtrace(bt));
|
|
|
|
}
|
|
|
|
|
2004-08-28 18:14:11 +04:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* exc == obj => true or false
|
|
|
|
*
|
|
|
|
* Equality---If <i>obj</i> is not an <code>Exception</code>, returns
|
|
|
|
* <code>false</code>. Otherwise, returns <code>true</code> if <i>exc</i> and
|
|
|
|
* <i>obj</i> share same class, messages, and backtrace.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
exc_equal(VALUE exc, VALUE obj)
|
2004-08-28 18:14:11 +04:00
|
|
|
{
|
|
|
|
ID id_mesg = rb_intern("mesg");
|
|
|
|
|
|
|
|
if (exc == obj) return Qtrue;
|
|
|
|
if (rb_obj_class(exc) != rb_obj_class(obj))
|
|
|
|
return Qfalse;
|
|
|
|
if (!rb_equal(rb_attr_get(exc, id_mesg), rb_attr_get(obj, id_mesg)))
|
|
|
|
return Qfalse;
|
|
|
|
if (!rb_equal(exc_backtrace(exc), exc_backtrace(obj)))
|
|
|
|
return Qfalse;
|
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
|
2003-12-29 06:56:22 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* SystemExit.new(status=0) => system_exit
|
|
|
|
*
|
|
|
|
* Create a new +SystemExit+ exception with the given status.
|
|
|
|
*/
|
|
|
|
|
2002-11-27 01:32:11 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
exit_initialize(int argc, VALUE *argv, VALUE exc)
|
2002-11-27 01:32:11 +03:00
|
|
|
{
|
2004-07-16 06:17:59 +04:00
|
|
|
VALUE status = INT2FIX(EXIT_SUCCESS);
|
2002-11-27 01:32:11 +03:00
|
|
|
if (argc > 0 && FIXNUM_P(argv[0])) {
|
|
|
|
status = *argv++;
|
|
|
|
--argc;
|
|
|
|
}
|
2005-05-14 18:59:53 +04:00
|
|
|
rb_call_super(argc, argv);
|
2002-11-27 01:32:11 +03:00
|
|
|
rb_iv_set(exc, "status", status);
|
|
|
|
return exc;
|
|
|
|
}
|
|
|
|
|
2003-12-29 06:56:22 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* system_exit.status => fixnum
|
|
|
|
*
|
|
|
|
* Return the status value associated with this system exit.
|
|
|
|
*/
|
|
|
|
|
2001-02-19 10:03:06 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
exit_status(VALUE exc)
|
2001-02-19 10:03:06 +03:00
|
|
|
{
|
2003-05-20 05:51:32 +04:00
|
|
|
return rb_attr_get(exc, rb_intern("status"));
|
2001-02-19 10:03:06 +03:00
|
|
|
}
|
|
|
|
|
2004-07-16 06:17:59 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* system_exit.success? => true or false
|
|
|
|
*
|
|
|
|
* Returns +true+ if exiting successful, +false+ if not.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
exit_success_p(VALUE exc)
|
2004-07-16 06:17:59 +04:00
|
|
|
{
|
|
|
|
VALUE status = rb_attr_get(exc, rb_intern("status"));
|
|
|
|
if (NIL_P(status)) return Qtrue;
|
|
|
|
if (status == INT2FIX(EXIT_SUCCESS)) return Qtrue;
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2001-07-02 12:46:28 +04:00
|
|
|
void
|
|
|
|
rb_name_error(ID id, const char *fmt, ...)
|
|
|
|
{
|
2003-05-20 05:51:32 +04:00
|
|
|
VALUE exc, argv[2];
|
2001-07-02 12:46:28 +04:00
|
|
|
va_list args;
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
va_start(args, fmt);
|
2001-07-02 12:46:28 +04:00
|
|
|
vsnprintf(buf, BUFSIZ, fmt, args);
|
|
|
|
va_end(args);
|
2003-05-20 05:51:32 +04:00
|
|
|
|
|
|
|
argv[0] = rb_str_new2(buf);
|
|
|
|
argv[1] = ID2SYM(id);
|
|
|
|
exc = rb_class_new_instance(2, argv, rb_eNameError);
|
2001-07-02 12:46:28 +04:00
|
|
|
rb_exc_raise(exc);
|
|
|
|
}
|
|
|
|
|
2003-12-29 06:56:22 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* NameError.new(msg [, name]) => name_error
|
|
|
|
*
|
|
|
|
* Construct a new NameError exception. If given the <i>name</i>
|
|
|
|
* parameter may subsequently be examined using the <code>NameError.name</code>
|
|
|
|
* method.
|
|
|
|
*/
|
|
|
|
|
2003-05-20 05:51:32 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
name_err_initialize(int argc, VALUE *argv, VALUE self)
|
2003-05-20 05:51:32 +04:00
|
|
|
{
|
2003-11-16 02:45:26 +03:00
|
|
|
VALUE name;
|
2003-11-04 12:13:57 +03:00
|
|
|
|
2003-11-16 02:45:26 +03:00
|
|
|
name = (argc > 1) ? argv[--argc] : Qnil;
|
2005-05-14 18:59:53 +04:00
|
|
|
rb_call_super(argc, argv);
|
2003-05-20 05:51:32 +04:00
|
|
|
rb_iv_set(self, "name", name);
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2003-12-29 06:56:22 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* name_error.name => string or nil
|
|
|
|
*
|
|
|
|
* Return the name associated with this NameError exception.
|
|
|
|
*/
|
|
|
|
|
2001-07-02 12:46:28 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
name_err_name(VALUE self)
|
2001-07-02 12:46:28 +04:00
|
|
|
{
|
2003-05-20 05:51:32 +04:00
|
|
|
return rb_attr_get(self, rb_intern("name"));
|
|
|
|
}
|
|
|
|
|
2004-01-17 17:58:57 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* name_error.to_s => string
|
|
|
|
*
|
|
|
|
* Produce a nicely-formated string representing the +NameError+.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
name_err_to_s(VALUE exc)
|
2004-01-17 17:58:57 +03:00
|
|
|
{
|
2004-08-28 18:14:11 +04:00
|
|
|
VALUE mesg = rb_attr_get(exc, rb_intern("mesg"));
|
|
|
|
VALUE str = mesg;
|
2004-01-17 17:58:57 +03:00
|
|
|
|
2004-01-19 12:19:31 +03:00
|
|
|
if (NIL_P(mesg)) return rb_class_name(CLASS_OF(exc));
|
2004-01-17 17:58:57 +03:00
|
|
|
StringValue(str);
|
|
|
|
if (str != mesg) {
|
|
|
|
rb_iv_set(exc, "mesg", mesg = str);
|
|
|
|
}
|
|
|
|
if (OBJ_TAINTED(exc)) OBJ_TAINT(mesg);
|
|
|
|
return mesg;
|
|
|
|
}
|
|
|
|
|
2003-12-29 06:56:22 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* NoMethodError.new(msg, name [, args]) => no_method_error
|
|
|
|
*
|
2005-03-18 06:17:27 +03:00
|
|
|
* Construct a NoMethodError exception for a method of the given name
|
2003-12-29 06:56:22 +03:00
|
|
|
* called with the given arguments. The name may be accessed using
|
|
|
|
* the <code>#name</code> method on the resulting object, and the
|
|
|
|
* arguments using the <code>#args</code> method.
|
|
|
|
*/
|
|
|
|
|
2003-05-20 05:51:32 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
nometh_err_initialize(int argc, VALUE *argv, VALUE self)
|
2003-05-20 05:51:32 +04:00
|
|
|
{
|
|
|
|
VALUE args = (argc > 2) ? argv[--argc] : Qnil;
|
|
|
|
name_err_initialize(argc, argv, self);
|
|
|
|
rb_iv_set(self, "args", args);
|
|
|
|
return self;
|
2001-07-02 12:46:28 +04:00
|
|
|
}
|
|
|
|
|
2004-01-18 17:16:47 +03:00
|
|
|
/* :nodoc: */
|
2004-01-17 17:58:57 +03:00
|
|
|
static void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
name_err_mesg_mark(VALUE *ptr)
|
2004-01-17 17:58:57 +03:00
|
|
|
{
|
|
|
|
rb_gc_mark_locations(ptr, ptr+3);
|
|
|
|
}
|
|
|
|
|
2004-01-18 17:16:47 +03:00
|
|
|
/* :nodoc: */
|
2004-01-17 17:58:57 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
name_err_mesg_new(VALUE obj, VALUE mesg, VALUE recv, VALUE method)
|
2004-01-17 17:58:57 +03:00
|
|
|
{
|
|
|
|
VALUE *ptr = ALLOC_N(VALUE, 3);
|
|
|
|
|
|
|
|
ptr[0] = mesg;
|
|
|
|
ptr[1] = recv;
|
|
|
|
ptr[2] = method;
|
|
|
|
return Data_Wrap_Struct(rb_cNameErrorMesg, name_err_mesg_mark, -1, ptr);
|
|
|
|
}
|
|
|
|
|
2004-08-28 18:14:11 +04:00
|
|
|
/* :nodoc: */
|
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
name_err_mesg_equal(VALUE obj1, VALUE obj2)
|
2004-08-28 18:14:11 +04:00
|
|
|
{
|
|
|
|
VALUE *ptr1, *ptr2;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (obj1 == obj2) return Qtrue;
|
|
|
|
if (rb_obj_class(obj2) != rb_cNameErrorMesg)
|
|
|
|
return Qfalse;
|
|
|
|
|
|
|
|
Data_Get_Struct(obj1, VALUE, ptr1);
|
|
|
|
Data_Get_Struct(obj2, VALUE, ptr2);
|
|
|
|
for (i=0; i<3; i++) {
|
|
|
|
if (!rb_equal(ptr1[i], ptr2[i]))
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
return Qtrue;
|
|
|
|
}
|
|
|
|
|
2004-01-18 17:16:47 +03:00
|
|
|
/* :nodoc: */
|
2004-01-17 17:58:57 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
name_err_mesg_to_str(VALUE obj)
|
2004-01-17 17:58:57 +03:00
|
|
|
{
|
|
|
|
VALUE *ptr, mesg;
|
|
|
|
Data_Get_Struct(obj, VALUE, ptr);
|
|
|
|
|
|
|
|
mesg = ptr[0];
|
|
|
|
if (NIL_P(mesg)) return Qnil;
|
|
|
|
else {
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
const char *desc = 0;
|
2004-01-17 17:58:57 +03:00
|
|
|
VALUE d = 0, args[3];
|
|
|
|
|
|
|
|
obj = ptr[1];
|
|
|
|
switch (TYPE(obj)) {
|
|
|
|
case T_NIL:
|
|
|
|
desc = "nil";
|
|
|
|
break;
|
|
|
|
case T_TRUE:
|
|
|
|
desc = "true";
|
|
|
|
break;
|
|
|
|
case T_FALSE:
|
|
|
|
desc = "false";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
d = rb_protect(rb_inspect, obj, 0);
|
2006-08-31 14:47:44 +04:00
|
|
|
if (NIL_P(d) || RSTRING_LEN(d) > 65) {
|
2004-01-17 17:58:57 +03:00
|
|
|
d = rb_any_to_s(obj);
|
|
|
|
}
|
2006-08-31 14:47:44 +04:00
|
|
|
desc = RSTRING_PTR(d);
|
2004-01-17 17:58:57 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (desc && desc[0] != '#') {
|
|
|
|
d = rb_str_new2(desc);
|
|
|
|
rb_str_cat2(d, ":");
|
|
|
|
rb_str_cat2(d, rb_obj_classname(obj));
|
|
|
|
}
|
|
|
|
args[0] = mesg;
|
|
|
|
args[1] = ptr[2];
|
|
|
|
args[2] = d;
|
|
|
|
mesg = rb_f_sprintf(3, args);
|
|
|
|
}
|
|
|
|
if (OBJ_TAINTED(obj)) OBJ_TAINT(mesg);
|
|
|
|
return mesg;
|
|
|
|
}
|
|
|
|
|
2004-01-18 17:16:47 +03:00
|
|
|
/* :nodoc: */
|
2004-01-17 17:58:57 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
name_err_mesg_load(VALUE klass, VALUE str)
|
2004-01-17 17:58:57 +03:00
|
|
|
{
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2003-12-29 06:56:22 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* no_method_error.args => obj
|
|
|
|
*
|
|
|
|
* Return the arguments passed in as the third parameter to
|
|
|
|
* the constructor.
|
|
|
|
*/
|
|
|
|
|
2001-07-02 12:46:28 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
nometh_err_args(VALUE self)
|
2001-07-02 12:46:28 +04:00
|
|
|
{
|
2003-05-20 05:51:32 +04:00
|
|
|
return rb_attr_get(self, rb_intern("args"));
|
2001-07-02 12:46:28 +04:00
|
|
|
}
|
|
|
|
|
2002-01-04 17:15:33 +03:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_invalid_str(const char *str, const char *type)
|
2002-01-04 17:15:33 +03:00
|
|
|
{
|
|
|
|
VALUE s = rb_str_inspect(rb_str_new2(str));
|
|
|
|
|
2006-08-31 14:47:44 +04:00
|
|
|
rb_raise(rb_eArgError, "invalid value for %s: %s", type, RSTRING_PTR(s));
|
2002-01-04 17:15:33 +03:00
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* Document-module: Errno
|
|
|
|
*
|
|
|
|
* Ruby exception objects are subclasses of <code>Exception</code>.
|
|
|
|
* However, operating systems typically report errors using plain
|
|
|
|
* integers. Module <code>Errno</code> is created dynamically to map
|
|
|
|
* these operating system errors to Ruby classes, with each error
|
|
|
|
* number generating its own subclass of <code>SystemCallError</code>.
|
|
|
|
* As the subclass is created in module <code>Errno</code>, its name
|
|
|
|
* will start <code>Errno::</code>.
|
|
|
|
*
|
|
|
|
* The names of the <code>Errno::</code> classes depend on
|
|
|
|
* the environment in which Ruby runs. On a typical Unix or Windows
|
|
|
|
* platform, there are <code>Errno</code> classes such as
|
|
|
|
* <code>Errno::EACCES</code>, <code>Errno::EAGAIN</code>,
|
|
|
|
* <code>Errno::EINTR</code>, and so on.
|
|
|
|
*
|
|
|
|
* The integer operating system error number corresponding to a
|
|
|
|
* particular error is available as the class constant
|
|
|
|
* <code>Errno::</code><em>error</em><code>::Errno</code>.
|
|
|
|
*
|
|
|
|
* Errno::EACCES::Errno #=> 13
|
|
|
|
* Errno::EAGAIN::Errno #=> 11
|
|
|
|
* Errno::EINTR::Errno #=> 4
|
|
|
|
*
|
|
|
|
* The full list of operating system errors on your particular platform
|
|
|
|
* are available as the constants of <code>Errno</code>.
|
|
|
|
*
|
|
|
|
* Errno.constants #=> E2BIG, EACCES, EADDRINUSE, EADDRNOTAVAIL, ...
|
|
|
|
*/
|
|
|
|
|
2002-11-22 12:14:24 +03:00
|
|
|
static st_table *syserr_tbl;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
2002-11-03 14:04:35 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
set_syserr(int n, const char *name)
|
2002-11-03 14:04:35 +03:00
|
|
|
{
|
|
|
|
VALUE error;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-11-03 14:04:35 +03:00
|
|
|
if (!st_lookup(syserr_tbl, n, &error)) {
|
2003-01-23 06:39:25 +03:00
|
|
|
error = rb_define_class_under(rb_mErrno, name, rb_eSystemCallError);
|
2002-11-03 14:04:35 +03:00
|
|
|
rb_define_const(error, "Errno", INT2NUM(n));
|
|
|
|
st_add_direct(syserr_tbl, n, error);
|
|
|
|
}
|
2003-01-23 06:39:25 +03:00
|
|
|
else {
|
|
|
|
rb_define_const(rb_mErrno, name, error);
|
|
|
|
}
|
2002-11-03 14:04:35 +03:00
|
|
|
return error;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
get_syserr(int n)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2002-11-03 14:04:35 +03:00
|
|
|
VALUE error;
|
|
|
|
|
|
|
|
if (!st_lookup(syserr_tbl, n, &error)) {
|
2003-01-26 20:09:16 +03:00
|
|
|
char name[8]; /* some Windows' errno have 5 digits. */
|
|
|
|
|
2003-01-26 21:31:03 +03:00
|
|
|
snprintf(name, sizeof(name), "E%03d", n);
|
2002-11-03 14:04:35 +03:00
|
|
|
error = set_syserr(n, name);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
return error;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-12-29 06:56:22 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* SystemCallError.new(msg, errno) => system_call_error_subclass
|
|
|
|
*
|
|
|
|
* If _errno_ corresponds to a known system error code, constructs
|
|
|
|
* the appropriate <code>Errno</code> class for that error, otherwise
|
|
|
|
* constructs a generic <code>SystemCallError</code> object. The
|
|
|
|
* error number is subsequently available via the <code>errno</code>
|
|
|
|
* method.
|
|
|
|
*/
|
|
|
|
|
2003-05-20 05:51:32 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
syserr_initialize(int argc, VALUE *argv, VALUE self)
|
2003-05-20 05:51:32 +04:00
|
|
|
{
|
|
|
|
#if !defined(_WIN32) && !defined(__VMS)
|
|
|
|
char *strerror();
|
|
|
|
#endif
|
* sprintf.c (rb_str_format): allow %c to print one character
string (e.g. ?x).
* lib/tempfile.rb (Tempfile::make_tmpname): put dot between
basename and pid. [ruby-talk:196272]
* parse.y (do_block): remove -> style block.
* parse.y (parser_yylex): remove tLAMBDA_ARG.
* eval.c (rb_call0): binding for the return event hook should have
consistent scope. [ruby-core:07928]
* eval.c (proc_invoke): return behavior should depend whether it
is surrounded by a lambda or a mere block.
* eval.c (formal_assign): handles post splat arguments.
* eval.c (rb_call0): ditto.
* st.c (strhash): use FNV-1a hash.
* parse.y (parser_yylex): removed experimental ';;' terminator.
* eval.c (rb_node_arity): should be aware of post splat arguments.
* eval.c (rb_proc_arity): ditto.
* parse.y (f_args): syntax rule enhanced to support arguments
after the splat.
* parse.y (block_param): ditto for block parameters.
* parse.y (f_post_arg): mandatory formal arguments after the splat
argument.
* parse.y (new_args_gen): generate nodes for mandatory formal
arguments after the splat argument.
* eval.c (rb_eval): dispatch mandatory formal arguments after the
splat argument.
* parse.y (args): allow more than one splat in the argument list.
* parse.y (method_call): allow aref [] to accept all kind of
method argument, including assocs, splat, and block argument.
* eval.c (SETUP_ARGS0): prepare block argument as well.
* lib/mathn.rb (Integer): remove Integer#gcd2. [ruby-core:07931]
* eval.c (error_line): print receivers true/false/nil specially.
* eval.c (rb_proc_yield): handles parameters in yield semantics.
* eval.c (nil_yield): gives LocalJumpError to denote no block
error.
* io.c (rb_io_getc): now takes one-character string.
* string.c (rb_str_hash): use FNV-1a hash from Fowler/Noll/Vo
hashing algorithm.
* string.c (rb_str_aref): str[0] now returns 1 character string,
instead of a fixnum. [Ruby2]
* parse.y (parser_yylex): ?c now returns 1 character string,
instead of a fixnum. [Ruby2]
* string.c (rb_str_aset): no longer support fixnum insertion.
* eval.c (umethod_bind): should not update original class.
[ruby-dev:28636]
* eval.c (ev_const_get): should support constant access from
within instance_eval(). [ruby-dev:28327]
* time.c (time_timeval): should round for usec floating
number. [ruby-core:07896]
* time.c (time_add): ditto.
* dir.c (sys_warning): should not call a vararg function
rb_sys_warning() indirectly. [ruby-core:07886]
* numeric.c (flo_divmod): the first element of Float#divmod should
be an integer. [ruby-dev:28589]
* test/ruby/test_float.rb: add tests for divmod, div, modulo and remainder.
* re.c (rb_reg_initialize): should not allow modifying literal
regexps. frozen check moved from rb_reg_initialize_m as well.
* re.c (rb_reg_initialize): should not modify untainted objects in
safe levels higher than 3.
* re.c (rb_memcmp): type change from char* to const void*.
* dir.c (dir_close): should not close untainted dir stream.
* dir.c (GetDIR): add tainted/frozen check for each dir operation.
* lib/rdoc/parsers/parse_rb.rb (RDoc::RubyParser::parse_symbol_arg):
typo fixed. a patch from Florian Gross <florg at florg.net>.
* eval.c (EXEC_EVENT_HOOK): trace_func may remove itself from
event_hooks. no guarantee for arbitrary hook deletion.
[ruby-dev:28632]
* util.c (ruby_strtod): differ addition to minimize error.
[ruby-dev:28619]
* util.c (ruby_strtod): should not raise ERANGE when the input
string does not have any digits. [ruby-dev:28629]
* eval.c (proc_invoke): should restore old ruby_frame->block.
thanks to ts <decoux at moulon.inra.fr>. [ruby-core:07833]
also fix [ruby-dev:28614] as well.
* signal.c (trap): sig should be less then NSIG. Coverity found
this bug. a patch from Kevin Tew <tewk at tewk.com>.
[ruby-core:07823]
* math.c (math_log2): add new method inspired by
[ruby-talk:191237].
* math.c (math_log): add optional base argument to Math::log().
[ruby-talk:191308]
* ext/syck/emitter.c (syck_scan_scalar): avoid accessing
uninitialized array element. a patch from Pat Eyler
<rubypate at gmail.com>. [ruby-core:07809]
* array.c (rb_ary_fill): initialize local variables first. a
patch from Pat Eyler <rubypate at gmail.com>. [ruby-core:07810]
* ext/syck/yaml2byte.c (syck_yaml2byte_handler): need to free
type_tag. a patch from Pat Eyler <rubypate at gmail.com>.
[ruby-core:07808]
* ext/socket/socket.c (make_hostent_internal): accept ai_family
check from Sam Roberts <sroberts at uniserve.com>.
[ruby-core:07691]
* util.c (ruby_strtod): should not cut off 18 digits for no
reason. [ruby-core:07796]
* array.c (rb_ary_fill): internalize local variable "beg" to
pacify Coverity. [ruby-core:07770]
* pack.c (pack_unpack): now supports CRLF newlines. a patch from
<tommy at tmtm.org>. [ruby-dev:28601]
* applied code clean-up patch from Stefan Huehner
<stefan at huehner.org>. [ruby-core:07764]
* lib/jcode.rb (String::tr_s): should have translated non
squeezing character sequence (i.e. a character) as well. thanks
to Hiroshi Ichikawa <gimite at gimite.ddo.jp> [ruby-list:42090]
* ext/socket/socket.c: document update patch from Sam Roberts
<sroberts at uniserve.com>. [ruby-core:07701]
* lib/mathn.rb (Integer): need not to remove gcd2. a patch from
NARUSE, Yui <naruse at airemix.com>. [ruby-dev:28570]
* parse.y (arg): too much NEW_LIST()
* eval.c (SETUP_ARGS0): remove unnecessary access to nd_alen.
* eval.c (rb_eval): use ARGSCAT for NODE_OP_ASGN1.
[ruby-dev:28585]
* parse.y (arg): use NODE_ARGSCAT for placeholder.
* lib/getoptlong.rb (GetoptLong::get): RDoc update patch from
mathew <meta at pobox.com>. [ruby-core:07738]
* variable.c (rb_const_set): raise error when no target klass is
supplied. [ruby-dev:28582]
* prec.c (prec_prec_f): documentation patch from
<gerardo.santana at gmail.com>. [ruby-core:07689]
* bignum.c (rb_big_pow): second operand may be too big even if
it's a Fixnum. [ruby-talk:187984]
* README.EXT: update symbol description. [ruby-talk:188104]
* COPYING: explicitly note GPLv2. [ruby-talk:187922]
* parse.y: remove some obsolete syntax rules (unparenthesized
method calls in argument list).
* eval.c (rb_call0): insecure calling should be checked for non
NODE_SCOPE method invocations too.
* eval.c (rb_alias): should preserve the current safe level as
well as method definition.
* process.c (rb_f_sleep): remove RDoc description about SIGALRM
which is not valid on the current implementation. [ruby-dev:28464]
Thu Mar 23 21:40:47 2006 K.Kosako <sndgk393 AT ybb.ne.jp>
* eval.c (method_missing): should support argument splat in
super. a bug in combination of super, splat and
method_missing. [ruby-talk:185438]
* configure.in: Solaris SunPro compiler -rapth patch from
<kuwa at labs.fujitsu.com>. [ruby-dev:28443]
* configure.in: remove enable_rpath=no for Solaris.
[ruby-dev:28440]
* ext/win32ole/win32ole.c (ole_val2olevariantdata): change behavior
of converting OLE Variant object with VT_ARRAY|VT_UI1 and Ruby
String object.
* ruby.1: a clarification patch from David Lutterkort
<dlutter at redhat.com>. [ruby-core:7508]
* lib/rdoc/ri/ri_paths.rb (RI::Paths): adding paths from rubygems
directories. a patch from Eric Hodel <drbrain at segment7.net>.
[ruby-core:07423]
* eval.c (rb_clear_cache_by_class): clearing wrong cache.
* ext/extmk.rb: use :remove_destination to install extension libraries
to avoid SEGV. [ruby-dev:28417]
* eval.c (rb_thread_fd_writable): should not re-schedule output
from KILLED thread (must be error printing).
* array.c (rb_ary_flatten_bang): allow specifying recursion
level. [ruby-talk:182170]
* array.c (rb_ary_flatten): ditto.
* gc.c (add_heap): a heap_slots may overflow. a patch from Stefan
Weil <weil at mail.berlios.de>.
* eval.c (rb_call): use separate cache for fcall/vcall
invocation.
* eval.c (rb_eval): NODE_FCALL, NODE_VCALL can call local
functions.
* eval.c (rb_mod_local): a new method to specify newly added
visibility "local".
* eval.c (search_method): search for local methods which are
visible only from the current class.
* class.c (rb_class_local_methods): a method to list local methods.
* object.c (Init_Object): add BasicObject class as a top level
BlankSlate class.
* ruby.h (SYM2ID): should not cast to signed long.
[ruby-core:07414]
* class.c (rb_include_module): allow module duplication.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10235 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2006-06-10 01:20:17 +04:00
|
|
|
const char *err;
|
2003-05-21 12:48:05 +04:00
|
|
|
VALUE mesg, error;
|
2003-05-20 12:18:16 +04:00
|
|
|
VALUE klass = rb_obj_class(self);
|
2003-05-20 05:51:32 +04:00
|
|
|
|
2003-05-21 12:48:05 +04:00
|
|
|
if (klass == rb_eSystemCallError) {
|
|
|
|
rb_scan_args(argc, argv, "11", &mesg, &error);
|
|
|
|
if (argc == 1 && FIXNUM_P(mesg)) {
|
|
|
|
error = mesg; mesg = Qnil;
|
|
|
|
}
|
|
|
|
if (!NIL_P(error) && st_lookup(syserr_tbl, NUM2LONG(error), &klass)) {
|
|
|
|
/* change class */
|
|
|
|
if (TYPE(self) != T_OBJECT) { /* insurance to avoid type crash */
|
|
|
|
rb_raise(rb_eTypeError, "invalid instance type");
|
|
|
|
}
|
|
|
|
RBASIC(self)->klass = klass;
|
|
|
|
}
|
2003-05-20 05:51:32 +04:00
|
|
|
}
|
2003-05-21 12:48:05 +04:00
|
|
|
else {
|
|
|
|
rb_scan_args(argc, argv, "01", &mesg);
|
2004-07-16 06:17:59 +04:00
|
|
|
error = rb_const_get(klass, rb_intern("Errno"));
|
2003-05-20 12:18:16 +04:00
|
|
|
}
|
2003-05-21 12:48:05 +04:00
|
|
|
if (!NIL_P(error)) err = strerror(NUM2LONG(error));
|
|
|
|
else err = "unknown error";
|
|
|
|
if (!NIL_P(mesg)) {
|
2004-07-16 06:17:59 +04:00
|
|
|
VALUE str = mesg;
|
2005-07-20 05:08:13 +04:00
|
|
|
|
2004-07-16 06:17:59 +04:00
|
|
|
StringValue(str);
|
2005-07-23 05:02:18 +04:00
|
|
|
mesg = rb_sprintf("%s - %.*s", err,
|
2006-08-31 14:47:44 +04:00
|
|
|
(int)RSTRING_LEN(str), RSTRING_PTR(str));
|
2003-05-20 05:51:32 +04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
mesg = rb_str_new2(err);
|
|
|
|
}
|
2005-05-14 18:59:53 +04:00
|
|
|
rb_call_super(1, &mesg);
|
2003-05-20 05:51:32 +04:00
|
|
|
rb_iv_set(self, "errno", error);
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2003-12-29 06:56:22 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* system_call_error.errno => fixnum
|
|
|
|
*
|
|
|
|
* Return this SystemCallError's error number.
|
|
|
|
*/
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
syserr_errno(VALUE self)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
2003-05-20 05:51:32 +04:00
|
|
|
return rb_attr_get(self, rb_intern("errno"));
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
|
2003-12-29 06:56:22 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* system_call_error === other => true or false
|
|
|
|
*
|
|
|
|
* Return +true+ if the receiver is a generic +SystemCallError+, or
|
|
|
|
* if the error numbers _self_ and _other_ are the same.
|
|
|
|
*/
|
|
|
|
|
2001-05-02 08:22:21 +04:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
syserr_eqq(VALUE self, VALUE exc)
|
2001-05-02 08:22:21 +04:00
|
|
|
{
|
2003-08-15 07:01:52 +04:00
|
|
|
VALUE num, e;
|
2001-05-02 08:22:21 +04:00
|
|
|
|
|
|
|
if (!rb_obj_is_kind_of(exc, rb_eSystemCallError)) return Qfalse;
|
|
|
|
if (self == rb_eSystemCallError) return Qtrue;
|
|
|
|
|
2003-05-20 05:51:32 +04:00
|
|
|
num = rb_attr_get(exc, rb_intern("errno"));
|
2001-05-02 08:22:21 +04:00
|
|
|
if (NIL_P(num)) {
|
|
|
|
VALUE klass = CLASS_OF(exc);
|
|
|
|
|
|
|
|
while (TYPE(klass) == T_ICLASS || FL_TEST(klass, FL_SINGLETON)) {
|
|
|
|
klass = (VALUE)RCLASS(klass)->super;
|
|
|
|
}
|
|
|
|
num = rb_const_get(klass, rb_intern("Errno"));
|
|
|
|
}
|
2003-08-15 07:01:52 +04:00
|
|
|
e = rb_const_get(self, rb_intern("Errno"));
|
|
|
|
if (FIXNUM_P(num) ? num == e : rb_equal(num, e))
|
2001-05-02 08:22:21 +04:00
|
|
|
return Qtrue;
|
|
|
|
return Qfalse;
|
|
|
|
}
|
|
|
|
|
2005-03-15 17:53:17 +03:00
|
|
|
/*
|
|
|
|
* call-seq:
|
|
|
|
* Errno.const_missing => SystemCallError
|
|
|
|
*
|
|
|
|
* Returns default SystemCallError class.
|
|
|
|
*/
|
2005-03-08 04:46:33 +03:00
|
|
|
static VALUE
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
errno_missing(VALUE self, VALUE id)
|
2005-03-08 04:46:33 +03:00
|
|
|
{
|
|
|
|
return eNOERROR;
|
|
|
|
}
|
|
|
|
|
2003-12-21 10:28:54 +03:00
|
|
|
/*
|
|
|
|
* Descendents of class <code>Exception</code> are used to communicate
|
|
|
|
* between <code>raise</code> methods and <code>rescue</code>
|
|
|
|
* statements in <code>begin/end</code> blocks. <code>Exception</code>
|
|
|
|
* objects carry information about the exception---its type (the
|
|
|
|
* exception's class name), an optional descriptive string, and
|
|
|
|
* optional traceback information. Programs may subclass
|
|
|
|
* <code>Exception</code> to add additional information.
|
|
|
|
*/
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
Init_Exception(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_eException = rb_define_class("Exception", rb_cObject);
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_define_singleton_method(rb_eException, "exception", rb_class_new_instance, -1);
|
|
|
|
rb_define_method(rb_eException, "exception", exc_exception, -1);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_method(rb_eException, "initialize", exc_initialize, -1);
|
2004-08-28 18:14:11 +04:00
|
|
|
rb_define_method(rb_eException, "==", exc_equal, 1);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_method(rb_eException, "to_s", exc_to_s, 0);
|
2004-04-05 19:55:09 +04:00
|
|
|
rb_define_method(rb_eException, "message", exc_message, 0);
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_define_method(rb_eException, "inspect", exc_inspect, 0);
|
|
|
|
rb_define_method(rb_eException, "backtrace", exc_backtrace, 0);
|
|
|
|
rb_define_method(rb_eException, "set_backtrace", exc_set_backtrace, 1);
|
|
|
|
|
|
|
|
rb_eSystemExit = rb_define_class("SystemExit", rb_eException);
|
2002-11-27 01:32:11 +03:00
|
|
|
rb_define_method(rb_eSystemExit, "initialize", exit_initialize, -1);
|
2001-02-19 10:03:06 +03:00
|
|
|
rb_define_method(rb_eSystemExit, "status", exit_status, 0);
|
2004-07-16 06:17:59 +04:00
|
|
|
rb_define_method(rb_eSystemExit, "success?", exit_success_p, 0);
|
2001-02-19 10:03:06 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_eFatal = rb_define_class("fatal", rb_eException);
|
|
|
|
rb_eSignal = rb_define_class("SignalException", rb_eException);
|
2001-02-08 12:19:27 +03:00
|
|
|
rb_eInterrupt = rb_define_class("Interrupt", rb_eSignal);
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
rb_eStandardError = rb_define_class("StandardError", rb_eException);
|
2001-05-02 08:22:21 +04:00
|
|
|
rb_eTypeError = rb_define_class("TypeError", rb_eStandardError);
|
|
|
|
rb_eArgError = rb_define_class("ArgumentError", rb_eStandardError);
|
|
|
|
rb_eIndexError = rb_define_class("IndexError", rb_eStandardError);
|
2004-09-22 08:48:52 +04:00
|
|
|
rb_eKeyError = rb_define_class("KeyError", rb_eIndexError);
|
2001-05-02 08:22:21 +04:00
|
|
|
rb_eRangeError = rb_define_class("RangeError", rb_eStandardError);
|
2006-02-13 07:53:22 +03:00
|
|
|
|
|
|
|
rb_eScriptError = rb_define_class("ScriptError", rb_eException);
|
|
|
|
rb_eSyntaxError = rb_define_class("SyntaxError", rb_eScriptError);
|
|
|
|
rb_eLoadError = rb_define_class("LoadError", rb_eScriptError);
|
|
|
|
rb_eNotImpError = rb_define_class("NotImplementedError", rb_eScriptError);
|
|
|
|
|
|
|
|
rb_eNameError = rb_define_class("NameError", rb_eScriptError);
|
2003-05-20 05:51:32 +04:00
|
|
|
rb_define_method(rb_eNameError, "initialize", name_err_initialize, -1);
|
2002-03-19 12:03:11 +03:00
|
|
|
rb_define_method(rb_eNameError, "name", name_err_name, 0);
|
2004-01-17 17:58:57 +03:00
|
|
|
rb_define_method(rb_eNameError, "to_s", name_err_to_s, 0);
|
2004-01-19 11:39:43 +03:00
|
|
|
rb_cNameErrorMesg = rb_define_class_under(rb_eNameError, "message", rb_cData);
|
|
|
|
rb_define_singleton_method(rb_cNameErrorMesg, "!", name_err_mesg_new, 3);
|
2004-08-28 18:14:11 +04:00
|
|
|
rb_define_method(rb_cNameErrorMesg, "==", name_err_mesg_equal, 1);
|
2004-01-17 17:58:57 +03:00
|
|
|
rb_define_method(rb_cNameErrorMesg, "to_str", name_err_mesg_to_str, 0);
|
|
|
|
rb_define_method(rb_cNameErrorMesg, "_dump", name_err_mesg_to_str, 1);
|
|
|
|
rb_define_singleton_method(rb_cNameErrorMesg, "_load", name_err_mesg_load, 1);
|
2001-06-05 11:50:59 +04:00
|
|
|
rb_eNoMethodError = rb_define_class("NoMethodError", rb_eNameError);
|
2003-05-20 05:51:32 +04:00
|
|
|
rb_define_method(rb_eNoMethodError, "initialize", nometh_err_initialize, -1);
|
2002-03-19 12:03:11 +03:00
|
|
|
rb_define_method(rb_eNoMethodError, "args", nometh_err_args, 0);
|
2000-02-01 06:12:21 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_eRuntimeError = rb_define_class("RuntimeError", rb_eStandardError);
|
|
|
|
rb_eSecurityError = rb_define_class("SecurityError", rb_eStandardError);
|
1999-12-14 09:50:43 +03:00
|
|
|
rb_eNoMemError = rb_define_class("NoMemoryError", rb_eException);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-08-15 07:01:52 +04:00
|
|
|
syserr_tbl = st_init_numtable();
|
|
|
|
rb_eSystemCallError = rb_define_class("SystemCallError", rb_eStandardError);
|
|
|
|
rb_define_method(rb_eSystemCallError, "initialize", syserr_initialize, -1);
|
|
|
|
rb_define_method(rb_eSystemCallError, "errno", syserr_errno, 0);
|
|
|
|
rb_define_singleton_method(rb_eSystemCallError, "===", syserr_eqq, 1);
|
|
|
|
|
|
|
|
rb_mErrno = rb_define_module("Errno");
|
2005-03-08 04:46:33 +03:00
|
|
|
rb_define_singleton_method(rb_mErrno, "const_missing", errno_missing, 1);
|
2003-06-02 08:49:46 +04:00
|
|
|
|
|
|
|
rb_define_global_function("warn", rb_warn_m, 1);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_raise(VALUE exc, const char *fmt, ...)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-01-20 07:59:39 +03:00
|
|
|
va_list args;
|
|
|
|
char buf[BUFSIZ];
|
1998-01-16 15:13:05 +03:00
|
|
|
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
va_start(args,fmt);
|
1999-01-20 07:59:39 +03:00
|
|
|
vsnprintf(buf, BUFSIZ, fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
rb_exc_raise(rb_exc_new2(exc, buf));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_loaderror(const char *fmt, ...)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
1999-01-20 07:59:39 +03:00
|
|
|
va_list args;
|
|
|
|
char buf[BUFSIZ];
|
1998-01-16 15:13:05 +03:00
|
|
|
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
va_start(args, fmt);
|
1999-01-20 07:59:39 +03:00
|
|
|
vsnprintf(buf, BUFSIZ, fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
rb_exc_raise(rb_exc_new2(rb_eLoadError, buf));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_notimplement(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2007-04-04 19:42:16 +04:00
|
|
|
rb_raise(rb_eNotImpError,
|
|
|
|
"%s() function is unimplemented on this machine",
|
2007-04-04 07:29:31 +04:00
|
|
|
rb_id2name(rb_frame_this_func()));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-08-13 09:45:20 +04:00
|
|
|
rb_fatal(const char *fmt, ...)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
va_start(args, fmt);
|
1999-01-20 07:59:39 +03:00
|
|
|
vsnprintf(buf, BUFSIZ, fmt, args);
|
1998-01-16 15:13:05 +03:00
|
|
|
va_end(args);
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_exc_fatal(rb_exc_new2(rb_eFatal, buf));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_sys_fail(const char *mesg)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
int n = errno;
|
2003-05-21 22:04:11 +04:00
|
|
|
VALUE arg;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-05-20 05:51:32 +04:00
|
|
|
errno = 0;
|
|
|
|
if (n == 0) {
|
2003-08-27 17:33:27 +04:00
|
|
|
rb_bug("rb_sys_fail(%s) - errno == 0", mesg ? mesg : "");
|
2001-12-10 10:18:16 +03:00
|
|
|
}
|
|
|
|
|
2003-05-21 22:04:11 +04:00
|
|
|
arg = mesg ? rb_str_new2(mesg) : Qnil;
|
|
|
|
rb_exc_raise(rb_class_new_instance(1, &arg, get_syserr(n)));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2001-02-19 12:15:27 +03:00
|
|
|
void
|
|
|
|
rb_sys_warning(const char *fmt, ...)
|
|
|
|
{
|
2007-05-02 01:45:48 +04:00
|
|
|
char buf[BUFSIZ];
|
|
|
|
va_list args;
|
|
|
|
int errno_save;
|
|
|
|
|
|
|
|
errno_save = errno;
|
|
|
|
|
|
|
|
if (!RTEST(ruby_verbose)) return;
|
|
|
|
|
|
|
|
snprintf(buf, BUFSIZ, "warning: %s", fmt);
|
|
|
|
snprintf(buf+strlen(buf), BUFSIZ-strlen(buf), ": %s", strerror(errno_save));
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
warn_print(buf, args);
|
|
|
|
va_end(args);
|
|
|
|
errno = errno_save;
|
2001-02-19 12:15:27 +03:00
|
|
|
}
|
|
|
|
|
2001-01-09 10:26:21 +03:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_load_fail(const char *path)
|
2001-01-09 10:26:21 +03:00
|
|
|
{
|
|
|
|
rb_loaderror("%s -- %s", strerror(errno), path);
|
|
|
|
}
|
|
|
|
|
2000-02-01 06:12:21 +03:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_error_frozen(const char *what)
|
2000-02-01 06:12:21 +03:00
|
|
|
{
|
2004-11-17 05:27:38 +03:00
|
|
|
rb_raise(rb_eRuntimeError, "can't modify frozen %s", what);
|
2000-02-01 06:12:21 +03:00
|
|
|
}
|
|
|
|
|
2002-09-03 09:20:14 +04:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
rb_check_frozen(VALUE obj)
|
2002-09-03 09:20:14 +04:00
|
|
|
{
|
2003-01-31 07:00:17 +03:00
|
|
|
if (OBJ_FROZEN(obj)) rb_error_frozen(rb_obj_classname(obj));
|
2002-09-03 09:20:14 +04:00
|
|
|
}
|
|
|
|
|
2003-08-15 07:01:52 +04:00
|
|
|
void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
Init_syserr(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
#ifdef EPERM
|
|
|
|
set_syserr(EPERM, "EPERM");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOENT
|
|
|
|
set_syserr(ENOENT, "ENOENT");
|
|
|
|
#endif
|
|
|
|
#ifdef ESRCH
|
|
|
|
set_syserr(ESRCH, "ESRCH");
|
|
|
|
#endif
|
|
|
|
#ifdef EINTR
|
|
|
|
set_syserr(EINTR, "EINTR");
|
|
|
|
#endif
|
|
|
|
#ifdef EIO
|
|
|
|
set_syserr(EIO, "EIO");
|
|
|
|
#endif
|
|
|
|
#ifdef ENXIO
|
|
|
|
set_syserr(ENXIO, "ENXIO");
|
|
|
|
#endif
|
|
|
|
#ifdef E2BIG
|
|
|
|
set_syserr(E2BIG, "E2BIG");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOEXEC
|
|
|
|
set_syserr(ENOEXEC, "ENOEXEC");
|
|
|
|
#endif
|
|
|
|
#ifdef EBADF
|
|
|
|
set_syserr(EBADF, "EBADF");
|
|
|
|
#endif
|
|
|
|
#ifdef ECHILD
|
|
|
|
set_syserr(ECHILD, "ECHILD");
|
|
|
|
#endif
|
|
|
|
#ifdef EAGAIN
|
|
|
|
set_syserr(EAGAIN, "EAGAIN");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOMEM
|
|
|
|
set_syserr(ENOMEM, "ENOMEM");
|
|
|
|
#endif
|
|
|
|
#ifdef EACCES
|
|
|
|
set_syserr(EACCES, "EACCES");
|
|
|
|
#endif
|
|
|
|
#ifdef EFAULT
|
|
|
|
set_syserr(EFAULT, "EFAULT");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOTBLK
|
|
|
|
set_syserr(ENOTBLK, "ENOTBLK");
|
|
|
|
#endif
|
|
|
|
#ifdef EBUSY
|
|
|
|
set_syserr(EBUSY, "EBUSY");
|
|
|
|
#endif
|
|
|
|
#ifdef EEXIST
|
|
|
|
set_syserr(EEXIST, "EEXIST");
|
|
|
|
#endif
|
|
|
|
#ifdef EXDEV
|
|
|
|
set_syserr(EXDEV, "EXDEV");
|
|
|
|
#endif
|
|
|
|
#ifdef ENODEV
|
|
|
|
set_syserr(ENODEV, "ENODEV");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOTDIR
|
|
|
|
set_syserr(ENOTDIR, "ENOTDIR");
|
|
|
|
#endif
|
|
|
|
#ifdef EISDIR
|
|
|
|
set_syserr(EISDIR, "EISDIR");
|
|
|
|
#endif
|
|
|
|
#ifdef EINVAL
|
|
|
|
set_syserr(EINVAL, "EINVAL");
|
|
|
|
#endif
|
|
|
|
#ifdef ENFILE
|
|
|
|
set_syserr(ENFILE, "ENFILE");
|
|
|
|
#endif
|
|
|
|
#ifdef EMFILE
|
|
|
|
set_syserr(EMFILE, "EMFILE");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOTTY
|
|
|
|
set_syserr(ENOTTY, "ENOTTY");
|
|
|
|
#endif
|
|
|
|
#ifdef ETXTBSY
|
|
|
|
set_syserr(ETXTBSY, "ETXTBSY");
|
|
|
|
#endif
|
|
|
|
#ifdef EFBIG
|
|
|
|
set_syserr(EFBIG, "EFBIG");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOSPC
|
|
|
|
set_syserr(ENOSPC, "ENOSPC");
|
|
|
|
#endif
|
|
|
|
#ifdef ESPIPE
|
|
|
|
set_syserr(ESPIPE, "ESPIPE");
|
|
|
|
#endif
|
|
|
|
#ifdef EROFS
|
|
|
|
set_syserr(EROFS, "EROFS");
|
|
|
|
#endif
|
|
|
|
#ifdef EMLINK
|
|
|
|
set_syserr(EMLINK, "EMLINK");
|
|
|
|
#endif
|
|
|
|
#ifdef EPIPE
|
|
|
|
set_syserr(EPIPE, "EPIPE");
|
|
|
|
#endif
|
|
|
|
#ifdef EDOM
|
|
|
|
set_syserr(EDOM, "EDOM");
|
|
|
|
#endif
|
|
|
|
#ifdef ERANGE
|
|
|
|
set_syserr(ERANGE, "ERANGE");
|
|
|
|
#endif
|
|
|
|
#ifdef EDEADLK
|
|
|
|
set_syserr(EDEADLK, "EDEADLK");
|
|
|
|
#endif
|
|
|
|
#ifdef ENAMETOOLONG
|
|
|
|
set_syserr(ENAMETOOLONG, "ENAMETOOLONG");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOLCK
|
|
|
|
set_syserr(ENOLCK, "ENOLCK");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOSYS
|
|
|
|
set_syserr(ENOSYS, "ENOSYS");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOTEMPTY
|
|
|
|
set_syserr(ENOTEMPTY, "ENOTEMPTY");
|
|
|
|
#endif
|
|
|
|
#ifdef ELOOP
|
|
|
|
set_syserr(ELOOP, "ELOOP");
|
|
|
|
#endif
|
|
|
|
#ifdef EWOULDBLOCK
|
|
|
|
set_syserr(EWOULDBLOCK, "EWOULDBLOCK");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOMSG
|
|
|
|
set_syserr(ENOMSG, "ENOMSG");
|
|
|
|
#endif
|
|
|
|
#ifdef EIDRM
|
|
|
|
set_syserr(EIDRM, "EIDRM");
|
|
|
|
#endif
|
|
|
|
#ifdef ECHRNG
|
|
|
|
set_syserr(ECHRNG, "ECHRNG");
|
|
|
|
#endif
|
|
|
|
#ifdef EL2NSYNC
|
|
|
|
set_syserr(EL2NSYNC, "EL2NSYNC");
|
|
|
|
#endif
|
|
|
|
#ifdef EL3HLT
|
|
|
|
set_syserr(EL3HLT, "EL3HLT");
|
|
|
|
#endif
|
|
|
|
#ifdef EL3RST
|
|
|
|
set_syserr(EL3RST, "EL3RST");
|
|
|
|
#endif
|
|
|
|
#ifdef ELNRNG
|
|
|
|
set_syserr(ELNRNG, "ELNRNG");
|
|
|
|
#endif
|
|
|
|
#ifdef EUNATCH
|
|
|
|
set_syserr(EUNATCH, "EUNATCH");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOCSI
|
|
|
|
set_syserr(ENOCSI, "ENOCSI");
|
|
|
|
#endif
|
|
|
|
#ifdef EL2HLT
|
|
|
|
set_syserr(EL2HLT, "EL2HLT");
|
|
|
|
#endif
|
|
|
|
#ifdef EBADE
|
|
|
|
set_syserr(EBADE, "EBADE");
|
|
|
|
#endif
|
|
|
|
#ifdef EBADR
|
|
|
|
set_syserr(EBADR, "EBADR");
|
|
|
|
#endif
|
|
|
|
#ifdef EXFULL
|
|
|
|
set_syserr(EXFULL, "EXFULL");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOANO
|
|
|
|
set_syserr(ENOANO, "ENOANO");
|
|
|
|
#endif
|
|
|
|
#ifdef EBADRQC
|
|
|
|
set_syserr(EBADRQC, "EBADRQC");
|
|
|
|
#endif
|
|
|
|
#ifdef EBADSLT
|
|
|
|
set_syserr(EBADSLT, "EBADSLT");
|
|
|
|
#endif
|
|
|
|
#ifdef EDEADLOCK
|
|
|
|
set_syserr(EDEADLOCK, "EDEADLOCK");
|
|
|
|
#endif
|
|
|
|
#ifdef EBFONT
|
|
|
|
set_syserr(EBFONT, "EBFONT");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOSTR
|
|
|
|
set_syserr(ENOSTR, "ENOSTR");
|
|
|
|
#endif
|
|
|
|
#ifdef ENODATA
|
|
|
|
set_syserr(ENODATA, "ENODATA");
|
|
|
|
#endif
|
|
|
|
#ifdef ETIME
|
|
|
|
set_syserr(ETIME, "ETIME");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOSR
|
|
|
|
set_syserr(ENOSR, "ENOSR");
|
|
|
|
#endif
|
|
|
|
#ifdef ENONET
|
|
|
|
set_syserr(ENONET, "ENONET");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOPKG
|
|
|
|
set_syserr(ENOPKG, "ENOPKG");
|
|
|
|
#endif
|
|
|
|
#ifdef EREMOTE
|
|
|
|
set_syserr(EREMOTE, "EREMOTE");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOLINK
|
|
|
|
set_syserr(ENOLINK, "ENOLINK");
|
|
|
|
#endif
|
|
|
|
#ifdef EADV
|
|
|
|
set_syserr(EADV, "EADV");
|
|
|
|
#endif
|
|
|
|
#ifdef ESRMNT
|
|
|
|
set_syserr(ESRMNT, "ESRMNT");
|
|
|
|
#endif
|
|
|
|
#ifdef ECOMM
|
|
|
|
set_syserr(ECOMM, "ECOMM");
|
|
|
|
#endif
|
|
|
|
#ifdef EPROTO
|
|
|
|
set_syserr(EPROTO, "EPROTO");
|
|
|
|
#endif
|
|
|
|
#ifdef EMULTIHOP
|
|
|
|
set_syserr(EMULTIHOP, "EMULTIHOP");
|
|
|
|
#endif
|
|
|
|
#ifdef EDOTDOT
|
|
|
|
set_syserr(EDOTDOT, "EDOTDOT");
|
|
|
|
#endif
|
|
|
|
#ifdef EBADMSG
|
|
|
|
set_syserr(EBADMSG, "EBADMSG");
|
|
|
|
#endif
|
|
|
|
#ifdef EOVERFLOW
|
|
|
|
set_syserr(EOVERFLOW, "EOVERFLOW");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOTUNIQ
|
|
|
|
set_syserr(ENOTUNIQ, "ENOTUNIQ");
|
|
|
|
#endif
|
|
|
|
#ifdef EBADFD
|
|
|
|
set_syserr(EBADFD, "EBADFD");
|
|
|
|
#endif
|
|
|
|
#ifdef EREMCHG
|
|
|
|
set_syserr(EREMCHG, "EREMCHG");
|
|
|
|
#endif
|
|
|
|
#ifdef ELIBACC
|
|
|
|
set_syserr(ELIBACC, "ELIBACC");
|
|
|
|
#endif
|
|
|
|
#ifdef ELIBBAD
|
|
|
|
set_syserr(ELIBBAD, "ELIBBAD");
|
|
|
|
#endif
|
|
|
|
#ifdef ELIBSCN
|
|
|
|
set_syserr(ELIBSCN, "ELIBSCN");
|
|
|
|
#endif
|
|
|
|
#ifdef ELIBMAX
|
|
|
|
set_syserr(ELIBMAX, "ELIBMAX");
|
|
|
|
#endif
|
|
|
|
#ifdef ELIBEXEC
|
|
|
|
set_syserr(ELIBEXEC, "ELIBEXEC");
|
|
|
|
#endif
|
|
|
|
#ifdef EILSEQ
|
|
|
|
set_syserr(EILSEQ, "EILSEQ");
|
|
|
|
#endif
|
|
|
|
#ifdef ERESTART
|
|
|
|
set_syserr(ERESTART, "ERESTART");
|
|
|
|
#endif
|
|
|
|
#ifdef ESTRPIPE
|
|
|
|
set_syserr(ESTRPIPE, "ESTRPIPE");
|
|
|
|
#endif
|
|
|
|
#ifdef EUSERS
|
|
|
|
set_syserr(EUSERS, "EUSERS");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOTSOCK
|
|
|
|
set_syserr(ENOTSOCK, "ENOTSOCK");
|
|
|
|
#endif
|
|
|
|
#ifdef EDESTADDRREQ
|
|
|
|
set_syserr(EDESTADDRREQ, "EDESTADDRREQ");
|
|
|
|
#endif
|
|
|
|
#ifdef EMSGSIZE
|
|
|
|
set_syserr(EMSGSIZE, "EMSGSIZE");
|
|
|
|
#endif
|
|
|
|
#ifdef EPROTOTYPE
|
|
|
|
set_syserr(EPROTOTYPE, "EPROTOTYPE");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOPROTOOPT
|
|
|
|
set_syserr(ENOPROTOOPT, "ENOPROTOOPT");
|
|
|
|
#endif
|
|
|
|
#ifdef EPROTONOSUPPORT
|
|
|
|
set_syserr(EPROTONOSUPPORT, "EPROTONOSUPPORT");
|
|
|
|
#endif
|
|
|
|
#ifdef ESOCKTNOSUPPORT
|
|
|
|
set_syserr(ESOCKTNOSUPPORT, "ESOCKTNOSUPPORT");
|
|
|
|
#endif
|
|
|
|
#ifdef EOPNOTSUPP
|
|
|
|
set_syserr(EOPNOTSUPP, "EOPNOTSUPP");
|
|
|
|
#endif
|
|
|
|
#ifdef EPFNOSUPPORT
|
|
|
|
set_syserr(EPFNOSUPPORT, "EPFNOSUPPORT");
|
|
|
|
#endif
|
|
|
|
#ifdef EAFNOSUPPORT
|
|
|
|
set_syserr(EAFNOSUPPORT, "EAFNOSUPPORT");
|
|
|
|
#endif
|
|
|
|
#ifdef EADDRINUSE
|
|
|
|
set_syserr(EADDRINUSE, "EADDRINUSE");
|
|
|
|
#endif
|
|
|
|
#ifdef EADDRNOTAVAIL
|
|
|
|
set_syserr(EADDRNOTAVAIL, "EADDRNOTAVAIL");
|
|
|
|
#endif
|
|
|
|
#ifdef ENETDOWN
|
|
|
|
set_syserr(ENETDOWN, "ENETDOWN");
|
|
|
|
#endif
|
|
|
|
#ifdef ENETUNREACH
|
|
|
|
set_syserr(ENETUNREACH, "ENETUNREACH");
|
|
|
|
#endif
|
|
|
|
#ifdef ENETRESET
|
|
|
|
set_syserr(ENETRESET, "ENETRESET");
|
|
|
|
#endif
|
|
|
|
#ifdef ECONNABORTED
|
|
|
|
set_syserr(ECONNABORTED, "ECONNABORTED");
|
|
|
|
#endif
|
|
|
|
#ifdef ECONNRESET
|
|
|
|
set_syserr(ECONNRESET, "ECONNRESET");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOBUFS
|
|
|
|
set_syserr(ENOBUFS, "ENOBUFS");
|
|
|
|
#endif
|
|
|
|
#ifdef EISCONN
|
|
|
|
set_syserr(EISCONN, "EISCONN");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOTCONN
|
|
|
|
set_syserr(ENOTCONN, "ENOTCONN");
|
|
|
|
#endif
|
|
|
|
#ifdef ESHUTDOWN
|
|
|
|
set_syserr(ESHUTDOWN, "ESHUTDOWN");
|
|
|
|
#endif
|
|
|
|
#ifdef ETOOMANYREFS
|
|
|
|
set_syserr(ETOOMANYREFS, "ETOOMANYREFS");
|
|
|
|
#endif
|
|
|
|
#ifdef ETIMEDOUT
|
|
|
|
set_syserr(ETIMEDOUT, "ETIMEDOUT");
|
|
|
|
#endif
|
|
|
|
#ifdef ECONNREFUSED
|
|
|
|
set_syserr(ECONNREFUSED, "ECONNREFUSED");
|
|
|
|
#endif
|
|
|
|
#ifdef EHOSTDOWN
|
|
|
|
set_syserr(EHOSTDOWN, "EHOSTDOWN");
|
|
|
|
#endif
|
|
|
|
#ifdef EHOSTUNREACH
|
|
|
|
set_syserr(EHOSTUNREACH, "EHOSTUNREACH");
|
|
|
|
#endif
|
|
|
|
#ifdef EALREADY
|
|
|
|
set_syserr(EALREADY, "EALREADY");
|
|
|
|
#endif
|
|
|
|
#ifdef EINPROGRESS
|
|
|
|
set_syserr(EINPROGRESS, "EINPROGRESS");
|
|
|
|
#endif
|
|
|
|
#ifdef ESTALE
|
|
|
|
set_syserr(ESTALE, "ESTALE");
|
|
|
|
#endif
|
|
|
|
#ifdef EUCLEAN
|
|
|
|
set_syserr(EUCLEAN, "EUCLEAN");
|
|
|
|
#endif
|
|
|
|
#ifdef ENOTNAM
|
|
|
|
set_syserr(ENOTNAM, "ENOTNAM");
|
|
|
|
#endif
|
|
|
|
#ifdef ENAVAIL
|
|
|
|
set_syserr(ENAVAIL, "ENAVAIL");
|
|
|
|
#endif
|
|
|
|
#ifdef EISNAM
|
|
|
|
set_syserr(EISNAM, "EISNAM");
|
|
|
|
#endif
|
|
|
|
#ifdef EREMOTEIO
|
|
|
|
set_syserr(EREMOTEIO, "EREMOTEIO");
|
|
|
|
#endif
|
|
|
|
#ifdef EDQUOT
|
|
|
|
set_syserr(EDQUOT, "EDQUOT");
|
|
|
|
#endif
|
2005-03-08 04:46:33 +03:00
|
|
|
eNOERROR = set_syserr(0, "NOERROR");
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
static void
|
* array.c: moved to ANSI function style from K&R function style.
(used protoize on windows, so still K&R remains on #ifdef part of
other platforms. And `foo _((boo))' stuff is still there)
[ruby-dev:26975]
* bignum.c, class.c, compar.c, dir.c, dln.c, dmyext.c, enum.c,
enumerator.c, error.c, eval.c, file.c, gc.c, hash.c, inits.c,
io.c, main.c, marshal.c, math.c, numeric.c, object.c, pack.c,
prec.c, process.c, random.c, range.c, re.c, regcomp.c, regenc.c,
regerror.c, regexec.c, regparse.c, regparse.h, ruby.c, signal.c,
sprintf.c, st.c, string.c, struct.c, time.c, util.h, variable.c,
version.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-12 14:44:21 +04:00
|
|
|
err_append(const char *s)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
2007-04-04 19:42:16 +04:00
|
|
|
rb_thread_t *th = GET_THREAD();
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
VALUE err = th->errinfo;
|
|
|
|
|
2007-04-04 19:42:16 +04:00
|
|
|
if (th->parse_in_eval) {
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
if (!RTEST(err)) {
|
|
|
|
err = rb_exc_new2(rb_eSyntaxError, s);
|
|
|
|
th->errinfo = err;
|
2007-04-04 19:42:16 +04:00
|
|
|
}
|
|
|
|
else {
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
VALUE str = rb_obj_as_string(err);
|
2007-04-04 19:42:16 +04:00
|
|
|
|
|
|
|
rb_str_cat2(str, "\n");
|
|
|
|
rb_str_cat2(str, s);
|
|
|
|
th->errinfo = rb_exc_new3(rb_eSyntaxError, str);
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
else {
|
* include/ruby/{intern,ruby}.h, compile.[ch], error.c, eval.c,
eval_load.c, gc.c, iseq.c, main.c, parse.y, re.c, ruby.c,
yarvcore.[ch] (ruby_eval_tree, ruby_sourcefile, ruby_sourceline,
ruby_nerrs): purge global variables.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12700 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-07-05 12:12:18 +04:00
|
|
|
if (!RTEST(err)) {
|
|
|
|
err = rb_exc_new2(rb_eSyntaxError, "compile error");
|
|
|
|
th->errinfo = err;
|
|
|
|
}
|
2007-04-04 19:42:16 +04:00
|
|
|
rb_write_error(s);
|
|
|
|
rb_write_error("\n");
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
|
|
|
}
|