2000-05-01 13:42:38 +04:00
|
|
|
/**********************************************************************
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
version.c -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
created at: Thu Sep 30 20:08:01 JST 1993
|
|
|
|
|
* encoding.c: provide basic features for M17N.
* parse.y: encoding aware parsing.
* parse.y (pragma_encoding): encoding specification pragma.
* parse.y (rb_intern3): encoding specified symbols.
* string.c (rb_str_length): length based on characters.
for older behavior, bytesize method added.
* string.c (rb_str_index_m): index based on characters. rindex as
well.
* string.c (succ_char): encoding aware succeeding string.
* string.c (rb_str_reverse): reverse based on characters.
* string.c (rb_str_inspect): encoding aware string description.
* string.c (rb_str_upcase_bang): encoding aware case conversion.
downcase, capitalize, swapcase as well.
* string.c (rb_str_tr_bang): tr based on characters. delete,
squeeze, tr_s, count as well.
* string.c (rb_str_split_m): split based on characters.
* string.c (rb_str_each_line): encoding aware each_line.
* string.c (rb_str_each_char): added. iteration based on
characters.
* string.c (rb_str_strip_bang): encoding aware whitespace
stripping. lstrip, rstrip as well.
* string.c (rb_str_justify): encoding aware justifying (ljust,
rjust, center).
* string.c (str_encoding): get encoding attribute from a string.
* re.c (rb_reg_initialize): encoding aware regular expression
* sprintf.c (rb_str_format): formatting (i.e. length count) based
on characters.
* io.c (rb_io_getc): getc to return one-character string.
for older behavior, getbyte method added.
* ext/stringio/stringio.c (strio_getc): ditto.
* io.c (rb_io_ungetc): allow pushing arbitrary string at the
current reading point.
* ext/stringio/stringio.c (strio_ungetc): ditto.
* ext/strscan/strscan.c: encoding support.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13261 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-08-25 07:29:39 +04:00
|
|
|
Copyright (C) 1993-2007 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"
|
1998-01-16 15:13:05 +03:00
|
|
|
#include "version.h"
|
2018-02-22 17:53:17 +03:00
|
|
|
#include "vm_core.h"
|
|
|
|
#include "mjit.h"
|
1998-01-16 15:13:05 +03:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2013-11-28 11:34:18 +04:00
|
|
|
#ifndef EXIT_SUCCESS
|
|
|
|
#define EXIT_SUCCESS 0
|
|
|
|
#endif
|
|
|
|
|
2007-12-22 09:14:50 +03:00
|
|
|
#define PRINT(type) puts(ruby_##type)
|
2015-06-09 10:25:44 +03:00
|
|
|
#define MKSTR(type) rb_obj_freeze(rb_usascii_str_new_static(ruby_##type, sizeof(ruby_##type)-1))
|
2015-06-11 11:07:49 +03:00
|
|
|
#define MKINT(name) INT2FIX(ruby_##name)
|
2007-12-22 09:14:50 +03:00
|
|
|
|
2010-08-24 01:08:19 +04:00
|
|
|
const int ruby_api_version[] = {
|
|
|
|
RUBY_API_VERSION_MAJOR,
|
|
|
|
RUBY_API_VERSION_MINOR,
|
|
|
|
RUBY_API_VERSION_TEENY,
|
|
|
|
};
|
2004-03-25 15:01:41 +03:00
|
|
|
const char ruby_version[] = RUBY_VERSION;
|
|
|
|
const char ruby_release_date[] = RUBY_RELEASE_DATE;
|
|
|
|
const char ruby_platform[] = RUBY_PLATFORM;
|
2006-11-26 12:34:32 +03:00
|
|
|
const int ruby_patchlevel = RUBY_PATCHLEVEL;
|
2018-02-24 05:55:03 +03:00
|
|
|
const char ruby_description[] = RUBY_DESCRIPTION_WITH("");
|
2018-08-10 08:02:35 +03:00
|
|
|
static const char ruby_description_with_jit[] = RUBY_DESCRIPTION_WITH(" +JIT");
|
2007-12-22 09:14:50 +03:00
|
|
|
const char ruby_copyright[] = RUBY_COPYRIGHT;
|
2008-08-14 12:28:44 +04:00
|
|
|
const char ruby_engine[] = "ruby";
|
2009-02-05 05:21:37 +03:00
|
|
|
|
2012-06-14 06:21:51 +04:00
|
|
|
/*! Defines platform-depended Ruby-level constants */
|
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_version(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2015-06-11 11:07:49 +03:00
|
|
|
enum {ruby_patchlevel = RUBY_PATCHLEVEL};
|
|
|
|
enum {ruby_revision = RUBY_REVISION};
|
2015-06-10 05:06:28 +03:00
|
|
|
VALUE version;
|
2015-11-29 05:25:12 +03:00
|
|
|
VALUE ruby_engine_name;
|
2011-06-29 07:09:34 +04:00
|
|
|
/*
|
|
|
|
* The running version of ruby
|
|
|
|
*/
|
2015-06-10 05:06:28 +03:00
|
|
|
rb_define_global_const("RUBY_VERSION", (version = MKSTR(version)));
|
2011-06-29 07:09:34 +04:00
|
|
|
/*
|
|
|
|
* The date this ruby was released
|
|
|
|
*/
|
2007-12-22 09:14:50 +03:00
|
|
|
rb_define_global_const("RUBY_RELEASE_DATE", MKSTR(release_date));
|
2011-06-29 07:09:34 +04:00
|
|
|
/*
|
|
|
|
* The platform for this ruby
|
|
|
|
*/
|
2007-12-22 09:14:50 +03:00
|
|
|
rb_define_global_const("RUBY_PLATFORM", MKSTR(platform));
|
2011-06-29 07:09:34 +04:00
|
|
|
/*
|
|
|
|
* The patchlevel for this ruby. If this is a development build of ruby
|
|
|
|
* the patchlevel will be -1
|
|
|
|
*/
|
2015-06-11 11:07:49 +03:00
|
|
|
rb_define_global_const("RUBY_PATCHLEVEL", MKINT(patchlevel));
|
2011-06-29 07:09:34 +04:00
|
|
|
/*
|
|
|
|
* The SVN revision for this ruby.
|
|
|
|
*/
|
2015-06-11 11:07:49 +03:00
|
|
|
rb_define_global_const("RUBY_REVISION", MKINT(revision));
|
2011-06-29 07:09:34 +04:00
|
|
|
/*
|
|
|
|
* The copyright string for ruby
|
|
|
|
*/
|
2007-12-22 09:14:50 +03:00
|
|
|
rb_define_global_const("RUBY_COPYRIGHT", MKSTR(copyright));
|
2011-06-29 07:09:34 +04:00
|
|
|
/*
|
|
|
|
* The engine or interpreter this ruby uses.
|
|
|
|
*/
|
2010-04-15 09:38:07 +04:00
|
|
|
rb_define_global_const("RUBY_ENGINE", ruby_engine_name = MKSTR(engine));
|
2015-11-29 05:25:12 +03:00
|
|
|
ruby_set_script_name(ruby_engine_name);
|
2015-04-08 11:45:05 +03:00
|
|
|
/*
|
|
|
|
* The version of the engine or interpreter this ruby uses.
|
|
|
|
*/
|
2015-06-10 05:06:28 +03:00
|
|
|
rb_define_global_const("RUBY_ENGINE_VERSION", (1 ? version : MKSTR(version)));
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2018-08-10 08:02:35 +03:00
|
|
|
void
|
|
|
|
Init_ruby_description(void)
|
|
|
|
{
|
|
|
|
VALUE description;
|
|
|
|
|
|
|
|
if (mjit_opts.on) {
|
|
|
|
description = MKSTR(description_with_jit);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
description = MKSTR(description);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* The full ruby version string, like <tt>ruby -v</tt> prints
|
|
|
|
*/
|
2018-08-10 08:20:46 +03:00
|
|
|
rb_define_global_const("RUBY_DESCRIPTION", /* MKSTR(description) */ description);
|
2018-08-10 08:02:35 +03:00
|
|
|
}
|
|
|
|
|
2012-06-14 06:21:51 +04:00
|
|
|
/*! Prints the version information of the CRuby interpreter to stdout. */
|
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
|
|
|
ruby_show_version(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2018-02-22 17:53:17 +03:00
|
|
|
if (mjit_opts.on) {
|
|
|
|
PRINT(description_with_jit);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PRINT(description);
|
|
|
|
}
|
2015-02-18 06:43:14 +03:00
|
|
|
#ifdef RUBY_LAST_COMMIT_TITLE
|
|
|
|
fputs("last_commit=" RUBY_LAST_COMMIT_TITLE, stdout);
|
|
|
|
#endif
|
2014-06-05 09:36:28 +04:00
|
|
|
#ifdef HAVE_MALLOC_CONF
|
|
|
|
if (malloc_conf) printf("malloc_conf=%s\n", malloc_conf);
|
|
|
|
#endif
|
2005-05-12 04:54:36 +04:00
|
|
|
fflush(stdout);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2016-01-07 05:34:33 +03:00
|
|
|
/*! Prints the copyright notice of the CRuby interpreter to stdout. */
|
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
|
|
|
ruby_show_copyright(void)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2007-12-22 09:14:50 +03:00
|
|
|
PRINT(copyright);
|
2016-01-07 05:34:33 +03:00
|
|
|
fflush(stdout);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|