2000-05-09 08:53:16 +04:00
|
|
|
/**********************************************************************
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
sprintf.c -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
created at: Fri Oct 15 10:39:26 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
|
2000-05-01 13:42:38 +04:00
|
|
|
Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
|
2000-05-09 08:53:16 +04:00
|
|
|
Copyright (C) 2000 Information-technology Promotion Agency, Japan
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2000-05-09 08:53:16 +04:00
|
|
|
**********************************************************************/
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2020-05-08 12:31:09 +03:00
|
|
|
#include "ruby/internal/config.h"
|
2019-12-04 11:16:30 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
#include <math.h>
|
2005-07-23 05:02:18 +04:00
|
|
|
#include <stdarg.h>
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2008-07-02 20:24:11 +04:00
|
|
|
#ifdef HAVE_IEEEFP_H
|
2019-12-04 11:16:30 +03:00
|
|
|
# include <ieeefp.h>
|
2008-07-02 20:24:11 +04:00
|
|
|
#endif
|
|
|
|
|
2019-12-04 11:16:30 +03:00
|
|
|
#include "id.h"
|
|
|
|
#include "internal.h"
|
|
|
|
#include "internal/error.h"
|
|
|
|
#include "internal/hash.h"
|
|
|
|
#include "internal/numeric.h"
|
|
|
|
#include "internal/object.h"
|
|
|
|
#include "internal/sanitizers.h"
|
|
|
|
#include "internal/symbol.h"
|
|
|
|
#include "ruby/encoding.h"
|
|
|
|
#include "ruby/re.h"
|
2021-07-28 10:40:02 +03:00
|
|
|
#include "ruby/util.h"
|
2019-12-04 11:16:30 +03:00
|
|
|
|
1999-08-13 09:45:20 +04:00
|
|
|
#define BIT_DIGITS(N) (((N)*146)/485 + 1) /* log2(10) =~ 146/485 */
|
|
|
|
|
2017-04-28 05:10:51 +03:00
|
|
|
static char *fmt_setup(char*,size_t,int,int,int,int);
|
2017-04-28 08:08:44 +03:00
|
|
|
static char *ruby_ultoa(unsigned long val, char *endp, int base, int octzero);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2003-03-20 09:27:22 +03:00
|
|
|
static char
|
* 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
|
|
|
sign_bits(int base, const char *p)
|
2003-03-20 09:27:22 +03:00
|
|
|
{
|
|
|
|
char c = '.';
|
|
|
|
|
|
|
|
switch (base) {
|
|
|
|
case 16:
|
|
|
|
if (*p == 'X') c = 'F';
|
|
|
|
else c = 'f';
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
c = '7'; break;
|
|
|
|
case 2:
|
|
|
|
c = '1'; break;
|
|
|
|
}
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
#define FNONE 0
|
|
|
|
#define FSHARP 1
|
|
|
|
#define FMINUS 2
|
|
|
|
#define FPLUS 4
|
|
|
|
#define FZERO 8
|
1999-01-20 07:59:39 +03:00
|
|
|
#define FSPACE 16
|
|
|
|
#define FWIDTH 32
|
|
|
|
#define FPREC 64
|
2007-07-16 00:45:55 +04:00
|
|
|
#define FPREC0 128
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-10-16 17:44:19 +04:00
|
|
|
#define CHECK(l) do {\
|
2009-04-13 12:21:41 +04:00
|
|
|
int cr = ENC_CODERANGE(result);\
|
2017-03-20 04:36:08 +03:00
|
|
|
while ((l) >= bsiz - blen) {\
|
1998-01-16 15:13:05 +03:00
|
|
|
bsiz*=2;\
|
2017-03-20 04:36:08 +03:00
|
|
|
if (bsiz<0) rb_raise(rb_eArgError, "too big specifier");\
|
2002-10-16 17:44:19 +04:00
|
|
|
}\
|
|
|
|
rb_str_resize(result, bsiz);\
|
2009-04-13 12:21:41 +04:00
|
|
|
ENC_CODERANGE_SET(result, cr);\
|
2006-08-31 14:47:44 +04:00
|
|
|
buf = RSTRING_PTR(result);\
|
2002-10-16 17:44:19 +04:00
|
|
|
} while (0)
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2002-04-18 12:46:18 +04:00
|
|
|
#define PUSH(s, l) do { \
|
1998-01-16 15:13:05 +03:00
|
|
|
CHECK(l);\
|
2016-03-28 02:19:50 +03:00
|
|
|
PUSH_(s, l);\
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define PUSH_(s, l) do { \
|
2010-12-30 05:50:34 +03:00
|
|
|
memcpy(&buf[blen], (s), (l));\
|
1998-01-16 15:13:05 +03:00
|
|
|
blen += (l);\
|
2002-04-18 12:46:18 +04:00
|
|
|
} while (0)
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2005-07-23 05:02:18 +04:00
|
|
|
#define FILL(c, l) do { \
|
2017-03-19 15:46:31 +03:00
|
|
|
if ((l) <= 0) break;\
|
2005-07-23 05:02:18 +04:00
|
|
|
CHECK(l);\
|
2016-03-28 02:19:50 +03:00
|
|
|
FILL_(c, l);\
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define FILL_(c, l) do { \
|
2010-12-30 05:50:34 +03:00
|
|
|
memset(&buf[blen], (c), (l));\
|
2005-07-23 05:02:18 +04:00
|
|
|
blen += (l);\
|
|
|
|
} while (0)
|
|
|
|
|
2002-10-16 17:44:19 +04:00
|
|
|
#define GETARG() (nextvalue != Qundef ? nextvalue : \
|
2014-06-26 22:41:57 +04:00
|
|
|
GETNEXTARG())
|
|
|
|
|
|
|
|
#define GETNEXTARG() ( \
|
2014-07-02 12:03:51 +04:00
|
|
|
check_next_arg(posarg, nextarg), \
|
2002-10-16 17:44:19 +04:00
|
|
|
(posarg = nextarg++, GETNTHARG(posarg)))
|
|
|
|
|
2014-07-02 12:03:53 +04:00
|
|
|
#define GETPOSARG(n) ( \
|
|
|
|
check_pos_arg(posarg, (n)), \
|
|
|
|
(posarg = -1, GETNTHARG(n)))
|
2002-10-16 17:44:19 +04:00
|
|
|
|
|
|
|
#define GETNTHARG(nth) \
|
2010-12-30 05:50:34 +03:00
|
|
|
(((nth) >= argc) ? (rb_raise(rb_eArgError, "too few arguments"), 0) : argv[(nth)])
|
1999-11-11 07:08:26 +03:00
|
|
|
|
2014-07-08 12:04:12 +04:00
|
|
|
#define CHECKNAMEARG(name, len, enc) ( \
|
2014-07-02 12:03:57 +04:00
|
|
|
check_name_arg(posarg, name, len, enc), \
|
2014-07-08 12:04:12 +04:00
|
|
|
posarg = -2)
|
2008-09-30 12:01:11 +04:00
|
|
|
|
2007-07-16 00:45:55 +04:00
|
|
|
#define GETNUM(n, val) \
|
2014-07-02 12:03:48 +04:00
|
|
|
(!(p = get_num(p, end, enc, &(n))) ? \
|
|
|
|
rb_raise(rb_eArgError, #val " too big") : (void)0)
|
2007-07-16 00:45:55 +04:00
|
|
|
|
|
|
|
#define GETASTER(val) do { \
|
|
|
|
t = p++; \
|
|
|
|
n = 0; \
|
2014-06-26 17:30:08 +04:00
|
|
|
GETNUM(n, val); \
|
1999-11-11 07:08:26 +03:00
|
|
|
if (*p == '$') { \
|
2002-10-16 17:44:19 +04:00
|
|
|
tmp = GETPOSARG(n); \
|
1999-11-11 07:08:26 +03:00
|
|
|
} \
|
|
|
|
else { \
|
2014-06-26 22:41:57 +04:00
|
|
|
tmp = GETNEXTARG(); \
|
1999-11-11 07:08:26 +03:00
|
|
|
p = t; \
|
|
|
|
} \
|
2010-12-30 05:50:34 +03:00
|
|
|
(val) = NUM2INT(tmp); \
|
2002-04-18 12:46:18 +04:00
|
|
|
} while (0)
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2014-07-02 12:03:48 +04:00
|
|
|
static const char *
|
|
|
|
get_num(const char *p, const char *end, rb_encoding *enc, int *valp)
|
|
|
|
{
|
|
|
|
int next_n = *valp;
|
|
|
|
for (; p < end && rb_enc_isdigit(*p, enc); p++) {
|
|
|
|
if (MUL_OVERFLOW_INT_P(10, next_n))
|
|
|
|
return NULL;
|
|
|
|
next_n *= 10;
|
|
|
|
if (INT_MAX - (*p - '0') < next_n)
|
|
|
|
return NULL;
|
|
|
|
next_n += *p - '0';
|
|
|
|
}
|
|
|
|
if (p >= end) {
|
|
|
|
rb_raise(rb_eArgError, "malformed format string - %%*[0-9]");
|
|
|
|
}
|
|
|
|
*valp = next_n;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2014-07-02 12:03:51 +04:00
|
|
|
static void
|
|
|
|
check_next_arg(int posarg, int nextarg)
|
|
|
|
{
|
|
|
|
switch (posarg) {
|
|
|
|
case -1:
|
|
|
|
rb_raise(rb_eArgError, "unnumbered(%d) mixed with numbered", nextarg);
|
|
|
|
case -2:
|
|
|
|
rb_raise(rb_eArgError, "unnumbered(%d) mixed with named", nextarg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-02 12:03:53 +04:00
|
|
|
static void
|
|
|
|
check_pos_arg(int posarg, int n)
|
|
|
|
{
|
|
|
|
if (posarg > 0) {
|
|
|
|
rb_raise(rb_eArgError, "numbered(%d) after unnumbered(%d)", n, posarg);
|
|
|
|
}
|
|
|
|
if (posarg == -2) {
|
|
|
|
rb_raise(rb_eArgError, "numbered(%d) after named", n);
|
|
|
|
}
|
|
|
|
if (n < 1) {
|
|
|
|
rb_raise(rb_eArgError, "invalid index - %d$", n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-02 12:03:57 +04:00
|
|
|
static void
|
|
|
|
check_name_arg(int posarg, const char *name, int len, rb_encoding *enc)
|
|
|
|
{
|
|
|
|
if (posarg > 0) {
|
|
|
|
rb_enc_raise(enc, rb_eArgError, "named%.*s after unnumbered(%d)", len, name, posarg);
|
|
|
|
}
|
|
|
|
if (posarg == -1) {
|
|
|
|
rb_enc_raise(enc, rb_eArgError, "named%.*s after numbered", len, name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-30 12:01:11 +04:00
|
|
|
static VALUE
|
|
|
|
get_hash(volatile VALUE *hash, int argc, const VALUE *argv)
|
|
|
|
{
|
|
|
|
VALUE tmp;
|
|
|
|
|
|
|
|
if (*hash != Qundef) return *hash;
|
|
|
|
if (argc != 2) {
|
|
|
|
rb_raise(rb_eArgError, "one hash required");
|
|
|
|
}
|
2012-06-26 11:46:24 +04:00
|
|
|
tmp = rb_check_hash_type(argv[1]);
|
2008-09-30 12:01:11 +04:00
|
|
|
if (NIL_P(tmp)) {
|
|
|
|
rb_raise(rb_eArgError, "one hash required");
|
|
|
|
}
|
|
|
|
return (*hash = tmp);
|
|
|
|
}
|
2003-12-28 09:33:07 +03:00
|
|
|
|
1999-01-20 07:59:39 +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_f_sprintf(int argc, const VALUE *argv)
|
1999-01-20 07:59:39 +03:00
|
|
|
{
|
2005-07-23 05:02:18 +04:00
|
|
|
return rb_str_format(argc - 1, argv + 1, GETNTHARG(0));
|
|
|
|
}
|
|
|
|
|
|
|
|
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_str_format(int argc, const VALUE *argv, VALUE fmt)
|
2005-07-23 05:02:18 +04:00
|
|
|
{
|
2014-08-18 12:06:37 +04:00
|
|
|
enum {default_float_precision = 6};
|
* 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
|
|
|
rb_encoding *enc;
|
2004-07-18 03:14:52 +04:00
|
|
|
const char *p, *end;
|
|
|
|
char *buf;
|
2009-09-23 08:17:16 +04:00
|
|
|
long blen, bsiz;
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE result;
|
|
|
|
|
2009-04-13 12:21:41 +04:00
|
|
|
long scanned = 0;
|
|
|
|
int coderange = ENC_CODERANGE_7BIT;
|
1999-01-20 07:59:39 +03:00
|
|
|
int width, prec, flags = FNONE;
|
2002-10-16 17:44:19 +04:00
|
|
|
int nextarg = 1;
|
|
|
|
int posarg = 0;
|
|
|
|
VALUE nextvalue;
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE tmp;
|
2017-01-31 03:41:56 +03:00
|
|
|
VALUE orig;
|
1999-01-20 07:59:39 +03:00
|
|
|
VALUE str;
|
2008-09-30 12:01:11 +04:00
|
|
|
volatile VALUE hash = Qundef;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2007-07-16 00:45:55 +04:00
|
|
|
#define CHECK_FOR_WIDTH(f) \
|
|
|
|
if ((f) & FWIDTH) { \
|
|
|
|
rb_raise(rb_eArgError, "width given twice"); \
|
|
|
|
} \
|
|
|
|
if ((f) & FPREC0) { \
|
|
|
|
rb_raise(rb_eArgError, "width after precision"); \
|
|
|
|
}
|
|
|
|
#define CHECK_FOR_FLAGS(f) \
|
|
|
|
if ((f) & FWIDTH) { \
|
|
|
|
rb_raise(rb_eArgError, "flag after width"); \
|
|
|
|
} \
|
|
|
|
if ((f) & FPREC0) { \
|
|
|
|
rb_raise(rb_eArgError, "flag after precision"); \
|
|
|
|
}
|
|
|
|
|
2005-07-23 05:02:18 +04:00
|
|
|
++argc;
|
|
|
|
--argv;
|
2001-05-02 08:22:21 +04:00
|
|
|
StringValue(fmt);
|
* 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
|
|
|
enc = rb_enc_get(fmt);
|
2017-01-31 03:41:56 +03:00
|
|
|
orig = fmt;
|
|
|
|
fmt = rb_str_tmp_frozen_acquire(fmt);
|
2006-08-31 14:47:44 +04:00
|
|
|
p = RSTRING_PTR(fmt);
|
|
|
|
end = p + RSTRING_LEN(fmt);
|
1998-01-16 15:13:05 +03:00
|
|
|
blen = 0;
|
|
|
|
bsiz = 120;
|
2002-10-16 17:44:19 +04:00
|
|
|
result = rb_str_buf_new(bsiz);
|
2020-02-12 13:29:18 +03:00
|
|
|
rb_enc_associate(result, enc);
|
2006-08-31 14:47:44 +04:00
|
|
|
buf = RSTRING_PTR(result);
|
2007-12-17 19:50:17 +03:00
|
|
|
memset(buf, 0, bsiz);
|
2009-04-13 12:21:41 +04:00
|
|
|
ENC_CODERANGE_SET(result, coderange);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
for (; p < end; p++) {
|
2004-07-18 03:14:52 +04:00
|
|
|
const char *t;
|
1999-11-11 07:08:26 +03:00
|
|
|
int n;
|
2014-07-09 10:14:41 +04:00
|
|
|
VALUE sym = Qnil;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
for (t = p; t < end && *t != '%'; t++) ;
|
2017-05-25 18:33:28 +03:00
|
|
|
if (t + 1 == end) {
|
2017-07-31 06:35:22 +03:00
|
|
|
rb_raise(rb_eArgError, "incomplete format specifier; use %%%% (double %%) instead");
|
2017-05-25 18:33:28 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
PUSH(p, t - p);
|
2009-08-12 03:53:21 +04:00
|
|
|
if (coderange != ENC_CODERANGE_BROKEN && scanned < blen) {
|
2010-02-08 18:08:15 +03:00
|
|
|
scanned += rb_str_coderange_scan_restartable(buf+scanned, buf+blen, enc, &coderange);
|
2009-08-12 03:53:21 +04:00
|
|
|
ENC_CODERANGE_SET(result, coderange);
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
if (t >= end) {
|
|
|
|
/* end of fmt string */
|
|
|
|
goto sprint_exit;
|
|
|
|
}
|
|
|
|
p = t + 1; /* skip `%' */
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
width = prec = -1;
|
2002-10-16 17:44:19 +04:00
|
|
|
nextvalue = Qundef;
|
1998-01-16 15:13:05 +03:00
|
|
|
retry:
|
|
|
|
switch (*p) {
|
|
|
|
default:
|
* 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
|
|
|
if (rb_enc_isprint(*p, enc))
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_raise(rb_eArgError, "malformed format string - %%%c", *p);
|
1998-01-16 15:13:05 +03:00
|
|
|
else
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_raise(rb_eArgError, "malformed format string");
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
|
|
|
|
case ' ':
|
2007-07-16 00:45:55 +04:00
|
|
|
CHECK_FOR_FLAGS(flags);
|
1999-01-20 07:59:39 +03:00
|
|
|
flags |= FSPACE;
|
1998-01-16 15:13:05 +03:00
|
|
|
p++;
|
|
|
|
goto retry;
|
|
|
|
|
|
|
|
case '#':
|
2007-07-16 00:45:55 +04:00
|
|
|
CHECK_FOR_FLAGS(flags);
|
1998-01-16 15:13:05 +03:00
|
|
|
flags |= FSHARP;
|
|
|
|
p++;
|
|
|
|
goto retry;
|
|
|
|
|
|
|
|
case '+':
|
2007-07-16 00:45:55 +04:00
|
|
|
CHECK_FOR_FLAGS(flags);
|
1998-01-16 15:13:05 +03:00
|
|
|
flags |= FPLUS;
|
|
|
|
p++;
|
|
|
|
goto retry;
|
|
|
|
|
|
|
|
case '-':
|
2007-07-16 00:45:55 +04:00
|
|
|
CHECK_FOR_FLAGS(flags);
|
1998-01-16 15:13:05 +03:00
|
|
|
flags |= FMINUS;
|
|
|
|
p++;
|
|
|
|
goto retry;
|
|
|
|
|
|
|
|
case '0':
|
2007-07-16 00:45:55 +04:00
|
|
|
CHECK_FOR_FLAGS(flags);
|
1998-01-16 15:13:05 +03:00
|
|
|
flags |= FZERO;
|
|
|
|
p++;
|
|
|
|
goto retry;
|
|
|
|
|
|
|
|
case '1': case '2': case '3': case '4':
|
|
|
|
case '5': case '6': case '7': case '8': case '9':
|
1999-11-11 07:08:26 +03:00
|
|
|
n = 0;
|
2007-07-16 00:45:55 +04:00
|
|
|
GETNUM(n, width);
|
1999-11-11 07:08:26 +03:00
|
|
|
if (*p == '$') {
|
2002-10-16 17:44:19 +04:00
|
|
|
if (nextvalue != Qundef) {
|
|
|
|
rb_raise(rb_eArgError, "value given twice - %d$", n);
|
|
|
|
}
|
|
|
|
nextvalue = GETPOSARG(n);
|
1999-11-11 07:08:26 +03:00
|
|
|
p++;
|
|
|
|
goto retry;
|
|
|
|
}
|
2007-08-02 08:46:41 +04:00
|
|
|
CHECK_FOR_WIDTH(flags);
|
1999-11-11 07:08:26 +03:00
|
|
|
width = n;
|
|
|
|
flags |= FWIDTH;
|
1998-01-16 15:13:05 +03:00
|
|
|
goto retry;
|
|
|
|
|
2008-09-30 12:01:11 +04:00
|
|
|
case '<':
|
|
|
|
case '{':
|
|
|
|
{
|
|
|
|
const char *start = p;
|
|
|
|
char term = (*p == '<') ? '>' : '}';
|
2012-04-10 11:26:35 +04:00
|
|
|
int len;
|
2008-09-30 12:01:11 +04:00
|
|
|
|
|
|
|
for (; p < end && *p != term; ) {
|
|
|
|
p += rb_enc_mbclen(p, end, enc);
|
|
|
|
}
|
|
|
|
if (p >= end) {
|
|
|
|
rb_raise(rb_eArgError, "malformed name - unmatched parenthesis");
|
|
|
|
}
|
2012-04-10 11:26:35 +04:00
|
|
|
#if SIZEOF_INT < SIZEOF_SIZE_T
|
|
|
|
if ((size_t)(p - start) >= INT_MAX) {
|
|
|
|
const int message_limit = 20;
|
|
|
|
len = (int)(rb_enc_right_char_head(start, start + message_limit, p, enc) - start);
|
2012-04-11 17:01:16 +04:00
|
|
|
rb_enc_raise(enc, rb_eArgError,
|
2016-09-13 15:33:13 +03:00
|
|
|
"too long name (%"PRIuSIZE" bytes) - %.*s...%c",
|
2012-04-11 17:01:16 +04:00
|
|
|
(size_t)(p - start - 2), len, start, term);
|
2012-04-10 11:26:35 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
len = (int)(p - start + 1); /* including parenthesis */
|
2014-07-09 10:14:41 +04:00
|
|
|
if (sym != Qnil) {
|
2014-07-30 18:31:53 +04:00
|
|
|
rb_enc_raise(enc, rb_eArgError, "named%.*s after <%"PRIsVALUE">",
|
|
|
|
len, start, rb_sym2str(sym));
|
2009-03-28 02:49:52 +03:00
|
|
|
}
|
2014-07-08 12:04:12 +04:00
|
|
|
CHECKNAMEARG(start, len, enc);
|
|
|
|
get_hash(&hash, argc, argv);
|
2015-11-11 12:30:31 +03:00
|
|
|
sym = rb_check_symbol_cstr(start + 1,
|
|
|
|
len - 2 /* without parenthesis */,
|
|
|
|
enc);
|
|
|
|
if (!NIL_P(sym)) nextvalue = rb_hash_lookup2(hash, sym, Qundef);
|
|
|
|
if (nextvalue == Qundef) {
|
|
|
|
if (NIL_P(sym)) {
|
2015-11-30 07:44:39 +03:00
|
|
|
sym = rb_sym_intern(start + 1,
|
|
|
|
len - 2 /* without parenthesis */,
|
|
|
|
enc);
|
2015-11-11 12:30:31 +03:00
|
|
|
}
|
|
|
|
nextvalue = rb_hash_default_value(hash, sym);
|
|
|
|
if (NIL_P(nextvalue)) {
|
2017-09-18 11:05:53 +03:00
|
|
|
rb_key_err_raise(rb_enc_sprintf(enc, "key%.*s not found", len, start), hash, sym);
|
2015-11-11 12:30:31 +03:00
|
|
|
}
|
2009-03-28 02:49:52 +03:00
|
|
|
}
|
2008-09-30 12:01:11 +04:00
|
|
|
if (term == '}') goto format_s;
|
|
|
|
p++;
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
|
1998-01-16 15:13:05 +03:00
|
|
|
case '*':
|
2007-07-16 00:45:55 +04:00
|
|
|
CHECK_FOR_WIDTH(flags);
|
1998-01-16 15:13:05 +03:00
|
|
|
flags |= FWIDTH;
|
1999-11-11 07:08:26 +03:00
|
|
|
GETASTER(width);
|
1998-01-16 15:13:05 +03:00
|
|
|
if (width < 0) {
|
|
|
|
flags |= FMINUS;
|
1999-01-20 07:59:39 +03:00
|
|
|
width = -width;
|
2017-07-23 12:44:48 +03:00
|
|
|
if (width < 0) rb_raise(rb_eArgError, "width too big");
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
p++;
|
|
|
|
goto retry;
|
|
|
|
|
|
|
|
case '.':
|
2007-07-16 00:45:55 +04:00
|
|
|
if (flags & FPREC0) {
|
1999-01-20 07:59:39 +03:00
|
|
|
rb_raise(rb_eArgError, "precision given twice");
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2007-07-16 00:45:55 +04:00
|
|
|
flags |= FPREC|FPREC0;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
prec = 0;
|
|
|
|
p++;
|
|
|
|
if (*p == '*') {
|
1999-11-11 07:08:26 +03:00
|
|
|
GETASTER(prec);
|
2000-06-19 12:38:11 +04:00
|
|
|
if (prec < 0) { /* ignore negative precision */
|
|
|
|
flags &= ~FPREC;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
p++;
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
|
2007-07-16 00:45:55 +04:00
|
|
|
GETNUM(prec, precision);
|
1998-01-16 15:13:05 +03:00
|
|
|
goto retry;
|
|
|
|
|
|
|
|
case '\n':
|
|
|
|
case '\0':
|
2007-07-16 00:45:55 +04:00
|
|
|
p--;
|
2019-07-14 08:03:44 +03:00
|
|
|
/* fall through */
|
1998-01-16 15:13:05 +03:00
|
|
|
case '%':
|
1999-09-01 13:48:03 +04:00
|
|
|
if (flags != FNONE) {
|
* regerror.c, string.c, io.c, lib/getoptlong.rb, lib/net/imap.rb,
compile.c, sprintf.c, parse.y, ext/win32ole/win32ole.c,
ext/tk/sample/demos-en/entry3.rb, ext/tk/lib/tcltk.rb,
ext/openssl/ossl_bn.c, numeric.c, vm.c,
benchmark/bm_so_meteor_contest.rb, bignum.c, ruby.c: don't "illegal"
for non law violation context.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14377 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-12-21 05:31:11 +03:00
|
|
|
rb_raise(rb_eArgError, "invalid format character - %%");
|
1999-09-01 13:48:03 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
PUSH("%", 1);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'c':
|
|
|
|
{
|
|
|
|
VALUE val = GETARG();
|
2006-08-04 15:46:44 +04:00
|
|
|
VALUE tmp;
|
2008-09-11 14:34:59 +04:00
|
|
|
unsigned int c;
|
|
|
|
int n;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2006-08-04 15:46:44 +04:00
|
|
|
tmp = rb_check_string_type(val);
|
|
|
|
if (!NIL_P(tmp)) {
|
* 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
|
|
|
if (rb_enc_strlen(RSTRING_PTR(tmp),RSTRING_END(tmp),enc) != 1) {
|
* 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
|
|
|
rb_raise(rb_eArgError, "%%c requires a character");
|
|
|
|
}
|
* encoding.c (rb_enc_codepoint_len): combine rb_enc_codepoint()
and rb_enc_codelen() in one function to reduce calls.
* encoding.c (rb_enc_codepoint): compatibility function.
* sprintf.c (rb_str_format): use rb_enc_codepoint_len().
* string.c (rb_str_inspect, rb_str_upcase_bang,
rb_str_downcase_bang, rb_str_capitalize_bang,
rb_str_swapcase_bang, trnext, tr_trans, rb_str_delete_bang,
rb_str_squeeze_bang, rb_str_count, rb_str_split_m,
rb_str_each_line, rb_str_each_codepoint, rb_str_lstrip_bang,
sym_printable): ditto.
* transcode.c (make_econv_exception): use rb_enc_mbc_to_codepoint()
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23493 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-05-19 20:59:22 +04:00
|
|
|
c = rb_enc_codepoint_len(RSTRING_PTR(tmp), RSTRING_END(tmp), &n, enc);
|
2011-08-22 18:48:10 +04:00
|
|
|
RB_GC_GUARD(tmp);
|
* 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
|
|
|
}
|
|
|
|
else {
|
* 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
|
|
|
c = NUM2INT(val);
|
* encoding.c (rb_enc_codepoint_len): combine rb_enc_codepoint()
and rb_enc_codelen() in one function to reduce calls.
* encoding.c (rb_enc_codepoint): compatibility function.
* sprintf.c (rb_str_format): use rb_enc_codepoint_len().
* string.c (rb_str_inspect, rb_str_upcase_bang,
rb_str_downcase_bang, rb_str_capitalize_bang,
rb_str_swapcase_bang, trnext, tr_trans, rb_str_delete_bang,
rb_str_squeeze_bang, rb_str_count, rb_str_split_m,
rb_str_each_line, rb_str_each_codepoint, rb_str_lstrip_bang,
sym_printable): ditto.
* transcode.c (make_econv_exception): use rb_enc_mbc_to_codepoint()
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23493 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2009-05-19 20:59:22 +04:00
|
|
|
n = rb_enc_codelen(c, enc);
|
* 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
|
|
|
}
|
2008-10-09 22:41:35 +04:00
|
|
|
if (n <= 0) {
|
* 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
|
|
|
rb_raise(rb_eArgError, "invalid character");
|
* 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
|
|
|
}
|
2005-07-23 05:02:18 +04:00
|
|
|
if (!(flags & FWIDTH)) {
|
* 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
|
|
|
CHECK(n);
|
|
|
|
rb_enc_mbcput(c, &buf[blen], enc);
|
|
|
|
blen += n;
|
|
|
|
}
|
|
|
|
else if ((flags & FMINUS)) {
|
|
|
|
CHECK(n);
|
|
|
|
rb_enc_mbcput(c, &buf[blen], enc);
|
|
|
|
blen += n;
|
2016-12-17 21:04:30 +03:00
|
|
|
if (width > 1) FILL(' ', width-1);
|
2005-07-23 05:02:18 +04:00
|
|
|
}
|
|
|
|
else {
|
2016-12-17 21:04:30 +03:00
|
|
|
if (width > 1) FILL(' ', width-1);
|
* 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
|
|
|
CHECK(n);
|
|
|
|
rb_enc_mbcput(c, &buf[blen], enc);
|
|
|
|
blen += n;
|
2005-07-23 05:02:18 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 's':
|
2003-07-03 15:02:53 +04:00
|
|
|
case 'p':
|
2008-09-30 12:01:11 +04:00
|
|
|
format_s:
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
VALUE arg = GETARG();
|
* 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
|
|
|
long len, slen;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2015-06-26 11:58:00 +03:00
|
|
|
if (*p == 'p') {
|
|
|
|
str = rb_inspect(arg);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
str = rb_obj_as_string(arg);
|
|
|
|
}
|
2006-08-31 14:47:44 +04:00
|
|
|
len = RSTRING_LEN(str);
|
2009-04-13 06:40:20 +04:00
|
|
|
rb_str_set_len(result, blen);
|
2009-04-13 12:21:41 +04:00
|
|
|
if (coderange != ENC_CODERANGE_BROKEN && scanned < blen) {
|
|
|
|
int cr = coderange;
|
2010-02-08 18:08:15 +03:00
|
|
|
scanned += rb_str_coderange_scan_restartable(buf+scanned, buf+blen, enc, &cr);
|
2009-04-13 12:21:41 +04:00
|
|
|
ENC_CODERANGE_SET(result,
|
|
|
|
(cr == ENC_CODERANGE_UNKNOWN ?
|
|
|
|
ENC_CODERANGE_BROKEN : (coderange = cr)));
|
|
|
|
}
|
2009-08-13 07:03:20 +04:00
|
|
|
enc = rb_enc_check(result, str);
|
* 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
|
|
|
if (flags&(FPREC|FWIDTH)) {
|
|
|
|
slen = rb_enc_strlen(RSTRING_PTR(str),RSTRING_END(str),enc);
|
|
|
|
if (slen < 0) {
|
|
|
|
rb_raise(rb_eArgError, "invalid mbstring sequence");
|
|
|
|
}
|
2007-12-31 00:08:36 +03:00
|
|
|
if ((flags&FPREC) && (prec < slen)) {
|
* 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
|
|
|
char *p = rb_enc_nth(RSTRING_PTR(str), RSTRING_END(str),
|
|
|
|
prec, enc);
|
|
|
|
slen = prec;
|
|
|
|
len = p - RSTRING_PTR(str);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2007-12-31 00:08:36 +03:00
|
|
|
/* need to adjust multi-byte string pos */
|
|
|
|
if ((flags&FWIDTH) && (width > slen)) {
|
2009-09-23 08:17:16 +04:00
|
|
|
width -= (int)slen;
|
1998-01-16 15:13:05 +03:00
|
|
|
if (!(flags&FMINUS)) {
|
2017-03-19 15:46:31 +03:00
|
|
|
FILL(' ', width);
|
|
|
|
width = 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
* 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
|
|
|
CHECK(len);
|
2006-08-31 14:47:44 +04:00
|
|
|
memcpy(&buf[blen], RSTRING_PTR(str), len);
|
2011-08-22 18:48:10 +04:00
|
|
|
RB_GC_GUARD(str);
|
1998-01-16 15:13:05 +03:00
|
|
|
blen += len;
|
|
|
|
if (flags&FMINUS) {
|
2017-03-19 15:46:31 +03:00
|
|
|
FILL(' ', width);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2008-01-18 18:37:22 +03:00
|
|
|
rb_enc_associate(result, enc);
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-08-31 14:47:44 +04:00
|
|
|
PUSH(RSTRING_PTR(str), len);
|
2011-08-22 18:48:10 +04:00
|
|
|
RB_GC_GUARD(str);
|
2007-12-17 08:01:47 +03:00
|
|
|
rb_enc_associate(result, enc);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
1999-01-20 07:59:39 +03:00
|
|
|
case 'd':
|
|
|
|
case 'i':
|
1998-01-16 15:13:05 +03:00
|
|
|
case 'o':
|
|
|
|
case 'x':
|
1999-01-20 07:59:39 +03:00
|
|
|
case 'X':
|
|
|
|
case 'b':
|
2001-10-22 10:48:18 +04:00
|
|
|
case 'B':
|
1998-01-16 15:13:05 +03:00
|
|
|
case 'u':
|
|
|
|
{
|
|
|
|
volatile VALUE val = GETARG();
|
2013-06-11 16:06:40 +04:00
|
|
|
int valsign;
|
2017-04-28 05:05:54 +03:00
|
|
|
char nbuf[BIT_DIGITS(SIZEOF_LONG*CHAR_BIT)+2], *s;
|
2006-06-20 22:02:17 +04:00
|
|
|
const char *prefix = 0;
|
2008-01-24 13:29:22 +03:00
|
|
|
int sign = 0, dots = 0;
|
1999-01-20 07:59:39 +03:00
|
|
|
char sc = 0;
|
2003-01-16 21:48:20 +03:00
|
|
|
long v = 0;
|
1999-01-20 07:59:39 +03:00
|
|
|
int base, bignum = 0;
|
2011-04-25 11:56:42 +04:00
|
|
|
int len;
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
switch (*p) {
|
|
|
|
case 'd':
|
|
|
|
case 'i':
|
2007-07-16 20:58:58 +04:00
|
|
|
case 'u':
|
1999-01-20 07:59:39 +03:00
|
|
|
sign = 1; break;
|
|
|
|
case 'o':
|
|
|
|
case 'x':
|
|
|
|
case 'X':
|
|
|
|
case 'b':
|
2001-10-22 10:48:18 +04:00
|
|
|
case 'B':
|
1999-01-20 07:59:39 +03:00
|
|
|
if (flags&(FPLUS|FSPACE)) sign = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (flags & FSHARP) {
|
2003-01-16 21:48:20 +03:00
|
|
|
switch (*p) {
|
|
|
|
case 'o':
|
|
|
|
prefix = "0"; break;
|
|
|
|
case 'x':
|
|
|
|
prefix = "0x"; break;
|
|
|
|
case 'X':
|
|
|
|
prefix = "0X"; break;
|
|
|
|
case 'b':
|
|
|
|
prefix = "0b"; break;
|
|
|
|
case 'B':
|
|
|
|
prefix = "0B"; break;
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
bin_retry:
|
|
|
|
switch (TYPE(val)) {
|
|
|
|
case T_FLOAT:
|
2017-03-09 05:31:23 +03:00
|
|
|
if (FIXABLE(RFLOAT_VALUE(val))) {
|
|
|
|
val = LONG2FIX((long)RFLOAT_VALUE(val));
|
|
|
|
goto bin_retry;
|
|
|
|
}
|
|
|
|
val = rb_dbl2big(RFLOAT_VALUE(val));
|
1999-01-20 07:59:39 +03:00
|
|
|
if (FIXNUM_P(val)) goto bin_retry;
|
1998-01-16 15:13:05 +03:00
|
|
|
bignum = 1;
|
|
|
|
break;
|
|
|
|
case T_STRING:
|
2009-09-23 08:17:16 +04:00
|
|
|
val = rb_str_to_inum(val, 0, TRUE);
|
1998-01-16 15:13:05 +03:00
|
|
|
goto bin_retry;
|
|
|
|
case T_BIGNUM:
|
|
|
|
bignum = 1;
|
|
|
|
break;
|
2000-01-05 07:41:21 +03:00
|
|
|
case T_FIXNUM:
|
|
|
|
v = FIX2LONG(val);
|
1998-01-16 15:13:05 +03:00
|
|
|
break;
|
2002-04-10 12:45:26 +04:00
|
|
|
default:
|
2002-06-04 11:34:19 +04:00
|
|
|
val = rb_Integer(val);
|
|
|
|
goto bin_retry;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2003-01-16 21:48:20 +03:00
|
|
|
switch (*p) {
|
|
|
|
case 'o':
|
|
|
|
base = 8; break;
|
|
|
|
case 'x':
|
|
|
|
case 'X':
|
|
|
|
base = 16; break;
|
|
|
|
case 'b':
|
|
|
|
case 'B':
|
|
|
|
base = 2; break;
|
|
|
|
case 'u':
|
|
|
|
case 'd':
|
|
|
|
case 'i':
|
|
|
|
default:
|
|
|
|
base = 10; break;
|
|
|
|
}
|
2004-02-18 04:24:13 +03:00
|
|
|
|
2013-06-11 16:06:40 +04:00
|
|
|
if (base != 10) {
|
|
|
|
int numbits = ffs(base)-1;
|
|
|
|
size_t abs_nlz_bits;
|
|
|
|
size_t numdigits = rb_absint_numwords(val, numbits, &abs_nlz_bits);
|
|
|
|
long i;
|
|
|
|
if (INT_MAX-1 < numdigits) /* INT_MAX is used because rb_long2int is used later. */
|
|
|
|
rb_raise(rb_eArgError, "size too big");
|
|
|
|
if (sign) {
|
|
|
|
if (numdigits == 0)
|
|
|
|
numdigits = 1;
|
|
|
|
tmp = rb_str_new(NULL, numdigits);
|
|
|
|
valsign = rb_integer_pack(val, RSTRING_PTR(tmp), RSTRING_LEN(tmp),
|
|
|
|
1, CHAR_BIT-numbits, INTEGER_PACK_BIG_ENDIAN);
|
|
|
|
for (i = 0; i < RSTRING_LEN(tmp); i++)
|
|
|
|
RSTRING_PTR(tmp)[i] = ruby_digitmap[((unsigned char *)RSTRING_PTR(tmp))[i]];
|
|
|
|
s = RSTRING_PTR(tmp);
|
|
|
|
if (valsign < 0) {
|
|
|
|
sc = '-';
|
|
|
|
width--;
|
|
|
|
}
|
|
|
|
else if (flags & FPLUS) {
|
|
|
|
sc = '+';
|
|
|
|
width--;
|
|
|
|
}
|
|
|
|
else if (flags & FSPACE) {
|
|
|
|
sc = ' ';
|
|
|
|
width--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Following conditional "numdigits++" guarantees the
|
|
|
|
* most significant digit as
|
|
|
|
* - '1'(bin), '7'(oct) or 'f'(hex) for negative numbers
|
|
|
|
* - '0' for zero
|
|
|
|
* - not '0' for positive numbers.
|
|
|
|
*
|
|
|
|
* It also guarantees the most significant two
|
|
|
|
* digits will not be '11'(bin), '77'(oct), 'ff'(hex)
|
|
|
|
* or '00'. */
|
|
|
|
if (numdigits == 0 ||
|
|
|
|
((abs_nlz_bits != (size_t)(numbits-1) ||
|
|
|
|
!rb_absint_singlebit_p(val)) &&
|
2014-02-16 01:17:34 +04:00
|
|
|
(!bignum ? v < 0 : BIGNUM_NEGATIVE_P(val))))
|
2013-06-11 16:06:40 +04:00
|
|
|
numdigits++;
|
|
|
|
tmp = rb_str_new(NULL, numdigits);
|
2013-06-16 13:53:45 +04:00
|
|
|
valsign = rb_integer_pack(val, RSTRING_PTR(tmp), RSTRING_LEN(tmp),
|
|
|
|
1, CHAR_BIT-numbits, INTEGER_PACK_2COMP | INTEGER_PACK_BIG_ENDIAN);
|
2013-06-11 16:06:40 +04:00
|
|
|
for (i = 0; i < RSTRING_LEN(tmp); i++)
|
|
|
|
RSTRING_PTR(tmp)[i] = ruby_digitmap[((unsigned char *)RSTRING_PTR(tmp))[i]];
|
|
|
|
s = RSTRING_PTR(tmp);
|
|
|
|
dots = valsign < 0;
|
|
|
|
}
|
|
|
|
len = rb_long2int(RSTRING_END(tmp) - s);
|
|
|
|
}
|
|
|
|
else if (!bignum) {
|
|
|
|
valsign = 1;
|
|
|
|
if (v < 0) {
|
|
|
|
v = -v;
|
|
|
|
sc = '-';
|
|
|
|
width--;
|
|
|
|
valsign = -1;
|
|
|
|
}
|
|
|
|
else if (flags & FPLUS) {
|
|
|
|
sc = '+';
|
|
|
|
width--;
|
|
|
|
}
|
|
|
|
else if (flags & FSPACE) {
|
|
|
|
sc = ' ';
|
|
|
|
width--;
|
|
|
|
}
|
2017-04-28 08:08:44 +03:00
|
|
|
s = ruby_ultoa((unsigned long)v, nbuf + sizeof(nbuf), 10, 0);
|
2017-04-28 05:10:51 +03:00
|
|
|
len = (int)(nbuf + sizeof(nbuf) - s);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2004-02-18 04:24:13 +03:00
|
|
|
else {
|
2013-06-12 07:09:28 +04:00
|
|
|
tmp = rb_big2str(val, 10);
|
2013-06-11 16:06:40 +04:00
|
|
|
s = RSTRING_PTR(tmp);
|
|
|
|
valsign = 1;
|
|
|
|
if (s[0] == '-') {
|
|
|
|
s++;
|
|
|
|
sc = '-';
|
|
|
|
width--;
|
|
|
|
valsign = -1;
|
|
|
|
}
|
|
|
|
else if (flags & FPLUS) {
|
|
|
|
sc = '+';
|
|
|
|
width--;
|
|
|
|
}
|
|
|
|
else if (flags & FSPACE) {
|
|
|
|
sc = ' ';
|
|
|
|
width--;
|
|
|
|
}
|
2009-09-23 08:17:16 +04:00
|
|
|
len = rb_long2int(RSTRING_END(tmp) - s);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2008-01-24 13:29:22 +03:00
|
|
|
if (dots) {
|
|
|
|
prec -= 2;
|
|
|
|
width -= 2;
|
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
|
|
|
|
if (*p == 'X') {
|
|
|
|
char *pp = s;
|
* 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
|
|
|
int c;
|
2007-11-27 20:42:12 +03:00
|
|
|
while ((c = (int)(unsigned char)*pp) != 0) {
|
* 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
|
|
|
*pp = rb_enc_toupper(c, enc);
|
1999-01-20 07:59:39 +03:00
|
|
|
pp++;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
}
|
2008-03-01 03:38:33 +03:00
|
|
|
if (prefix && !prefix[1]) { /* octal */
|
2010-10-15 12:31:58 +04:00
|
|
|
if (dots) {
|
|
|
|
prefix = 0;
|
|
|
|
}
|
|
|
|
else if (len == 1 && *s == '0') {
|
2008-03-01 03:38:33 +03:00
|
|
|
len = 0;
|
|
|
|
if (flags & FPREC) prec--;
|
2008-01-27 16:33:41 +03:00
|
|
|
}
|
2010-10-15 12:31:58 +04:00
|
|
|
else if ((flags & FPREC) && (prec > len)) {
|
2008-01-27 16:33:41 +03:00
|
|
|
prefix = 0;
|
|
|
|
}
|
|
|
|
}
|
2008-03-01 03:38:33 +03:00
|
|
|
else if (len == 1 && *s == '0') {
|
|
|
|
prefix = 0;
|
|
|
|
}
|
2008-01-27 16:33:41 +03:00
|
|
|
if (prefix) {
|
2009-09-23 08:17:16 +04:00
|
|
|
width -= (int)strlen(prefix);
|
2008-01-27 16:33:41 +03:00
|
|
|
}
|
2008-01-27 17:33:37 +03:00
|
|
|
if ((flags & (FZERO|FMINUS|FPREC)) == FZERO) {
|
2002-12-10 09:23:44 +03:00
|
|
|
prec = width;
|
|
|
|
width = 0;
|
|
|
|
}
|
|
|
|
else {
|
2008-01-27 17:33:37 +03:00
|
|
|
if (prec < len) {
|
2008-03-01 03:38:33 +03:00
|
|
|
if (!prefix && prec == 0 && len == 1 && *s == '0') len = 0;
|
|
|
|
prec = len;
|
2008-01-27 17:33:37 +03:00
|
|
|
}
|
2002-12-10 09:23:44 +03:00
|
|
|
width -= prec;
|
|
|
|
}
|
|
|
|
if (!(flags&FMINUS)) {
|
2017-03-19 15:46:31 +03:00
|
|
|
FILL(' ', width);
|
|
|
|
width = 0;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
1999-01-20 07:59:39 +03:00
|
|
|
if (sc) PUSH(&sc, 1);
|
2008-01-27 16:33:41 +03:00
|
|
|
if (prefix) {
|
2009-09-23 08:17:16 +04:00
|
|
|
int plen = (int)strlen(prefix);
|
2001-01-10 12:52:13 +03:00
|
|
|
PUSH(prefix, plen);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2008-01-26 17:46:36 +03:00
|
|
|
if (dots) PUSH("..", 2);
|
2017-03-19 15:46:31 +03:00
|
|
|
if (prec > len) {
|
2017-04-28 05:05:54 +03:00
|
|
|
CHECK(prec - len);
|
2017-03-19 15:46:31 +03:00
|
|
|
if (!sign && valsign < 0) {
|
|
|
|
char c = sign_bits(base, p);
|
|
|
|
FILL_(c, prec - len);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2017-03-19 15:46:31 +03:00
|
|
|
else if ((flags & (FMINUS|FPREC)) != FMINUS) {
|
|
|
|
FILL_('0', prec - len);
|
2002-12-10 09:23:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
PUSH(s, len);
|
2011-08-22 18:48:10 +04:00
|
|
|
RB_GC_GUARD(tmp);
|
2017-03-19 15:46:31 +03:00
|
|
|
FILL(' ', width);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'f':
|
2014-08-18 12:06:48 +04:00
|
|
|
{
|
|
|
|
VALUE val = GETARG(), num, den;
|
|
|
|
int sign = (flags&FPLUS) ? 1 : 0, zero = 0;
|
2016-03-28 02:19:50 +03:00
|
|
|
long len, fill;
|
2016-05-18 04:17:43 +03:00
|
|
|
if (RB_INTEGER_TYPE_P(val)) {
|
2016-01-14 10:12:42 +03:00
|
|
|
den = INT2FIX(1);
|
|
|
|
num = val;
|
|
|
|
}
|
|
|
|
else if (RB_TYPE_P(val, T_RATIONAL)) {
|
|
|
|
den = rb_rational_den(val);
|
|
|
|
num = rb_rational_num(val);
|
|
|
|
}
|
|
|
|
else {
|
2014-08-18 12:06:48 +04:00
|
|
|
nextvalue = val;
|
|
|
|
goto float_value;
|
|
|
|
}
|
|
|
|
if (!(flags&FPREC)) prec = default_float_precision;
|
|
|
|
if (FIXNUM_P(num)) {
|
|
|
|
if ((SIGNED_VALUE)num < 0) {
|
|
|
|
long n = -FIX2LONG(num);
|
|
|
|
num = LONG2FIX(n);
|
|
|
|
sign = -1;
|
|
|
|
}
|
|
|
|
}
|
2016-03-27 06:13:39 +03:00
|
|
|
else if (BIGNUM_NEGATIVE_P(num)) {
|
2014-08-18 12:06:48 +04:00
|
|
|
sign = -1;
|
2016-03-27 06:13:39 +03:00
|
|
|
num = rb_big_uminus(num);
|
2014-08-18 12:06:48 +04:00
|
|
|
}
|
2016-03-27 06:13:39 +03:00
|
|
|
if (den != INT2FIX(1)) {
|
|
|
|
num = rb_int_mul(num, rb_int_positive_pow(10, prec));
|
|
|
|
num = rb_int_plus(num, rb_int_idiv(den, INT2FIX(2)));
|
|
|
|
num = rb_int_idiv(num, den);
|
2014-08-18 12:06:48 +04:00
|
|
|
}
|
|
|
|
else if (prec >= 0) {
|
|
|
|
zero = prec;
|
|
|
|
}
|
2016-03-27 06:13:39 +03:00
|
|
|
val = rb_int2str(num, 10);
|
2014-08-18 12:06:48 +04:00
|
|
|
len = RSTRING_LEN(val) + zero;
|
2016-03-28 02:18:52 +03:00
|
|
|
if (prec >= len) len = prec + 1; /* integer part 0 */
|
2014-08-18 12:06:48 +04:00
|
|
|
if (sign || (flags&FSPACE)) ++len;
|
|
|
|
if (prec > 0) ++len; /* period */
|
2016-03-28 02:19:50 +03:00
|
|
|
fill = width > len ? width - len : 0;
|
2017-04-28 05:05:54 +03:00
|
|
|
CHECK(fill + len);
|
|
|
|
if (fill && !(flags&(FMINUS|FZERO))) {
|
2016-03-28 02:19:50 +03:00
|
|
|
FILL_(' ', fill);
|
|
|
|
}
|
2014-09-15 03:13:36 +04:00
|
|
|
if (sign || (flags&FSPACE)) {
|
|
|
|
buf[blen++] = sign > 0 ? '+' : sign < 0 ? '-' : ' ';
|
2016-03-28 02:19:50 +03:00
|
|
|
}
|
2017-04-28 05:05:54 +03:00
|
|
|
if (fill && (flags&(FMINUS|FZERO)) == FZERO) {
|
2016-03-28 02:19:50 +03:00
|
|
|
FILL_('0', fill);
|
2014-08-18 12:06:48 +04:00
|
|
|
}
|
|
|
|
len = RSTRING_LEN(val) + zero;
|
|
|
|
t = RSTRING_PTR(val);
|
2014-09-15 03:13:36 +04:00
|
|
|
if (len > prec) {
|
2016-03-28 02:19:50 +03:00
|
|
|
PUSH_(t, len - prec);
|
2014-09-15 03:13:36 +04:00
|
|
|
}
|
|
|
|
else {
|
2014-08-18 12:06:48 +04:00
|
|
|
buf[blen++] = '0';
|
2014-09-15 03:13:36 +04:00
|
|
|
}
|
|
|
|
if (prec > 0) {
|
|
|
|
buf[blen++] = '.';
|
|
|
|
}
|
|
|
|
if (zero) {
|
2016-03-28 02:19:50 +03:00
|
|
|
FILL_('0', zero);
|
2014-09-15 03:13:36 +04:00
|
|
|
}
|
|
|
|
else if (prec > len) {
|
2016-03-28 02:19:50 +03:00
|
|
|
FILL_('0', prec - len);
|
|
|
|
PUSH_(t, len);
|
2014-09-15 03:13:36 +04:00
|
|
|
}
|
2014-08-18 12:06:48 +04:00
|
|
|
else if (prec > 0) {
|
2016-03-28 02:19:50 +03:00
|
|
|
PUSH_(t + len - prec, prec);
|
2014-09-15 03:13:36 +04:00
|
|
|
}
|
2016-03-28 02:19:50 +03:00
|
|
|
if (fill && (flags&FMINUS)) {
|
|
|
|
FILL_(' ', fill);
|
2014-08-18 12:06:48 +04:00
|
|
|
}
|
|
|
|
RB_GC_GUARD(val);
|
|
|
|
break;
|
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
case 'g':
|
1999-08-13 09:45:20 +04:00
|
|
|
case 'G':
|
1998-01-16 15:13:05 +03:00
|
|
|
case 'e':
|
1999-01-20 07:59:39 +03:00
|
|
|
case 'E':
|
2014-08-18 12:06:48 +04:00
|
|
|
/* TODO: rational support */
|
2010-04-01 08:32:57 +04:00
|
|
|
case 'a':
|
|
|
|
case 'A':
|
2014-08-18 12:06:48 +04:00
|
|
|
float_value:
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
|
|
|
VALUE val = GETARG();
|
|
|
|
double fval;
|
|
|
|
|
* include/ruby/ruby.h: introduce 2 macros:
RFLOAT_VALUE(v), DOUBLE2NUM(dbl).
Rename RFloat#value -> RFloat#double_value.
Do not touch RFloat#double_value directly.
* bignum.c, insns.def, marshal.c, math.c, numeric.c, object.c,
pack.c, parse.y, process.c, random.c, sprintf.c, string.c,
time.c: apply above changes.
* ext/dl/mkcallback.rb, ext/json/ext/generator/generator.c:
ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13913 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2007-11-13 19:00:53 +03:00
|
|
|
fval = RFLOAT_VALUE(rb_Float(val));
|
2021-08-27 04:52:02 +03:00
|
|
|
if (!isfinite(fval)) {
|
2006-06-20 22:02:17 +04:00
|
|
|
const char *expr;
|
2017-04-28 14:42:58 +03:00
|
|
|
int need;
|
2017-04-23 04:04:40 +03:00
|
|
|
int elen;
|
|
|
|
char sign = '\0';
|
2004-06-22 14:28:12 +04:00
|
|
|
|
2008-03-06 09:11:43 +03:00
|
|
|
if (isnan(fval)) {
|
2004-06-22 14:28:12 +04:00
|
|
|
expr = "NaN";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
expr = "Inf";
|
|
|
|
}
|
2009-09-23 08:17:16 +04:00
|
|
|
need = (int)strlen(expr);
|
2017-04-23 04:04:40 +03:00
|
|
|
elen = need;
|
|
|
|
if (!isnan(fval) && fval < 0.0)
|
|
|
|
sign = '-';
|
|
|
|
else if (flags & (FPLUS|FSPACE))
|
|
|
|
sign = (flags & FPLUS) ? '+' : ' ';
|
|
|
|
if (sign)
|
|
|
|
++need;
|
2004-06-22 14:28:12 +04:00
|
|
|
if ((flags & FWIDTH) && need < width)
|
|
|
|
need = width;
|
|
|
|
|
2017-04-23 04:04:40 +03:00
|
|
|
FILL(' ', need);
|
2004-06-22 14:28:12 +04:00
|
|
|
if (flags & FMINUS) {
|
2017-04-23 04:04:40 +03:00
|
|
|
if (sign)
|
|
|
|
buf[blen - need--] = sign;
|
|
|
|
memcpy(&buf[blen - need], expr, elen);
|
2004-06-22 18:38:21 +04:00
|
|
|
}
|
2004-06-22 14:28:12 +04:00
|
|
|
else {
|
2017-04-23 04:04:40 +03:00
|
|
|
if (sign)
|
|
|
|
buf[blen - elen - 1] = sign;
|
|
|
|
memcpy(&buf[blen - elen], expr, elen);
|
2004-06-22 14:28:12 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2017-04-28 05:10:51 +03:00
|
|
|
else {
|
|
|
|
int cr = ENC_CODERANGE(result);
|
|
|
|
char fbuf[2*BIT_DIGITS(SIZEOF_INT*CHAR_BIT)+10];
|
|
|
|
char *fmt = fmt_setup(fbuf, sizeof(fbuf), *p, flags, width, prec);
|
|
|
|
rb_str_set_len(result, blen);
|
|
|
|
rb_str_catf(result, fmt, fval);
|
|
|
|
ENC_CODERANGE_SET(result, cr);
|
|
|
|
bsiz = rb_str_capacity(result);
|
|
|
|
RSTRING_GETMEM(result, buf, blen);
|
1999-08-13 09:45:20 +04:00
|
|
|
}
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
flags = FNONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
sprint_exit:
|
2017-01-31 03:41:56 +03:00
|
|
|
rb_str_tmp_frozen_release(orig, fmt);
|
2007-12-31 12:06:45 +03:00
|
|
|
/* XXX - We cannot validate the number of arguments if (digit)$ style used.
|
1999-11-11 07:08:26 +03:00
|
|
|
*/
|
2005-06-07 12:22:42 +04:00
|
|
|
if (posarg >= 0 && nextarg < argc) {
|
|
|
|
const char *mesg = "too many arguments for format string";
|
2008-07-01 15:59:50 +04:00
|
|
|
if (RTEST(ruby_debug)) rb_raise(rb_eArgError, "%s", mesg);
|
|
|
|
if (RTEST(ruby_verbose)) rb_warn("%s", mesg);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2002-10-16 17:44:19 +04:00
|
|
|
rb_str_resize(result, blen);
|
1998-01-16 15:13:05 +03:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2017-04-28 05:10:51 +03:00
|
|
|
static char *
|
2008-12-22 06:05:20 +03:00
|
|
|
fmt_setup(char *buf, size_t size, int c, int flags, int width, int prec)
|
1998-01-16 15:13:05 +03:00
|
|
|
{
|
2017-04-28 05:10:51 +03:00
|
|
|
buf += size;
|
|
|
|
*--buf = '\0';
|
|
|
|
*--buf = c;
|
1998-01-16 15:13:05 +03:00
|
|
|
|
2017-04-28 05:10:51 +03:00
|
|
|
if (flags & FPREC) {
|
2017-04-28 08:08:44 +03:00
|
|
|
buf = ruby_ultoa(prec, buf, 10, 0);
|
2017-04-28 05:10:51 +03:00
|
|
|
*--buf = '.';
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2017-04-28 05:10:51 +03:00
|
|
|
if (flags & FWIDTH) {
|
2017-04-28 08:08:44 +03:00
|
|
|
buf = ruby_ultoa(width, buf, 10, 0);
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
|
|
|
|
2017-04-28 05:10:51 +03:00
|
|
|
if (flags & FSPACE) *--buf = ' ';
|
|
|
|
if (flags & FZERO) *--buf = '0';
|
|
|
|
if (flags & FMINUS) *--buf = '-';
|
|
|
|
if (flags & FPLUS) *--buf = '+';
|
|
|
|
if (flags & FSHARP) *--buf = '#';
|
|
|
|
*--buf = '%';
|
|
|
|
return buf;
|
1998-01-16 15:13:05 +03:00
|
|
|
}
|
2005-07-23 05:02:18 +04:00
|
|
|
|
|
|
|
#undef FILE
|
|
|
|
#define FILE rb_printf_buffer
|
|
|
|
#define __sbuf rb_printf_sbuf
|
|
|
|
#define __sFILE rb_printf_sfile
|
|
|
|
#undef feof
|
|
|
|
#undef ferror
|
2005-07-28 16:49:31 +04:00
|
|
|
#undef clearerr
|
2005-07-23 05:02:18 +04:00
|
|
|
#undef fileno
|
2021-07-22 05:25:48 +03:00
|
|
|
#if SIZEOF_LONG < SIZEOF_LONG_LONG
|
|
|
|
# if SIZEOF_LONG_LONG == SIZEOF_VOIDP
|
|
|
|
/* actually this doesn't mean a pointer is strictly 64bit, but just
|
|
|
|
* quad_t size */
|
|
|
|
# define _HAVE_LLP64_
|
2005-07-27 11:27:19 +04:00
|
|
|
# endif
|
2010-12-10 04:50:51 +03:00
|
|
|
# define _HAVE_SANE_QUAD_
|
|
|
|
# define quad_t LONG_LONG
|
|
|
|
# define u_quad_t unsigned LONG_LONG
|
2005-07-27 11:27:19 +04:00
|
|
|
#endif
|
2008-08-12 11:06:33 +04:00
|
|
|
#define FLOATING_POINT 1
|
2008-10-24 22:56:31 +04:00
|
|
|
#define BSD__dtoa ruby_dtoa
|
2010-07-21 06:55:10 +04:00
|
|
|
#define BSD__hdtoa ruby_hdtoa
|
2014-11-04 06:51:33 +03:00
|
|
|
#ifdef RUBY_PRI_VALUE_MARK
|
|
|
|
# define PRI_EXTRA_MARK RUBY_PRI_VALUE_MARK
|
|
|
|
#endif
|
2015-02-13 10:07:39 +03:00
|
|
|
#define lower_hexdigits (ruby_hexdigits+0)
|
|
|
|
#define upper_hexdigits (ruby_hexdigits+16)
|
2010-04-04 05:10:53 +04:00
|
|
|
#include "vsnprintf.c"
|
2005-07-23 05:02:18 +04:00
|
|
|
|
2017-04-28 05:10:51 +03:00
|
|
|
static char *
|
2017-04-28 08:08:44 +03:00
|
|
|
ruby_ultoa(unsigned long val, char *endp, int base, int flags)
|
2017-04-28 05:10:51 +03:00
|
|
|
{
|
|
|
|
const char *xdigs = lower_hexdigits;
|
|
|
|
int octzero = flags & FSHARP;
|
|
|
|
return BSD__ultoa(val, endp, base, octzero, xdigs);
|
|
|
|
}
|
|
|
|
|
2017-09-09 12:16:59 +03:00
|
|
|
static int ruby_do_vsnprintf(char *str, size_t n, const char *fmt, va_list ap);
|
|
|
|
|
2015-02-22 04:40:40 +03:00
|
|
|
int
|
|
|
|
ruby_vsnprintf(char *str, size_t n, const char *fmt, va_list ap)
|
2017-09-09 12:16:59 +03:00
|
|
|
{
|
|
|
|
if (str && (ssize_t)n < 1)
|
|
|
|
return (EOF);
|
|
|
|
return ruby_do_vsnprintf(str, n, fmt, ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
ruby_do_vsnprintf(char *str, size_t n, const char *fmt, va_list ap)
|
2015-02-22 04:40:40 +03:00
|
|
|
{
|
2018-02-09 06:15:20 +03:00
|
|
|
ssize_t ret;
|
2015-02-22 04:40:40 +03:00
|
|
|
rb_printf_buffer f;
|
|
|
|
|
|
|
|
f._flags = __SWR | __SSTR;
|
|
|
|
f._bf._base = f._p = (unsigned char *)str;
|
2017-09-09 12:16:59 +03:00
|
|
|
f._bf._size = f._w = str ? (n - 1) : 0;
|
2015-02-22 04:40:40 +03:00
|
|
|
f.vwrite = BSD__sfvwrite;
|
|
|
|
f.vextra = 0;
|
2018-02-09 06:15:20 +03:00
|
|
|
ret = BSD_vfprintf(&f, fmt, ap);
|
2017-09-09 12:16:59 +03:00
|
|
|
if (str) *f._p = 0;
|
2018-02-09 06:15:20 +03:00
|
|
|
#if SIZEOF_SIZE_T > SIZEOF_INT
|
|
|
|
if (n > INT_MAX) return INT_MAX;
|
|
|
|
#endif
|
|
|
|
return (int)ret;
|
2015-02-22 04:40:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
ruby_snprintf(char *str, size_t n, char const *fmt, ...)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
va_list ap;
|
|
|
|
|
2017-09-09 12:16:59 +03:00
|
|
|
if (str && (ssize_t)n < 1)
|
2015-02-22 04:40:40 +03:00
|
|
|
return (EOF);
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
2017-09-09 12:16:59 +03:00
|
|
|
ret = ruby_do_vsnprintf(str, n, fmt, ap);
|
2015-02-22 04:40:40 +03:00
|
|
|
va_end(ap);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-05-24 18:36:54 +04:00
|
|
|
typedef struct {
|
|
|
|
rb_printf_buffer base;
|
|
|
|
volatile VALUE value;
|
|
|
|
} rb_printf_buffer_extra;
|
|
|
|
|
2005-07-23 05:02:18 +04:00
|
|
|
static int
|
* 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__sfvwrite(register rb_printf_buffer *fp, register struct __suio *uio)
|
2005-07-23 05:02:18 +04:00
|
|
|
{
|
|
|
|
struct __siov *iov;
|
|
|
|
VALUE result = (VALUE)fp->_bf._base;
|
2005-07-28 06:33:28 +04:00
|
|
|
char *buf = (char*)fp->_p;
|
2017-03-20 04:33:08 +03:00
|
|
|
long len, n;
|
|
|
|
long blen = buf - RSTRING_PTR(result), bsiz = fp->_w;
|
2005-07-23 05:02:18 +04:00
|
|
|
|
|
|
|
if (RBASIC(result)->klass) {
|
|
|
|
rb_raise(rb_eRuntimeError, "rb_vsprintf reentered");
|
|
|
|
}
|
2017-03-20 04:33:08 +03:00
|
|
|
if (uio->uio_resid == 0)
|
2005-07-23 05:02:18 +04:00
|
|
|
return 0;
|
2017-03-20 04:33:08 +03:00
|
|
|
#if SIZE_MAX > LONG_MAX
|
|
|
|
if (uio->uio_resid >= LONG_MAX)
|
|
|
|
rb_raise(rb_eRuntimeError, "too big string");
|
|
|
|
#endif
|
|
|
|
len = (long)uio->uio_resid;
|
2005-07-23 05:02:18 +04:00
|
|
|
CHECK(len);
|
2005-08-22 20:21:27 +04:00
|
|
|
buf += blen;
|
2005-07-23 05:02:18 +04:00
|
|
|
fp->_w = bsiz;
|
|
|
|
for (iov = uio->uio_iov; len > 0; ++iov) {
|
|
|
|
MEMCPY(buf, iov->iov_base, char, n = iov->iov_len);
|
|
|
|
buf += n;
|
|
|
|
len -= n;
|
|
|
|
}
|
|
|
|
fp->_p = (unsigned char *)buf;
|
2012-08-15 11:23:38 +04:00
|
|
|
rb_str_set_len(result, buf - RSTRING_PTR(result));
|
2005-07-23 05:02:18 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-09-28 19:11:41 +03:00
|
|
|
static const char *
|
2012-05-24 20:15:42 +04:00
|
|
|
ruby__sfvextra(rb_printf_buffer *fp, size_t valsize, void *valp, long *sz, int sign)
|
2012-05-24 18:36:54 +04:00
|
|
|
{
|
|
|
|
VALUE value, result = (VALUE)fp->_bf._base;
|
|
|
|
rb_encoding *enc;
|
|
|
|
char *cp;
|
|
|
|
|
|
|
|
if (valsize != sizeof(VALUE)) return 0;
|
|
|
|
value = *(VALUE *)valp;
|
|
|
|
if (RBASIC(result)->klass) {
|
|
|
|
rb_raise(rb_eRuntimeError, "rb_vsprintf reentered");
|
|
|
|
}
|
2012-05-24 20:15:42 +04:00
|
|
|
if (sign == '+') {
|
2015-09-28 05:40:46 +03:00
|
|
|
if (RB_TYPE_P(value, T_CLASS)) {
|
|
|
|
# define LITERAL(str) (*sz = rb_strlen_lit(str), str)
|
|
|
|
|
|
|
|
if (value == rb_cNilClass) {
|
|
|
|
return LITERAL("nil");
|
|
|
|
}
|
2016-05-17 09:53:48 +03:00
|
|
|
else if (value == rb_cInteger) {
|
|
|
|
return LITERAL("Integer");
|
2015-09-28 05:40:46 +03:00
|
|
|
}
|
|
|
|
else if (value == rb_cSymbol) {
|
|
|
|
return LITERAL("Symbol");
|
|
|
|
}
|
|
|
|
else if (value == rb_cTrueClass) {
|
|
|
|
return LITERAL("true");
|
|
|
|
}
|
|
|
|
else if (value == rb_cFalseClass) {
|
|
|
|
return LITERAL("false");
|
|
|
|
}
|
|
|
|
# undef LITERAL
|
|
|
|
}
|
2012-05-24 20:15:42 +04:00
|
|
|
value = rb_inspect(value);
|
|
|
|
}
|
2018-03-14 05:35:51 +03:00
|
|
|
else if (SYMBOL_P(value)) {
|
|
|
|
value = rb_sym2str(value);
|
|
|
|
if (sign == ' ' && !rb_str_symname_p(value)) {
|
2021-07-24 08:24:18 +03:00
|
|
|
value = rb_str_escape(value);
|
2018-03-14 05:35:51 +03:00
|
|
|
}
|
|
|
|
}
|
2012-05-24 20:15:42 +04:00
|
|
|
else {
|
|
|
|
value = rb_obj_as_string(value);
|
2013-07-30 12:16:20 +04:00
|
|
|
if (sign == ' ') value = QUOTE(value);
|
2012-05-24 20:15:42 +04:00
|
|
|
}
|
2012-05-24 18:36:54 +04:00
|
|
|
enc = rb_enc_compatible(result, value);
|
|
|
|
if (enc) {
|
|
|
|
rb_enc_associate(result, enc);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
enc = rb_enc_get(result);
|
|
|
|
value = rb_str_conv_enc_opts(value, rb_enc_get(value), enc,
|
|
|
|
ECONV_UNDEF_REPLACE|ECONV_INVALID_REPLACE,
|
|
|
|
Qnil);
|
|
|
|
*(volatile VALUE *)valp = value;
|
|
|
|
}
|
|
|
|
StringValueCStr(value);
|
|
|
|
RSTRING_GETMEM(value, cp, *sz);
|
|
|
|
((rb_printf_buffer_extra *)fp)->value = value;
|
|
|
|
return cp;
|
|
|
|
}
|
|
|
|
|
2005-07-23 05:02:18 +04:00
|
|
|
VALUE
|
2014-06-03 00:23:47 +04:00
|
|
|
rb_enc_vsprintf(rb_encoding *enc, const char *fmt, va_list ap)
|
2005-07-23 05:02:18 +04:00
|
|
|
{
|
2012-05-24 18:36:54 +04:00
|
|
|
rb_printf_buffer_extra buffer;
|
|
|
|
#define f buffer.base
|
2005-07-23 05:02:18 +04:00
|
|
|
VALUE result;
|
|
|
|
|
|
|
|
f._flags = __SWR | __SSTR;
|
|
|
|
f._bf._size = 0;
|
|
|
|
f._w = 120;
|
|
|
|
result = rb_str_buf_new(f._w);
|
2012-01-13 13:41:22 +04:00
|
|
|
if (enc) {
|
2012-01-14 07:02:57 +04:00
|
|
|
if (rb_enc_mbminlen(enc) > 1) {
|
|
|
|
/* the implementation deeply depends on plain char */
|
|
|
|
rb_raise(rb_eArgError, "cannot construct wchar_t based encoding string: %s",
|
2012-01-13 13:41:22 +04:00
|
|
|
rb_enc_name(enc));
|
|
|
|
}
|
|
|
|
rb_enc_associate(result, enc);
|
|
|
|
}
|
2005-07-23 05:02:18 +04:00
|
|
|
f._bf._base = (unsigned char *)result;
|
2006-08-31 14:47:44 +04:00
|
|
|
f._p = (unsigned char *)RSTRING_PTR(result);
|
* include/ruby/ruby.h: constify RBasic::klass and add
RBASIC_CLASS(obj) macro which returns a class of `obj'.
This change is a part of RGENGC branch [ruby-trunk - Feature #8339].
* object.c: add new function rb_obj_reveal().
This function reveal interal (hidden) object by rb_obj_hide().
Note that do not change class before and after hiding.
Only permitted example is:
klass = RBASIC_CLASS(obj);
rb_obj_hide(obj);
....
rb_obj_reveal(obj, klass);
TODO: API design. rb_obj_reveal() should be replaced with others.
TODO: modify constified variables using cast may be harmful for
compiler's analysis and optimizaton.
Any idea to prohibt inserting RBasic::klass directly?
If rename RBasic::klass and force to use RBASIC_CLASS(obj),
then all codes such as `RBASIC(obj)->klass' will be
compilation error. Is it acceptable? (We have similar
experience at Ruby 1.9,
for example "RARRAY(ary)->ptr" to "RARRAY_PTR(ary)".
* internal.h: add some macros.
* RBASIC_CLEAR_CLASS(obj) clear RBasic::klass to make it internal
object.
* RBASIC_SET_CLASS(obj, cls) set RBasic::klass.
* RBASIC_SET_CLASS_RAW(obj, cls) same as RBASIC_SET_CLASS
without write barrier (planned).
* RCLASS_SET_SUPER(a, b) set super class of a.
* array.c, class.c, compile.c, encoding.c, enum.c, error.c, eval.c,
file.c, gc.c, hash.c, io.c, iseq.c, marshal.c, object.c,
parse.y, proc.c, process.c, random.c, ruby.c, sprintf.c,
string.c, thread.c, transcode.c, vm.c, vm_eval.c, win32/file.c:
Use above macros and functions to access RBasic::klass.
* ext/coverage/coverage.c, ext/readline/readline.c,
ext/socket/ancdata.c, ext/socket/init.c,
* ext/zlib/zlib.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40691 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2013-05-13 14:49:11 +04:00
|
|
|
RBASIC_CLEAR_CLASS(result);
|
2005-07-23 05:02:18 +04:00
|
|
|
f.vwrite = ruby__sfvwrite;
|
2012-05-24 18:36:54 +04:00
|
|
|
f.vextra = ruby__sfvextra;
|
|
|
|
buffer.value = 0;
|
2005-07-23 05:02:18 +04:00
|
|
|
BSD_vfprintf(&f, fmt, ap);
|
* include/ruby/ruby.h: constify RBasic::klass and add
RBASIC_CLASS(obj) macro which returns a class of `obj'.
This change is a part of RGENGC branch [ruby-trunk - Feature #8339].
* object.c: add new function rb_obj_reveal().
This function reveal interal (hidden) object by rb_obj_hide().
Note that do not change class before and after hiding.
Only permitted example is:
klass = RBASIC_CLASS(obj);
rb_obj_hide(obj);
....
rb_obj_reveal(obj, klass);
TODO: API design. rb_obj_reveal() should be replaced with others.
TODO: modify constified variables using cast may be harmful for
compiler's analysis and optimizaton.
Any idea to prohibt inserting RBasic::klass directly?
If rename RBasic::klass and force to use RBASIC_CLASS(obj),
then all codes such as `RBASIC(obj)->klass' will be
compilation error. Is it acceptable? (We have similar
experience at Ruby 1.9,
for example "RARRAY(ary)->ptr" to "RARRAY_PTR(ary)".
* internal.h: add some macros.
* RBASIC_CLEAR_CLASS(obj) clear RBasic::klass to make it internal
object.
* RBASIC_SET_CLASS(obj, cls) set RBasic::klass.
* RBASIC_SET_CLASS_RAW(obj, cls) same as RBASIC_SET_CLASS
without write barrier (planned).
* RCLASS_SET_SUPER(a, b) set super class of a.
* array.c, class.c, compile.c, encoding.c, enum.c, error.c, eval.c,
file.c, gc.c, hash.c, io.c, iseq.c, marshal.c, object.c,
parse.y, proc.c, process.c, random.c, ruby.c, sprintf.c,
string.c, thread.c, transcode.c, vm.c, vm_eval.c, win32/file.c:
Use above macros and functions to access RBasic::klass.
* ext/coverage/coverage.c, ext/readline/readline.c,
ext/socket/ancdata.c, ext/socket/init.c,
* ext/zlib/zlib.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40691 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2013-05-13 14:49:11 +04:00
|
|
|
RBASIC_SET_CLASS_RAW(result, rb_cString);
|
2006-08-31 14:47:44 +04:00
|
|
|
rb_str_resize(result, (char *)f._p - RSTRING_PTR(result));
|
2012-05-24 18:36:54 +04:00
|
|
|
#undef f
|
2005-07-23 05:02:18 +04:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2007-12-31 00:08:36 +03:00
|
|
|
VALUE
|
2014-06-03 00:23:47 +04:00
|
|
|
rb_enc_sprintf(rb_encoding *enc, const char *format, ...)
|
2007-12-31 00:08:36 +03:00
|
|
|
{
|
|
|
|
VALUE result;
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, format);
|
|
|
|
result = rb_enc_vsprintf(enc, format, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_vsprintf(const char *fmt, va_list ap)
|
|
|
|
{
|
|
|
|
return rb_enc_vsprintf(NULL, fmt, ap);
|
|
|
|
}
|
|
|
|
|
2005-07-23 05:02:18 +04:00
|
|
|
VALUE
|
|
|
|
rb_sprintf(const char *format, ...)
|
|
|
|
{
|
|
|
|
VALUE result;
|
|
|
|
va_list ap;
|
|
|
|
|
* 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(ap, format);
|
2005-07-23 05:02:18 +04:00
|
|
|
result = rb_vsprintf(format, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2008-07-22 11:48:00 +04:00
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_str_vcatf(VALUE str, const char *fmt, va_list ap)
|
|
|
|
{
|
2012-05-24 18:36:54 +04:00
|
|
|
rb_printf_buffer_extra buffer;
|
|
|
|
#define f buffer.base
|
2008-07-22 11:48:00 +04:00
|
|
|
VALUE klass;
|
|
|
|
|
|
|
|
StringValue(str);
|
|
|
|
rb_str_modify(str);
|
|
|
|
f._flags = __SWR | __SSTR;
|
|
|
|
f._bf._size = 0;
|
|
|
|
f._w = rb_str_capacity(str);
|
|
|
|
f._bf._base = (unsigned char *)str;
|
|
|
|
f._p = (unsigned char *)RSTRING_END(str);
|
|
|
|
klass = RBASIC(str)->klass;
|
* include/ruby/ruby.h: constify RBasic::klass and add
RBASIC_CLASS(obj) macro which returns a class of `obj'.
This change is a part of RGENGC branch [ruby-trunk - Feature #8339].
* object.c: add new function rb_obj_reveal().
This function reveal interal (hidden) object by rb_obj_hide().
Note that do not change class before and after hiding.
Only permitted example is:
klass = RBASIC_CLASS(obj);
rb_obj_hide(obj);
....
rb_obj_reveal(obj, klass);
TODO: API design. rb_obj_reveal() should be replaced with others.
TODO: modify constified variables using cast may be harmful for
compiler's analysis and optimizaton.
Any idea to prohibt inserting RBasic::klass directly?
If rename RBasic::klass and force to use RBASIC_CLASS(obj),
then all codes such as `RBASIC(obj)->klass' will be
compilation error. Is it acceptable? (We have similar
experience at Ruby 1.9,
for example "RARRAY(ary)->ptr" to "RARRAY_PTR(ary)".
* internal.h: add some macros.
* RBASIC_CLEAR_CLASS(obj) clear RBasic::klass to make it internal
object.
* RBASIC_SET_CLASS(obj, cls) set RBasic::klass.
* RBASIC_SET_CLASS_RAW(obj, cls) same as RBASIC_SET_CLASS
without write barrier (planned).
* RCLASS_SET_SUPER(a, b) set super class of a.
* array.c, class.c, compile.c, encoding.c, enum.c, error.c, eval.c,
file.c, gc.c, hash.c, io.c, iseq.c, marshal.c, object.c,
parse.y, proc.c, process.c, random.c, ruby.c, sprintf.c,
string.c, thread.c, transcode.c, vm.c, vm_eval.c, win32/file.c:
Use above macros and functions to access RBasic::klass.
* ext/coverage/coverage.c, ext/readline/readline.c,
ext/socket/ancdata.c, ext/socket/init.c,
* ext/zlib/zlib.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40691 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2013-05-13 14:49:11 +04:00
|
|
|
RBASIC_CLEAR_CLASS(str);
|
2008-07-22 11:48:00 +04:00
|
|
|
f.vwrite = ruby__sfvwrite;
|
2012-05-24 18:36:54 +04:00
|
|
|
f.vextra = ruby__sfvextra;
|
|
|
|
buffer.value = 0;
|
2008-07-22 11:48:00 +04:00
|
|
|
BSD_vfprintf(&f, fmt, ap);
|
* include/ruby/ruby.h: constify RBasic::klass and add
RBASIC_CLASS(obj) macro which returns a class of `obj'.
This change is a part of RGENGC branch [ruby-trunk - Feature #8339].
* object.c: add new function rb_obj_reveal().
This function reveal interal (hidden) object by rb_obj_hide().
Note that do not change class before and after hiding.
Only permitted example is:
klass = RBASIC_CLASS(obj);
rb_obj_hide(obj);
....
rb_obj_reveal(obj, klass);
TODO: API design. rb_obj_reveal() should be replaced with others.
TODO: modify constified variables using cast may be harmful for
compiler's analysis and optimizaton.
Any idea to prohibt inserting RBasic::klass directly?
If rename RBasic::klass and force to use RBASIC_CLASS(obj),
then all codes such as `RBASIC(obj)->klass' will be
compilation error. Is it acceptable? (We have similar
experience at Ruby 1.9,
for example "RARRAY(ary)->ptr" to "RARRAY_PTR(ary)".
* internal.h: add some macros.
* RBASIC_CLEAR_CLASS(obj) clear RBasic::klass to make it internal
object.
* RBASIC_SET_CLASS(obj, cls) set RBasic::klass.
* RBASIC_SET_CLASS_RAW(obj, cls) same as RBASIC_SET_CLASS
without write barrier (planned).
* RCLASS_SET_SUPER(a, b) set super class of a.
* array.c, class.c, compile.c, encoding.c, enum.c, error.c, eval.c,
file.c, gc.c, hash.c, io.c, iseq.c, marshal.c, object.c,
parse.y, proc.c, process.c, random.c, ruby.c, sprintf.c,
string.c, thread.c, transcode.c, vm.c, vm_eval.c, win32/file.c:
Use above macros and functions to access RBasic::klass.
* ext/coverage/coverage.c, ext/readline/readline.c,
ext/socket/ancdata.c, ext/socket/init.c,
* ext/zlib/zlib.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40691 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2013-05-13 14:49:11 +04:00
|
|
|
RBASIC_SET_CLASS_RAW(str, klass);
|
2008-07-22 11:48:00 +04:00
|
|
|
rb_str_resize(str, (char *)f._p - RSTRING_PTR(str));
|
2012-05-24 18:36:54 +04:00
|
|
|
#undef f
|
2008-07-22 11:48:00 +04:00
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
VALUE
|
|
|
|
rb_str_catf(VALUE str, const char *format, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, format);
|
|
|
|
str = rb_str_vcatf(str, format, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|