immunio 0.15.4 → 0.16.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (454) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE +0 -27
  3. data/ext/immunio/Rakefile +9 -0
  4. data/lib/immunio/plugins/active_record.rb +1 -1
  5. data/lib/immunio/plugins/active_record_relation.rb +1 -1
  6. data/lib/immunio/plugins/environment_reporter.rb +20 -0
  7. data/lib/immunio/rufus_lua_ext/ref.rb +1 -3
  8. data/lib/immunio/version.rb +1 -1
  9. data/lib/immunio/vm.rb +1 -2
  10. data/lua-hooks/Makefile +97 -0
  11. data/lua-hooks/ext/all.c +41 -52
  12. data/lua-hooks/ext/all.o +0 -0
  13. data/lua-hooks/ext/libinjection/libinjection_html5.o +0 -0
  14. data/lua-hooks/ext/libinjection/libinjection_sqli.o +0 -0
  15. data/lua-hooks/ext/libinjection/libinjection_xss.o +0 -0
  16. data/lua-hooks/ext/libinjection/lualib.c +2 -2
  17. data/lua-hooks/ext/lpeg/lpcap.c +2 -2
  18. data/lua-hooks/ext/lpeg/lpcap.o +0 -0
  19. data/lua-hooks/ext/lpeg/lpcode.c +2 -2
  20. data/lua-hooks/ext/lpeg/lpcode.h +1 -1
  21. data/lua-hooks/ext/lpeg/lpcode.o +0 -0
  22. data/lua-hooks/ext/lpeg/lpprint.o +0 -0
  23. data/lua-hooks/ext/lpeg/lptree.c +2 -2
  24. data/lua-hooks/ext/lpeg/lptypes.h +1 -1
  25. data/lua-hooks/ext/lpeg/lpvm.c +2 -2
  26. data/lua-hooks/ext/lpeg/lpvm.o +0 -0
  27. data/lua-hooks/ext/lua-cmsgpack/lua_cmsgpack.c +16 -3
  28. data/lua-hooks/ext/lua-snapshot/snapshot.c +14 -7
  29. data/lua-hooks/ext/luajit/COPYRIGHT +56 -0
  30. data/lua-hooks/ext/luajit/Makefile +159 -0
  31. data/lua-hooks/ext/luajit/README +16 -0
  32. data/lua-hooks/ext/luajit/doc/bluequad-print.css +166 -0
  33. data/lua-hooks/ext/luajit/doc/bluequad.css +325 -0
  34. data/lua-hooks/ext/luajit/doc/changes.html +804 -0
  35. data/lua-hooks/ext/luajit/doc/contact.html +104 -0
  36. data/lua-hooks/ext/luajit/doc/ext_c_api.html +189 -0
  37. data/lua-hooks/ext/luajit/doc/ext_ffi.html +332 -0
  38. data/lua-hooks/ext/luajit/doc/ext_ffi_api.html +570 -0
  39. data/lua-hooks/ext/luajit/doc/ext_ffi_semantics.html +1261 -0
  40. data/lua-hooks/ext/luajit/doc/ext_ffi_tutorial.html +603 -0
  41. data/lua-hooks/ext/luajit/doc/ext_jit.html +201 -0
  42. data/lua-hooks/ext/luajit/doc/ext_profiler.html +365 -0
  43. data/lua-hooks/ext/luajit/doc/extensions.html +448 -0
  44. data/lua-hooks/ext/luajit/doc/faq.html +186 -0
  45. data/lua-hooks/ext/luajit/doc/img/contact.png +0 -0
  46. data/lua-hooks/ext/luajit/doc/install.html +659 -0
  47. data/lua-hooks/ext/luajit/doc/luajit.html +236 -0
  48. data/lua-hooks/ext/luajit/doc/running.html +309 -0
  49. data/lua-hooks/ext/luajit/doc/status.html +118 -0
  50. data/lua-hooks/ext/luajit/dynasm/dasm_arm.h +456 -0
  51. data/lua-hooks/ext/luajit/dynasm/dasm_arm.lua +1125 -0
  52. data/lua-hooks/ext/luajit/dynasm/dasm_arm64.h +518 -0
  53. data/lua-hooks/ext/luajit/dynasm/dasm_arm64.lua +1166 -0
  54. data/lua-hooks/ext/luajit/dynasm/dasm_mips.h +416 -0
  55. data/lua-hooks/ext/luajit/dynasm/dasm_mips.lua +953 -0
  56. data/lua-hooks/ext/luajit/dynasm/dasm_ppc.h +419 -0
  57. data/lua-hooks/ext/luajit/dynasm/dasm_ppc.lua +1919 -0
  58. data/lua-hooks/ext/luajit/dynasm/dasm_proto.h +83 -0
  59. data/lua-hooks/ext/luajit/dynasm/dasm_x64.lua +12 -0
  60. data/lua-hooks/ext/luajit/dynasm/dasm_x86.h +471 -0
  61. data/lua-hooks/ext/luajit/dynasm/dasm_x86.lua +1945 -0
  62. data/lua-hooks/ext/luajit/dynasm/dynasm.lua +1094 -0
  63. data/lua-hooks/ext/luajit/etc/luajit.1 +88 -0
  64. data/lua-hooks/ext/luajit/etc/luajit.pc +25 -0
  65. data/lua-hooks/ext/luajit/src/Makefile +697 -0
  66. data/lua-hooks/ext/luajit/src/Makefile.dep +244 -0
  67. data/lua-hooks/ext/luajit/src/host/README +4 -0
  68. data/lua-hooks/ext/luajit/src/host/buildvm +0 -0
  69. data/lua-hooks/ext/luajit/src/host/buildvm.c +518 -0
  70. data/lua-hooks/ext/luajit/src/host/buildvm.h +105 -0
  71. data/lua-hooks/ext/luajit/src/host/buildvm.o +0 -0
  72. data/lua-hooks/ext/luajit/src/host/buildvm_arch.h +7449 -0
  73. data/lua-hooks/ext/luajit/src/host/buildvm_asm.c +345 -0
  74. data/lua-hooks/ext/luajit/src/host/buildvm_asm.o +0 -0
  75. data/lua-hooks/ext/luajit/src/host/buildvm_fold.c +229 -0
  76. data/lua-hooks/ext/luajit/src/host/buildvm_fold.o +0 -0
  77. data/lua-hooks/ext/luajit/src/host/buildvm_lib.c +457 -0
  78. data/lua-hooks/ext/luajit/src/host/buildvm_lib.o +0 -0
  79. data/lua-hooks/ext/luajit/src/host/buildvm_libbc.h +45 -0
  80. data/lua-hooks/ext/luajit/src/host/buildvm_peobj.c +368 -0
  81. data/lua-hooks/ext/luajit/src/host/buildvm_peobj.o +0 -0
  82. data/lua-hooks/ext/luajit/src/host/genlibbc.lua +197 -0
  83. data/lua-hooks/ext/luajit/src/host/genminilua.lua +428 -0
  84. data/lua-hooks/ext/luajit/src/host/minilua +0 -0
  85. data/lua-hooks/ext/luajit/src/host/minilua.c +7770 -0
  86. data/lua-hooks/ext/luajit/src/host/minilua.o +0 -0
  87. data/lua-hooks/ext/luajit/src/jit/bc.lua +190 -0
  88. data/lua-hooks/ext/luajit/src/jit/bcsave.lua +661 -0
  89. data/lua-hooks/ext/luajit/src/jit/dis_arm.lua +689 -0
  90. data/lua-hooks/ext/luajit/src/jit/dis_mips.lua +428 -0
  91. data/lua-hooks/ext/luajit/src/jit/dis_mipsel.lua +17 -0
  92. data/lua-hooks/ext/luajit/src/jit/dis_ppc.lua +591 -0
  93. data/lua-hooks/ext/luajit/src/jit/dis_x64.lua +17 -0
  94. data/lua-hooks/ext/luajit/src/jit/dis_x86.lua +838 -0
  95. data/lua-hooks/ext/luajit/src/jit/dump.lua +706 -0
  96. data/lua-hooks/ext/luajit/src/jit/p.lua +310 -0
  97. data/lua-hooks/ext/luajit/src/jit/v.lua +170 -0
  98. data/lua-hooks/ext/luajit/src/jit/vmdef.lua +362 -0
  99. data/lua-hooks/ext/luajit/src/jit/zone.lua +45 -0
  100. data/lua-hooks/ext/{lua → luajit/src}/lauxlib.h +10 -17
  101. data/lua-hooks/ext/luajit/src/lib_aux.c +356 -0
  102. data/lua-hooks/ext/luajit/src/lib_aux.o +0 -0
  103. data/lua-hooks/ext/luajit/src/lib_aux_dyn.o +0 -0
  104. data/lua-hooks/ext/luajit/src/lib_base.c +664 -0
  105. data/lua-hooks/ext/luajit/src/lib_base.o +0 -0
  106. data/lua-hooks/ext/luajit/src/lib_base_dyn.o +0 -0
  107. data/lua-hooks/ext/luajit/src/lib_bit.c +180 -0
  108. data/lua-hooks/ext/luajit/src/lib_bit.o +0 -0
  109. data/lua-hooks/ext/luajit/src/lib_bit_dyn.o +0 -0
  110. data/lua-hooks/ext/luajit/src/lib_debug.c +405 -0
  111. data/lua-hooks/ext/luajit/src/lib_debug.o +0 -0
  112. data/lua-hooks/ext/luajit/src/lib_debug_dyn.o +0 -0
  113. data/lua-hooks/ext/luajit/src/lib_ffi.c +872 -0
  114. data/lua-hooks/ext/luajit/src/lib_ffi.o +0 -0
  115. data/lua-hooks/ext/luajit/src/lib_ffi_dyn.o +0 -0
  116. data/lua-hooks/ext/luajit/src/lib_init.c +55 -0
  117. data/lua-hooks/ext/luajit/src/lib_init.o +0 -0
  118. data/lua-hooks/ext/luajit/src/lib_init_dyn.o +0 -0
  119. data/lua-hooks/ext/luajit/src/lib_io.c +541 -0
  120. data/lua-hooks/ext/luajit/src/lib_io.o +0 -0
  121. data/lua-hooks/ext/luajit/src/lib_io_dyn.o +0 -0
  122. data/lua-hooks/ext/luajit/src/lib_jit.c +767 -0
  123. data/lua-hooks/ext/luajit/src/lib_jit.o +0 -0
  124. data/lua-hooks/ext/luajit/src/lib_jit_dyn.o +0 -0
  125. data/lua-hooks/ext/luajit/src/lib_math.c +230 -0
  126. data/lua-hooks/ext/luajit/src/lib_math.o +0 -0
  127. data/lua-hooks/ext/luajit/src/lib_math_dyn.o +0 -0
  128. data/lua-hooks/ext/luajit/src/lib_os.c +292 -0
  129. data/lua-hooks/ext/luajit/src/lib_os.o +0 -0
  130. data/lua-hooks/ext/luajit/src/lib_os_dyn.o +0 -0
  131. data/lua-hooks/ext/luajit/src/lib_package.c +610 -0
  132. data/lua-hooks/ext/luajit/src/lib_package.o +0 -0
  133. data/lua-hooks/ext/luajit/src/lib_package_dyn.o +0 -0
  134. data/lua-hooks/ext/luajit/src/lib_string.c +752 -0
  135. data/lua-hooks/ext/luajit/src/lib_string.o +0 -0
  136. data/lua-hooks/ext/luajit/src/lib_string_dyn.o +0 -0
  137. data/lua-hooks/ext/luajit/src/lib_table.c +307 -0
  138. data/lua-hooks/ext/luajit/src/lib_table.o +0 -0
  139. data/lua-hooks/ext/luajit/src/lib_table_dyn.o +0 -0
  140. data/lua-hooks/ext/luajit/src/libluajit.a +0 -0
  141. data/lua-hooks/ext/luajit/src/libluajit.so +0 -0
  142. data/lua-hooks/ext/luajit/src/lj.supp +26 -0
  143. data/lua-hooks/ext/luajit/src/lj_alloc.c +1398 -0
  144. data/lua-hooks/ext/luajit/src/lj_alloc.h +17 -0
  145. data/lua-hooks/ext/luajit/src/lj_alloc.o +0 -0
  146. data/lua-hooks/ext/luajit/src/lj_alloc_dyn.o +0 -0
  147. data/lua-hooks/ext/luajit/src/lj_api.c +1210 -0
  148. data/lua-hooks/ext/luajit/src/lj_api.o +0 -0
  149. data/lua-hooks/ext/luajit/src/lj_api_dyn.o +0 -0
  150. data/lua-hooks/ext/luajit/src/lj_arch.h +509 -0
  151. data/lua-hooks/ext/luajit/src/lj_asm.c +2278 -0
  152. data/lua-hooks/ext/luajit/src/lj_asm.h +17 -0
  153. data/lua-hooks/ext/luajit/src/lj_asm.o +0 -0
  154. data/lua-hooks/ext/luajit/src/lj_asm_arm.h +2217 -0
  155. data/lua-hooks/ext/luajit/src/lj_asm_dyn.o +0 -0
  156. data/lua-hooks/ext/luajit/src/lj_asm_mips.h +1833 -0
  157. data/lua-hooks/ext/luajit/src/lj_asm_ppc.h +2015 -0
  158. data/lua-hooks/ext/luajit/src/lj_asm_x86.h +2634 -0
  159. data/lua-hooks/ext/luajit/src/lj_bc.c +14 -0
  160. data/lua-hooks/ext/luajit/src/lj_bc.h +265 -0
  161. data/lua-hooks/ext/luajit/src/lj_bc.o +0 -0
  162. data/lua-hooks/ext/luajit/src/lj_bc_dyn.o +0 -0
  163. data/lua-hooks/ext/luajit/src/lj_bcdef.h +220 -0
  164. data/lua-hooks/ext/luajit/src/lj_bcdump.h +68 -0
  165. data/lua-hooks/ext/luajit/src/lj_bcread.c +457 -0
  166. data/lua-hooks/ext/luajit/src/lj_bcread.o +0 -0
  167. data/lua-hooks/ext/luajit/src/lj_bcread_dyn.o +0 -0
  168. data/lua-hooks/ext/luajit/src/lj_bcwrite.c +361 -0
  169. data/lua-hooks/ext/luajit/src/lj_bcwrite.o +0 -0
  170. data/lua-hooks/ext/luajit/src/lj_bcwrite_dyn.o +0 -0
  171. data/lua-hooks/ext/luajit/src/lj_buf.c +234 -0
  172. data/lua-hooks/ext/luajit/src/lj_buf.h +105 -0
  173. data/lua-hooks/ext/luajit/src/lj_buf.o +0 -0
  174. data/lua-hooks/ext/luajit/src/lj_buf_dyn.o +0 -0
  175. data/lua-hooks/ext/luajit/src/lj_carith.c +429 -0
  176. data/lua-hooks/ext/luajit/src/lj_carith.h +37 -0
  177. data/lua-hooks/ext/luajit/src/lj_carith.o +0 -0
  178. data/lua-hooks/ext/luajit/src/lj_carith_dyn.o +0 -0
  179. data/lua-hooks/ext/luajit/src/lj_ccall.c +984 -0
  180. data/lua-hooks/ext/luajit/src/lj_ccall.h +178 -0
  181. data/lua-hooks/ext/luajit/src/lj_ccall.o +0 -0
  182. data/lua-hooks/ext/luajit/src/lj_ccall_dyn.o +0 -0
  183. data/lua-hooks/ext/luajit/src/lj_ccallback.c +712 -0
  184. data/lua-hooks/ext/luajit/src/lj_ccallback.h +25 -0
  185. data/lua-hooks/ext/luajit/src/lj_ccallback.o +0 -0
  186. data/lua-hooks/ext/luajit/src/lj_ccallback_dyn.o +0 -0
  187. data/lua-hooks/ext/luajit/src/lj_cconv.c +752 -0
  188. data/lua-hooks/ext/luajit/src/lj_cconv.h +70 -0
  189. data/lua-hooks/ext/luajit/src/lj_cconv.o +0 -0
  190. data/lua-hooks/ext/luajit/src/lj_cconv_dyn.o +0 -0
  191. data/lua-hooks/ext/luajit/src/lj_cdata.c +288 -0
  192. data/lua-hooks/ext/luajit/src/lj_cdata.h +76 -0
  193. data/lua-hooks/ext/luajit/src/lj_cdata.o +0 -0
  194. data/lua-hooks/ext/luajit/src/lj_cdata_dyn.o +0 -0
  195. data/lua-hooks/ext/luajit/src/lj_char.c +43 -0
  196. data/lua-hooks/ext/luajit/src/lj_char.h +42 -0
  197. data/lua-hooks/ext/luajit/src/lj_char.o +0 -0
  198. data/lua-hooks/ext/luajit/src/lj_char_dyn.o +0 -0
  199. data/lua-hooks/ext/luajit/src/lj_clib.c +418 -0
  200. data/lua-hooks/ext/luajit/src/lj_clib.h +29 -0
  201. data/lua-hooks/ext/luajit/src/lj_clib.o +0 -0
  202. data/lua-hooks/ext/luajit/src/lj_clib_dyn.o +0 -0
  203. data/lua-hooks/ext/luajit/src/lj_cparse.c +1862 -0
  204. data/lua-hooks/ext/luajit/src/lj_cparse.h +65 -0
  205. data/lua-hooks/ext/luajit/src/lj_cparse.o +0 -0
  206. data/lua-hooks/ext/luajit/src/lj_cparse_dyn.o +0 -0
  207. data/lua-hooks/ext/luajit/src/lj_crecord.c +1834 -0
  208. data/lua-hooks/ext/luajit/src/lj_crecord.h +38 -0
  209. data/lua-hooks/ext/luajit/src/lj_crecord.o +0 -0
  210. data/lua-hooks/ext/luajit/src/lj_crecord_dyn.o +0 -0
  211. data/lua-hooks/ext/luajit/src/lj_ctype.c +635 -0
  212. data/lua-hooks/ext/luajit/src/lj_ctype.h +461 -0
  213. data/lua-hooks/ext/luajit/src/lj_ctype.o +0 -0
  214. data/lua-hooks/ext/luajit/src/lj_ctype_dyn.o +0 -0
  215. data/lua-hooks/ext/luajit/src/lj_debug.c +699 -0
  216. data/lua-hooks/ext/luajit/src/lj_debug.h +65 -0
  217. data/lua-hooks/ext/luajit/src/lj_debug.o +0 -0
  218. data/lua-hooks/ext/luajit/src/lj_debug_dyn.o +0 -0
  219. data/lua-hooks/ext/luajit/src/lj_def.h +365 -0
  220. data/lua-hooks/ext/luajit/src/lj_dispatch.c +557 -0
  221. data/lua-hooks/ext/luajit/src/lj_dispatch.h +138 -0
  222. data/lua-hooks/ext/luajit/src/lj_dispatch.o +0 -0
  223. data/lua-hooks/ext/luajit/src/lj_dispatch_dyn.o +0 -0
  224. data/lua-hooks/ext/luajit/src/lj_emit_arm.h +356 -0
  225. data/lua-hooks/ext/luajit/src/lj_emit_mips.h +211 -0
  226. data/lua-hooks/ext/luajit/src/lj_emit_ppc.h +238 -0
  227. data/lua-hooks/ext/luajit/src/lj_emit_x86.h +462 -0
  228. data/lua-hooks/ext/luajit/src/lj_err.c +794 -0
  229. data/lua-hooks/ext/luajit/src/lj_err.h +41 -0
  230. data/lua-hooks/ext/luajit/src/lj_err.o +0 -0
  231. data/lua-hooks/ext/luajit/src/lj_err_dyn.o +0 -0
  232. data/lua-hooks/ext/luajit/src/lj_errmsg.h +190 -0
  233. data/lua-hooks/ext/luajit/src/lj_ff.h +18 -0
  234. data/lua-hooks/ext/luajit/src/lj_ffdef.h +209 -0
  235. data/lua-hooks/ext/luajit/src/lj_ffrecord.c +1247 -0
  236. data/lua-hooks/ext/luajit/src/lj_ffrecord.h +24 -0
  237. data/lua-hooks/ext/luajit/src/lj_ffrecord.o +0 -0
  238. data/lua-hooks/ext/luajit/src/lj_ffrecord_dyn.o +0 -0
  239. data/lua-hooks/ext/luajit/src/lj_folddef.h +1138 -0
  240. data/lua-hooks/ext/luajit/src/lj_frame.h +259 -0
  241. data/lua-hooks/ext/luajit/src/lj_func.c +185 -0
  242. data/lua-hooks/ext/luajit/src/lj_func.h +24 -0
  243. data/lua-hooks/ext/luajit/src/lj_func.o +0 -0
  244. data/lua-hooks/ext/luajit/src/lj_func_dyn.o +0 -0
  245. data/lua-hooks/ext/luajit/src/lj_gc.c +845 -0
  246. data/lua-hooks/ext/luajit/src/lj_gc.h +134 -0
  247. data/lua-hooks/ext/luajit/src/lj_gc.o +0 -0
  248. data/lua-hooks/ext/luajit/src/lj_gc_dyn.o +0 -0
  249. data/lua-hooks/ext/luajit/src/lj_gdbjit.c +787 -0
  250. data/lua-hooks/ext/luajit/src/lj_gdbjit.h +22 -0
  251. data/lua-hooks/ext/luajit/src/lj_gdbjit.o +0 -0
  252. data/lua-hooks/ext/luajit/src/lj_gdbjit_dyn.o +0 -0
  253. data/lua-hooks/ext/luajit/src/lj_ir.c +505 -0
  254. data/lua-hooks/ext/luajit/src/lj_ir.h +577 -0
  255. data/lua-hooks/ext/luajit/src/lj_ir.o +0 -0
  256. data/lua-hooks/ext/luajit/src/lj_ir_dyn.o +0 -0
  257. data/lua-hooks/ext/luajit/src/lj_ircall.h +321 -0
  258. data/lua-hooks/ext/luajit/src/lj_iropt.h +161 -0
  259. data/lua-hooks/ext/luajit/src/lj_jit.h +440 -0
  260. data/lua-hooks/ext/luajit/src/lj_lex.c +482 -0
  261. data/lua-hooks/ext/luajit/src/lj_lex.h +86 -0
  262. data/lua-hooks/ext/luajit/src/lj_lex.o +0 -0
  263. data/lua-hooks/ext/luajit/src/lj_lex_dyn.o +0 -0
  264. data/lua-hooks/ext/luajit/src/lj_lib.c +303 -0
  265. data/lua-hooks/ext/luajit/src/lj_lib.h +115 -0
  266. data/lua-hooks/ext/luajit/src/lj_lib.o +0 -0
  267. data/lua-hooks/ext/luajit/src/lj_lib_dyn.o +0 -0
  268. data/lua-hooks/ext/luajit/src/lj_libdef.h +414 -0
  269. data/lua-hooks/ext/luajit/src/lj_load.c +168 -0
  270. data/lua-hooks/ext/luajit/src/lj_load.o +0 -0
  271. data/lua-hooks/ext/luajit/src/lj_load_dyn.o +0 -0
  272. data/lua-hooks/ext/luajit/src/lj_mcode.c +386 -0
  273. data/lua-hooks/ext/luajit/src/lj_mcode.h +30 -0
  274. data/lua-hooks/ext/luajit/src/lj_mcode.o +0 -0
  275. data/lua-hooks/ext/luajit/src/lj_mcode_dyn.o +0 -0
  276. data/lua-hooks/ext/luajit/src/lj_meta.c +477 -0
  277. data/lua-hooks/ext/luajit/src/lj_meta.h +38 -0
  278. data/lua-hooks/ext/luajit/src/lj_meta.o +0 -0
  279. data/lua-hooks/ext/luajit/src/lj_meta_dyn.o +0 -0
  280. data/lua-hooks/ext/luajit/src/lj_obj.c +50 -0
  281. data/lua-hooks/ext/luajit/src/lj_obj.h +976 -0
  282. data/lua-hooks/ext/luajit/src/lj_obj.o +0 -0
  283. data/lua-hooks/ext/luajit/src/lj_obj_dyn.o +0 -0
  284. data/lua-hooks/ext/luajit/src/lj_opt_dce.c +78 -0
  285. data/lua-hooks/ext/luajit/src/lj_opt_dce.o +0 -0
  286. data/lua-hooks/ext/luajit/src/lj_opt_dce_dyn.o +0 -0
  287. data/lua-hooks/ext/luajit/src/lj_opt_fold.c +2488 -0
  288. data/lua-hooks/ext/luajit/src/lj_opt_fold.o +0 -0
  289. data/lua-hooks/ext/luajit/src/lj_opt_fold_dyn.o +0 -0
  290. data/lua-hooks/ext/luajit/src/lj_opt_loop.c +449 -0
  291. data/lua-hooks/ext/luajit/src/lj_opt_loop.o +0 -0
  292. data/lua-hooks/ext/luajit/src/lj_opt_loop_dyn.o +0 -0
  293. data/lua-hooks/ext/luajit/src/lj_opt_mem.c +935 -0
  294. data/lua-hooks/ext/luajit/src/lj_opt_mem.o +0 -0
  295. data/lua-hooks/ext/luajit/src/lj_opt_mem_dyn.o +0 -0
  296. data/lua-hooks/ext/luajit/src/lj_opt_narrow.c +652 -0
  297. data/lua-hooks/ext/luajit/src/lj_opt_narrow.o +0 -0
  298. data/lua-hooks/ext/luajit/src/lj_opt_narrow_dyn.o +0 -0
  299. data/lua-hooks/ext/luajit/src/lj_opt_sink.c +245 -0
  300. data/lua-hooks/ext/luajit/src/lj_opt_sink.o +0 -0
  301. data/lua-hooks/ext/luajit/src/lj_opt_sink_dyn.o +0 -0
  302. data/lua-hooks/ext/luajit/src/lj_opt_split.c +856 -0
  303. data/lua-hooks/ext/luajit/src/lj_opt_split.o +0 -0
  304. data/lua-hooks/ext/luajit/src/lj_opt_split_dyn.o +0 -0
  305. data/lua-hooks/ext/luajit/src/lj_parse.c +2725 -0
  306. data/lua-hooks/ext/luajit/src/lj_parse.h +18 -0
  307. data/lua-hooks/ext/luajit/src/lj_parse.o +0 -0
  308. data/lua-hooks/ext/luajit/src/lj_parse_dyn.o +0 -0
  309. data/lua-hooks/ext/luajit/src/lj_profile.c +368 -0
  310. data/lua-hooks/ext/luajit/src/lj_profile.h +21 -0
  311. data/lua-hooks/ext/luajit/src/lj_profile.o +0 -0
  312. data/lua-hooks/ext/luajit/src/lj_profile_dyn.o +0 -0
  313. data/lua-hooks/ext/luajit/src/lj_recdef.h +270 -0
  314. data/lua-hooks/ext/luajit/src/lj_record.c +2554 -0
  315. data/lua-hooks/ext/luajit/src/lj_record.h +45 -0
  316. data/lua-hooks/ext/luajit/src/lj_record.o +0 -0
  317. data/lua-hooks/ext/luajit/src/lj_record_dyn.o +0 -0
  318. data/lua-hooks/ext/luajit/src/lj_snap.c +870 -0
  319. data/lua-hooks/ext/luajit/src/lj_snap.h +34 -0
  320. data/lua-hooks/ext/luajit/src/lj_snap.o +0 -0
  321. data/lua-hooks/ext/luajit/src/lj_snap_dyn.o +0 -0
  322. data/lua-hooks/ext/luajit/src/lj_state.c +300 -0
  323. data/lua-hooks/ext/luajit/src/lj_state.h +35 -0
  324. data/lua-hooks/ext/luajit/src/lj_state.o +0 -0
  325. data/lua-hooks/ext/luajit/src/lj_state_dyn.o +0 -0
  326. data/lua-hooks/ext/luajit/src/lj_str.c +197 -0
  327. data/lua-hooks/ext/luajit/src/lj_str.h +27 -0
  328. data/lua-hooks/ext/luajit/src/lj_str.o +0 -0
  329. data/lua-hooks/ext/luajit/src/lj_str_dyn.o +0 -0
  330. data/lua-hooks/ext/luajit/src/lj_strfmt.c +554 -0
  331. data/lua-hooks/ext/luajit/src/lj_strfmt.h +125 -0
  332. data/lua-hooks/ext/luajit/src/lj_strfmt.o +0 -0
  333. data/lua-hooks/ext/luajit/src/lj_strfmt_dyn.o +0 -0
  334. data/lua-hooks/ext/luajit/src/lj_strscan.c +547 -0
  335. data/lua-hooks/ext/luajit/src/lj_strscan.h +39 -0
  336. data/lua-hooks/ext/luajit/src/lj_strscan.o +0 -0
  337. data/lua-hooks/ext/luajit/src/lj_strscan_dyn.o +0 -0
  338. data/lua-hooks/ext/luajit/src/lj_tab.c +666 -0
  339. data/lua-hooks/ext/luajit/src/lj_tab.h +73 -0
  340. data/lua-hooks/ext/luajit/src/lj_tab.o +0 -0
  341. data/lua-hooks/ext/luajit/src/lj_tab_dyn.o +0 -0
  342. data/lua-hooks/ext/luajit/src/lj_target.h +164 -0
  343. data/lua-hooks/ext/luajit/src/lj_target_arm.h +270 -0
  344. data/lua-hooks/ext/luajit/src/lj_target_arm64.h +97 -0
  345. data/lua-hooks/ext/luajit/src/lj_target_mips.h +260 -0
  346. data/lua-hooks/ext/luajit/src/lj_target_ppc.h +280 -0
  347. data/lua-hooks/ext/luajit/src/lj_target_x86.h +345 -0
  348. data/lua-hooks/ext/luajit/src/lj_trace.c +859 -0
  349. data/lua-hooks/ext/luajit/src/lj_trace.h +54 -0
  350. data/lua-hooks/ext/luajit/src/lj_trace.o +0 -0
  351. data/lua-hooks/ext/luajit/src/lj_trace_dyn.o +0 -0
  352. data/lua-hooks/ext/luajit/src/lj_traceerr.h +63 -0
  353. data/lua-hooks/ext/luajit/src/lj_udata.c +34 -0
  354. data/lua-hooks/ext/luajit/src/lj_udata.h +14 -0
  355. data/lua-hooks/ext/luajit/src/lj_udata.o +0 -0
  356. data/lua-hooks/ext/luajit/src/lj_udata_dyn.o +0 -0
  357. data/lua-hooks/ext/luajit/src/lj_vm.S +2730 -0
  358. data/lua-hooks/ext/luajit/src/lj_vm.h +114 -0
  359. data/lua-hooks/ext/luajit/src/lj_vm.o +0 -0
  360. data/lua-hooks/ext/luajit/src/lj_vm_dyn.o +0 -0
  361. data/lua-hooks/ext/luajit/src/lj_vmevent.c +58 -0
  362. data/lua-hooks/ext/luajit/src/lj_vmevent.h +59 -0
  363. data/lua-hooks/ext/luajit/src/lj_vmevent.o +0 -0
  364. data/lua-hooks/ext/luajit/src/lj_vmevent_dyn.o +0 -0
  365. data/lua-hooks/ext/luajit/src/lj_vmmath.c +152 -0
  366. data/lua-hooks/ext/luajit/src/lj_vmmath.o +0 -0
  367. data/lua-hooks/ext/luajit/src/lj_vmmath_dyn.o +0 -0
  368. data/lua-hooks/ext/luajit/src/ljamalg.c +96 -0
  369. data/lua-hooks/ext/{lua → luajit/src}/lua.h +12 -7
  370. data/lua-hooks/ext/luajit/src/lua.hpp +9 -0
  371. data/lua-hooks/ext/luajit/src/luaconf.h +156 -0
  372. data/lua-hooks/ext/luajit/src/luajit +0 -0
  373. data/lua-hooks/ext/luajit/src/luajit.c +570 -0
  374. data/lua-hooks/ext/luajit/src/luajit.h +79 -0
  375. data/lua-hooks/ext/luajit/src/luajit.o +0 -0
  376. data/lua-hooks/ext/luajit/src/lualib.h +43 -0
  377. data/lua-hooks/ext/luajit/src/msvcbuild.bat +114 -0
  378. data/lua-hooks/ext/luajit/src/ps4build.bat +103 -0
  379. data/lua-hooks/ext/luajit/src/psvitabuild.bat +93 -0
  380. data/lua-hooks/ext/luajit/src/vm_arm.dasc +4585 -0
  381. data/lua-hooks/ext/luajit/src/vm_arm64.dasc +3764 -0
  382. data/lua-hooks/ext/luajit/src/vm_mips.dasc +4355 -0
  383. data/lua-hooks/ext/luajit/src/vm_ppc.dasc +5252 -0
  384. data/lua-hooks/ext/luajit/src/vm_x64.dasc +4902 -0
  385. data/lua-hooks/ext/luajit/src/vm_x86.dasc +5710 -0
  386. data/lua-hooks/ext/luajit/src/xb1build.bat +101 -0
  387. data/lua-hooks/ext/luajit/src/xedkbuild.bat +92 -0
  388. data/lua-hooks/ext/luautf8/lutf8lib.c +3 -3
  389. data/lua-hooks/lib/boot.lua +37 -2
  390. metadata +372 -69
  391. data/lua-hooks/ext/bitop/README +0 -22
  392. data/lua-hooks/ext/bitop/bit.c +0 -189
  393. data/lua-hooks/ext/extconf.rb +0 -38
  394. data/lua-hooks/ext/lua/COPYRIGHT +0 -34
  395. data/lua-hooks/ext/lua/lapi.c +0 -1087
  396. data/lua-hooks/ext/lua/lapi.h +0 -16
  397. data/lua-hooks/ext/lua/lauxlib.c +0 -652
  398. data/lua-hooks/ext/lua/lbaselib.c +0 -659
  399. data/lua-hooks/ext/lua/lcode.c +0 -831
  400. data/lua-hooks/ext/lua/lcode.h +0 -76
  401. data/lua-hooks/ext/lua/ldblib.c +0 -398
  402. data/lua-hooks/ext/lua/ldebug.c +0 -638
  403. data/lua-hooks/ext/lua/ldebug.h +0 -33
  404. data/lua-hooks/ext/lua/ldo.c +0 -519
  405. data/lua-hooks/ext/lua/ldo.h +0 -57
  406. data/lua-hooks/ext/lua/ldump.c +0 -164
  407. data/lua-hooks/ext/lua/lfunc.c +0 -174
  408. data/lua-hooks/ext/lua/lfunc.h +0 -34
  409. data/lua-hooks/ext/lua/lgc.c +0 -710
  410. data/lua-hooks/ext/lua/lgc.h +0 -110
  411. data/lua-hooks/ext/lua/linit.c +0 -38
  412. data/lua-hooks/ext/lua/liolib.c +0 -556
  413. data/lua-hooks/ext/lua/llex.c +0 -463
  414. data/lua-hooks/ext/lua/llex.h +0 -81
  415. data/lua-hooks/ext/lua/llimits.h +0 -128
  416. data/lua-hooks/ext/lua/lmathlib.c +0 -263
  417. data/lua-hooks/ext/lua/lmem.c +0 -86
  418. data/lua-hooks/ext/lua/lmem.h +0 -49
  419. data/lua-hooks/ext/lua/loadlib.c +0 -705
  420. data/lua-hooks/ext/lua/loadlib_rel.c +0 -760
  421. data/lua-hooks/ext/lua/lobject.c +0 -214
  422. data/lua-hooks/ext/lua/lobject.h +0 -381
  423. data/lua-hooks/ext/lua/lopcodes.c +0 -102
  424. data/lua-hooks/ext/lua/lopcodes.h +0 -268
  425. data/lua-hooks/ext/lua/loslib.c +0 -243
  426. data/lua-hooks/ext/lua/lparser.c +0 -1339
  427. data/lua-hooks/ext/lua/lparser.h +0 -82
  428. data/lua-hooks/ext/lua/lstate.c +0 -214
  429. data/lua-hooks/ext/lua/lstate.h +0 -169
  430. data/lua-hooks/ext/lua/lstring.c +0 -111
  431. data/lua-hooks/ext/lua/lstring.h +0 -31
  432. data/lua-hooks/ext/lua/lstrlib.c +0 -871
  433. data/lua-hooks/ext/lua/ltable.c +0 -588
  434. data/lua-hooks/ext/lua/ltable.h +0 -40
  435. data/lua-hooks/ext/lua/ltablib.c +0 -287
  436. data/lua-hooks/ext/lua/ltm.c +0 -75
  437. data/lua-hooks/ext/lua/ltm.h +0 -54
  438. data/lua-hooks/ext/lua/lua.c +0 -392
  439. data/lua-hooks/ext/lua/lua.def +0 -131
  440. data/lua-hooks/ext/lua/lua.rc +0 -28
  441. data/lua-hooks/ext/lua/lua_dll.rc +0 -26
  442. data/lua-hooks/ext/lua/luac.c +0 -200
  443. data/lua-hooks/ext/lua/luac.rc +0 -1
  444. data/lua-hooks/ext/lua/luaconf.h +0 -763
  445. data/lua-hooks/ext/lua/luaconf.h.in +0 -724
  446. data/lua-hooks/ext/lua/luaconf.h.orig +0 -763
  447. data/lua-hooks/ext/lua/lualib.h +0 -53
  448. data/lua-hooks/ext/lua/lundump.c +0 -227
  449. data/lua-hooks/ext/lua/lundump.h +0 -36
  450. data/lua-hooks/ext/lua/lvm.c +0 -767
  451. data/lua-hooks/ext/lua/lvm.h +0 -36
  452. data/lua-hooks/ext/lua/lzio.c +0 -82
  453. data/lua-hooks/ext/lua/lzio.h +0 -67
  454. data/lua-hooks/ext/lua/print.c +0 -227
