summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/lstring.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/lstring.c')
-rw-r--r--apps/plugins/lua/lstring.c174
1 files changed, 50 insertions, 124 deletions
diff --git a/apps/plugins/lua/lstring.c b/apps/plugins/lua/lstring.c
index af96c89c18..49113151cc 100644
--- a/apps/plugins/lua/lstring.c
+++ b/apps/plugins/lua/lstring.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstring.c,v 2.26.1.1 2013/04/12 18:48:47 roberto Exp $ 2** $Id: lstring.c,v 2.8.1.1 2007/12/27 13:02:25 roberto Exp $
3** String table (keeps all strings handled by Lua) 3** String table (keeps all strings handled by Lua)
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -18,157 +18,78 @@
18#include "lstring.h" 18#include "lstring.h"
19 19
20 20
21/*
22** Lua will use at most ~(2^LUAI_HASHLIMIT) bytes from a string to
23** compute its hash
24*/
25#if !defined(LUAI_HASHLIMIT)
26#define LUAI_HASHLIMIT 5
27#endif
28
29
30/*
31** equality for long strings
32*/
33int luaS_eqlngstr (TString *a, TString *b) {
34 size_t len = a->tsv.len;
35 lua_assert(a->tsv.tt == LUA_TLNGSTR && b->tsv.tt == LUA_TLNGSTR);
36 return (a == b) || /* same instance or... */
37 ((len == b->tsv.len) && /* equal length and ... */
38 (memcmp(getstr(a), getstr(b), len) == 0)); /* equal contents */
39}
40
41
42/*
43** equality for strings
44*/
45int luaS_eqstr (TString *a, TString *b) {
46 return (a->tsv.tt == b->tsv.tt) &&
47 (a->tsv.tt == LUA_TSHRSTR ? eqshrstr(a, b) : luaS_eqlngstr(a, b));
48}
49
50 21
51unsigned int luaS_hash (const char *str, size_t l, unsigned int seed) {
52 unsigned int h = seed ^ cast(unsigned int, l);
53 size_t l1;
54 size_t step = (l >> LUAI_HASHLIMIT) + 1;
55 for (l1 = l; l1 >= step; l1 -= step)
56 h = h ^ ((h<<5) + (h>>2) + cast_byte(str[l1 - 1]));
57 return h;
58}
59
60
61/*
62** resizes the string table
63*/
64void luaS_resize (lua_State *L, int newsize) { 22void luaS_resize (lua_State *L, int newsize) {
23 GCObject **newhash;
24 stringtable *tb;
65 int i; 25 int i;
66 stringtable *tb = &G(L)->strt; 26 if (G(L)->gcstate == GCSsweepstring)
67 /* cannot resize while GC is traversing strings */ 27 return; /* cannot resize during GC traverse */
68 luaC_runtilstate(L, ~bitmask(GCSsweepstring)); 28 newhash = luaM_newvector(L, newsize, GCObject *);
69 if (newsize > tb->size) { 29 tb = &G(L)->strt;
70 luaM_reallocvector(L, tb->hash, tb->size, newsize, GCObject *); 30 for (i=0; i<newsize; i++) newhash[i] = NULL;
71 for (i = tb->size; i < newsize; i++) tb->hash[i] = NULL;
72 }
73 /* rehash */ 31 /* rehash */
74 for (i=0; i<tb->size; i++) { 32 for (i=0; i<tb->size; i++) {
75 GCObject *p = tb->hash[i]; 33 GCObject *p = tb->hash[i];
76 tb->hash[i] = NULL;
77 while (p) { /* for each node in the list */ 34 while (p) { /* for each node in the list */
78 GCObject *next = gch(p)->next; /* save next */ 35 GCObject *next = p->gch.next; /* save next */
79 unsigned int h = lmod(gco2ts(p)->hash, newsize); /* new position */ 36 unsigned int h = gco2ts(p)->hash;
80 gch(p)->next = tb->hash[h]; /* chain it */ 37 int h1 = lmod(h, newsize); /* new position */
81 tb->hash[h] = p; 38 lua_assert(cast_int(h%newsize) == lmod(h, newsize));
82 resetoldbit(p); /* see MOVE OLD rule */ 39 p->gch.next = newhash[h1]; /* chain it */
40 newhash[h1] = p;
83 p = next; 41 p = next;
84 } 42 }
85 } 43 }
86 if (newsize < tb->size) { 44 luaM_freearray(L, tb->hash, tb->size, TString *);
87 /* shrinking slice must be empty */
88 lua_assert(tb->hash[newsize] == NULL && tb->hash[tb->size - 1] == NULL);
89 luaM_reallocvector(L, tb->hash, tb->size, newsize, GCObject *);
90 }
91 tb->size = newsize; 45 tb->size = newsize;
46 tb->hash = newhash;
92} 47}
93 48
94 49
95/* 50static TString *newlstr (lua_State *L, const char *str, size_t l,
96** creates a new string object 51 unsigned int h) {
97*/
98static TString *createstrobj (lua_State *L, const char *str, size_t l,
99 int tag, unsigned int h, GCObject **list) {
100 TString *ts; 52 TString *ts;
101 size_t totalsize; /* total size of TString object */ 53 stringtable *tb;
102 totalsize = sizeof(TString) + ((l + 1) * sizeof(char)); 54 if (l+1 > (MAX_SIZET - sizeof(TString))/sizeof(char))
103 ts = &luaC_newobj(L, tag, totalsize, list, 0)->ts; 55 luaM_toobig(L);
56 ts = cast(TString *, luaM_malloc(L, (l+1)*sizeof(char)+sizeof(TString)));
104 ts->tsv.len = l; 57 ts->tsv.len = l;
105 ts->tsv.hash = h; 58 ts->tsv.hash = h;
106 ts->tsv.extra = 0; 59 ts->tsv.marked = luaC_white(G(L));
60 ts->tsv.tt = LUA_TSTRING;
61 ts->tsv.reserved = 0;
107 memcpy(ts+1, str, l*sizeof(char)); 62 memcpy(ts+1, str, l*sizeof(char));
108 ((char *)(ts+1))[l] = '\0'; /* ending 0 */ 63 ((char *)(ts+1))[l] = '\0'; /* ending 0 */
109 return ts; 64 tb = &G(L)->strt;
110} 65 h = lmod(h, tb->size);
111 66 ts->tsv.next = tb->hash[h]; /* chain new entry */
112 67 tb->hash[h] = obj2gco(ts);
113/*
114** creates a new short string, inserting it into string table
115*/
116static TString *newshrstr (lua_State *L, const char *str, size_t l,
117 unsigned int h) {
118 GCObject **list; /* (pointer to) list where it will be inserted */
119 stringtable *tb = &G(L)->strt;
120 TString *s;
121 if (tb->nuse >= cast(lu_int32, tb->size) && tb->size <= MAX_INT/2)
122 luaS_resize(L, tb->size*2); /* too crowded */
123 list = &tb->hash[lmod(h, tb->size)];
124 s = createstrobj(L, str, l, LUA_TSHRSTR, h, list);
125 tb->nuse++; 68 tb->nuse++;
126 return s; 69 if (tb->nuse > cast(lu_int32, tb->size) && tb->size <= MAX_INT/2)
70 luaS_resize(L, tb->size*2); /* too crowded */
71 return ts;
127} 72}
128 73
129 74
130/* 75TString *luaS_newlstr (lua_State *L, const char *str, size_t l) {
131** checks whether short string exists and reuses it or creates a new one
132*/
133static TString *internshrstr (lua_State *L, const char *str, size_t l) {
134 GCObject *o; 76 GCObject *o;
135 global_State *g = G(L); 77 unsigned int h = cast(unsigned int, l); /* seed */
136 unsigned int h = luaS_hash(str, l, g->seed); 78 size_t step = (l>>5)+1; /* if string is too long, don't hash all its chars */
137 for (o = g->strt.hash[lmod(h, g->strt.size)]; 79 size_t l1;
80 for (l1=l; l1>=step; l1-=step) /* compute hash */
81 h = h ^ ((h<<5)+(h>>2)+cast(unsigned char, str[l1-1]));
82 for (o = G(L)->strt.hash[lmod(h, G(L)->strt.size)];
138 o != NULL; 83 o != NULL;
139 o = gch(o)->next) { 84 o = o->gch.next) {
140 TString *ts = rawgco2ts(o); 85 TString *ts = rawgco2ts(o);
141 if (h == ts->tsv.hash && 86 if (ts->tsv.len == l && (memcmp(str, getstr(ts), l) == 0)) {
142 l == ts->tsv.len && 87 /* string may be dead */
143 (memcmp(str, getstr(ts), l * sizeof(char)) == 0)) { 88 if (isdead(G(L), o)) changewhite(o);
144 if (isdead(G(L), o)) /* string is dead (but was not collected yet)? */
145 changewhite(o); /* resurrect it */
146 return ts; 89 return ts;
147 } 90 }
148 } 91 }
149 return newshrstr(L, str, l, h); /* not found; create a new string */ 92 return newlstr(L, str, l, h); /* not found */
150}
151
152
153/*
154** new string (with explicit length)
155*/
156TString *luaS_newlstr (lua_State *L, const char *str, size_t l) {
157 if (l <= LUAI_MAXSHORTLEN) /* short string? */
158 return internshrstr(L, str, l);
159 else {
160 if (l + 1 > (MAX_SIZET - sizeof(TString))/sizeof(char))
161 luaM_toobig(L);
162 return createstrobj(L, str, l, LUA_TLNGSTR, G(L)->seed, NULL);
163 }
164}
165
166
167/*
168** new zero-terminated string
169*/
170TString *luaS_new (lua_State *L, const char *str) {
171 return luaS_newlstr(L, str, strlen(str));
172} 93}
173 94
174 95
@@ -176,10 +97,15 @@ Udata *luaS_newudata (lua_State *L, size_t s, Table *e) {
176 Udata *u; 97 Udata *u;
177 if (s > MAX_SIZET - sizeof(Udata)) 98 if (s > MAX_SIZET - sizeof(Udata))
178 luaM_toobig(L); 99 luaM_toobig(L);
179 u = &luaC_newobj(L, LUA_TUSERDATA, sizeof(Udata) + s, NULL, 0)->u; 100 u = cast(Udata *, luaM_malloc(L, s + sizeof(Udata)));
101 u->uv.marked = luaC_white(G(L)); /* is not finalized */
102 u->uv.tt = LUA_TUSERDATA;
180 u->uv.len = s; 103 u->uv.len = s;
181 u->uv.metatable = NULL; 104 u->uv.metatable = NULL;
182 u->uv.env = e; 105 u->uv.env = e;
106 /* chain it on udata list (after main thread) */
107 u->uv.next = G(L)->mainthread->next;
108 G(L)->mainthread->next = obj2gco(u);
183 return u; 109 return u;
184} 110}
185 111