2009-12-08 18:46:35 +00:00
|
|
|
/*
|
|
|
|
** String library.
|
2013-02-11 11:54:48 +00:00
|
|
|
** Copyright (C) 2005-2013 Mike Pall. See Copyright Notice in luajit.h
|
2009-12-08 18:46:35 +00:00
|
|
|
**
|
|
|
|
** Major portions taken verbatim or adapted from the Lua interpreter.
|
|
|
|
** Copyright (C) 1994-2008 Lua.org, PUC-Rio. See Copyright Notice in lua.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#define lib_string_c
|
|
|
|
#define LUA_LIB
|
|
|
|
|
|
|
|
#include "lua.h"
|
|
|
|
#include "lauxlib.h"
|
|
|
|
#include "lualib.h"
|
|
|
|
|
|
|
|
#include "lj_obj.h"
|
2009-12-08 18:49:20 +00:00
|
|
|
#include "lj_gc.h"
|
2009-12-08 18:46:35 +00:00
|
|
|
#include "lj_err.h"
|
2013-02-27 20:17:27 +00:00
|
|
|
#include "lj_buf.h"
|
2009-12-08 18:46:35 +00:00
|
|
|
#include "lj_str.h"
|
|
|
|
#include "lj_tab.h"
|
2012-10-02 09:59:32 +00:00
|
|
|
#include "lj_meta.h"
|
2009-12-08 18:46:35 +00:00
|
|
|
#include "lj_state.h"
|
|
|
|
#include "lj_ff.h"
|
2011-06-12 22:58:13 +00:00
|
|
|
#include "lj_bcdump.h"
|
2010-11-09 11:09:54 +00:00
|
|
|
#include "lj_char.h"
|
2009-12-08 18:46:35 +00:00
|
|
|
#include "lj_lib.h"
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
|
|
|
|
#define LJLIB_MODULE_string
|
|
|
|
|
2013-04-26 16:40:39 +00:00
|
|
|
LJLIB_LUA(string_len) /*
|
|
|
|
function(s)
|
|
|
|
CHECK_str(s)
|
|
|
|
return #s
|
|
|
|
end
|
|
|
|
*/
|
2009-12-08 18:46:35 +00:00
|
|
|
|
|
|
|
LJLIB_ASM(string_byte) LJLIB_REC(string_range 0)
|
|
|
|
{
|
|
|
|
GCstr *s = lj_lib_checkstr(L, 1);
|
|
|
|
int32_t len = (int32_t)s->len;
|
|
|
|
int32_t start = lj_lib_optint(L, 2, 1);
|
|
|
|
int32_t stop = lj_lib_optint(L, 3, start);
|
|
|
|
int32_t n, i;
|
|
|
|
const unsigned char *p;
|
|
|
|
if (stop < 0) stop += len+1;
|
|
|
|
if (start < 0) start += len+1;
|
|
|
|
if (start <= 0) start = 1;
|
|
|
|
if (stop > len) stop = len;
|
|
|
|
if (start > stop) return FFH_RES(0); /* Empty interval: return no results. */
|
|
|
|
start--;
|
|
|
|
n = stop - start;
|
|
|
|
if ((uint32_t)n > LUAI_MAXCSTACK)
|
|
|
|
lj_err_caller(L, LJ_ERR_STRSLC);
|
|
|
|
lj_state_checkstack(L, (MSize)n);
|
|
|
|
p = (const unsigned char *)strdata(s) + start;
|
|
|
|
for (i = 0; i < n; i++)
|
|
|
|
setintV(L->base + i-1, p[i]);
|
|
|
|
return FFH_RES(n);
|
|
|
|
}
|
|
|
|
|
2013-04-23 10:25:18 +00:00
|
|
|
LJLIB_ASM(string_char) LJLIB_REC(.)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2011-02-16 23:44:14 +00:00
|
|
|
int i, nargs = (int)(L->top - L->base);
|
2013-02-27 16:11:31 +00:00
|
|
|
char *buf = lj_buf_tmp(L, (size_t)nargs);
|
2009-12-08 18:46:35 +00:00
|
|
|
for (i = 1; i <= nargs; i++) {
|
|
|
|
int32_t k = lj_lib_checkint(L, i);
|
|
|
|
if (!checku8(k))
|
|
|
|
lj_err_arg(L, i, LJ_ERR_BADVAL);
|
|
|
|
buf[i-1] = (char)k;
|
|
|
|
}
|
|
|
|
setstrV(L, L->base-1, lj_str_new(L, buf, (size_t)nargs));
|
|
|
|
return FFH_RES(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
LJLIB_ASM(string_sub) LJLIB_REC(string_range 1)
|
|
|
|
{
|
|
|
|
lj_lib_checkstr(L, 1);
|
|
|
|
lj_lib_checkint(L, 2);
|
|
|
|
setintV(L->base+2, lj_lib_optint(L, 3, -1));
|
|
|
|
return FFH_RETRY;
|
|
|
|
}
|
|
|
|
|
|
|
|
LJLIB_ASM(string_rep)
|
|
|
|
{
|
|
|
|
GCstr *s = lj_lib_checkstr(L, 1);
|
|
|
|
int32_t k = lj_lib_checkint(L, 2);
|
2012-10-07 15:11:39 +00:00
|
|
|
GCstr *sep = lj_lib_optstr(L, 3);
|
|
|
|
int32_t len = (int32_t)s->len;
|
|
|
|
global_State *g = G(L);
|
|
|
|
int64_t tlen;
|
|
|
|
if (k <= 0) {
|
|
|
|
empty:
|
|
|
|
setstrV(L, L->base-1, &g->strempty);
|
|
|
|
return FFH_RES(1);
|
|
|
|
}
|
|
|
|
if (sep) {
|
|
|
|
tlen = (int64_t)len + sep->len;
|
|
|
|
if (tlen > LJ_MAX_STR)
|
|
|
|
lj_err_caller(L, LJ_ERR_STROV);
|
|
|
|
tlen *= k;
|
|
|
|
if (tlen > LJ_MAX_STR)
|
|
|
|
lj_err_caller(L, LJ_ERR_STROV);
|
|
|
|
} else {
|
|
|
|
tlen = (int64_t)k * len;
|
|
|
|
if (tlen > LJ_MAX_STR)
|
|
|
|
lj_err_caller(L, LJ_ERR_STROV);
|
|
|
|
}
|
2013-02-27 16:11:31 +00:00
|
|
|
if (tlen == 0) {
|
|
|
|
goto empty;
|
|
|
|
} else {
|
|
|
|
char *buf = lj_buf_tmp(L, (MSize)tlen), *p = buf;
|
|
|
|
const char *src = strdata(s);
|
|
|
|
if (sep) {
|
|
|
|
tlen -= sep->len; /* Ignore trailing separator. */
|
|
|
|
if (k > 1) { /* Paste one string and one separator. */
|
|
|
|
int32_t i;
|
|
|
|
i = 0; while (i < len) *p++ = src[i++];
|
|
|
|
src = strdata(sep); len = sep->len;
|
|
|
|
i = 0; while (i < len) *p++ = src[i++];
|
|
|
|
src = buf; len += s->len; k--; /* Now copy that k-1 times. */
|
|
|
|
}
|
2012-10-07 15:11:39 +00:00
|
|
|
}
|
2013-02-27 16:11:31 +00:00
|
|
|
do {
|
|
|
|
int32_t i = 0;
|
|
|
|
do { *p++ = src[i++]; } while (i < len);
|
|
|
|
} while (--k > 0);
|
|
|
|
setstrV(L, L->base-1, lj_str_new(L, buf, (size_t)tlen));
|
2012-10-07 15:11:39 +00:00
|
|
|
}
|
2009-12-08 18:46:35 +00:00
|
|
|
return FFH_RES(1);
|
|
|
|
}
|
|
|
|
|
2013-04-25 22:32:08 +00:00
|
|
|
LJLIB_ASM(string_reverse) LJLIB_REC(string_op IRCALL_lj_buf_putstr_reverse)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2013-04-25 22:31:10 +00:00
|
|
|
lj_lib_checkstr(L, 1);
|
2009-12-08 18:46:35 +00:00
|
|
|
return FFH_RETRY;
|
|
|
|
}
|
2013-04-25 22:32:08 +00:00
|
|
|
LJLIB_ASM_(string_lower) LJLIB_REC(string_op IRCALL_lj_buf_putstr_lower)
|
|
|
|
LJLIB_ASM_(string_upper) LJLIB_REC(string_op IRCALL_lj_buf_putstr_upper)
|
2009-12-08 18:46:35 +00:00
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
|
2013-03-20 15:56:09 +00:00
|
|
|
static int writer_buf(lua_State *L, const void *p, size_t size, void *sb)
|
2011-06-12 22:58:13 +00:00
|
|
|
{
|
2013-03-20 15:56:09 +00:00
|
|
|
lj_buf_putmem((SBuf *)sb, p, (MSize)size);
|
2011-06-12 22:58:13 +00:00
|
|
|
UNUSED(L);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-12-08 18:46:35 +00:00
|
|
|
LJLIB_CF(string_dump)
|
|
|
|
{
|
2011-06-12 22:58:13 +00:00
|
|
|
GCfunc *fn = lj_lib_checkfunc(L, 1);
|
|
|
|
int strip = L->base+1 < L->top && tvistruecond(L->base+1);
|
2013-04-26 17:20:21 +00:00
|
|
|
SBuf *sb = lj_buf_tmp_(L); /* Assumes lj_bcwrite() doesn't use tmpbuf. */
|
2011-06-12 22:58:13 +00:00
|
|
|
L->top = L->base+1;
|
2013-03-20 15:56:09 +00:00
|
|
|
if (!isluafunc(fn) || lj_bcwrite(L, funcproto(fn), writer_buf, sb, strip))
|
2011-06-12 22:58:13 +00:00
|
|
|
lj_err_caller(L, LJ_ERR_STRDUMP);
|
2013-03-20 15:56:09 +00:00
|
|
|
setstrV(L, L->top-1, lj_buf_str(L, sb));
|
|
|
|
lj_gc_check(L);
|
2011-06-12 22:58:13 +00:00
|
|
|
return 1;
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
|
|
|
|
/* macro to `unsign' a character */
|
|
|
|
#define uchar(c) ((unsigned char)(c))
|
|
|
|
|
|
|
|
#define CAP_UNFINISHED (-1)
|
|
|
|
#define CAP_POSITION (-2)
|
|
|
|
|
|
|
|
typedef struct MatchState {
|
|
|
|
const char *src_init; /* init of source string */
|
|
|
|
const char *src_end; /* end (`\0') of source string */
|
|
|
|
lua_State *L;
|
|
|
|
int level; /* total number of captures (finished or unfinished) */
|
2012-08-28 19:22:23 +00:00
|
|
|
int depth;
|
2009-12-08 18:46:35 +00:00
|
|
|
struct {
|
|
|
|
const char *init;
|
|
|
|
ptrdiff_t len;
|
|
|
|
} capture[LUA_MAXCAPTURES];
|
|
|
|
} MatchState;
|
|
|
|
|
|
|
|
#define L_ESC '%'
|
|
|
|
#define SPECIALS "^$*+?.([%-"
|
|
|
|
|
|
|
|
static int check_capture(MatchState *ms, int l)
|
|
|
|
{
|
|
|
|
l -= '1';
|
|
|
|
if (l < 0 || l >= ms->level || ms->capture[l].len == CAP_UNFINISHED)
|
|
|
|
lj_err_caller(ms->L, LJ_ERR_STRCAPI);
|
|
|
|
return l;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int capture_to_close(MatchState *ms)
|
|
|
|
{
|
|
|
|
int level = ms->level;
|
|
|
|
for (level--; level>=0; level--)
|
|
|
|
if (ms->capture[level].len == CAP_UNFINISHED) return level;
|
|
|
|
lj_err_caller(ms->L, LJ_ERR_STRPATC);
|
|
|
|
return 0; /* unreachable */
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *classend(MatchState *ms, const char *p)
|
|
|
|
{
|
|
|
|
switch (*p++) {
|
|
|
|
case L_ESC:
|
|
|
|
if (*p == '\0')
|
|
|
|
lj_err_caller(ms->L, LJ_ERR_STRPATE);
|
|
|
|
return p+1;
|
|
|
|
case '[':
|
|
|
|
if (*p == '^') p++;
|
|
|
|
do { /* look for a `]' */
|
|
|
|
if (*p == '\0')
|
|
|
|
lj_err_caller(ms->L, LJ_ERR_STRPATM);
|
|
|
|
if (*(p++) == L_ESC && *p != '\0')
|
|
|
|
p++; /* skip escapes (e.g. `%]') */
|
|
|
|
} while (*p != ']');
|
|
|
|
return p+1;
|
|
|
|
default:
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const unsigned char match_class_map[32] = {
|
2010-11-19 17:37:10 +00:00
|
|
|
0,LJ_CHAR_ALPHA,0,LJ_CHAR_CNTRL,LJ_CHAR_DIGIT,0,0,LJ_CHAR_GRAPH,0,0,0,0,
|
|
|
|
LJ_CHAR_LOWER,0,0,0,LJ_CHAR_PUNCT,0,0,LJ_CHAR_SPACE,0,
|
|
|
|
LJ_CHAR_UPPER,0,LJ_CHAR_ALNUM,LJ_CHAR_XDIGIT,0,0,0,0,0,0,0
|
2009-12-08 18:46:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static int match_class(int c, int cl)
|
|
|
|
{
|
|
|
|
if ((cl & 0xc0) == 0x40) {
|
|
|
|
int t = match_class_map[(cl&0x1f)];
|
|
|
|
if (t) {
|
2010-11-09 11:09:54 +00:00
|
|
|
t = lj_char_isa(c, t);
|
2009-12-08 18:46:35 +00:00
|
|
|
return (cl & 0x20) ? t : !t;
|
|
|
|
}
|
|
|
|
if (cl == 'z') return c == 0;
|
|
|
|
if (cl == 'Z') return c != 0;
|
|
|
|
}
|
|
|
|
return (cl == c);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int matchbracketclass(int c, const char *p, const char *ec)
|
|
|
|
{
|
|
|
|
int sig = 1;
|
|
|
|
if (*(p+1) == '^') {
|
|
|
|
sig = 0;
|
|
|
|
p++; /* skip the `^' */
|
|
|
|
}
|
|
|
|
while (++p < ec) {
|
|
|
|
if (*p == L_ESC) {
|
|
|
|
p++;
|
|
|
|
if (match_class(c, uchar(*p)))
|
|
|
|
return sig;
|
|
|
|
}
|
|
|
|
else if ((*(p+1) == '-') && (p+2 < ec)) {
|
|
|
|
p+=2;
|
|
|
|
if (uchar(*(p-2)) <= c && c <= uchar(*p))
|
|
|
|
return sig;
|
|
|
|
}
|
|
|
|
else if (uchar(*p) == c) return sig;
|
|
|
|
}
|
|
|
|
return !sig;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int singlematch(int c, const char *p, const char *ep)
|
|
|
|
{
|
|
|
|
switch (*p) {
|
|
|
|
case '.': return 1; /* matches any char */
|
|
|
|
case L_ESC: return match_class(c, uchar(*(p+1)));
|
|
|
|
case '[': return matchbracketclass(c, p, ep-1);
|
|
|
|
default: return (uchar(*p) == c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *match(MatchState *ms, const char *s, const char *p);
|
|
|
|
|
|
|
|
static const char *matchbalance(MatchState *ms, const char *s, const char *p)
|
|
|
|
{
|
|
|
|
if (*p == 0 || *(p+1) == 0)
|
|
|
|
lj_err_caller(ms->L, LJ_ERR_STRPATU);
|
|
|
|
if (*s != *p) {
|
|
|
|
return NULL;
|
|
|
|
} else {
|
|
|
|
int b = *p;
|
|
|
|
int e = *(p+1);
|
|
|
|
int cont = 1;
|
|
|
|
while (++s < ms->src_end) {
|
|
|
|
if (*s == e) {
|
|
|
|
if (--cont == 0) return s+1;
|
|
|
|
} else if (*s == b) {
|
|
|
|
cont++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL; /* string ends out of balance */
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *max_expand(MatchState *ms, const char *s,
|
|
|
|
const char *p, const char *ep)
|
|
|
|
{
|
|
|
|
ptrdiff_t i = 0; /* counts maximum expand for item */
|
|
|
|
while ((s+i)<ms->src_end && singlematch(uchar(*(s+i)), p, ep))
|
|
|
|
i++;
|
|
|
|
/* keeps trying to match with the maximum repetitions */
|
|
|
|
while (i>=0) {
|
|
|
|
const char *res = match(ms, (s+i), ep+1);
|
|
|
|
if (res) return res;
|
|
|
|
i--; /* else didn't match; reduce 1 repetition to try again */
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *min_expand(MatchState *ms, const char *s,
|
|
|
|
const char *p, const char *ep)
|
|
|
|
{
|
|
|
|
for (;;) {
|
|
|
|
const char *res = match(ms, s, ep+1);
|
|
|
|
if (res != NULL)
|
|
|
|
return res;
|
|
|
|
else if (s<ms->src_end && singlematch(uchar(*s), p, ep))
|
|
|
|
s++; /* try with one more repetition */
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *start_capture(MatchState *ms, const char *s,
|
|
|
|
const char *p, int what)
|
|
|
|
{
|
|
|
|
const char *res;
|
|
|
|
int level = ms->level;
|
|
|
|
if (level >= LUA_MAXCAPTURES) lj_err_caller(ms->L, LJ_ERR_STRCAPN);
|
|
|
|
ms->capture[level].init = s;
|
|
|
|
ms->capture[level].len = what;
|
|
|
|
ms->level = level+1;
|
|
|
|
if ((res=match(ms, s, p)) == NULL) /* match failed? */
|
|
|
|
ms->level--; /* undo capture */
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *end_capture(MatchState *ms, const char *s,
|
|
|
|
const char *p)
|
|
|
|
{
|
|
|
|
int l = capture_to_close(ms);
|
|
|
|
const char *res;
|
|
|
|
ms->capture[l].len = s - ms->capture[l].init; /* close capture */
|
|
|
|
if ((res = match(ms, s, p)) == NULL) /* match failed? */
|
|
|
|
ms->capture[l].len = CAP_UNFINISHED; /* undo capture */
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *match_capture(MatchState *ms, const char *s, int l)
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
l = check_capture(ms, l);
|
|
|
|
len = (size_t)ms->capture[l].len;
|
|
|
|
if ((size_t)(ms->src_end-s) >= len &&
|
|
|
|
memcmp(ms->capture[l].init, s, len) == 0)
|
|
|
|
return s+len;
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *match(MatchState *ms, const char *s, const char *p)
|
|
|
|
{
|
2012-08-28 19:22:23 +00:00
|
|
|
if (++ms->depth > LJ_MAX_XLEVEL)
|
|
|
|
lj_err_caller(ms->L, LJ_ERR_STRPATX);
|
2009-12-08 18:46:35 +00:00
|
|
|
init: /* using goto's to optimize tail recursion */
|
|
|
|
switch (*p) {
|
|
|
|
case '(': /* start capture */
|
|
|
|
if (*(p+1) == ')') /* position capture? */
|
2012-08-28 19:22:23 +00:00
|
|
|
s = start_capture(ms, s, p+2, CAP_POSITION);
|
2009-12-08 18:46:35 +00:00
|
|
|
else
|
2012-08-28 19:22:23 +00:00
|
|
|
s = start_capture(ms, s, p+1, CAP_UNFINISHED);
|
|
|
|
break;
|
2009-12-08 18:46:35 +00:00
|
|
|
case ')': /* end capture */
|
2012-08-28 19:22:23 +00:00
|
|
|
s = end_capture(ms, s, p+1);
|
|
|
|
break;
|
2009-12-08 18:46:35 +00:00
|
|
|
case L_ESC:
|
|
|
|
switch (*(p+1)) {
|
|
|
|
case 'b': /* balanced string? */
|
|
|
|
s = matchbalance(ms, s, p+2);
|
2012-08-28 19:22:23 +00:00
|
|
|
if (s == NULL) break;
|
2009-12-08 18:46:35 +00:00
|
|
|
p+=4;
|
2012-08-28 19:22:23 +00:00
|
|
|
goto init; /* else s = match(ms, s, p+4); */
|
2009-12-08 18:46:35 +00:00
|
|
|
case 'f': { /* frontier? */
|
|
|
|
const char *ep; char previous;
|
|
|
|
p += 2;
|
|
|
|
if (*p != '[')
|
|
|
|
lj_err_caller(ms->L, LJ_ERR_STRPATB);
|
|
|
|
ep = classend(ms, p); /* points to what is next */
|
|
|
|
previous = (s == ms->src_init) ? '\0' : *(s-1);
|
|
|
|
if (matchbracketclass(uchar(previous), p, ep-1) ||
|
2012-08-28 19:22:23 +00:00
|
|
|
!matchbracketclass(uchar(*s), p, ep-1)) { s = NULL; break; }
|
2009-12-08 18:46:35 +00:00
|
|
|
p=ep;
|
2012-08-28 19:22:23 +00:00
|
|
|
goto init; /* else s = match(ms, s, ep); */
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
default:
|
2010-11-09 11:09:54 +00:00
|
|
|
if (lj_char_isdigit(uchar(*(p+1)))) { /* capture results (%0-%9)? */
|
2009-12-08 18:46:35 +00:00
|
|
|
s = match_capture(ms, s, uchar(*(p+1)));
|
2012-08-28 19:22:23 +00:00
|
|
|
if (s == NULL) break;
|
2009-12-08 18:46:35 +00:00
|
|
|
p+=2;
|
2012-08-28 19:22:23 +00:00
|
|
|
goto init; /* else s = match(ms, s, p+2) */
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
goto dflt; /* case default */
|
|
|
|
}
|
2012-08-28 19:22:23 +00:00
|
|
|
break;
|
2009-12-08 18:46:35 +00:00
|
|
|
case '\0': /* end of pattern */
|
2012-08-28 19:22:23 +00:00
|
|
|
break; /* match succeeded */
|
2009-12-08 18:46:35 +00:00
|
|
|
case '$':
|
2012-08-28 19:22:23 +00:00
|
|
|
/* is the `$' the last char in pattern? */
|
|
|
|
if (*(p+1) != '\0') goto dflt;
|
|
|
|
if (s != ms->src_end) s = NULL; /* check end of string */
|
|
|
|
break;
|
2009-12-08 18:46:35 +00:00
|
|
|
default: dflt: { /* it is a pattern item */
|
|
|
|
const char *ep = classend(ms, p); /* points to what is next */
|
|
|
|
int m = s<ms->src_end && singlematch(uchar(*s), p, ep);
|
|
|
|
switch (*ep) {
|
|
|
|
case '?': { /* optional */
|
|
|
|
const char *res;
|
2012-08-28 19:22:23 +00:00
|
|
|
if (m && ((res=match(ms, s+1, ep+1)) != NULL)) {
|
|
|
|
s = res;
|
|
|
|
break;
|
|
|
|
}
|
2009-12-08 18:46:35 +00:00
|
|
|
p=ep+1;
|
2012-08-28 19:22:23 +00:00
|
|
|
goto init; /* else s = match(ms, s, ep+1); */
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
case '*': /* 0 or more repetitions */
|
2012-08-28 19:22:23 +00:00
|
|
|
s = max_expand(ms, s, p, ep);
|
|
|
|
break;
|
2009-12-08 18:46:35 +00:00
|
|
|
case '+': /* 1 or more repetitions */
|
2012-08-28 19:22:23 +00:00
|
|
|
s = (m ? max_expand(ms, s+1, p, ep) : NULL);
|
|
|
|
break;
|
2009-12-08 18:46:35 +00:00
|
|
|
case '-': /* 0 or more repetitions (minimum) */
|
2012-08-28 19:22:23 +00:00
|
|
|
s = min_expand(ms, s, p, ep);
|
|
|
|
break;
|
2009-12-08 18:46:35 +00:00
|
|
|
default:
|
2012-08-28 19:22:23 +00:00
|
|
|
if (m) { s++; p=ep; goto init; } /* else s = match(ms, s+1, ep); */
|
|
|
|
s = NULL;
|
|
|
|
break;
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
2012-08-28 19:22:23 +00:00
|
|
|
break;
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
}
|
2012-08-28 19:22:23 +00:00
|
|
|
ms->depth--;
|
|
|
|
return s;
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char *lmemfind(const char *s1, size_t l1,
|
|
|
|
const char *s2, size_t l2)
|
|
|
|
{
|
|
|
|
if (l2 == 0) {
|
|
|
|
return s1; /* empty strings are everywhere */
|
|
|
|
} else if (l2 > l1) {
|
|
|
|
return NULL; /* avoids a negative `l1' */
|
|
|
|
} else {
|
|
|
|
const char *init; /* to search for a `*s2' inside `s1' */
|
|
|
|
l2--; /* 1st char will be checked by `memchr' */
|
|
|
|
l1 = l1-l2; /* `s2' cannot be found after that */
|
|
|
|
while (l1 > 0 && (init = (const char *)memchr(s1, *s2, l1)) != NULL) {
|
|
|
|
init++; /* 1st char is already checked */
|
|
|
|
if (memcmp(init, s2+1, l2) == 0) {
|
|
|
|
return init-1;
|
|
|
|
} else { /* correct `l1' and `s1' to try again */
|
|
|
|
l1 -= (size_t)(init-s1);
|
|
|
|
s1 = init;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL; /* not found */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void push_onecapture(MatchState *ms, int i, const char *s, const char *e)
|
|
|
|
{
|
|
|
|
if (i >= ms->level) {
|
|
|
|
if (i == 0) /* ms->level == 0, too */
|
|
|
|
lua_pushlstring(ms->L, s, (size_t)(e - s)); /* add whole match */
|
|
|
|
else
|
|
|
|
lj_err_caller(ms->L, LJ_ERR_STRCAPI);
|
|
|
|
} else {
|
|
|
|
ptrdiff_t l = ms->capture[i].len;
|
|
|
|
if (l == CAP_UNFINISHED) lj_err_caller(ms->L, LJ_ERR_STRCAPU);
|
|
|
|
if (l == CAP_POSITION)
|
|
|
|
lua_pushinteger(ms->L, ms->capture[i].init - ms->src_init + 1);
|
|
|
|
else
|
|
|
|
lua_pushlstring(ms->L, ms->capture[i].init, (size_t)l);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int push_captures(MatchState *ms, const char *s, const char *e)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int nlevels = (ms->level == 0 && s) ? 1 : ms->level;
|
|
|
|
luaL_checkstack(ms->L, nlevels, "too many captures");
|
|
|
|
for (i = 0; i < nlevels; i++)
|
|
|
|
push_onecapture(ms, i, s, e);
|
|
|
|
return nlevels; /* number of strings pushed */
|
|
|
|
}
|
|
|
|
|
|
|
|
static ptrdiff_t posrelat(ptrdiff_t pos, size_t len)
|
|
|
|
{
|
|
|
|
/* relative string position: negative means back from end */
|
|
|
|
if (pos < 0) pos += (ptrdiff_t)len + 1;
|
|
|
|
return (pos >= 0) ? pos : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int str_find_aux(lua_State *L, int find)
|
|
|
|
{
|
|
|
|
size_t l1, l2;
|
|
|
|
const char *s = luaL_checklstring(L, 1, &l1);
|
|
|
|
const char *p = luaL_checklstring(L, 2, &l2);
|
|
|
|
ptrdiff_t init = posrelat(luaL_optinteger(L, 3, 1), l1) - 1;
|
2012-10-02 09:56:33 +00:00
|
|
|
if (init < 0) {
|
2009-12-08 18:46:35 +00:00
|
|
|
init = 0;
|
2012-10-02 09:56:33 +00:00
|
|
|
} else if ((size_t)(init) > l1) {
|
|
|
|
#if LJ_52
|
|
|
|
setnilV(L->top-1);
|
|
|
|
return 1;
|
|
|
|
#else
|
2009-12-08 18:46:35 +00:00
|
|
|
init = (ptrdiff_t)l1;
|
2012-10-02 09:56:33 +00:00
|
|
|
#endif
|
|
|
|
}
|
2009-12-08 18:46:35 +00:00
|
|
|
if (find && (lua_toboolean(L, 4) || /* explicit request? */
|
|
|
|
strpbrk(p, SPECIALS) == NULL)) { /* or no special characters? */
|
|
|
|
/* do a plain search */
|
|
|
|
const char *s2 = lmemfind(s+init, l1-(size_t)init, p, l2);
|
|
|
|
if (s2) {
|
|
|
|
lua_pushinteger(L, s2-s+1);
|
|
|
|
lua_pushinteger(L, s2-s+(ptrdiff_t)l2);
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
MatchState ms;
|
|
|
|
int anchor = (*p == '^') ? (p++, 1) : 0;
|
|
|
|
const char *s1=s+init;
|
|
|
|
ms.L = L;
|
|
|
|
ms.src_init = s;
|
|
|
|
ms.src_end = s+l1;
|
|
|
|
do {
|
|
|
|
const char *res;
|
2012-08-28 19:22:23 +00:00
|
|
|
ms.level = ms.depth = 0;
|
2009-12-08 18:46:35 +00:00
|
|
|
if ((res=match(&ms, s1, p)) != NULL) {
|
|
|
|
if (find) {
|
|
|
|
lua_pushinteger(L, s1-s+1); /* start */
|
|
|
|
lua_pushinteger(L, res-s); /* end */
|
|
|
|
return push_captures(&ms, NULL, 0) + 2;
|
|
|
|
} else {
|
|
|
|
return push_captures(&ms, s1, res);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (s1++ < ms.src_end && !anchor);
|
|
|
|
}
|
|
|
|
lua_pushnil(L); /* not found */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
LJLIB_CF(string_find)
|
|
|
|
{
|
|
|
|
return str_find_aux(L, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
LJLIB_CF(string_match)
|
|
|
|
{
|
|
|
|
return str_find_aux(L, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
LJLIB_NOREG LJLIB_CF(string_gmatch_aux)
|
|
|
|
{
|
|
|
|
const char *p = strVdata(lj_lib_upvalue(L, 2));
|
|
|
|
GCstr *str = strV(lj_lib_upvalue(L, 1));
|
|
|
|
const char *s = strdata(str);
|
|
|
|
TValue *tvpos = lj_lib_upvalue(L, 3);
|
|
|
|
const char *src = s + tvpos->u32.lo;
|
|
|
|
MatchState ms;
|
|
|
|
ms.L = L;
|
|
|
|
ms.src_init = s;
|
|
|
|
ms.src_end = s + str->len;
|
|
|
|
for (; src <= ms.src_end; src++) {
|
|
|
|
const char *e;
|
2012-08-28 19:22:23 +00:00
|
|
|
ms.level = ms.depth = 0;
|
2009-12-08 18:46:35 +00:00
|
|
|
if ((e = match(&ms, src, p)) != NULL) {
|
|
|
|
int32_t pos = (int32_t)(e - s);
|
|
|
|
if (e == src) pos++; /* Ensure progress for empty match. */
|
|
|
|
tvpos->u32.lo = (uint32_t)pos;
|
|
|
|
return push_captures(&ms, src, e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0; /* not found */
|
|
|
|
}
|
|
|
|
|
|
|
|
LJLIB_CF(string_gmatch)
|
|
|
|
{
|
|
|
|
lj_lib_checkstr(L, 1);
|
|
|
|
lj_lib_checkstr(L, 2);
|
|
|
|
L->top = L->base+3;
|
|
|
|
(L->top-1)->u64 = 0;
|
2010-02-13 03:51:56 +00:00
|
|
|
lj_lib_pushcc(L, lj_cf_string_gmatch_aux, FF_string_gmatch_aux, 3);
|
2009-12-08 18:46:35 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void add_s(MatchState *ms, luaL_Buffer *b, const char *s, const char *e)
|
|
|
|
{
|
|
|
|
size_t l, i;
|
|
|
|
const char *news = lua_tolstring(ms->L, 3, &l);
|
|
|
|
for (i = 0; i < l; i++) {
|
|
|
|
if (news[i] != L_ESC) {
|
|
|
|
luaL_addchar(b, news[i]);
|
|
|
|
} else {
|
|
|
|
i++; /* skip ESC */
|
2010-11-09 11:09:54 +00:00
|
|
|
if (!lj_char_isdigit(uchar(news[i]))) {
|
2009-12-08 18:46:35 +00:00
|
|
|
luaL_addchar(b, news[i]);
|
|
|
|
} else if (news[i] == '0') {
|
|
|
|
luaL_addlstring(b, s, (size_t)(e - s));
|
|
|
|
} else {
|
|
|
|
push_onecapture(ms, news[i] - '1', s, e);
|
|
|
|
luaL_addvalue(b); /* add capture to accumulated result */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void add_value(MatchState *ms, luaL_Buffer *b,
|
|
|
|
const char *s, const char *e)
|
|
|
|
{
|
|
|
|
lua_State *L = ms->L;
|
|
|
|
switch (lua_type(L, 3)) {
|
|
|
|
case LUA_TNUMBER:
|
|
|
|
case LUA_TSTRING: {
|
|
|
|
add_s(ms, b, s, e);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
case LUA_TFUNCTION: {
|
|
|
|
int n;
|
|
|
|
lua_pushvalue(L, 3);
|
|
|
|
n = push_captures(ms, s, e);
|
|
|
|
lua_call(L, n, 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case LUA_TTABLE: {
|
|
|
|
push_onecapture(ms, 0, s, e);
|
|
|
|
lua_gettable(L, 3);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!lua_toboolean(L, -1)) { /* nil or false? */
|
|
|
|
lua_pop(L, 1);
|
|
|
|
lua_pushlstring(L, s, (size_t)(e - s)); /* keep original text */
|
|
|
|
} else if (!lua_isstring(L, -1)) {
|
|
|
|
lj_err_callerv(L, LJ_ERR_STRGSRV, luaL_typename(L, -1));
|
|
|
|
}
|
|
|
|
luaL_addvalue(b); /* add result to accumulator */
|
|
|
|
}
|
|
|
|
|
|
|
|
LJLIB_CF(string_gsub)
|
|
|
|
{
|
|
|
|
size_t srcl;
|
|
|
|
const char *src = luaL_checklstring(L, 1, &srcl);
|
|
|
|
const char *p = luaL_checkstring(L, 2);
|
|
|
|
int tr = lua_type(L, 3);
|
|
|
|
int max_s = luaL_optint(L, 4, (int)(srcl+1));
|
|
|
|
int anchor = (*p == '^') ? (p++, 1) : 0;
|
|
|
|
int n = 0;
|
|
|
|
MatchState ms;
|
|
|
|
luaL_Buffer b;
|
|
|
|
if (!(tr == LUA_TNUMBER || tr == LUA_TSTRING ||
|
|
|
|
tr == LUA_TFUNCTION || tr == LUA_TTABLE))
|
|
|
|
lj_err_arg(L, 3, LJ_ERR_NOSFT);
|
|
|
|
luaL_buffinit(L, &b);
|
|
|
|
ms.L = L;
|
|
|
|
ms.src_init = src;
|
|
|
|
ms.src_end = src+srcl;
|
|
|
|
while (n < max_s) {
|
|
|
|
const char *e;
|
2012-08-28 19:22:23 +00:00
|
|
|
ms.level = ms.depth = 0;
|
2009-12-08 18:46:35 +00:00
|
|
|
e = match(&ms, src, p);
|
|
|
|
if (e) {
|
|
|
|
n++;
|
|
|
|
add_value(&ms, &b, src, e);
|
|
|
|
}
|
|
|
|
if (e && e>src) /* non empty match? */
|
|
|
|
src = e; /* skip it */
|
|
|
|
else if (src < ms.src_end)
|
|
|
|
luaL_addchar(&b, *src++);
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
if (anchor)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
luaL_addlstring(&b, src, (size_t)(ms.src_end-src));
|
|
|
|
luaL_pushresult(&b);
|
|
|
|
lua_pushinteger(L, n); /* number of substitutions */
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
|
2013-03-20 21:45:52 +00:00
|
|
|
/* Max. buffer size needed (at least #string.format("%99.99f", -1e308)). */
|
|
|
|
#define STRING_FMT_MAXBUF 512
|
|
|
|
/* Valid format specifier flags. */
|
|
|
|
#define STRING_FMT_FLAGS "-+ #0"
|
|
|
|
/* Max. format specifier size. */
|
|
|
|
#define STRING_FMT_MAXSPEC \
|
|
|
|
(sizeof(STRING_FMT_FLAGS) + sizeof(LUA_INTFRMLEN) + 10)
|
2009-12-08 18:46:35 +00:00
|
|
|
|
2013-03-20 21:45:52 +00:00
|
|
|
/* Add quoted string to buffer. */
|
|
|
|
static void string_fmt_quoted(SBuf *sb, GCstr *str)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
|
|
|
const char *s = strdata(str);
|
2013-03-20 21:45:52 +00:00
|
|
|
MSize len = str->len;
|
|
|
|
lj_buf_putb(sb, '"');
|
2009-12-08 18:46:35 +00:00
|
|
|
while (len--) {
|
2013-03-20 21:45:52 +00:00
|
|
|
uint32_t c = (uint32_t)(uint8_t)*s++;
|
|
|
|
char *p = lj_buf_more(sb, 4);
|
2012-08-26 17:41:35 +00:00
|
|
|
if (c == '"' || c == '\\' || c == '\n') {
|
2013-03-20 21:45:52 +00:00
|
|
|
*p++ = '\\';
|
2012-08-26 17:41:35 +00:00
|
|
|
} else if (lj_char_iscntrl(c)) { /* This can only be 0-31 or 127. */
|
|
|
|
uint32_t d;
|
2013-03-20 21:45:52 +00:00
|
|
|
*p++ = '\\';
|
|
|
|
if (c >= 100 || lj_char_isdigit((uint8_t)*s)) {
|
|
|
|
*p++ = (char)('0'+(c >= 100)); if (c >= 100) c -= 100;
|
2012-08-26 17:41:35 +00:00
|
|
|
goto tens;
|
|
|
|
} else if (c >= 10) {
|
|
|
|
tens:
|
2013-03-20 21:45:52 +00:00
|
|
|
d = (c * 205) >> 11; c -= d * 10; *p++ = (char)('0'+d);
|
2012-08-26 17:41:35 +00:00
|
|
|
}
|
|
|
|
c += '0';
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
2013-03-20 21:45:52 +00:00
|
|
|
*p++ = (char)c;
|
|
|
|
setsbufP(sb, p);
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
2013-03-20 21:45:52 +00:00
|
|
|
lj_buf_putb(sb, '"');
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
2013-03-20 21:45:52 +00:00
|
|
|
/* Scan format and generate format specifier. */
|
|
|
|
static const char *string_fmt_scan(lua_State *L, char *spec, const char *fmt)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2013-03-20 21:45:52 +00:00
|
|
|
const char *p = fmt;
|
|
|
|
while (*p && strchr(STRING_FMT_FLAGS, *p) != NULL) p++; /* Skip flags. */
|
|
|
|
if ((size_t)(p - fmt) >= sizeof(STRING_FMT_FLAGS))
|
2009-12-08 18:46:35 +00:00
|
|
|
lj_err_caller(L, LJ_ERR_STRFMTR);
|
2013-03-20 21:45:52 +00:00
|
|
|
if (lj_char_isdigit((uint8_t)*p)) p++; /* Skip max. 2 digits for width. */
|
|
|
|
if (lj_char_isdigit((uint8_t)*p)) p++;
|
2009-12-08 18:46:35 +00:00
|
|
|
if (*p == '.') {
|
|
|
|
p++;
|
2013-03-20 21:45:52 +00:00
|
|
|
if (lj_char_isdigit((uint8_t)*p)) p++; /* Skip max. 2 digits for prec. */
|
|
|
|
if (lj_char_isdigit((uint8_t)*p)) p++;
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
2013-03-20 21:45:52 +00:00
|
|
|
if (lj_char_isdigit((uint8_t)*p))
|
2009-12-08 18:46:35 +00:00
|
|
|
lj_err_caller(L, LJ_ERR_STRFMTW);
|
2013-03-20 21:45:52 +00:00
|
|
|
*spec++ = '%';
|
|
|
|
strncpy(spec, fmt, (size_t)(p - fmt + 1));
|
|
|
|
spec += p - fmt + 1;
|
|
|
|
*spec = '\0';
|
2009-12-08 18:46:35 +00:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2013-03-20 21:45:52 +00:00
|
|
|
/* Patch LUA_INTRFRMLEN into integer format specifier. */
|
|
|
|
static void string_fmt_intfmt(char *spec)
|
2009-12-08 18:46:35 +00:00
|
|
|
{
|
2013-03-20 21:45:52 +00:00
|
|
|
char c;
|
|
|
|
do {
|
|
|
|
c = *spec++;
|
|
|
|
} while (*spec);
|
|
|
|
*--spec = (LUA_INTFRMLEN)[0];
|
|
|
|
if ((LUA_INTFRMLEN)[1]) *++spec = (LUA_INTFRMLEN)[1];
|
|
|
|
*++spec = c;
|
|
|
|
*++spec = '\0';
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
|
2013-03-20 21:45:52 +00:00
|
|
|
/* Derive sprintf argument for integer format. Ugly. */
|
|
|
|
static LUA_INTFRM_T string_fmt_intarg(lua_State *L, int arg)
|
2011-02-27 00:36:59 +00:00
|
|
|
{
|
|
|
|
if (sizeof(LUA_INTFRM_T) == 4) {
|
|
|
|
return (LUA_INTFRM_T)lj_lib_checkbit(L, arg);
|
|
|
|
} else {
|
|
|
|
cTValue *o;
|
|
|
|
lj_lib_checknumber(L, arg);
|
|
|
|
o = L->base+arg-1;
|
|
|
|
if (tvisint(o))
|
|
|
|
return (LUA_INTFRM_T)intV(o);
|
|
|
|
else
|
|
|
|
return (LUA_INTFRM_T)numV(o);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-20 21:45:52 +00:00
|
|
|
/* Derive sprintf argument for unsigned integer format. Ugly. */
|
|
|
|
static unsigned LUA_INTFRM_T string_fmt_uintarg(lua_State *L, int arg)
|
2011-02-27 00:36:59 +00:00
|
|
|
{
|
|
|
|
if (sizeof(LUA_INTFRM_T) == 4) {
|
|
|
|
return (unsigned LUA_INTFRM_T)lj_lib_checkbit(L, arg);
|
|
|
|
} else {
|
|
|
|
cTValue *o;
|
|
|
|
lj_lib_checknumber(L, arg);
|
|
|
|
o = L->base+arg-1;
|
|
|
|
if (tvisint(o))
|
|
|
|
return (unsigned LUA_INTFRM_T)intV(o);
|
|
|
|
else if ((int32_t)o->u32.hi < 0)
|
|
|
|
return (unsigned LUA_INTFRM_T)(LUA_INTFRM_T)numV(o);
|
|
|
|
else
|
|
|
|
return (unsigned LUA_INTFRM_T)numV(o);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-20 21:45:52 +00:00
|
|
|
/* Emulate tostring() inline. */
|
|
|
|
static GCstr *string_fmt_tostring(lua_State *L, int arg)
|
2012-10-02 09:59:32 +00:00
|
|
|
{
|
|
|
|
TValue *o = L->base+arg-1;
|
|
|
|
cTValue *mo;
|
|
|
|
lua_assert(o < L->top); /* Caller already checks for existence. */
|
|
|
|
if (LJ_LIKELY(tvisstr(o)))
|
|
|
|
return strV(o);
|
|
|
|
if (!tvisnil(mo = lj_meta_lookup(L, o, MM_tostring))) {
|
|
|
|
copyTV(L, L->top++, mo);
|
|
|
|
copyTV(L, L->top++, o);
|
|
|
|
lua_call(L, 1, 1);
|
|
|
|
L->top--;
|
|
|
|
if (tvisstr(L->top))
|
|
|
|
return strV(L->top);
|
|
|
|
o = L->base+arg-1;
|
|
|
|
copyTV(L, o, L->top);
|
|
|
|
}
|
|
|
|
if (tvisnumber(o)) {
|
|
|
|
return lj_str_fromnumber(L, o);
|
|
|
|
} else if (tvisnil(o)) {
|
|
|
|
return lj_str_newlit(L, "nil");
|
|
|
|
} else if (tvisfalse(o)) {
|
|
|
|
return lj_str_newlit(L, "false");
|
|
|
|
} else if (tvistrue(o)) {
|
|
|
|
return lj_str_newlit(L, "true");
|
|
|
|
} else {
|
|
|
|
if (tvisfunc(o) && isffunc(funcV(o)))
|
|
|
|
lj_str_pushf(L, "function: builtin#%d", funcV(o)->c.ffid);
|
|
|
|
else
|
|
|
|
lj_str_pushf(L, "%s: %p", lj_typename(o), lua_topointer(L, arg));
|
|
|
|
L->top--;
|
|
|
|
return strV(L->top);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-08 18:46:35 +00:00
|
|
|
LJLIB_CF(string_format)
|
|
|
|
{
|
2011-06-10 11:47:11 +00:00
|
|
|
int arg = 1, top = (int)(L->top - L->base);
|
2013-03-20 21:45:52 +00:00
|
|
|
GCstr *sfmt = lj_lib_checkstr(L, arg);
|
|
|
|
const char *fmt = strdata(sfmt);
|
|
|
|
const char *efmt = fmt + sfmt->len;
|
2013-04-26 17:20:21 +00:00
|
|
|
SBuf *sb = lj_buf_tmp_(L);
|
2013-03-20 21:45:52 +00:00
|
|
|
while (fmt < efmt) {
|
|
|
|
if (*fmt != L_ESC || *++fmt == L_ESC) {
|
|
|
|
lj_buf_putb(sb, *fmt++);
|
|
|
|
} else {
|
|
|
|
char buf[STRING_FMT_MAXBUF];
|
|
|
|
char spec[STRING_FMT_MAXSPEC];
|
|
|
|
MSize len = 0;
|
2011-06-10 11:47:11 +00:00
|
|
|
if (++arg > top)
|
|
|
|
luaL_argerror(L, arg, lj_obj_typename[0]);
|
2013-03-20 21:45:52 +00:00
|
|
|
fmt = string_fmt_scan(L, spec, fmt);
|
|
|
|
switch (*fmt++) {
|
2009-12-08 18:46:35 +00:00
|
|
|
case 'c':
|
2013-03-20 21:45:52 +00:00
|
|
|
len = (MSize)sprintf(buf, spec, lj_lib_checkint(L, arg));
|
2009-12-08 18:46:35 +00:00
|
|
|
break;
|
|
|
|
case 'd': case 'i':
|
2013-03-20 21:45:52 +00:00
|
|
|
string_fmt_intfmt(spec);
|
|
|
|
len = (MSize)sprintf(buf, spec, string_fmt_intarg(L, arg));
|
2009-12-08 18:46:35 +00:00
|
|
|
break;
|
|
|
|
case 'o': case 'u': case 'x': case 'X':
|
2013-03-20 21:45:52 +00:00
|
|
|
string_fmt_intfmt(spec);
|
|
|
|
len = (MSize)sprintf(buf, spec, string_fmt_uintarg(L, arg));
|
2009-12-08 18:46:35 +00:00
|
|
|
break;
|
2012-08-25 20:46:22 +00:00
|
|
|
case 'e': case 'E': case 'f': case 'g': case 'G': case 'a': case 'A': {
|
2010-05-19 22:40:51 +00:00
|
|
|
TValue tv;
|
|
|
|
tv.n = lj_lib_checknum(L, arg);
|
|
|
|
if (LJ_UNLIKELY((tv.u32.hi << 1) >= 0xffe00000)) {
|
|
|
|
/* Canonicalize output of non-finite values. */
|
2013-03-25 15:41:13 +00:00
|
|
|
char nbuf[LJ_STR_NUMBUF];
|
|
|
|
char *p = lj_str_bufnum(nbuf, &tv);
|
|
|
|
if (fmt[-1] < 'a') { *(p-3) -= 0x20; *(p-2) -= 0x20; *(p-1) -= 0x20; }
|
|
|
|
*p = '\0';
|
2013-03-20 21:45:52 +00:00
|
|
|
for (p = spec; *p < 'A' && *p != '.'; p++) ;
|
2010-08-23 18:06:36 +00:00
|
|
|
*p++ = 's'; *p = '\0';
|
2013-03-20 21:45:52 +00:00
|
|
|
len = (MSize)sprintf(buf, spec, nbuf);
|
2010-08-23 18:06:36 +00:00
|
|
|
break;
|
2010-05-19 22:40:51 +00:00
|
|
|
}
|
2013-03-20 21:45:52 +00:00
|
|
|
len = (MSize)sprintf(buf, spec, (double)tv.n);
|
2009-12-08 18:46:35 +00:00
|
|
|
break;
|
2010-05-19 22:40:51 +00:00
|
|
|
}
|
2009-12-08 18:46:35 +00:00
|
|
|
case 'q':
|
2013-03-20 21:45:52 +00:00
|
|
|
string_fmt_quoted(sb, lj_lib_checkstr(L, arg));
|
2009-12-08 18:46:35 +00:00
|
|
|
continue;
|
|
|
|
case 'p':
|
2013-03-25 15:41:13 +00:00
|
|
|
setsbufP(sb, lj_str_bufptr(lj_buf_more(sb, LJ_STR_PTRBUF),
|
|
|
|
lua_topointer(L, arg)));
|
|
|
|
continue;
|
2009-12-08 18:46:35 +00:00
|
|
|
case 's': {
|
2013-03-20 21:45:52 +00:00
|
|
|
GCstr *str = string_fmt_tostring(L, arg);
|
|
|
|
if (!strchr(spec, '.') && str->len >= 100) { /* Format overflow? */
|
|
|
|
lj_buf_putmem(sb, strdata(str), str->len); /* Use orig string. */
|
2009-12-08 18:46:35 +00:00
|
|
|
continue;
|
|
|
|
}
|
2013-03-20 21:45:52 +00:00
|
|
|
len = (MSize)sprintf(buf, spec, strdata(str));
|
2009-12-08 18:46:35 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
2013-03-20 21:45:52 +00:00
|
|
|
lj_err_callerv(L, LJ_ERR_STRFMTO, fmt[-1] ? fmt[-1] : ' ');
|
2009-12-08 18:46:35 +00:00
|
|
|
break;
|
|
|
|
}
|
2013-03-20 21:45:52 +00:00
|
|
|
lj_buf_putmem(sb, buf, len);
|
2009-12-08 18:46:35 +00:00
|
|
|
}
|
|
|
|
}
|
2013-03-20 21:45:52 +00:00
|
|
|
setstrV(L, L->top-1, lj_buf_str(L, sb));
|
|
|
|
lj_gc_check(L);
|
2009-12-08 18:46:35 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
|
|
|
|
#include "lj_libdef.h"
|
|
|
|
|
|
|
|
LUALIB_API int luaopen_string(lua_State *L)
|
|
|
|
{
|
|
|
|
GCtab *mt;
|
2009-12-08 19:35:29 +00:00
|
|
|
global_State *g;
|
2011-02-02 01:38:59 +00:00
|
|
|
LJ_LIB_REG(L, LUA_STRLIBNAME, string);
|
2012-09-19 16:14:00 +00:00
|
|
|
#if defined(LUA_COMPAT_GFIND) && !LJ_52
|
2009-12-08 18:46:35 +00:00
|
|
|
lua_getfield(L, -1, "gmatch");
|
|
|
|
lua_setfield(L, -2, "gfind");
|
|
|
|
#endif
|
|
|
|
mt = lj_tab_new(L, 0, 1);
|
2009-12-08 19:35:29 +00:00
|
|
|
/* NOBARRIER: basemt is a GC root. */
|
|
|
|
g = G(L);
|
|
|
|
setgcref(basemt_it(g, LJ_TSTR), obj2gco(mt));
|
2010-04-25 16:35:47 +00:00
|
|
|
settabV(L, lj_tab_setstr(L, mt, mmname_str(g, MM_index)), tabV(L->top-1));
|
2011-02-16 23:44:14 +00:00
|
|
|
mt->nomm = (uint8_t)(~(1u<<MM_index));
|
2009-12-08 18:46:35 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|