@@ -1,111 +0,0 @@
1
- /*
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)
4
- ** See Copyright Notice in lua.h
5
- */
6
-
7
-
8
- #include <string.h>
9
-
10
- #define lstring_c
11
- #define LUA_CORE
12
-
13
- #include "lua.h"
14
-
15
- #include "lmem.h"
16
- #include "lobject.h"
17
- #include "lstate.h"
18
- #include "lstring.h"
19
-
20
-
21
-
22
- void luaS_resize (lua_State *L, int newsize) {
23
- GCObject **newhash;
24
- stringtable *tb;
25
- int i;
26
- if (G(L)->gcstate == GCSsweepstring)
27
- return; /* cannot resize during GC traverse */
28
- newhash = luaM_newvector(L, newsize, GCObject *);
29
- tb = &G(L)->strt;
30
- for (i=0; i<newsize; i++) newhash[i] = NULL;
31
- /* rehash */
32
- for (i=0; i<tb->size; i++) {
33
- GCObject *p = tb->hash[i];
34
- while (p) { /* for each node in the list */
35
- GCObject *next = p->gch.next; /* save next */
36
- unsigned int h = gco2ts(p)->hash;
37
- int h1 = lmod(h, newsize); /* new position */
38
- lua_assert(cast_int(h%newsize) == lmod(h, newsize));
39
- p->gch.next = newhash[h1]; /* chain it */
40
- newhash[h1] = p;
41
- p = next;
42
- }
43
- }
44
- luaM_freearray(L, tb->hash, tb->size, TString *);
45
- tb->size = newsize;
46
- tb->hash = newhash;
47
- }
48
-
49
-
50
- static TString *newlstr (lua_State *L, const char *str, size_t l,
51
- unsigned int h) {
52
- TString *ts;
53
- stringtable *tb;
54
- if (l+1 > (MAX_SIZET - sizeof(TString))/sizeof(char))
55
- luaM_toobig(L);
56
- ts = cast(TString *, luaM_malloc(L, (l+1)*sizeof(char)+sizeof(TString)));
57
- ts->tsv.len = l;
58
- ts->tsv.hash = h;
59
- ts->tsv.marked = luaC_white(G(L));
60
- ts->tsv.tt = LUA_TSTRING;
61
- ts->tsv.reserved = 0;
62
- memcpy(ts+1, str, l*sizeof(char));
63
- ((char *)(ts+1))[l] = '\0'; /* ending 0 */
64
- tb = &G(L)->strt;
65
- h = lmod(h, tb->size);
66
- ts->tsv.next = tb->hash[h]; /* chain new entry */
67
- tb->hash[h] = obj2gco(ts);
68
- tb->nuse++;
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;
72
- }
73
-
74
-
75
- TString *luaS_newlstr (lua_State *L, const char *str, size_t l) {
76
- GCObject *o;
77
- unsigned int h = cast(unsigned int, l); /* seed */
78
- size_t step = (l>>5)+1; /* if string is too long, don't hash all its chars */
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)];
83
- o != NULL;
84
- o = o->gch.next) {
85
- TString *ts = rawgco2ts(o);
86
- if (ts->tsv.len == l && (memcmp(str, getstr(ts), l) == 0)) {
87
- /* string may be dead */
88
- if (isdead(G(L), o)) changewhite(o);
89
- return ts;
90
- }
91
- }
92
- return newlstr(L, str, l, h); /* not found */
93
- }
94
-
95
-
96
- Udata *luaS_newudata (lua_State *L, size_t s, Table *e) {
97
- Udata *u;
98
- if (s > MAX_SIZET - sizeof(Udata))
99
- luaM_toobig(L);
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;
103
- u->uv.len = s;
104
- u->uv.metatable = NULL;
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);
109
- return u;
110
- }
111
-
@@ -1,31 +0,0 @@
1
- /*
2
- ** $Id: lstring.h,v 1.43.1.1 2007/12/27 13:02:25 roberto Exp $
3
- ** String table (keep all strings handled by Lua)
4
- ** See Copyright Notice in lua.h
5
- */
6
-
7
- #ifndef lstring_h
8
- #define lstring_h
9
-
10
-
11
- #include "lgc.h"
12
- #include "lobject.h"
13
- #include "lstate.h"
14
-
15
-
16
- #define sizestring(s) (sizeof(union TString)+((s)->len+1)*sizeof(char))
17
-
18
- #define sizeudata(u) (sizeof(union Udata)+(u)->len)
19
-
20
- #define luaS_new(L, s) (luaS_newlstr(L, s, strlen(s)))
21
- #define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \
22
- (sizeof(s)/sizeof(char))-1))
23
-
24
- #define luaS_fix(s) l_setbit((s)->tsv.marked, FIXEDBIT)
25
-
26
- LUAI_FUNC void luaS_resize (lua_State *L, int newsize);
27
- LUAI_FUNC Udata *luaS_newudata (lua_State *L, size_t s, Table *e);
28
- LUAI_FUNC TString *luaS_newlstr (lua_State *L, const char *str, size_t l);
29
-
30
-
31
- #endif
@@ -1,871 +0,0 @@
1
- /*
2
- ** $Id: lstrlib.c,v 1.132.1.5 2010/05/14 15:34:19 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
- /* macro to `unsign' a character */
24
- #define uchar(c) ((unsigned char)(c))
25
-
26
-
27
-
28
- static int str_len (lua_State *L) {
29
- size_t l;
30
- luaL_checklstring(L, 1, &l);
31
- lua_pushinteger(L, l);
32
- return 1;
33
- }
34
-
35
-
36
- static ptrdiff_t posrelat (ptrdiff_t pos, size_t len) {
37
- /* relative string position: negative means back from end */
38
- if (pos < 0) pos += (ptrdiff_t)len + 1;
39
- return (pos >= 0) ? pos : 0;
40
- }
41
-
42
-
43
- static int str_sub (lua_State *L) {
44
- size_t l;
45
- const char *s = luaL_checklstring(L, 1, &l);
46
- ptrdiff_t start = posrelat(luaL_checkinteger(L, 2), l);
47
- ptrdiff_t end = posrelat(luaL_optinteger(L, 3, -1), l);
48
- if (start < 1) start = 1;
49
- if (end > (ptrdiff_t)l) end = (ptrdiff_t)l;
50
- if (start <= end)
51
- lua_pushlstring(L, s+start-1, end-start+1);
52
- else lua_pushliteral(L, "");
53
- return 1;
54
- }
55
-
56
-
57
- static int str_reverse (lua_State *L) {
58
- size_t l;
59
- luaL_Buffer b;
60
- const char *s = luaL_checklstring(L, 1, &l);
61
- luaL_buffinit(L, &b);
62
- while (l--) luaL_addchar(&b, s[l]);
63
- luaL_pushresult(&b);
64
- return 1;
65
- }
66
-
67
-
68
- static int str_lower (lua_State *L) {
69
- size_t l;
70
- size_t i;
71
- luaL_Buffer b;
72
- const char *s = luaL_checklstring(L, 1, &l);
73
- luaL_buffinit(L, &b);
74
- for (i=0; i<l; i++)
75
- luaL_addchar(&b, tolower(uchar(s[i])));
76
- luaL_pushresult(&b);
77
- return 1;
78
- }
79
-
80
-
81
- static int str_upper (lua_State *L) {
82
- size_t l;
83
- size_t i;
84
- luaL_Buffer b;
85
- const char *s = luaL_checklstring(L, 1, &l);
86
- luaL_buffinit(L, &b);
87
- for (i=0; i<l; i++)
88
- luaL_addchar(&b, toupper(uchar(s[i])));
89
- luaL_pushresult(&b);
90
- return 1;
91
- }
92
-
93
- static int str_rep (lua_State *L) {
94
- size_t l;
95
- luaL_Buffer b;
96
- const char *s = luaL_checklstring(L, 1, &l);
97
- int n = luaL_checkint(L, 2);
98
- luaL_buffinit(L, &b);
99
- while (n-- > 0)
100
- luaL_addlstring(&b, s, l);
101
- luaL_pushresult(&b);
102
- return 1;
103
- }
104
-
105
-
106
- static int str_byte (lua_State *L) {
107
- size_t l;
108
- const char *s = luaL_checklstring(L, 1, &l);
109
- ptrdiff_t posi = posrelat(luaL_optinteger(L, 2, 1), l);
110
- ptrdiff_t pose = posrelat(luaL_optinteger(L, 3, posi), l);
111
- int n, i;
112
- if (posi <= 0) posi = 1;
113
- if ((size_t)pose > l) pose = l;
114
- if (posi > pose) return 0; /* empty interval; return no values */
115
- n = (int)(pose - posi + 1);
116
- if (posi + n <= pose) /* overflow? */
117
- luaL_error(L, "string slice too long");
118
- luaL_checkstack(L, n, "string slice too long");
119
- for (i=0; i<n; i++)
120
- lua_pushinteger(L, uchar(s[posi+i-1]));
121
- return n;
122
- }
123
-
124
-
125
- static int str_char (lua_State *L) {
126
- int n = lua_gettop(L); /* number of arguments */
127
- int i;
128
- luaL_Buffer b;
129
- luaL_buffinit(L, &b);
130
- for (i=1; i<=n; i++) {
131
- int c = luaL_checkint(L, i);
132
- luaL_argcheck(L, uchar(c) == c, i, "invalid value");
133
- luaL_addchar(&b, uchar(c));
134
- }
135
- luaL_pushresult(&b);
136
- return 1;
137
- }
138
-
139
-
140
- static int writer (lua_State *L, const void* b, size_t size, void* B) {
141
- (void)L;
142
- luaL_addlstring((luaL_Buffer*) B, (const char *)b, size);
143
- return 0;
144
- }
145
-
146
-
147
- static int str_dump (lua_State *L) {
148
- luaL_Buffer b;
149
- luaL_checktype(L, 1, LUA_TFUNCTION);
150
- lua_settop(L, 1);
151
- luaL_buffinit(L,&b);
152
- if (lua_dump(L, writer, &b) != 0)
153
- luaL_error(L, "unable to dump given function");
154
- luaL_pushresult(&b);
155
- return 1;
156
- }
157
-
158
-
159
-
160
- /*
161
- ** {======================================================
162
- ** PATTERN MATCHING
163
- ** =======================================================
164
- */
165
-
166
-
167
- #define CAP_UNFINISHED (-1)
168
- #define CAP_POSITION (-2)
169
-
170
- typedef struct MatchState {
171
- const char *src_init; /* init of source string */
172
- const char *src_end; /* end (`\0') of source string */
173
- lua_State *L;
174
- int level; /* total number of captures (finished or unfinished) */
175
- struct {
176
- const char *init;
177
- ptrdiff_t len;
178
- } capture[LUA_MAXCAPTURES];
179
- } MatchState;
180
-
181
-
182
- #define L_ESC '%'
183
- #define SPECIALS "^$*+?.([%-"
184
-
185
-
186
- static int check_capture (MatchState *ms, int l) {
187
- l -= '1';
188
- if (l < 0 || l >= ms->level || ms->capture[l].len == CAP_UNFINISHED)
189
- return luaL_error(ms->L, "invalid capture index");
190
- return l;
191
- }
192
-
193
-
194
- static int capture_to_close (MatchState *ms) {
195
- int level = ms->level;
196
- for (level--; level>=0; level--)
197
- if (ms->capture[level].len == CAP_UNFINISHED) return level;
198
- return luaL_error(ms->L, "invalid pattern capture");
199
- }
200
-
201
-
202
- static const char *classend (MatchState *ms, const char *p) {
203
- switch (*p++) {
204
- case L_ESC: {
205
- if (*p == '\0')
206
- luaL_error(ms->L, "malformed pattern (ends with " LUA_QL("%%") ")");
207
- return p+1;
208
- }
209
- case '[': {
210
- if (*p == '^') p++;
211
- do { /* look for a `]' */
212
- if (*p == '\0')
213
- luaL_error(ms->L, "malformed pattern (missing " LUA_QL("]") ")");
214
- if (*(p++) == L_ESC && *p != '\0')
215
- p++; /* skip escapes (e.g. `%]') */
216
- } while (*p != ']');
217
- return p+1;
218
- }
219
- default: {
220
- return p;
221
- }
222
- }
223
- }
224
-
225
-
226
- static int match_class (int c, int cl) {
227
- int res;
228
- switch (tolower(cl)) {
229
- case 'a' : res = isalpha(c); break;
230
- case 'c' : res = iscntrl(c); break;
231
- case 'd' : res = isdigit(c); break;
232
- case 'l' : res = islower(c); break;
233
- case 'p' : res = ispunct(c); break;
234
- case 's' : res = isspace(c); break;
235
- case 'u' : res = isupper(c); break;
236
- case 'w' : res = isalnum(c); break;
237
- case 'x' : res = isxdigit(c); break;
238
- case 'z' : res = (c == 0); break;
239
- default: return (cl == c);
240
- }
241
- return (islower(cl) ? res : !res);
242
- }
243
-
244
-
245
- static int matchbracketclass (int c, const char *p, const char *ec) {
246
- int sig = 1;
247
- if (*(p+1) == '^') {
248
- sig = 0;
249
- p++; /* skip the `^' */
250
- }
251
- while (++p < ec) {
252
- if (*p == L_ESC) {
253
- p++;
254
- if (match_class(c, uchar(*p)))
255
- return sig;
256
- }
257
- else if ((*(p+1) == '-') && (p+2 < ec)) {
258
- p+=2;
259
- if (uchar(*(p-2)) <= c && c <= uchar(*p))
260
- return sig;
261
- }
262
- else if (uchar(*p) == c) return sig;
263
- }
264
- return !sig;
265
- }
266
-
267
-
268
- static int singlematch (int c, const char *p, const char *ep) {
269
- switch (*p) {
270
- case '.': return 1; /* matches any char */
271
- case L_ESC: return match_class(c, uchar(*(p+1)));
272
- case '[': return matchbracketclass(c, p, ep-1);
273
- default: return (uchar(*p) == c);
274
- }
275
- }
276
-
277
-
278
- static const char *match (MatchState *ms, const char *s, const char *p);
279
-
280
-
281
- static const char *matchbalance (MatchState *ms, const char *s,
282
- const char *p) {
283
- if (*p == 0 || *(p+1) == 0)
284
- luaL_error(ms->L, "unbalanced pattern");
285
- if (*s != *p) return NULL;
286
- else {
287
- int b = *p;
288
- int e = *(p+1);
289
- int cont = 1;
290
- while (++s < ms->src_end) {
291
- if (*s == e) {
292
- if (--cont == 0) return s+1;
293
- }
294
- else if (*s == b) cont++;
295
- }
296
- }
297
- return NULL; /* string ends out of balance */
298
- }
299
-
300
-
301
- static const char *max_expand (MatchState *ms, const char *s,
302
- const char *p, const char *ep) {
303
- ptrdiff_t i = 0; /* counts maximum expand for item */
304
- while ((s+i)<ms->src_end && singlematch(uchar(*(s+i)), p, ep))
305
- i++;
306
- /* keeps trying to match with the maximum repetitions */
307
- while (i>=0) {
308
- const char *res = match(ms, (s+i), ep+1);
309
- if (res) return res;
310
- i--; /* else didn't match; reduce 1 repetition to try again */
311
- }
312
- return NULL;
313
- }
314
-
315
-
316
- static const char *min_expand (MatchState *ms, const char *s,
317
- const char *p, const char *ep) {
318
- for (;;) {
319
- const char *res = match(ms, s, ep+1);
320
- if (res != NULL)
321
- return res;
322
- else if (s<ms->src_end && singlematch(uchar(*s), p, ep))
323
- s++; /* try with one more repetition */
324
- else return NULL;
325
- }
326
- }
327
-
328
-
329
- static const char *start_capture (MatchState *ms, const char *s,
330
- const char *p, int what) {
331
- const char *res;
332
- int level = ms->level;
333
- if (level >= LUA_MAXCAPTURES) luaL_error(ms->L, "too many captures");
334
- ms->capture[level].init = s;
335
- ms->capture[level].len = what;
336
- ms->level = level+1;
337
- if ((res=match(ms, s, p)) == NULL) /* match failed? */
338
- ms->level--; /* undo capture */
339
- return res;
340
- }
341
-
342
-
343
- static const char *end_capture (MatchState *ms, const char *s,
344
- const char *p) {
345
- int l = capture_to_close(ms);
346
- const char *res;
347
- ms->capture[l].len = s - ms->capture[l].init; /* close capture */
348
- if ((res = match(ms, s, p)) == NULL) /* match failed? */
349
- ms->capture[l].len = CAP_UNFINISHED; /* undo capture */
350
- return res;
351
- }
352
-
353
-
354
- static const char *match_capture (MatchState *ms, const char *s, int l) {
355
- size_t len;
356
- l = check_capture(ms, l);
357
- len = ms->capture[l].len;
358
- if ((size_t)(ms->src_end-s) >= len &&
359
- memcmp(ms->capture[l].init, s, len) == 0)
360
- return s+len;
361
- else return NULL;
362
- }
363
-
364
-
365
- static const char *match (MatchState *ms, const char *s, const char *p) {
366
- init: /* using goto's to optimize tail recursion */
367
- switch (*p) {
368
- case '(': { /* start capture */
369
- if (*(p+1) == ')') /* position capture? */
370
- return start_capture(ms, s, p+2, CAP_POSITION);
371
- else
372
- return start_capture(ms, s, p+1, CAP_UNFINISHED);
373
- }
374
- case ')': { /* end capture */
375
- return end_capture(ms, s, p+1);
376
- }
377
- case L_ESC: {
378
- switch (*(p+1)) {
379
- case 'b': { /* balanced string? */
380
- s = matchbalance(ms, s, p+2);
381
- if (s == NULL) return NULL;
382
- p+=4; goto init; /* else return match(ms, s, p+4); */
383
- }
384
- case 'f': { /* frontier? */
385
- const char *ep; char previous;
386
- p += 2;
387
- if (*p != '[')
388
- luaL_error(ms->L, "missing " LUA_QL("[") " after "
389
- LUA_QL("%%f") " in pattern");
390
- ep = classend(ms, p); /* points to what is next */
391
- previous = (s == ms->src_init) ? '\0' : *(s-1);
392
- if (matchbracketclass(uchar(previous), p, ep-1) ||
393
- !matchbracketclass(uchar(*s), p, ep-1)) return NULL;
394
- p=ep; goto init; /* else return match(ms, s, ep); */
395
- }
396
- default: {
397
- if (isdigit(uchar(*(p+1)))) { /* capture results (%0-%9)? */
398
- s = match_capture(ms, s, uchar(*(p+1)));
399
- if (s == NULL) return NULL;
400
- p+=2; goto init; /* else return match(ms, s, p+2) */
401
- }
402
- goto dflt; /* case default */
403
- }
404
- }
405
- }
406
- case '\0': { /* end of pattern */
407
- return s; /* match succeeded */
408
- }
409
- case '$': {
410
- if (*(p+1) == '\0') /* is the `$' the last char in pattern? */
411
- return (s == ms->src_end) ? s : NULL; /* check end of string */
412
- else goto dflt;
413
- }
414
- default: dflt: { /* it is a pattern item */
415
- const char *ep = classend(ms, p); /* points to what is next */
416
- int m = s<ms->src_end && singlematch(uchar(*s), p, ep);
417
- switch (*ep) {
418
- case '?': { /* optional */
419
- const char *res;
420
- if (m && ((res=match(ms, s+1, ep+1)) != NULL))
421
- return res;
422
- p=ep+1; goto init; /* else return match(ms, s, ep+1); */
423
- }
424
- case '*': { /* 0 or more repetitions */
425
- return max_expand(ms, s, p, ep);
426
- }
427
- case '+': { /* 1 or more repetitions */
428
- return (m ? max_expand(ms, s+1, p, ep) : NULL);
429
- }
430
- case '-': { /* 0 or more repetitions (minimum) */
431
- return min_expand(ms, s, p, ep);
432
- }
433
- default: {
434
- if (!m) return NULL;
435
- s++; p=ep; goto init; /* else return match(ms, s+1, ep); */
436
- }
437
- }
438
- }
439
- }
440
- }
441
-
442
-
443
-
444
- static const char *lmemfind (const char *s1, size_t l1,
445
- const char *s2, size_t l2) {
446
- if (l2 == 0) return s1; /* empty strings are everywhere */
447
- else if (l2 > l1) return NULL; /* avoids a negative `l1' */
448
- else {
449
- const char *init; /* to search for a `*s2' inside `s1' */
450
- l2--; /* 1st char will be checked by `memchr' */
451
- l1 = l1-l2; /* `s2' cannot be found after that */
452
- while (l1 > 0 && (init = (const char *)memchr(s1, *s2, l1)) != NULL) {
453
- init++; /* 1st char is already checked */
454
- if (memcmp(init, s2+1, l2) == 0)
455
- return init-1;
456
- else { /* correct `l1' and `s1' to try again */
457
- l1 -= init-s1;
458
- s1 = init;
459
- }
460
- }
461
- return NULL; /* not found */
462
- }
463
- }
464
-
465
-
466
- static void push_onecapture (MatchState *ms, int i, const char *s,
467
- const char *e) {
468
- if (i >= ms->level) {
469
- if (i == 0) /* ms->level == 0, too */
470
- lua_pushlstring(ms->L, s, e - s); /* add whole match */
471
- else
472
- luaL_error(ms->L, "invalid capture index");
473
- }
474
- else {
475
- ptrdiff_t l = ms->capture[i].len;
476
- if (l == CAP_UNFINISHED) luaL_error(ms->L, "unfinished capture");
477
- if (l == CAP_POSITION)
478
- lua_pushinteger(ms->L, ms->capture[i].init - ms->src_init + 1);
479
- else
480
- lua_pushlstring(ms->L, ms->capture[i].init, l);
481
- }
482
- }
483
-
484
-
485
- static int push_captures (MatchState *ms, const char *s, const char *e) {
486
- int i;
487
- int nlevels = (ms->level == 0 && s) ? 1 : ms->level;
488
- luaL_checkstack(ms->L, nlevels, "too many captures");
489
- for (i = 0; i < nlevels; i++)
490
- push_onecapture(ms, i, s, e);
491
- return nlevels; /* number of strings pushed */
492
- }
493
-
494
-
495
- static int str_find_aux (lua_State *L, int find) {
496
- size_t l1, l2;
497
- const char *s = luaL_checklstring(L, 1, &l1);
498
- const char *p = luaL_checklstring(L, 2, &l2);
499
- ptrdiff_t init = posrelat(luaL_optinteger(L, 3, 1), l1) - 1;
500
- if (init < 0) init = 0;
501
- else if ((size_t)(init) > l1) init = (ptrdiff_t)l1;
502
- if (find && (lua_toboolean(L, 4) || /* explicit request? */
503
- strpbrk(p, SPECIALS) == NULL)) { /* or no special characters? */
504
- /* do a plain search */
505
- const char *s2 = lmemfind(s+init, l1-init, p, l2);
506
- if (s2) {
507
- lua_pushinteger(L, s2-s+1);
508
- lua_pushinteger(L, s2-s+l2);
509
- return 2;
510
- }
511
- }
512
- else {
513
- MatchState ms;
514
- int anchor = (*p == '^') ? (p++, 1) : 0;
515
- const char *s1=s+init;
516
- ms.L = L;
517
- ms.src_init = s;
518
- ms.src_end = s+l1;
519
- do {
520
- const char *res;
521
- ms.level = 0;
522
- if ((res=match(&ms, s1, p)) != NULL) {
523
- if (find) {
524
- lua_pushinteger(L, s1-s+1); /* start */
525
- lua_pushinteger(L, res-s); /* end */
526
- return push_captures(&ms, NULL, 0) + 2;
527
- }
528
- else
529
- return push_captures(&ms, s1, res);
530
- }
531
- } while (s1++ < ms.src_end && !anchor);
532
- }
533
- lua_pushnil(L); /* not found */
534
- return 1;
535
- }
536
-
537
-
538
- static int str_find (lua_State *L) {
539
- return str_find_aux(L, 1);
540
- }
541
-
542
-
543
- static int str_match (lua_State *L) {
544
- return str_find_aux(L, 0);
545
- }
546
-
547
-
548
- static int gmatch_aux (lua_State *L) {
549
- MatchState ms;
550
- size_t ls;
551
- const char *s = lua_tolstring(L, lua_upvalueindex(1), &ls);
552
- const char *p = lua_tostring(L, lua_upvalueindex(2));
553
- const char *src;
554
- ms.L = L;
555
- ms.src_init = s;
556
- ms.src_end = s+ls;
557
- for (src = s + (size_t)lua_tointeger(L, lua_upvalueindex(3));
558
- src <= ms.src_end;
559
- src++) {
560
- const char *e;
561
- ms.level = 0;
562
- if ((e = match(&ms, src, p)) != NULL) {
563
- lua_Integer newstart = e-s;
564
- if (e == src) newstart++; /* empty match? go at least one position */
565
- lua_pushinteger(L, newstart);
566
- lua_replace(L, lua_upvalueindex(3));
567
- return push_captures(&ms, src, e);
568
- }
569
- }
570
- return 0; /* not found */
571
- }
572
-
573
-
574
- static int gmatch (lua_State *L) {
575
- luaL_checkstring(L, 1);
576
- luaL_checkstring(L, 2);
577
- lua_settop(L, 2);
578
- lua_pushinteger(L, 0);
579
- lua_pushcclosure(L, gmatch_aux, 3);
580
- return 1;
581
- }
582
-
583
-
584
- static int gfind_nodef (lua_State *L) {
585
- return luaL_error(L, LUA_QL("string.gfind") " was renamed to "
586
- LUA_QL("string.gmatch"));
587
- }
588
-
589
-
590
- static void add_s (MatchState *ms, luaL_Buffer *b, const char *s,
591
- const char *e) {
592
- size_t l, i;
593
- const char *news = lua_tolstring(ms->L, 3, &l);
594
- for (i = 0; i < l; i++) {
595
- if (news[i] != L_ESC)
596
- luaL_addchar(b, news[i]);
597
- else {
598
- i++; /* skip ESC */
599
- if (!isdigit(uchar(news[i])))
600
- luaL_addchar(b, news[i]);
601
- else if (news[i] == '0')
602
- luaL_addlstring(b, s, e - s);
603
- else {
604
- push_onecapture(ms, news[i] - '1', s, e);
605
- luaL_addvalue(b); /* add capture to accumulated result */
606
- }
607
- }
608
- }
609
- }
610
-
611
-
612
- static void add_value (MatchState *ms, luaL_Buffer *b, const char *s,
613
- const char *e) {
614
- lua_State *L = ms->L;
615
- switch (lua_type(L, 3)) {
616
- case LUA_TNUMBER:
617
- case LUA_TSTRING: {
618
- add_s(ms, b, s, e);
619
- return;
620
- }
621
- case LUA_TFUNCTION: {
622
- int n;
623
- lua_pushvalue(L, 3);
624
- n = push_captures(ms, s, e);
625
- lua_call(L, n, 1);
626
- break;
627
- }
628
- case LUA_TTABLE: {
629
- push_onecapture(ms, 0, s, e);
630
- lua_gettable(L, 3);
631
- break;
632
- }
633
- }
634
- if (!lua_toboolean(L, -1)) { /* nil or false? */
635
- lua_pop(L, 1);
636
- lua_pushlstring(L, s, e - s); /* keep original text */
637
- }
638
- else if (!lua_isstring(L, -1))
639
- luaL_error(L, "invalid replacement value (a %s)", luaL_typename(L, -1));
640
- luaL_addvalue(b); /* add result to accumulator */
641
- }
642
-
643
-
644
- static int str_gsub (lua_State *L) {
645
- size_t srcl;
646
- const char *src = luaL_checklstring(L, 1, &srcl);
647
- const char *p = luaL_checkstring(L, 2);
648
- int tr = lua_type(L, 3);
649
- int max_s = luaL_optint(L, 4, srcl+1);
650
- int anchor = (*p == '^') ? (p++, 1) : 0;
651
- int n = 0;
652
- MatchState ms;
653
- luaL_Buffer b;
654
- luaL_argcheck(L, tr == LUA_TNUMBER || tr == LUA_TSTRING ||
655
- tr == LUA_TFUNCTION || tr == LUA_TTABLE, 3,
656
- "string/function/table expected");
657
- luaL_buffinit(L, &b);
658
- ms.L = L;
659
- ms.src_init = src;
660
- ms.src_end = src+srcl;
661
- while (n < max_s) {
662
- const char *e;
663
- ms.level = 0;
664
- e = match(&ms, src, p);
665
- if (e) {
666
- n++;
667
- add_value(&ms, &b, src, e);
668
- }
669
- if (e && e>src) /* non empty match? */
670
- src = e; /* skip it */
671
- else if (src < ms.src_end)
672
- luaL_addchar(&b, *src++);
673
- else break;
674
- if (anchor) break;
675
- }
676
- luaL_addlstring(&b, src, ms.src_end-src);
677
- luaL_pushresult(&b);
678
- lua_pushinteger(L, n); /* number of substitutions */
679
- return 2;
680
- }
681
-
682
- /* }====================================================== */
683
-
684
-
685
- /* maximum size of each formatted item (> len(format('%99.99f', -1e308))) */
686
- #define MAX_ITEM 512
687
- /* valid flags in a format specification */
688
- #define FLAGS "-+ #0"
689
- /*
690
- ** maximum size of each format specification (such as '%-099.99d')
691
- ** (+10 accounts for %99.99x plus margin of error)
692
- */
693
- #define MAX_FORMAT (sizeof(FLAGS) + sizeof(LUA_INTFRMLEN) + 10)
694
-
695
-
696
- static void addquoted (lua_State *L, luaL_Buffer *b, int arg) {
697
- size_t l;
698
- const char *s = luaL_checklstring(L, arg, &l);
699
- luaL_addchar(b, '"');
700
- while (l--) {
701
- switch (*s) {
702
- case '"': case '\\': case '\n': {
703
- luaL_addchar(b, '\\');
704
- luaL_addchar(b, *s);
705
- break;
706
- }
707
- case '\r': {
708
- luaL_addlstring(b, "\\r", 2);
709
- break;
710
- }
711
- case '\0': {
712
- luaL_addlstring(b, "\\000", 4);
713
- break;
714
- }
715
- default: {
716
- luaL_addchar(b, *s);
717
- break;
718
- }
719
- }
720
- s++;
721
- }
722
- luaL_addchar(b, '"');
723
- }
724
-
725
- static const char *scanformat (lua_State *L, const char *strfrmt, char *form) {
726
- const char *p = strfrmt;
727
- while (*p != '\0' && strchr(FLAGS, *p) != NULL) p++; /* skip flags */
728
- if ((size_t)(p - strfrmt) >= sizeof(FLAGS))
729
- luaL_error(L, "invalid format (repeated flags)");
730
- if (isdigit(uchar(*p))) p++; /* skip width */
731
- if (isdigit(uchar(*p))) p++; /* (2 digits at most) */
732
- if (*p == '.') {
733
- p++;
734
- if (isdigit(uchar(*p))) p++; /* skip precision */
735
- if (isdigit(uchar(*p))) p++; /* (2 digits at most) */
736
- }
737
- if (isdigit(uchar(*p)))
738
- luaL_error(L, "invalid format (width or precision too long)");
739
- *(form++) = '%';
740
- strncpy(form, strfrmt, p - strfrmt + 1);
741
- form += p - strfrmt + 1;
742
- *form = '\0';
743
- return p;
744
- }
745
-
746
-
747
- static void addintlen (char *form) {
748
- size_t l = strlen(form);
749
- char spec = form[l - 1];
750
- strcpy(form + l - 1, LUA_INTFRMLEN);
751
- form[l + sizeof(LUA_INTFRMLEN) - 2] = spec;
752
- form[l + sizeof(LUA_INTFRMLEN) - 1] = '\0';
753
- }
754
-
755
-
756
- static int str_format (lua_State *L) {
757
- int top = lua_gettop(L);
758
- int arg = 1;
759
- size_t sfl;
760
- const char *strfrmt = luaL_checklstring(L, arg, &sfl);
761
- const char *strfrmt_end = strfrmt+sfl;
762
- luaL_Buffer b;
763
- luaL_buffinit(L, &b);
764
- while (strfrmt < strfrmt_end) {
765
- if (*strfrmt != L_ESC)
766
- luaL_addchar(&b, *strfrmt++);
767
- else if (*++strfrmt == L_ESC)
768
- luaL_addchar(&b, *strfrmt++); /* %% */
769
- else { /* format item */
770
- char form[MAX_FORMAT]; /* to store the format (`%...') */
771
- char buff[MAX_ITEM]; /* to store the formatted item */
772
- if (++arg > top)
773
- luaL_argerror(L, arg, "no value");
774
- strfrmt = scanformat(L, strfrmt, form);
775
- switch (*strfrmt++) {
776
- case 'c': {
777
- sprintf(buff, form, (int)luaL_checknumber(L, arg));
778
- break;
779
- }
780
- case 'd': case 'i': {
781
- addintlen(form);
782
- sprintf(buff, form, (LUA_INTFRM_T)luaL_checknumber(L, arg));
783
- break;
784
- }
785
- case 'o': case 'u': case 'x': case 'X': {
786
- addintlen(form);
787
- sprintf(buff, form, (unsigned LUA_INTFRM_T)luaL_checknumber(L, arg));
788
- break;
789
- }
790
- case 'e': case 'E': case 'f':
791
- case 'g': case 'G': {
792
- sprintf(buff, form, (double)luaL_checknumber(L, arg));
793
- break;
794
- }
795
- case 'q': {
796
- addquoted(L, &b, arg);
797
- continue; /* skip the 'addsize' at the end */
798
- }
799
- case 's': {
800
- size_t l;
801
- const char *s = luaL_checklstring(L, arg, &l);
802
- if (!strchr(form, '.') && l >= 100) {
803
- /* no precision and string is too long to be formatted;
804
- keep original string */
805
- lua_pushvalue(L, arg);
806
- luaL_addvalue(&b);
807
- continue; /* skip the `addsize' at the end */
808
- }
809
- else {
810
- sprintf(buff, form, s);
811
- break;
812
- }
813
- }
814
- default: { /* also treat cases `pnLlh' */
815
- return luaL_error(L, "invalid option " LUA_QL("%%%c") " to "
816
- LUA_QL("format"), *(strfrmt - 1));
817
- }
818
- }
819
- luaL_addlstring(&b, buff, strlen(buff));
820
- }
821
- }
822
- luaL_pushresult(&b);
823
- return 1;
824
- }
825
-
826
-
827
- static const luaL_Reg strlib[] = {
828
- {"byte", str_byte},
829
- {"char", str_char},
830
- {"dump", str_dump},
831
- {"find", str_find},
832
- {"format", str_format},
833
- {"gfind", gfind_nodef},
834
- {"gmatch", gmatch},
835
- {"gsub", str_gsub},
836
- {"len", str_len},
837
- {"lower", str_lower},
838
- {"match", str_match},
839
- {"rep", str_rep},
840
- {"reverse", str_reverse},
841
- {"sub", str_sub},
842
- {"upper", str_upper},
843
- {NULL, NULL}
844
- };
845
-
846
-
847
- static void createmetatable (lua_State *L) {
848
- lua_createtable(L, 0, 1); /* create metatable for strings */
849
- lua_pushliteral(L, ""); /* dummy string */
850
- lua_pushvalue(L, -2);
851
- lua_setmetatable(L, -2); /* set string metatable */
852
- lua_pop(L, 1); /* pop dummy string */
853
- lua_pushvalue(L, -2); /* string library... */
854
- lua_setfield(L, -2, "__index"); /* ...is the __index metamethod */
855
- lua_pop(L, 1); /* pop metatable */
856
- }
857
-
858
-
859
- /*
860
- ** Open string library
861
- */
862
- LUALIB_API int luaopen_string (lua_State *L) {
863
- luaL_register(L, LUA_STRLIBNAME, strlib);
864
- #if defined(LUA_COMPAT_GFIND)
865
- lua_getfield(L, -1, "gmatch");
866
- lua_setfield(L, -2, "gfind");
867
- #endif
868
- createmetatable(L);
869
- return 1;
870
- }
871
-