aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-10-15 16:43:30 +0200
committerKim Alvefur <zash@zash.se>2020-10-15 16:43:30 +0200
commitb85eec876380f5274fcbaa29896df4b37ad908ce (patch)
tree08dd2c3c7d7f8b96a9433b13639abdebc2534c92
parentutil.strbitop: Add tests covering basics (diff)
downloadprosody-b85eec876380f5274fcbaa29896df4b37ad908ce.tar.xz
prosody-b85eec876380f5274fcbaa29896df4b37ad908ce.zip
util.strbitop: Create buffer in the correct size (optimization)
This avoids dynamically growing the buffer as Lua does when luaL_addchar is used, thus saving on realloc calls.
-rw-r--r--util-src/strbitop.c19
1 files changed, 13 insertions, 6 deletions
diff --git a/util-src/strbitop.c b/util-src/strbitop.c
index 89fce6619..922048fdb 100644
--- a/util-src/strbitop.c
+++ b/util-src/strbitop.c
@@ -2,7 +2,7 @@
* This project is MIT licensed. Please see the
* COPYING file in the source package for more information.
*
- * Copyright (C) 2016 Kim Alvefur
+ * Copyright (C) 2016-2020 Kim Alvefur
*/
#include <lua.h>
@@ -27,10 +27,13 @@ int strop_and(lua_State *L) {
return 1;
}
+ char *cbuf = luaL_buffinitsize(L, &buf, a);
+
for(i = 0; i < a; i++) {
- luaL_addchar(&buf, str_a[i] & str_b[i % b]);
+ cbuf[i] = str_a[i] & str_b[i % b];
}
+ luaL_addsize(&buf, a);
luaL_pushresult(&buf);
return 1;
}
@@ -48,10 +51,13 @@ int strop_or(lua_State *L) {
return 1;
}
+ char *cbuf = luaL_buffinitsize(L, &buf, a);
+
for(i = 0; i < a; i++) {
- luaL_addchar(&buf, str_a[i] | str_b[i % b]);
+ cbuf[i] = str_a[i] | str_b[i % b];
}
+ luaL_addsize(&buf, a);
luaL_pushresult(&buf);
return 1;
}
@@ -62,17 +68,18 @@ int strop_xor(lua_State *L) {
const char *str_a = luaL_checklstring(L, 1, &a);
const char *str_b = luaL_checklstring(L, 2, &b);
- luaL_buffinit(L, &buf);
-
if(a == 0 || b == 0) {
lua_settop(L, 1);
return 1;
}
+ char *cbuf = luaL_buffinitsize(L, &buf, a);
+
for(i = 0; i < a; i++) {
- luaL_addchar(&buf, str_a[i] ^ str_b[i % b]);
+ cbuf[i] = str_a[i] ^ str_b[i % b];
}
+ luaL_addsize(&buf, a);
luaL_pushresult(&buf);
return 1;
}