mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fd06a2a7fb
* ext/dbm/extconf.rb: allow specifying dbm-type explicitly. * ext/dbm/extconf.rb: avoid gdbm if possible, because it leaks memory, whereas gdbm.so doesn't. potential incompatibility. * string.c (rb_str_insert): new method. * parse.y (yylex): lex_state after RESCUE_MOD should be EXPR_BEG. * array.c (rb_ary_insert): new method. * array.c (rb_ary_update): new utility function. * io.c (set_outfile): should check if closed before assignment. * eval.c (rb_eval): should preserve value of ruby_errinfo. * eval.c (rb_thread_schedule): infinite sleep should not cause dead lock. * array.c (rb_ary_flatten_bang): proper recursive detection. * eval.c (yield_under): need not to prohibit at safe level 4. * pack.c (pack_pack): p/P packs nil into NULL. * pack.c (pack_unpack): p/P unpacks NULL into nil. * pack.c (pack_pack): size check for P template. * ruby.c (set_arg0): wrong predicate when new $0 value is bigger than original space. * gc.c (id2ref): should use NUM2ULONG() * object.c (rb_mod_const_get): check whether name is a class variable name. * object.c (rb_mod_const_set): ditto. * object.c (rb_mod_const_defined): ditto. * marshal.c (w_float): precision changed to "%.16g" * eval.c (rb_call0): wrong retry behavior. * numeric.c (fix_aref): a bug on long>int architecture. * eval.c (rb_eval_string_wrap): should restore ruby_wrapper. * regex.c (re_compile_pattern): char class at either edge of range should be invalid. * eval.c (handle_rescue): use === to compare exception match. * error.c (syserr_eqq): comparison between SytemCallErrors should based on their error numbers. * eval.c (safe_getter): should use INT2NUM(). * bignum.c (rb_big2long): 2**31 cannot fit in 31 bit long. * regex.c (calculate_must_string): wrong length calculation. * eval.c (rb_thread_start_0): fixed memory leak. * parse.y (none): should clear cmdarg_stack too. * io.c (rb_fopen): use setvbuf() to avoid recursive malloc() on some platforms. * file.c (rb_stat_dev): device functions should honor stat field types (except long long such as dev_t). * eval.c (rb_mod_nesting): should not push nil for nesting array. * eval.c (rb_mod_s_constants): should not search array by rb_mod_const_at() for nil (happens for singleton class). * class.c (rb_singleton_class_attached): should modify iv_tbl by itself, no longer use rb_iv_set() to avoid freeze check error. * variable.c (rb_const_get): error message "uninitialized constant Foo at Bar::Baz" instead of "uninitialized constantBar::Baz::Foo". * eval.c (rb_mod_included): new hook called from rb_mod_include(). * io.c (opt_i_set): should strdup() inplace_edit string. * eval.c (exec_under): need to push cref too. * eval.c (rb_f_missing): raise NameError for "undefined local variable or method". * error.c (Init_Exception): new exception NoMethodError. NameError moved under ScriptError again. * eval.c (rb_f_missing): use NoMethodError instead of NameError. * file.c (Init_File): should redifine "new" class method. * eval.c (PUSH_CREF): sharing cref node was problematic. maintain runtime cref list instead. * eval.c (rb_eval): copy defn node before registering. * eval.c (rb_load): clear ruby_cref before loading. * variable.c (rb_const_get): no recursion to show full class path for modules. * eval.c (rb_set_safe_level): should set safe level in curr_thread as well. * eval.c (safe_setter): ditto. * object.c (rb_obj_is_instance_of): nil belongs to false, not true. * time.c (make_time_t): proper (I hope) daylight saving time handling for both US and Europe. I HATE DST! * eval.c (rb_thread_wait_for): non blocked signal interrupt should stop the interval. * eval.c (proc_eq): class check aded. * eval.c (proc_eq): typo fixed ("return" was ommitted). * error.c (Init_Exception): move NameError under StandardError. * class.c (rb_mod_clone): should copy method bodies too. * bignum.c (bigdivrem): should trim trailing zero bdigits of remainder, even if dd == 0. * file.c (check3rdbyte): safe string check moved here. * time.c (make_time_t): remove HAVE_TM_ZONE code since it sometimes reports wrong time. * time.c (make_time_t): remove unnecessary range check for platforms where negative time_t is available. * process.c (proc_waitall): should push Process::Status instead of Finuxm status. * process.c (waitall_each): should add all entries in pid_tbl. these changes are inspired by Koji Arai. Thanks. * process.c (proc_wait): should not iterate if pid_tbl is 0. * process.c (proc_waitall): ditto. * numeric.c (flodivmod): a bug in no fmod case. * process.c (pst_wifsignaled): should apply WIFSIGNALED for status (int), not st (VALUE). * io.c (Init_IO): value of $/ and $\ are no longer restricted to strings. type checks are done on demand. * class.c (rb_include_module): module inclusion should be check taints. * ruby.h (STR2CSTR): replace to StringType() and StringTypePtr(). * ruby.h (rb_str2cstr): ditto. * eval.c (rb_load): should not copy topleve local variables. It cause variable/method ambiguity. Thanks to L. Peter Deutsch. * class.c (rb_include_module): freeze check at first. * eval.c (rb_attr): sprintf() and rb_intern() moved into conditional body. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1356 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
673 lines
12 KiB
C
673 lines
12 KiB
C
/**********************************************************************
|
|
|
|
sprintf.c -
|
|
|
|
$Author$
|
|
$Date$
|
|
created at: Fri Oct 15 10:39:26 JST 1993
|
|
|
|
Copyright (C) 1993-2001 Yukihiro Matsumoto
|
|
Copyright (C) 2000 Network Applied Communication Laboratory, Inc.
|
|
Copyright (C) 2000 Information-technology Promotion Agency, Japan
|
|
|
|
**********************************************************************/
|
|
|
|
#include "ruby.h"
|
|
#include <ctype.h>
|
|
#include <math.h>
|
|
|
|
#define BIT_DIGITS(N) (((N)*146)/485 + 1) /* log2(10) =~ 146/485 */
|
|
|
|
#if !defined(atof) && !defined(HAVE_STDLIB_H)
|
|
double strtod();
|
|
#endif
|
|
|
|
static void fmt_setup _((char*,int,int,int,int));
|
|
|
|
static char*
|
|
remove_sign_bits(str, base)
|
|
char *str;
|
|
int base;
|
|
{
|
|
char *s, *t, *end;
|
|
|
|
s = t = str;
|
|
end = str + strlen(str);
|
|
|
|
if (base == 16) {
|
|
x_retry:
|
|
switch (*t) {
|
|
case 'c': case 'C':
|
|
*t = '4';
|
|
break;
|
|
case 'd': case 'D':
|
|
*t = '5';
|
|
break;
|
|
case 'e': case 'E':
|
|
*t = '2';
|
|
break;
|
|
case 'f': case 'F':
|
|
if (t[1] > '8') {
|
|
t++;
|
|
goto x_retry;
|
|
}
|
|
*t = '1';
|
|
break;
|
|
case '1':
|
|
case '3':
|
|
case '7':
|
|
if (t[1] > '8') {
|
|
t++;
|
|
goto x_retry;
|
|
}
|
|
break;
|
|
}
|
|
switch (*t) {
|
|
case '1': *t = 'f'; break;
|
|
case '2': *t = 'e'; break;
|
|
case '3': *t = 'f'; break;
|
|
case '4': *t = 'c'; break;
|
|
case '5': *t = 'd'; break;
|
|
case '6': *t = 'e'; break;
|
|
case '7': *t = 'f'; break;
|
|
}
|
|
}
|
|
else if (base == 8) {
|
|
o_retry:
|
|
switch (*t) {
|
|
case '6':
|
|
*t = '2';
|
|
break;
|
|
case '7':
|
|
if (t[1] > '3') {
|
|
t++;
|
|
goto o_retry;
|
|
}
|
|
*t = '1';
|
|
break;
|
|
case '1':
|
|
case '3':
|
|
if (t[1] > '3') {
|
|
t++;
|
|
goto o_retry;
|
|
}
|
|
break;
|
|
}
|
|
switch (*t) {
|
|
case '1': *t = '7'; break;
|
|
case '2': *t = '6'; break;
|
|
case '3': *t = '7'; break;
|
|
}
|
|
}
|
|
else if (base == 2) {
|
|
while (t<end && *t == '1') t++;
|
|
t--;
|
|
}
|
|
while (*t) *s++ = *t++;
|
|
*s = '\0';
|
|
|
|
return str;
|
|
}
|
|
|
|
#define FNONE 0
|
|
#define FSHARP 1
|
|
#define FMINUS 2
|
|
#define FPLUS 4
|
|
#define FZERO 8
|
|
#define FSPACE 16
|
|
#define FWIDTH 32
|
|
#define FPREC 64
|
|
|
|
#define CHECK(l) {\
|
|
while (blen + (l) >= bsiz) {\
|
|
REALLOC_N(buf, char, bsiz*2);\
|
|
bsiz*=2;\
|
|
}\
|
|
}
|
|
|
|
#define PUSH(s, l) { \
|
|
CHECK(l);\
|
|
memcpy(&buf[blen], s, l);\
|
|
blen += (l);\
|
|
}
|
|
|
|
#define GETARG() \
|
|
((nextarg >= argc) ? (rb_raise(rb_eArgError, "too few argument."), 0) : argv[nextarg++])
|
|
|
|
#define GETASTER(val) { \
|
|
t = p++; \
|
|
n = 0; \
|
|
for (; p < end && ISDIGIT(*p); p++) { \
|
|
n = 10 * n + (*p - '0'); \
|
|
} \
|
|
if (p >= end) { \
|
|
rb_raise(rb_eArgError, "malformed format string - %%*[0-9]"); \
|
|
} \
|
|
if (*p == '$') { \
|
|
int curarg = nextarg; \
|
|
nextarg = n; \
|
|
tmp = GETARG(); \
|
|
nextarg = curarg; \
|
|
} \
|
|
else { \
|
|
tmp = GETARG(); \
|
|
p = t; \
|
|
} \
|
|
val = NUM2INT(tmp); \
|
|
}
|
|
|
|
VALUE
|
|
rb_f_sprintf(argc, argv)
|
|
int argc;
|
|
VALUE *argv;
|
|
{
|
|
VALUE fmt;
|
|
char *buf, *p, *end;
|
|
int blen, bsiz;
|
|
VALUE result;
|
|
|
|
int width, prec, flags = FNONE;
|
|
int nextarg = 0;
|
|
int tainted = 0;
|
|
VALUE tmp;
|
|
VALUE str;
|
|
|
|
fmt = GETARG();
|
|
if (OBJ_TAINTED(fmt)) tainted = 1;
|
|
StringValue(fmt);
|
|
p = RSTRING(fmt)->ptr;
|
|
end = p + RSTRING(fmt)->len;
|
|
blen = 0;
|
|
bsiz = 120;
|
|
buf = ALLOC_N(char, bsiz);
|
|
|
|
for (; p < end; p++) {
|
|
char *t;
|
|
int n;
|
|
|
|
for (t = p; t < end && *t != '%'; t++) ;
|
|
PUSH(p, t - p);
|
|
if (t >= end) {
|
|
/* end of fmt string */
|
|
goto sprint_exit;
|
|
}
|
|
p = t + 1; /* skip `%' */
|
|
|
|
width = prec = -1;
|
|
retry:
|
|
switch (*p) {
|
|
default:
|
|
if (ISPRINT(*p))
|
|
rb_raise(rb_eArgError, "malformed format string - %%%c", *p);
|
|
else
|
|
rb_raise(rb_eArgError, "malformed format string");
|
|
break;
|
|
|
|
case ' ':
|
|
flags |= FSPACE;
|
|
p++;
|
|
goto retry;
|
|
|
|
case '#':
|
|
flags |= FSHARP;
|
|
p++;
|
|
goto retry;
|
|
|
|
case '+':
|
|
flags |= FPLUS;
|
|
p++;
|
|
goto retry;
|
|
|
|
case '-':
|
|
flags |= FMINUS;
|
|
p++;
|
|
goto retry;
|
|
|
|
case '0':
|
|
flags |= FZERO;
|
|
p++;
|
|
goto retry;
|
|
|
|
case '1': case '2': case '3': case '4':
|
|
case '5': case '6': case '7': case '8': case '9':
|
|
n = 0;
|
|
for (; p < end && ISDIGIT(*p); p++) {
|
|
n = 10 * n + (*p - '0');
|
|
}
|
|
if (p >= end) {
|
|
rb_raise(rb_eArgError, "malformed format string - %%[0-9]");
|
|
}
|
|
if (*p == '$') {
|
|
nextarg = n;
|
|
p++;
|
|
goto retry;
|
|
}
|
|
width = n;
|
|
flags |= FWIDTH;
|
|
goto retry;
|
|
|
|
case '*':
|
|
if (flags & FWIDTH) {
|
|
rb_raise(rb_eArgError, "width given twice");
|
|
}
|
|
|
|
flags |= FWIDTH;
|
|
GETASTER(width);
|
|
if (width < 0) {
|
|
flags |= FMINUS;
|
|
width = -width;
|
|
}
|
|
p++;
|
|
goto retry;
|
|
|
|
case '.':
|
|
if (flags & FPREC) {
|
|
rb_raise(rb_eArgError, "precision given twice");
|
|
}
|
|
flags |= FPREC;
|
|
|
|
prec = 0;
|
|
p++;
|
|
if (*p == '*') {
|
|
GETASTER(prec);
|
|
if (prec < 0) { /* ignore negative precision */
|
|
flags &= ~FPREC;
|
|
}
|
|
p++;
|
|
goto retry;
|
|
}
|
|
|
|
for (; p < end && ISDIGIT(*p); p++) {
|
|
prec = 10 * prec + (*p - '0');
|
|
}
|
|
if (p >= end) {
|
|
rb_raise(rb_eArgError, "malformed format string - %%.[0-9]");
|
|
}
|
|
goto retry;
|
|
|
|
case '\n':
|
|
p--;
|
|
case '\0':
|
|
case '%':
|
|
if (flags != FNONE) {
|
|
rb_raise(rb_eArgError, "illegal format character - %%");
|
|
}
|
|
PUSH("%", 1);
|
|
break;
|
|
|
|
case 'c':
|
|
{
|
|
VALUE val = GETARG();
|
|
char c;
|
|
|
|
if (!(flags & FMINUS))
|
|
while (--width > 0)
|
|
PUSH(" ", 1);
|
|
c = NUM2INT(val) & 0xff;
|
|
PUSH(&c, 1);
|
|
while (--width > 0)
|
|
PUSH(" ", 1);
|
|
}
|
|
break;
|
|
|
|
case 's':
|
|
{
|
|
VALUE arg = GETARG();
|
|
int len;
|
|
|
|
str = rb_obj_as_string(arg);
|
|
if (OBJ_TAINTED(str)) tainted = 1;
|
|
len = RSTRING(str)->len;
|
|
if (flags&FPREC) {
|
|
if (prec < len) {
|
|
len = prec;
|
|
}
|
|
}
|
|
if (flags&FWIDTH) {
|
|
if (width > len) {
|
|
CHECK(width);
|
|
width -= len;
|
|
if (!(flags&FMINUS)) {
|
|
while (width--) {
|
|
buf[blen++] = ' ';
|
|
}
|
|
}
|
|
memcpy(&buf[blen], RSTRING(str)->ptr, len);
|
|
blen += len;
|
|
if (flags&FMINUS) {
|
|
while (width--) {
|
|
buf[blen++] = ' ';
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
PUSH(RSTRING(str)->ptr, len);
|
|
}
|
|
break;
|
|
|
|
case 'd':
|
|
case 'i':
|
|
case 'o':
|
|
case 'x':
|
|
case 'X':
|
|
case 'b':
|
|
case 'u':
|
|
{
|
|
volatile VALUE val = GETARG();
|
|
char fbuf[32], nbuf[64], *s, *t;
|
|
char *prefix = 0;
|
|
int sign = 0;
|
|
char sc = 0;
|
|
long v;
|
|
int base, bignum = 0;
|
|
int len, pos;
|
|
|
|
switch (*p) {
|
|
case 'd':
|
|
case 'i':
|
|
sign = 1; break;
|
|
case 'o':
|
|
case 'x':
|
|
case 'X':
|
|
case 'b':
|
|
case 'u':
|
|
default:
|
|
if (flags&(FPLUS|FSPACE)) sign = 1;
|
|
break;
|
|
}
|
|
if (flags & FSHARP) {
|
|
if (*p == 'o') prefix = "0";
|
|
else if (*p == 'x') prefix = "0x";
|
|
else if (*p == 'X') prefix = "0X";
|
|
else if (*p == 'b') prefix = "0b";
|
|
if (prefix) {
|
|
width -= strlen(prefix);
|
|
}
|
|
}
|
|
|
|
bin_retry:
|
|
switch (TYPE(val)) {
|
|
case T_FLOAT:
|
|
val = rb_dbl2big(RFLOAT(val)->value);
|
|
if (FIXNUM_P(val)) goto bin_retry;
|
|
bignum = 1;
|
|
break;
|
|
case T_STRING:
|
|
val = rb_str2inum(val, 0);
|
|
goto bin_retry;
|
|
case T_BIGNUM:
|
|
bignum = 1;
|
|
break;
|
|
default:
|
|
v = NUM2LONG(val);
|
|
break;
|
|
case T_FIXNUM:
|
|
v = FIX2LONG(val);
|
|
break;
|
|
}
|
|
|
|
if (*p == 'u' || *p == 'd' || *p == 'i') base = 10;
|
|
else if (*p == 'x' || *p == 'X') base = 16;
|
|
else if (*p == 'o') base = 8;
|
|
else if (*p == 'b') base = 2;
|
|
if (!bignum) {
|
|
if (base == 2) {
|
|
val = rb_int2big(v);
|
|
goto bin_retry;
|
|
}
|
|
if (sign) {
|
|
char c = *p;
|
|
if (c == 'i') c = 'd'; /* %d and %i are identical */
|
|
if (v < 0) {
|
|
v = -v;
|
|
sc = '-';
|
|
width--;
|
|
}
|
|
else if (flags & FPLUS) {
|
|
sc = '+';
|
|
width--;
|
|
}
|
|
else if (flags & FSPACE) {
|
|
sc = ' ';
|
|
width--;
|
|
}
|
|
sprintf(fbuf, "%%l%c", c);
|
|
sprintf(nbuf, fbuf, v);
|
|
s = nbuf;
|
|
goto format_integer;
|
|
}
|
|
s = nbuf;
|
|
if (v < 0) {
|
|
strcpy(s, "..");
|
|
s += 2;
|
|
}
|
|
sprintf(fbuf, "%%l%c", *p);
|
|
sprintf(s, fbuf, v);
|
|
if (v < 0) {
|
|
char d = 0;
|
|
|
|
remove_sign_bits(s, base);
|
|
switch (base) {
|
|
case 16:
|
|
d = 'f';
|
|
break;
|
|
case 8:
|
|
d = '7'; break;
|
|
}
|
|
if (d && *s != d) {
|
|
memmove(s+1, s, strlen(s)+1);
|
|
*s = d;
|
|
}
|
|
}
|
|
s = nbuf;
|
|
goto format_integer;
|
|
}
|
|
|
|
if (sign) {
|
|
val = rb_big2str(val, base);
|
|
s = RSTRING(val)->ptr;
|
|
if (s[0] == '-') {
|
|
s++;
|
|
sc = '-';
|
|
width--;
|
|
}
|
|
else if (flags & FPLUS) {
|
|
sc = '+';
|
|
width--;
|
|
}
|
|
else if (flags & FSPACE) {
|
|
sc = ' ';
|
|
width--;
|
|
}
|
|
goto format_integer;
|
|
}
|
|
if (!RBIGNUM(val)->sign) {
|
|
val = rb_big_clone(val);
|
|
rb_big_2comp(val);
|
|
}
|
|
val = rb_big2str(val, base);
|
|
s = RSTRING(val)->ptr;
|
|
if (*s == '-') {
|
|
remove_sign_bits(++s, base);
|
|
val = rb_str_new(0, 3+strlen(s));
|
|
t = RSTRING(val)->ptr;
|
|
strcpy(t, "..");
|
|
t += 2;
|
|
switch (base) {
|
|
case 16:
|
|
if (s[0] != 'f') strcpy(t++, "f"); break;
|
|
case 8:
|
|
if (s[0] != '7') strcpy(t++, "7"); break;
|
|
}
|
|
strcpy(t, s);
|
|
bignum = 2;
|
|
}
|
|
s = RSTRING(val)->ptr;
|
|
|
|
format_integer:
|
|
pos = -1;
|
|
len = strlen(s);
|
|
|
|
if (*p == 'X') {
|
|
char *pp = s;
|
|
while (*pp) {
|
|
*pp = toupper(*pp);
|
|
pp++;
|
|
}
|
|
}
|
|
if (prec < len) prec = len;
|
|
width -= prec;
|
|
if (!(flags&(FZERO|FMINUS)) && s[0] != '.') {
|
|
CHECK(width);
|
|
while (width-->0) {
|
|
buf[blen++] = ' ';
|
|
}
|
|
}
|
|
if (sc) PUSH(&sc, 1);
|
|
if (prefix) {
|
|
int plen = strlen(prefix);
|
|
PUSH(prefix, plen);
|
|
if (pos) pos += plen;
|
|
}
|
|
if (!(flags & FMINUS)) {
|
|
char c = ' ';
|
|
|
|
if (s[0] == '.') {
|
|
c = '.';
|
|
if ((flags & FPREC) && prec > len) {
|
|
pos = blen;
|
|
}
|
|
else {
|
|
pos = blen + 2;
|
|
}
|
|
}
|
|
else if (flags & FZERO) c = '0';
|
|
CHECK(width);
|
|
while (width-->0) {
|
|
buf[blen++] = c;
|
|
}
|
|
}
|
|
CHECK(prec - len);
|
|
while (len < prec--) {
|
|
buf[blen++] = s[0]=='.'?'.':'0';
|
|
}
|
|
PUSH(s, len);
|
|
CHECK(width);
|
|
while (width-->0) {
|
|
buf[blen++] = ' ';
|
|
}
|
|
if (pos >= 0 && buf[pos] == '.') {
|
|
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;
|
|
}
|
|
s = &buf[pos];
|
|
while (*s && *s == '.') {
|
|
*s++ = c;
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
|
|
case 'f':
|
|
case 'g':
|
|
case 'G':
|
|
case 'e':
|
|
case 'E':
|
|
{
|
|
VALUE val = GETARG();
|
|
double fval;
|
|
int i, need = 6;
|
|
char fbuf[32];
|
|
|
|
switch (TYPE(val)) {
|
|
case T_FIXNUM:
|
|
fval = (double)FIX2LONG(val);
|
|
break;
|
|
case T_FLOAT:
|
|
fval = RFLOAT(val)->value;
|
|
break;
|
|
case T_BIGNUM:
|
|
fval = rb_big2dbl(val);
|
|
break;
|
|
case T_STRING:
|
|
fval = strtod(RSTRING(val)->ptr, 0);
|
|
break;
|
|
default:
|
|
fval = NUM2DBL(val);
|
|
break;
|
|
}
|
|
|
|
fmt_setup(fbuf, *p, flags, width, prec);
|
|
need = 0;
|
|
if (*p != 'e' && *p != 'E') {
|
|
i = INT_MIN;
|
|
frexp(fval, &i);
|
|
if (i > 0)
|
|
need = BIT_DIGITS(i);
|
|
}
|
|
need += (flags&FPREC) ? prec : 6;
|
|
if ((flags&FWIDTH) && need < width)
|
|
need = width;
|
|
need += 20;
|
|
|
|
CHECK(need);
|
|
sprintf(&buf[blen], fbuf, fval);
|
|
blen += strlen(&buf[blen]);
|
|
}
|
|
break;
|
|
}
|
|
flags = FNONE;
|
|
}
|
|
|
|
sprint_exit:
|
|
#if 0
|
|
/* XXX - We cannot validiate the number of arguments because
|
|
* the format string may contain `n$'-style argument selector.
|
|
*/
|
|
if (RTEST(ruby_verbose) && nextarg < argc) {
|
|
rb_raise(rb_eArgError, "too many argument for format string");
|
|
}
|
|
#endif
|
|
result = rb_str_new(buf, blen);
|
|
free(buf);
|
|
|
|
if (tainted) OBJ_TAINT(result);
|
|
return result;
|
|
}
|
|
|
|
static void
|
|
fmt_setup(buf, c, flags, width, prec)
|
|
char *buf;
|
|
int c;
|
|
int flags, width, prec;
|
|
{
|
|
*buf++ = '%';
|
|
if (flags & FSHARP) *buf++ = '#';
|
|
if (flags & FPLUS) *buf++ = '+';
|
|
if (flags & FMINUS) *buf++ = '-';
|
|
if (flags & FZERO) *buf++ = '0';
|
|
if (flags & FSPACE) *buf++ = ' ';
|
|
|
|
if (flags & FWIDTH) {
|
|
sprintf(buf, "%d", width);
|
|
buf += strlen(buf);
|
|
}
|
|
|
|
if (flags & FPREC) {
|
|
sprintf(buf, ".%d", prec);
|
|
buf += strlen(buf);
|
|
}
|
|
|
|
*buf++ = c;
|
|
*buf = '\0';
|
|
}
|