LCOV - code coverage report
Current view: top level - src - lstrlib.c Coverage Total Hit
Test: Lua 5.2.4 Lines: 98.9 % 555 549
Test Date: 2024-04-28 10:23:12
Legend: Lines: hit not hit

            Line data    Source code
       1              : /*
       2              : ** $Id: lstrlib.c,v 1.178.1.1 2013/04/12 18:48:47 roberto Exp $
       3              : ** Standard library for string operations and pattern-matching
       4              : ** See Copyright Notice in lua.h
       5              : */
       6              : 
       7              : 
       8              : #include <ctype.h>
       9              : #include <stddef.h>
      10              : #include <stdio.h>
      11              : #include <stdlib.h>
      12              : #include <string.h>
      13              : 
      14              : #define lstrlib_c
      15              : #define LUA_LIB
      16              : 
      17              : #include "lua.h"
      18              : 
      19              : #include "lauxlib.h"
      20              : #include "lualib.h"
      21              : 
      22              : 
      23              : /*
      24              : ** maximum number of captures that a pattern can do during
      25              : ** pattern-matching. This limit is arbitrary.
      26              : */
      27              : #if !defined(LUA_MAXCAPTURES)
      28              : #define LUA_MAXCAPTURES         32
      29              : #endif
      30              : 
      31              : 
      32              : /* macro to `unsign' a character */
      33              : #define uchar(c)        ((unsigned char)(c))
      34              : 
      35              : 
      36              : 
      37          177 : static int str_len (lua_State *L) {
      38              :   size_t l;
      39          177 :   luaL_checklstring(L, 1, &l);
      40          177 :   lua_pushinteger(L, (lua_Integer)l);
      41          177 :   return 1;
      42              : }
      43              : 
      44              : 
      45              : /* translate a relative string position: negative means back from end */
      46        13305 : static size_t posrelat (ptrdiff_t pos, size_t len) {
      47        13305 :   if (pos >= 0) return (size_t)pos;
      48            3 :   else if (0u - (size_t)pos > len) return 0;
      49            3 :   else return len - ((size_t)-pos) + 1;
      50              : }
      51              : 
      52              : 
      53         6343 : static int str_sub (lua_State *L) {
      54              :   size_t l;
      55         6343 :   const char *s = luaL_checklstring(L, 1, &l);
      56         6343 :   size_t start = posrelat(luaL_checkinteger(L, 2), l);
      57         6343 :   size_t end = posrelat(luaL_optinteger(L, 3, -1), l);
      58         6343 :   if (start < 1) start = 1;
      59         6343 :   if (end > l) end = l;
      60         6343 :   if (start <= end)
      61         6179 :     lua_pushlstring(L, s + start - 1, end - start + 1);
      62          164 :   else lua_pushliteral(L, "");
      63         6343 :   return 1;
      64              : }
      65              : 
      66              : 
      67            5 : static int str_reverse (lua_State *L) {
      68              :   size_t l, i;
      69              :   luaL_Buffer b;
      70            5 :   const char *s = luaL_checklstring(L, 1, &l);
      71            5 :   char *p = luaL_buffinitsize(L, &b, l);
      72           22 :   for (i = 0; i < l; i++)
      73           17 :     p[i] = s[l - i - 1];
      74            5 :   luaL_pushresultsize(&b, l);
      75            5 :   return 1;
      76              : }
      77              : 
      78              : 
      79            2 : static int str_lower (lua_State *L) {
      80              :   size_t l;
      81              :   size_t i;
      82              :   luaL_Buffer b;
      83            2 :   const char *s = luaL_checklstring(L, 1, &l);
      84            2 :   char *p = luaL_buffinitsize(L, &b, l);
      85           10 :   for (i=0; i<l; i++)
      86            8 :     p[i] = tolower(uchar(s[i]));
      87            2 :   luaL_pushresultsize(&b, l);
      88            2 :   return 1;
      89              : }
      90              : 
      91              : 
      92            3 : static int str_upper (lua_State *L) {
      93              :   size_t l;
      94              :   size_t i;
      95              :   luaL_Buffer b;
      96            3 :   const char *s = luaL_checklstring(L, 1, &l);
      97            3 :   char *p = luaL_buffinitsize(L, &b, l);
      98        40011 :   for (i=0; i<l; i++)
      99        40008 :     p[i] = toupper(uchar(s[i]));
     100            3 :   luaL_pushresultsize(&b, l);
     101            3 :   return 1;
     102              : }
     103              : 
     104              : 
     105              : /* reasonable limit to avoid arithmetic overflow */
     106              : #define MAXSIZE         ((~(size_t)0) >> 1)
     107              : 
     108           11 : static int str_rep (lua_State *L) {
     109              :   size_t l, lsep;
     110           11 :   const char *s = luaL_checklstring(L, 1, &l);
     111           11 :   int n = luaL_checkint(L, 2);
     112           11 :   const char *sep = luaL_optlstring(L, 3, "", &lsep);
     113           11 :   if (n <= 0) lua_pushliteral(L, "");
     114            9 :   else if (l + lsep < l || l + lsep >= MAXSIZE / n)  /* may overflow? */
     115            0 :     return luaL_error(L, "resulting string too large");
     116              :   else {
     117            9 :     size_t totallen = n * l + (n - 1) * lsep;
     118              :     luaL_Buffer b;
     119            9 :     char *p = luaL_buffinitsize(L, &b, totallen);
     120      2020202 :     while (n-- > 1) {  /* first n-1 copies (followed by separator) */
     121      2020193 :       memcpy(p, s, l * sizeof(char)); p += l;
     122      2020193 :       if (lsep > 0) {  /* avoid empty 'memcpy' (may be expensive) */
     123      1000002 :         memcpy(p, sep, lsep * sizeof(char)); p += lsep;
     124              :       }
     125              :     }
     126            9 :     memcpy(p, s, l * sizeof(char));  /* last copy (not followed by separator) */
     127            9 :     luaL_pushresultsize(&b, totallen);
     128              :   }
     129           11 :   return 1;
     130              : }
     131              : 
     132              : 
     133           16 : static int str_byte (lua_State *L) {
     134              :   size_t l;
     135           16 :   const char *s = luaL_checklstring(L, 1, &l);
     136           16 :   size_t posi = posrelat(luaL_optinteger(L, 2, 1), l);
     137           16 :   size_t pose = posrelat(luaL_optinteger(L, 3, posi), l);
     138              :   int n, i;
     139           16 :   if (posi < 1) posi = 1;
     140           16 :   if (pose > l) pose = l;
     141           16 :   if (posi > pose) return 0;  /* empty interval; return no values */
     142           14 :   n = (int)(pose -  posi + 1);
     143           14 :   if (posi + n <= pose)  /* (size_t -> int) overflow? */
     144            0 :     return luaL_error(L, "string slice too long");
     145           14 :   luaL_checkstack(L, n, "string slice too long");
     146           32 :   for (i=0; i<n; i++)
     147           18 :     lua_pushinteger(L, uchar(s[posi+i-1]));
     148           14 :   return n;
     149              : }
     150              : 
     151              : 
     152            9 : static int str_char (lua_State *L) {
     153            9 :   int n = lua_gettop(L);  /* number of arguments */
     154              :   int i;
     155              :   luaL_Buffer b;
     156            9 :   char *p = luaL_buffinitsize(L, &b, n);
     157           19 :   for (i=1; i<=n; i++) {
     158           12 :     int c = luaL_checkint(L, i);
     159           11 :     luaL_argcheck(L, uchar(c) == c, i, "value out of range");
     160           10 :     p[i - 1] = uchar(c);
     161              :   }
     162            7 :   luaL_pushresultsize(&b, n);
     163            7 :   return 1;
     164              : }
     165              : 
     166              : 
     167           51 : static int writer (lua_State *L, const void* b, size_t size, void* B) {
     168              :   (void)L;
     169           51 :   luaL_addlstring((luaL_Buffer*) B, (const char *)b, size);
     170           51 :   return 0;
     171              : }
     172              : 
     173              : 
     174            3 : static int str_dump (lua_State *L) {
     175              :   luaL_Buffer b;
     176            3 :   luaL_checktype(L, 1, LUA_TFUNCTION);
     177            3 :   lua_settop(L, 1);
     178            3 :   luaL_buffinit(L,&b);
     179            3 :   if (lua_dump(L, writer, &b) != 0)
     180            1 :     return luaL_error(L, "unable to dump given function");
     181            2 :   luaL_pushresult(&b);
     182            2 :   return 1;
     183              : }
     184              : 
     185              : 
     186              : 
     187              : /*
     188              : ** {======================================================
     189              : ** PATTERN MATCHING
     190              : ** =======================================================
     191              : */
     192              : 
     193              : 
     194              : #define CAP_UNFINISHED  (-1)
     195              : #define CAP_POSITION    (-2)
     196              : 
     197              : 
     198              : typedef struct MatchState {
     199              :   int matchdepth;  /* control for recursive depth (to avoid C stack overflow) */
     200              :   const char *src_init;  /* init of source string */
     201              :   const char *src_end;  /* end ('\0') of source string */
     202              :   const char *p_end;  /* end ('\0') of pattern */
     203              :   lua_State *L;
     204              :   int level;  /* total number of captures (finished or unfinished) */
     205              :   struct {
     206              :     const char *init;
     207              :     ptrdiff_t len;
     208              :   } capture[LUA_MAXCAPTURES];
     209              : } MatchState;
     210              : 
     211              : 
     212              : /* recursive function */
     213              : static const char *match (MatchState *ms, const char *s, const char *p);
     214              : 
     215              : 
     216              : /* maximum recursion depth for 'match' */
     217              : #if !defined(MAXCCALLS)
     218              : #define MAXCCALLS       200
     219              : #endif
     220              : 
     221              : 
     222              : #define L_ESC           '%'
     223              : #define SPECIALS        "^$*+?.([%-"
     224              : 
     225              : 
     226           24 : static int check_capture (MatchState *ms, int l) {
     227           24 :   l -= '1';
     228           24 :   if (l < 0 || l >= ms->level || ms->capture[l].len == CAP_UNFINISHED)
     229            1 :     return luaL_error(ms->L, "invalid capture index %%%d", l + 1);
     230           23 :   return l;
     231              : }
     232              : 
     233              : 
     234          132 : static int capture_to_close (MatchState *ms) {
     235          132 :   int level = ms->level;
     236          139 :   for (level--; level>=0; level--)
     237          138 :     if (ms->capture[level].len == CAP_UNFINISHED) return level;
     238            1 :   return luaL_error(ms->L, "invalid pattern capture");
     239              : }
     240              : 
     241              : 
     242        15229 : static const char *classend (MatchState *ms, const char *p) {
     243        15229 :   switch (*p++) {
     244         1037 :     case L_ESC: {
     245         1037 :       if (p == ms->p_end)
     246            1 :         luaL_error(ms->L, "malformed pattern (ends with " LUA_QL("%%") ")");
     247         1036 :       return p+1;
     248              :     }
     249          502 :     case '[': {
     250          502 :       if (*p == '^') p++;
     251              :       do {  /* look for a `]' */
     252          839 :         if (p == ms->p_end)
     253            1 :           luaL_error(ms->L, "malformed pattern (missing " LUA_QL("]") ")");
     254          838 :         if (*(p++) == L_ESC && p < ms->p_end)
     255          104 :           p++;  /* skip escapes (e.g. `%]') */
     256          838 :       } while (*p != ']');
     257          501 :       return p+1;
     258              :     }
     259        13690 :     default: {
     260        13690 :       return p;
     261              :     }
     262              :   }
     263              : }
     264              : 
     265              : 
     266         2896 : static int match_class (int c, int cl) {
     267              :   int res;
     268         2896 :   switch (tolower(cl)) {
     269          111 :     case 'a' : res = isalpha(c); break;
     270           13 :     case 'c' : res = iscntrl(c); break;
     271         1253 :     case 'd' : res = isdigit(c); break;
     272           13 :     case 'g' : res = isgraph(c); break;
     273           14 :     case 'l' : res = islower(c); break;
     274           14 :     case 'p' : res = ispunct(c); break;
     275           93 :     case 's' : res = isspace(c); break;
     276           14 :     case 'u' : res = isupper(c); break;
     277          785 :     case 'w' : res = isalnum(c); break;
     278          203 :     case 'x' : res = isxdigit(c); break;
     279           11 :     case 'z' : res = (c == 0); break;  /* deprecated option */
     280          372 :     default: return (cl == c);
     281              :   }
     282         2524 :   return (islower(cl) ? res : !res);
     283              : }
     284              : 
     285              : 
     286         4506 : static int matchbracketclass (int c, const char *p, const char *ec) {
     287         4506 :   int sig = 1;
     288         4506 :   if (*(p+1) == '^') {
     289         4298 :     sig = 0;
     290         4298 :     p++;  /* skip the `^' */
     291              :   }
     292         8808 :   while (++p < ec) {
     293         4752 :     if (*p == L_ESC) {
     294          183 :       p++;
     295          183 :       if (match_class(c, uchar(*p)))
     296          104 :         return sig;
     297              :     }
     298         4569 :     else if ((*(p+1) == '-') && (p+2 < ec)) {
     299           43 :       p+=2;
     300           43 :       if (uchar(*(p-2)) <= c && c <= uchar(*p))
     301           11 :         return sig;
     302              :     }
     303         4526 :     else if (uchar(*p) == c) return sig;
     304              :   }
     305         4056 :   return !sig;
     306              : }
     307              : 
     308              : 
     309        21307 : static int singlematch (MatchState *ms, const char *s, const char *p,
     310              :                         const char *ep) {
     311        21307 :   if (s >= ms->src_end)
     312          182 :     return 0;
     313              :   else {
     314        21125 :     int c = uchar(*s);
     315        21125 :     switch (*p) {
     316          414 :       case '.': return 1;  /* matches any char */
     317         2713 :       case L_ESC: return match_class(c, uchar(*(p+1)));
     318         4456 :       case '[': return matchbracketclass(c, p, ep-1);
     319        13542 :       default:  return (uchar(*p) == c);
     320              :     }
     321              :   }
     322              : }
     323              : 
     324              : 
     325           15 : static const char *matchbalance (MatchState *ms, const char *s,
     326              :                                    const char *p) {
     327           15 :   if (p >= ms->p_end - 1)
     328            1 :     luaL_error(ms->L, "malformed pattern "
     329              :                       "(missing arguments to " LUA_QL("%%b") ")");
     330           14 :   if (*s != *p) return NULL;
     331              :   else {
     332            6 :     int b = *p;
     333            6 :     int e = *(p+1);
     334            6 :     int cont = 1;
     335           54 :     while (++s < ms->src_end) {
     336           53 :       if (*s == e) {
     337            8 :         if (--cont == 0) return s+1;
     338              :       }
     339           45 :       else if (*s == b) cont++;
     340              :     }
     341              :   }
     342            1 :   return NULL;  /* string ends out of balance */
     343              : }
     344              : 
     345              : 
     346          803 : static const char *max_expand (MatchState *ms, const char *s,
     347              :                                  const char *p, const char *ep) {
     348          803 :   ptrdiff_t i = 0;  /* counts maximum expand for item */
     349         5757 :   while (singlematch(ms, s + i, p, ep))
     350         4954 :     i++;
     351              :   /* keeps trying to match with the maximum repetitions */
     352          855 :   while (i>=0) {
     353          841 :     const char *res = match(ms, (s+i), ep+1);
     354          841 :     if (res) return res;
     355           52 :     i--;  /* else didn't match; reduce 1 repetition to try again */
     356              :   }
     357           14 :   return NULL;
     358              : }
     359              : 
     360              : 
     361           39 : static const char *min_expand (MatchState *ms, const char *s,
     362              :                                  const char *p, const char *ep) {
     363          357 :   for (;;) {
     364          396 :     const char *res = match(ms, s, ep+1);
     365          396 :     if (res != NULL)
     366           39 :       return res;
     367          357 :     else if (singlematch(ms, s, p, ep))
     368          357 :       s++;  /* try with one more repetition */
     369            0 :     else return NULL;
     370              :   }
     371              : }
     372              : 
     373              : 
     374          116 : static const char *start_capture (MatchState *ms, const char *s,
     375              :                                     const char *p, int what) {
     376              :   const char *res;
     377          116 :   int level = ms->level;
     378          116 :   if (level >= LUA_MAXCAPTURES) luaL_error(ms->L, "too many captures");
     379          116 :   ms->capture[level].init = s;
     380          116 :   ms->capture[level].len = what;
     381          116 :   ms->level = level+1;
     382          116 :   if ((res=match(ms, s, p)) == NULL)  /* match failed? */
     383           43 :     ms->level--;  /* undo capture */
     384          116 :   return res;
     385              : }
     386              : 
     387              : 
     388          132 : static const char *end_capture (MatchState *ms, const char *s,
     389              :                                   const char *p) {
     390          132 :   int l = capture_to_close(ms);
     391              :   const char *res;
     392          131 :   ms->capture[l].len = s - ms->capture[l].init;  /* close capture */
     393          131 :   if ((res = match(ms, s, p)) == NULL)  /* match failed? */
     394           60 :     ms->capture[l].len = CAP_UNFINISHED;  /* undo capture */
     395          131 :   return res;
     396              : }
     397              : 
     398              : 
     399           24 : static const char *match_capture (MatchState *ms, const char *s, int l) {
     400              :   size_t len;
     401           24 :   l = check_capture(ms, l);
     402           23 :   len = ms->capture[l].len;
     403           23 :   if ((size_t)(ms->src_end-s) >= len &&
     404           23 :       memcmp(ms->capture[l].init, s, len) == 0)
     405            5 :     return s+len;
     406           18 :   else return NULL;
     407              : }
     408              : 
     409              : 
     410         4058 : static const char *match (MatchState *ms, const char *s, const char *p) {
     411         4058 :   if (ms->matchdepth-- == 0)
     412            0 :     luaL_error(ms->L, "pattern too complex");
     413        16125 :   init: /* using goto's to optimize tail recursion */
     414        16125 :   if (p != ms->p_end) {  /* end of pattern? */
     415        15562 :     switch (*p) {
     416          116 :       case '(': {  /* start capture */
     417          116 :         if (*(p + 1) == ')')  /* position capture? */
     418            4 :           s = start_capture(ms, s, p + 2, CAP_POSITION);
     419              :         else
     420          112 :           s = start_capture(ms, s, p + 1, CAP_UNFINISHED);
     421          116 :         break;
     422              :       }
     423          132 :       case ')': {  /* end capture */
     424          132 :         s = end_capture(ms, s, p + 1);
     425          131 :         break;
     426              :       }
     427          107 :       case '$': {
     428          107 :         if ((p + 1) != ms->p_end)  /* is the `$' the last char in pattern? */
     429           62 :           goto dflt;  /* no; go to default */
     430           45 :         s = (s == ms->src_end) ? s : NULL;  /* check end of string */
     431           45 :         break;
     432              :       }
     433         1111 :       case L_ESC: {  /* escaped sequences not in the format class[*+?-]? */
     434         1111 :         switch (*(p + 1)) {
     435           15 :           case 'b': {  /* balanced string? */
     436           15 :             s = matchbalance(ms, s, p + 2);
     437           14 :             if (s != NULL) {
     438            5 :               p += 4; goto init;  /* return match(ms, s, p + 4); */
     439              :             }  /* else fail (s == NULL) */
     440            9 :             break;
     441              :           }
     442           35 :           case 'f': {  /* frontier? */
     443              :             const char *ep; char previous;
     444           35 :             p += 2;
     445           35 :             if (*p != '[')
     446            1 :               luaL_error(ms->L, "missing " LUA_QL("[") " after "
     447              :                                  LUA_QL("%%f") " in pattern");
     448           34 :             ep = classend(ms, p);  /* points to what is next */
     449           34 :             previous = (s == ms->src_init) ? '\0' : *(s - 1);
     450           50 :             if (!matchbracketclass(uchar(previous), p, ep - 1) &&
     451           16 :                matchbracketclass(uchar(*s), p, ep - 1)) {
     452            6 :               p = ep; goto init;  /* return match(ms, s, ep); */
     453              :             }
     454           28 :             s = NULL;  /* match failed */
     455           28 :             break;
     456              :           }
     457           24 :           case '0': case '1': case '2': case '3':
     458              :           case '4': case '5': case '6': case '7':
     459              :           case '8': case '9': {  /* capture results (%0-%9)? */
     460           24 :             s = match_capture(ms, s, uchar(*(p + 1)));
     461           23 :             if (s != NULL) {
     462            5 :               p += 2; goto init;  /* return match(ms, s, p + 2) */
     463              :             }
     464           18 :             break;
     465              :           }
     466         1037 :           default: goto dflt;
     467              :         }
     468           55 :         break;
     469              :       }
     470        15195 :       default: dflt: {  /* pattern class plus optional suffix */
     471        15195 :         const char *ep = classend(ms, p);  /* points to optional suffix */
     472              :         /* does not match at least once? */
     473        15193 :         if (!singlematch(ms, s, p, ep)) {
     474         2299 :           if (*ep == '*' || *ep == '?' || *ep == '-') {  /* accept empty? */
     475           32 :             p = ep + 1; goto init;  /* return match(ms, s, ep + 1); */
     476              :           }
     477              :           else  /* '+' or no suffix */
     478         2267 :             s = NULL;  /* fail */
     479              :         }
     480              :         else {  /* matched once */
     481        12894 :           switch (*ep) {  /* handle optional suffix */
     482           33 :             case '?': {  /* optional */
     483              :               const char *res;
     484           33 :               if ((res = match(ms, s + 1, ep + 1)) != NULL)
     485           33 :                 s = res;
     486              :               else {
     487            0 :                 p = ep + 1; goto init;  /* else return match(ms, s, ep + 1); */
     488              :               }
     489           33 :               break;
     490              :             }
     491          790 :             case '+':  /* 1 or more repetitions */
     492          790 :               s++;  /* 1 match already done */
     493              :               /* go through */
     494          803 :             case '*':  /* 0 or more repetitions */
     495          803 :               s = max_expand(ms, s, p, ep);
     496          803 :               break;
     497           39 :             case '-':  /* 0 or more repetitions (minimum) */
     498           39 :               s = min_expand(ms, s, p, ep);
     499           39 :               break;
     500        12019 :             default:  /* no suffix */
     501        12019 :               s++; p = ep; goto init;  /* return match(ms, s + 1, ep); */
     502              :           }
     503              :         }
     504         3142 :         break;
     505              :       }
     506              :     }
     507              :   }
     508         4052 :   ms->matchdepth++;
     509         4052 :   return s;
     510              : }
     511              : 
     512              : 
     513              : 
     514            8 : static const char *lmemfind (const char *s1, size_t l1,
     515              :                                const char *s2, size_t l2) {
     516            8 :   if (l2 == 0) return s1;  /* empty strings are everywhere */
     517            8 :   else if (l2 > l1) return NULL;  /* avoids a negative `l1' */
     518              :   else {
     519              :     const char *init;  /* to search for a `*s2' inside `s1' */
     520            8 :     l2--;  /* 1st char will be checked by `memchr' */
     521            8 :     l1 = l1-l2;  /* `s2' cannot be found after that */
     522           10 :     while (l1 > 0 && (init = (const char *)memchr(s1, *s2, l1)) != NULL) {
     523            8 :       init++;   /* 1st char is already checked */
     524            8 :       if (memcmp(init, s2+1, l2) == 0)
     525            6 :         return init-1;
     526              :       else {  /* correct `l1' and `s1' to try again */
     527            2 :         l1 -= init-s1;
     528            2 :         s1 = init;
     529              :       }
     530              :     }
     531            2 :     return NULL;  /* not found */
     532              :   }
     533              : }
     534              : 
     535              : 
     536          573 : static void push_onecapture (MatchState *ms, int i, const char *s,
     537              :                                                     const char *e) {
     538          573 :   if (i >= ms->level) {
     539          500 :     if (i == 0)  /* ms->level == 0, too */
     540          499 :       lua_pushlstring(ms->L, s, e - s);  /* add whole match */
     541              :     else
     542            1 :       luaL_error(ms->L, "invalid capture index");
     543              :   }
     544              :   else {
     545           73 :     ptrdiff_t l = ms->capture[i].len;
     546           73 :     if (l == CAP_UNFINISHED) luaL_error(ms->L, "unfinished capture");
     547           73 :     if (l == CAP_POSITION)
     548            2 :       lua_pushinteger(ms->L, ms->capture[i].init - ms->src_init + 1);
     549              :     else
     550           71 :       lua_pushlstring(ms->L, ms->capture[i].init, l);
     551              :   }
     552          572 : }
     553              : 
     554              : 
     555          531 : static int push_captures (MatchState *ms, const char *s, const char *e) {
     556              :   int i;
     557          531 :   int nlevels = (ms->level == 0 && s) ? 1 : ms->level;
     558          531 :   luaL_checkstack(ms->L, nlevels, "too many captures");
     559         1077 :   for (i = 0; i < nlevels; i++)
     560          546 :     push_onecapture(ms, i, s, e);
     561          531 :   return nlevels;  /* number of strings pushed */
     562              : }
     563              : 
     564              : 
     565              : /* check whether pattern has no special characters */
     566           13 : static int nospecials (const char *p, size_t l) {
     567           13 :   size_t upto = 0;
     568              :   do {
     569           13 :     if (strpbrk(p + upto, SPECIALS))
     570            8 :       return 0;  /* pattern has a special character */
     571            5 :     upto += strlen(p + upto) + 1;  /* may have more after \0 */
     572            5 :   } while (upto <= l);
     573            5 :   return 1;  /* no special chars found */
     574              : }
     575              : 
     576              : 
     577          587 : static int str_find_aux (lua_State *L, int find) {
     578              :   size_t ls, lp;
     579          587 :   const char *s = luaL_checklstring(L, 1, &ls);
     580          587 :   const char *p = luaL_checklstring(L, 2, &lp);
     581          587 :   size_t init = posrelat(luaL_optinteger(L, 3, 1), ls);
     582          587 :   if (init < 1) init = 1;
     583          587 :   else if (init > ls + 1) {  /* start after string's end? */
     584            1 :     lua_pushnil(L);  /* cannot find anything */
     585            1 :     return 1;
     586              :   }
     587              :   /* explicit request or no special characters? */
     588          588 :   if (find && (lua_toboolean(L, 4) || nospecials(p, lp))) {
     589              :     /* do a plain search */
     590            8 :     const char *s2 = lmemfind(s + init - 1, ls - init + 1, p, lp);
     591            8 :     if (s2) {
     592            6 :       lua_pushinteger(L, s2 - s + 1);
     593            6 :       lua_pushinteger(L, s2 - s + lp);
     594            6 :       return 2;
     595              :     }
     596              :   }
     597              :   else {
     598              :     MatchState ms;
     599          578 :     const char *s1 = s + init - 1;
     600          578 :     int anchor = (*p == '^');
     601          578 :     if (anchor) {
     602          356 :       p++; lp--;  /* skip anchor character */
     603              :     }
     604          578 :     ms.L = L;
     605          578 :     ms.matchdepth = MAXCCALLS;
     606          578 :     ms.src_init = s;
     607          578 :     ms.src_end = s + ls;
     608          578 :     ms.p_end = p + lp;
     609              :     do {
     610              :       const char *res;
     611         2245 :       ms.level = 0;
     612              :       lua_assert(ms.matchdepth == MAXCCALLS);
     613         2245 :       if ((res=match(&ms, s1, p)) != NULL) {
     614          516 :         if (find) {
     615            6 :           lua_pushinteger(L, s1 - s + 1);  /* start */
     616            6 :           lua_pushinteger(L, res - s);   /* end */
     617          516 :           return push_captures(&ms, NULL, 0) + 2;
     618              :         }
     619              :         else
     620          510 :           return push_captures(&ms, s1, res);
     621              :       }
     622         1724 :     } while (s1++ < ms.src_end && !anchor);
     623              :   }
     624           59 :   lua_pushnil(L);  /* not found */
     625           59 :   return 1;
     626              : }
     627              : 
     628              : 
     629           17 : static int str_find (lua_State *L) {
     630           17 :   return str_find_aux(L, 1);
     631              : }
     632              : 
     633              : 
     634          570 : static int str_match (lua_State *L) {
     635          570 :   return str_find_aux(L, 0);
     636              : }
     637              : 
     638              : 
     639           14 : static int gmatch_aux (lua_State *L) {
     640              :   MatchState ms;
     641              :   size_t ls, lp;
     642           14 :   const char *s = lua_tolstring(L, lua_upvalueindex(1), &ls);
     643           14 :   const char *p = lua_tolstring(L, lua_upvalueindex(2), &lp);
     644              :   const char *src;
     645           14 :   ms.L = L;
     646           14 :   ms.matchdepth = MAXCCALLS;
     647           14 :   ms.src_init = s;
     648           14 :   ms.src_end = s+ls;
     649           14 :   ms.p_end = p + lp;
     650           14 :   for (src = s + (size_t)lua_tointeger(L, lua_upvalueindex(3));
     651           25 :        src <= ms.src_end;
     652           11 :        src++) {
     653              :     const char *e;
     654           21 :     ms.level = 0;
     655              :     lua_assert(ms.matchdepth == MAXCCALLS);
     656           21 :     if ((e = match(&ms, src, p)) != NULL) {
     657           10 :       lua_Integer newstart = e-s;
     658           10 :       if (e == src) newstart++;  /* empty match? go at least one position */
     659           10 :       lua_pushinteger(L, newstart);
     660           10 :       lua_replace(L, lua_upvalueindex(3));
     661           10 :       return push_captures(&ms, src, e);
     662              :     }
     663              :   }
     664            4 :   return 0;  /* not found */
     665              : }
     666              : 
     667              : 
     668            4 : static int gmatch (lua_State *L) {
     669            4 :   luaL_checkstring(L, 1);
     670            4 :   luaL_checkstring(L, 2);
     671            4 :   lua_settop(L, 2);
     672            4 :   lua_pushinteger(L, 0);
     673            4 :   lua_pushcclosure(L, gmatch_aux, 3);
     674            4 :   return 1;
     675              : }
     676              : 
     677              : 
     678           53 : static void add_s (MatchState *ms, luaL_Buffer *b, const char *s,
     679              :                                                    const char *e) {
     680              :   size_t l, i;
     681           53 :   const char *news = lua_tolstring(ms->L, 3, &l);
     682          172 :   for (i = 0; i < l; i++) {
     683          121 :     if (news[i] != L_ESC)
     684           79 :       luaL_addchar(b, news[i]);
     685              :     else {
     686           42 :       i++;  /* skip ESC */
     687           42 :       if (!isdigit(uchar(news[i]))) {
     688            5 :         if (news[i] != L_ESC)
     689            1 :           luaL_error(ms->L, "invalid use of " LUA_QL("%c")
     690              :                            " in replacement string", L_ESC);
     691            4 :         luaL_addchar(b, news[i]);
     692              :       }
     693           37 :       else if (news[i] == '0')
     694           18 :           luaL_addlstring(b, s, e - s);
     695              :       else {
     696           19 :         push_onecapture(ms, news[i] - '1', s, e);
     697           18 :         luaL_addvalue(b);  /* add capture to accumulated result */
     698              :       }
     699              :     }
     700              :   }
     701           51 : }
     702              : 
     703              : 
     704           66 : static void add_value (MatchState *ms, luaL_Buffer *b, const char *s,
     705              :                                        const char *e, int tr) {
     706           66 :   lua_State *L = ms->L;
     707           66 :   switch (tr) {
     708            5 :     case LUA_TFUNCTION: {
     709              :       int n;
     710            5 :       lua_pushvalue(L, 3);
     711            5 :       n = push_captures(ms, s, e);
     712            5 :       lua_call(L, n, 1);
     713            5 :       break;
     714              :     }
     715            8 :     case LUA_TTABLE: {
     716            8 :       push_onecapture(ms, 0, s, e);
     717            8 :       lua_gettable(L, 3);
     718            8 :       break;
     719              :     }
     720           53 :     default: {  /* LUA_TNUMBER or LUA_TSTRING */
     721           53 :       add_s(ms, b, s, e);
     722           51 :       return;
     723              :     }
     724              :   }
     725           13 :   if (!lua_toboolean(L, -1)) {  /* nil or false? */
     726            1 :     lua_pop(L, 1);
     727            1 :     lua_pushlstring(L, s, e - s);  /* keep original text */
     728              :   }
     729           12 :   else if (!lua_isstring(L, -1))
     730            1 :     luaL_error(L, "invalid replacement value (a %s)", luaL_typename(L, -1));
     731           12 :   luaL_addvalue(b);  /* add result to accumulator */
     732              : }
     733              : 
     734              : 
     735           33 : static int str_gsub (lua_State *L) {
     736              :   size_t srcl, lp;
     737           33 :   const char *src = luaL_checklstring(L, 1, &srcl);
     738           33 :   const char *p = luaL_checklstring(L, 2, &lp);
     739           33 :   int tr = lua_type(L, 3);
     740           33 :   size_t max_s = luaL_optinteger(L, 4, srcl+1);
     741           33 :   int anchor = (*p == '^');
     742           33 :   size_t n = 0;
     743              :   MatchState ms;
     744              :   luaL_Buffer b;
     745           33 :   luaL_argcheck(L, tr == LUA_TNUMBER || tr == LUA_TSTRING ||
     746              :                    tr == LUA_TFUNCTION || tr == LUA_TTABLE, 3,
     747              :                       "string/function/table expected");
     748           32 :   luaL_buffinit(L, &b);
     749           32 :   if (anchor) {
     750            3 :     p++; lp--;  /* skip anchor character */
     751              :   }
     752           32 :   ms.L = L;
     753           32 :   ms.matchdepth = MAXCCALLS;
     754           32 :   ms.src_init = src;
     755           32 :   ms.src_end = src+srcl;
     756           32 :   ms.p_end = p + lp;
     757          278 :   while (n < max_s) {
     758              :     const char *e;
     759          275 :     ms.level = 0;
     760              :     lua_assert(ms.matchdepth == MAXCCALLS);
     761          275 :     e = match(&ms, src, p);
     762          274 :     if (e) {
     763           66 :       n++;
     764           66 :       add_value(&ms, &b, src, e, tr);
     765              :     }
     766          271 :     if (e && e>src) /* non empty match? */
     767           63 :       src = e;  /* skip it */
     768          208 :     else if (src < ms.src_end)
     769          186 :       luaL_addchar(&b, *src++);
     770           22 :     else break;
     771          249 :     if (anchor) break;
     772              :   }
     773           28 :   luaL_addlstring(&b, src, ms.src_end-src);
     774           28 :   luaL_pushresult(&b);
     775           28 :   lua_pushinteger(L, n);  /* number of substitutions */
     776           28 :   return 2;
     777              : }
     778              : 
     779              : /* }====================================================== */
     780              : 
     781              : 
     782              : 
     783              : /*
     784              : ** {======================================================
     785              : ** STRING FORMAT
     786              : ** =======================================================
     787              : */
     788              : 
     789              : /*
     790              : ** LUA_INTFRMLEN is the length modifier for integer conversions in
     791              : ** 'string.format'; LUA_INTFRM_T is the integer type corresponding to
     792              : ** the previous length
     793              : */
     794              : #if !defined(LUA_INTFRMLEN)     /* { */
     795              : #if defined(LUA_USE_LONGLONG)
     796              : 
     797              : #define LUA_INTFRMLEN           "ll"
     798              : #define LUA_INTFRM_T            long long
     799              : 
     800              : #else
     801              : 
     802              : #define LUA_INTFRMLEN           "l"
     803              : #define LUA_INTFRM_T            long
     804              : 
     805              : #endif
     806              : #endif                          /* } */
     807              : 
     808              : 
     809              : /*
     810              : ** LUA_FLTFRMLEN is the length modifier for float conversions in
     811              : ** 'string.format'; LUA_FLTFRM_T is the float type corresponding to
     812              : ** the previous length
     813              : */
     814              : #if !defined(LUA_FLTFRMLEN)
     815              : 
     816              : #define LUA_FLTFRMLEN           ""
     817              : #define LUA_FLTFRM_T            double
     818              : 
     819              : #endif
     820              : 
     821              : 
     822              : /* maximum size of each formatted item (> len(format('%99.99f', -1e308))) */
     823              : #define MAX_ITEM        512
     824              : /* valid flags in a format specification */
     825              : #define FLAGS   "-+ #0"
     826              : /*
     827              : ** maximum size of each format specification (such as '%-099.99d')
     828              : ** (+10 accounts for %99.99x plus margin of error)
     829              : */
     830              : #define MAX_FORMAT      (sizeof(FLAGS) + sizeof(LUA_INTFRMLEN) + 10)
     831              : 
     832              : 
     833            7 : static void addquoted (lua_State *L, luaL_Buffer *b, int arg) {
     834              :   size_t l;
     835            7 :   const char *s = luaL_checklstring(L, arg, &l);
     836            5 :   luaL_addchar(b, '"');
     837           90 :   while (l--) {
     838           85 :     if (*s == '"' || *s == '\\' || *s == '\n') {
     839            3 :       luaL_addchar(b, '\\');
     840            3 :       luaL_addchar(b, *s);
     841              :     }
     842           86 :     else if (*s == '\0' || iscntrl(uchar(*s))) {
     843              :       char buff[10];
     844            4 :       if (!isdigit(uchar(*(s+1))))
     845            3 :         sprintf(buff, "\\%d", (int)uchar(*s));
     846              :       else
     847            1 :         sprintf(buff, "\\%03d", (int)uchar(*s));
     848            4 :       luaL_addstring(b, buff);
     849              :     }
     850              :     else
     851           78 :       luaL_addchar(b, *s);
     852           85 :     s++;
     853              :   }
     854            5 :   luaL_addchar(b, '"');
     855            5 : }
     856              : 
     857           29 : static const char *scanformat (lua_State *L, const char *strfrmt, char *form) {
     858           29 :   const char *p = strfrmt;
     859           39 :   while (*p != '\0' && strchr(FLAGS, *p) != NULL) p++;  /* skip flags */
     860           29 :   if ((size_t)(p - strfrmt) >= sizeof(FLAGS)/sizeof(char))
     861            1 :     luaL_error(L, "invalid format (repeated flags)");
     862           28 :   if (isdigit(uchar(*p))) p++;  /* skip width */
     863           28 :   if (isdigit(uchar(*p))) p++;  /* (2 digits at most) */
     864           28 :   if (*p == '.') {
     865            2 :     p++;
     866            2 :     if (isdigit(uchar(*p))) p++;  /* skip precision */
     867            2 :     if (isdigit(uchar(*p))) p++;  /* (2 digits at most) */
     868              :   }
     869           28 :   if (isdigit(uchar(*p)))
     870            3 :     luaL_error(L, "invalid format (width or precision too long)");
     871           25 :   *(form++) = '%';
     872           25 :   memcpy(form, strfrmt, (p - strfrmt + 1) * sizeof(char));
     873           25 :   form += p - strfrmt + 1;
     874           25 :   *form = '\0';
     875           25 :   return p;
     876              : }
     877              : 
     878              : 
     879              : /*
     880              : ** add length modifier into formats
     881              : */
     882            7 : static void addlenmod (char *form, const char *lenmod) {
     883            7 :   size_t l = strlen(form);
     884            7 :   size_t lm = strlen(lenmod);
     885            7 :   char spec = form[l - 1];
     886            7 :   strcpy(form + l - 1, lenmod);
     887            7 :   form[l + lm - 1] = spec;
     888            7 :   form[l + lm] = '\0';
     889            7 : }
     890              : 
     891              : 
     892           22 : static int str_format (lua_State *L) {
     893           22 :   int top = lua_gettop(L);
     894           22 :   int arg = 1;
     895              :   size_t sfl;
     896           22 :   const char *strfrmt = luaL_checklstring(L, arg, &sfl);
     897           22 :   const char *strfrmt_end = strfrmt+sfl;
     898              :   luaL_Buffer b;
     899           22 :   luaL_buffinit(L, &b);
     900           68 :   while (strfrmt < strfrmt_end) {
     901           55 :     if (*strfrmt != L_ESC)
     902           23 :       luaL_addchar(&b, *strfrmt++);
     903           32 :     else if (*++strfrmt == L_ESC)
     904            2 :       luaL_addchar(&b, *strfrmt++);  /* %% */
     905              :     else { /* format item */
     906              :       char form[MAX_FORMAT];  /* to store the format (`%...') */
     907           30 :       char *buff = luaL_prepbuffsize(&b, MAX_ITEM);  /* to put formatted item */
     908           30 :       int nb = 0;  /* number of bytes in added item */
     909           30 :       if (++arg > top)
     910            1 :         luaL_argerror(L, arg, "no value");
     911           29 :       strfrmt = scanformat(L, strfrmt, form);
     912           25 :       switch (*strfrmt++) {
     913            1 :         case 'c': {
     914            1 :           nb = sprintf(buff, form, luaL_checkint(L, arg));
     915            1 :           break;
     916              :         }
     917            5 :         case 'd': case 'i': {
     918            5 :           lua_Number n = luaL_checknumber(L, arg);
     919            4 :           LUA_INTFRM_T ni = (LUA_INTFRM_T)n;
     920            4 :           lua_Number diff = n - (lua_Number)ni;
     921            4 :           luaL_argcheck(L, -1 < diff && diff < 1, arg,
     922              :                         "not a number in proper range");
     923            4 :           addlenmod(form, LUA_INTFRMLEN);
     924            4 :           nb = sprintf(buff, form, ni);
     925            4 :           break;
     926              :         }
     927            2 :         case 'o': case 'u': case 'x': case 'X': {
     928            2 :           lua_Number n = luaL_checknumber(L, arg);
     929            2 :           unsigned LUA_INTFRM_T ni = (unsigned LUA_INTFRM_T)n;
     930            2 :           lua_Number diff = n - (lua_Number)ni;
     931            2 :           luaL_argcheck(L, -1 < diff && diff < 1, arg,
     932              :                         "not a non-negative number in proper range");
     933            2 :           addlenmod(form, LUA_INTFRMLEN);
     934            2 :           nb = sprintf(buff, form, ni);
     935            2 :           break;
     936              :         }
     937            1 :         case 'e': case 'E': case 'f':
     938              : #if defined(LUA_USE_AFORMAT)
     939              :         case 'a': case 'A':
     940              : #endif
     941              :         case 'g': case 'G': {
     942            1 :           addlenmod(form, LUA_FLTFRMLEN);
     943            1 :           nb = sprintf(buff, form, (LUA_FLTFRM_T)luaL_checknumber(L, arg));
     944            1 :           break;
     945              :         }
     946            7 :         case 'q': {
     947            7 :           addquoted(L, &b, arg);
     948            5 :           break;
     949              :         }
     950            8 :         case 's': {
     951              :           size_t l;
     952            8 :           const char *s = luaL_tolstring(L, arg, &l);
     953            8 :           if (!strchr(form, '.') && l >= 100) {
     954              :             /* no precision and string is too long to be formatted;
     955              :                keep original string */
     956            1 :             luaL_addvalue(&b);
     957            1 :             break;
     958              :           }
     959              :           else {
     960            7 :             nb = sprintf(buff, form, s);
     961            7 :             lua_pop(L, 1);  /* remove result from 'luaL_tolstring' */
     962            7 :             break;
     963              :           }
     964              :         }
     965            1 :         default: {  /* also treat cases `pnLlh' */
     966            0 :           return luaL_error(L, "invalid option " LUA_QL("%%%c") " to "
     967            1 :                                LUA_QL("format"), *(strfrmt - 1));
     968              :         }
     969              :       }
     970           21 :       luaL_addsize(&b, nb);
     971              :     }
     972              :   }
     973           13 :   luaL_pushresult(&b);
     974           13 :   return 1;
     975              : }
     976              : 
     977              : /* }====================================================== */
     978              : 
     979              : 
     980              : static const luaL_Reg strlib[] = {
     981              :   {"byte", str_byte},
     982              :   {"char", str_char},
     983              :   {"dump", str_dump},
     984              :   {"find", str_find},
     985              :   {"format", str_format},
     986              :   {"gmatch", gmatch},
     987              :   {"gsub", str_gsub},
     988              :   {"len", str_len},
     989              :   {"lower", str_lower},
     990              :   {"match", str_match},
     991              :   {"rep", str_rep},
     992              :   {"reverse", str_reverse},
     993              :   {"sub", str_sub},
     994              :   {"upper", str_upper},
     995              :   {NULL, NULL}
     996              : };
     997              : 
     998              : 
     999           86 : static void createmetatable (lua_State *L) {
    1000           86 :   lua_createtable(L, 0, 1);  /* table to be metatable for strings */
    1001           86 :   lua_pushliteral(L, "");  /* dummy string */
    1002           86 :   lua_pushvalue(L, -2);  /* copy table */
    1003           86 :   lua_setmetatable(L, -2);  /* set table as metatable for strings */
    1004           86 :   lua_pop(L, 1);  /* pop dummy string */
    1005           86 :   lua_pushvalue(L, -2);  /* get string library */
    1006           86 :   lua_setfield(L, -2, "__index");  /* metatable.__index = string */
    1007           86 :   lua_pop(L, 1);  /* pop metatable */
    1008           86 : }
    1009              : 
    1010              : 
    1011              : /*
    1012              : ** Open string library
    1013              : */
    1014           86 : LUAMOD_API int luaopen_string (lua_State *L) {
    1015           86 :   luaL_newlib(L, strlib);
    1016           86 :   createmetatable(L);
    1017           86 :   return 1;
    1018              : }
    1019              : 
        

Generated by: LCOV version 2.0-1