⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lstrlib.c

📁 Lua 语言解释器源码
💻 C
📖 第 1 页 / 共 2 页
字号:
/*** $Id: lstrlib.c,v 1.98 2003/04/03 13:35:34 roberto Exp $** Standard library for string operations and pattern-matching** See Copyright Notice in lua.h*/#include <ctype.h>#include <stddef.h>#include <stdio.h>#include <stdlib.h>#include <string.h>#define lstrlib_c#include "lua.h"#include "lauxlib.h"#include "lualib.h"/* macro to `unsign' a character */#ifndef uchar#define uchar(c)        ((unsigned char)(c))#endiftypedef long sint32;	/* a signed version for size_t */static int str_len (lua_State *L) {  size_t l;  luaL_checklstring(L, 1, &l);  lua_pushnumber(L, (lua_Number)l);  return 1;}static sint32 posrelat (sint32 pos, size_t len) {  /* relative string position: negative means back from end */  return (pos>=0) ? pos : (sint32)len+pos+1;}static int str_sub (lua_State *L) {  size_t l;  const char *s = luaL_checklstring(L, 1, &l);  sint32 start = posrelat(luaL_checklong(L, 2), l);  sint32 end = posrelat(luaL_optlong(L, 3, -1), l);  if (start < 1) start = 1;  if (end > (sint32)l) end = (sint32)l;  if (start <= end)    lua_pushlstring(L, s+start-1, end-start+1);  else lua_pushliteral(L, "");  return 1;}static int str_lower (lua_State *L) {  size_t l;  size_t i;  luaL_Buffer b;  const char *s = luaL_checklstring(L, 1, &l);  luaL_buffinit(L, &b);  for (i=0; i<l; i++)    luaL_putchar(&b, tolower(uchar(s[i])));  luaL_pushresult(&b);  return 1;}static int str_upper (lua_State *L) {  size_t l;  size_t i;  luaL_Buffer b;  const char *s = luaL_checklstring(L, 1, &l);  luaL_buffinit(L, &b);  for (i=0; i<l; i++)    luaL_putchar(&b, toupper(uchar(s[i])));  luaL_pushresult(&b);  return 1;}static int str_rep (lua_State *L) {  size_t l;  luaL_Buffer b;  const char *s = luaL_checklstring(L, 1, &l);  int n = luaL_checkint(L, 2);  luaL_buffinit(L, &b);  while (n-- > 0)    luaL_addlstring(&b, s, l);  luaL_pushresult(&b);  return 1;}static int str_byte (lua_State *L) {  size_t l;  const char *s = luaL_checklstring(L, 1, &l);  sint32 pos = posrelat(luaL_optlong(L, 2, 1), l);  if (pos <= 0 || (size_t)(pos) > l)  /* index out of range? */    return 0;  /* no answer */  lua_pushnumber(L, uchar(s[pos-1]));  return 1;}static int str_char (lua_State *L) {  int n = lua_gettop(L);  /* number of arguments */  int i;  luaL_Buffer b;  luaL_buffinit(L, &b);  for (i=1; i<=n; i++) {    int c = luaL_checkint(L, i);    luaL_argcheck(L, uchar(c) == c, i, "invalid value");    luaL_putchar(&b, uchar(c));  }  luaL_pushresult(&b);  return 1;}static int writer (lua_State *L, const void* b, size_t size, void* B) {  (void)L;  luaL_addlstring((luaL_Buffer*) B, (const char *)b, size);  return 1;}static int str_dump (lua_State *L) {  luaL_Buffer b;  luaL_checktype(L, 1, LUA_TFUNCTION);  luaL_buffinit(L,&b);  if (!lua_dump(L, writer, &b))    luaL_error(L, "unable to dump given function");  luaL_pushresult(&b);  return 1;}/*** {======================================================** PATTERN MATCHING** =======================================================*/#ifndef MAX_CAPTURES#define MAX_CAPTURES 32  /* arbitrary limit */#endif#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) */  struct {    const char *init;    sint32 len;  } capture[MAX_CAPTURES];} MatchState;#define 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)    return luaL_error(ms->L, "invalid capture index");  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;  return luaL_error(ms->L, "invalid pattern capture");}static const char *luaI_classend (MatchState *ms, const char *p) {  switch (*p++) {    case ESC: {      if (*p == '\0')        luaL_error(ms->L, "malformed pattern (ends with `%')");      return p+1;    }    case '[': {      if (*p == '^') p++;      do {  /* look for a `]' */        if (*p == '\0')          luaL_error(ms->L, "malformed pattern (missing `]')");        if (*(p++) == ESC && *p != '\0')          p++;  /* skip escapes (e.g. `%]') */      } while (*p != ']');      return p+1;    }    default: {      return p;    }  }}static int match_class (int c, int cl) {  int res;  switch (tolower(cl)) {    case 'a' : res = isalpha(c); break;    case 'c' : res = iscntrl(c); break;    case 'd' : res = isdigit(c); break;    case 'l' : res = islower(c); break;    case 'p' : res = ispunct(c); break;    case 's' : res = isspace(c); break;    case 'u' : res = isupper(c); break;    case 'w' : res = isalnum(c); break;    case 'x' : res = isxdigit(c); break;    case 'z' : res = (c == 0); break;    default: return (cl == c);  }  return (islower(cl) ? res : !res);}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 == ESC) {      p++;      if (match_class(c, *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 luaI_singlematch (int c, const char *p, const char *ep) {  switch (*p) {    case '.': return 1;  /* matches any char */    case ESC: return match_class(c, *(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)    luaL_error(ms->L, "unbalanced pattern");  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) {  sint32 i = 0;  /* counts maximum expand for item */  while ((s+i)<ms->src_end && luaI_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 && luaI_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 >= MAX_CAPTURES) luaL_error(ms->L, "too many captures");  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 = 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) {  init: /* using goto's to optimize tail recursion */  switch (*p) {    case '(': {  /* start capture */      if (*(p+1) == ')')  /* position capture? */        return start_capture(ms, s, p+2, CAP_POSITION);      else        return start_capture(ms, s, p+1, CAP_UNFINISHED);    }    case ')': {  /* end capture */      return end_capture(ms, s, p+1);    }    case ESC: {      switch (*(p+1)) {        case 'b': {  /* balanced string? */          s = matchbalance(ms, s, p+2);          if (s == NULL) return NULL;          p+=4; goto init;  /* else return match(ms, s, p+4); */        }        case 'f': {  /* frontier? */          const char *ep; char previous;          p += 2;          if (*p != '[')            luaL_error(ms->L, "missing `[' after `%%f' in pattern");          ep = luaI_classend(ms, p);  /* points to what is next */          previous = (s == ms->src_init) ? '\0' : *(s-1);          if (matchbracketclass(uchar(previous), p, ep-1) ||             !matchbracketclass(uchar(*s), p, ep-1)) return NULL;          p=ep; goto init;  /* else return match(ms, s, ep); */        }        default: {          if (isdigit(uchar(*(p+1)))) {  /* capture results (%0-%9)? */            s = match_capture(ms, s, *(p+1));            if (s == NULL) return NULL;            p+=2; goto init;  /* else return match(ms, s, p+2) */          }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -