quickjs 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +4 -0
- data/LICENSE +21 -0
- data/Rakefile +22 -0
- data/ext/quickjsrb/extconf.rb +45 -0
- data/ext/quickjsrb/quickjs/LICENSE +22 -0
- data/ext/quickjsrb/quickjs/cutils.c +631 -0
- data/ext/quickjsrb/quickjs/cutils.h +347 -0
- data/ext/quickjsrb/quickjs/libbf.c +8475 -0
- data/ext/quickjsrb/quickjs/libbf.h +535 -0
- data/ext/quickjsrb/quickjs/libregexp-opcode.h +57 -0
- data/ext/quickjsrb/quickjs/libregexp.c +2501 -0
- data/ext/quickjsrb/quickjs/libregexp.h +55 -0
- data/ext/quickjsrb/quickjs/libunicode-table.h +4557 -0
- data/ext/quickjsrb/quickjs/libunicode.c +1910 -0
- data/ext/quickjsrb/quickjs/libunicode.h +182 -0
- data/ext/quickjsrb/quickjs/list.h +99 -0
- data/ext/quickjsrb/quickjs/qjs.c +564 -0
- data/ext/quickjsrb/quickjs/qjsc.c +761 -0
- data/ext/quickjsrb/quickjs/qjscalc.c +4005 -0
- data/ext/quickjsrb/quickjs/quickjs-atom.h +273 -0
- data/ext/quickjsrb/quickjs/quickjs-libc.c +4052 -0
- data/ext/quickjsrb/quickjs/quickjs-libc.h +60 -0
- data/ext/quickjsrb/quickjs/quickjs-opcode.h +372 -0
- data/ext/quickjsrb/quickjs/quickjs.c +55978 -0
- data/ext/quickjsrb/quickjs/quickjs.h +1087 -0
- data/ext/quickjsrb/quickjs/repl.c +2057 -0
- data/ext/quickjsrb/quickjs/run-test262.c +2216 -0
- data/ext/quickjsrb/quickjs/unicode_gen.c +3225 -0
- data/ext/quickjsrb/quickjs/unicode_gen_def.h +291 -0
- data/ext/quickjsrb/quickjsrb.c +105 -0
- data/ext/quickjsrb/quickjsrb.h +14 -0
- data/lib/quickjs/version.rb +5 -0
- data/lib/quickjs.rb +28 -0
- data/sig/quickjs.rbs +4 -0
- metadata +81 -0
@@ -0,0 +1,55 @@
|
|
1
|
+
/*
|
2
|
+
* Regular Expression Engine
|
3
|
+
*
|
4
|
+
* Copyright (c) 2017-2018 Fabrice Bellard
|
5
|
+
*
|
6
|
+
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
+
* of this software and associated documentation files (the "Software"), to deal
|
8
|
+
* in the Software without restriction, including without limitation the rights
|
9
|
+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
+
* copies of the Software, and to permit persons to whom the Software is
|
11
|
+
* furnished to do so, subject to the following conditions:
|
12
|
+
*
|
13
|
+
* The above copyright notice and this permission notice shall be included in
|
14
|
+
* all copies or substantial portions of the Software.
|
15
|
+
*
|
16
|
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17
|
+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18
|
+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
19
|
+
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
20
|
+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
21
|
+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
22
|
+
* THE SOFTWARE.
|
23
|
+
*/
|
24
|
+
#ifndef LIBREGEXP_H
|
25
|
+
#define LIBREGEXP_H
|
26
|
+
|
27
|
+
#include <stddef.h>
|
28
|
+
#include <stdint.h>
|
29
|
+
|
30
|
+
#define LRE_FLAG_GLOBAL (1 << 0)
|
31
|
+
#define LRE_FLAG_IGNORECASE (1 << 1)
|
32
|
+
#define LRE_FLAG_MULTILINE (1 << 2)
|
33
|
+
#define LRE_FLAG_DOTALL (1 << 3)
|
34
|
+
#define LRE_FLAG_UNICODE (1 << 4)
|
35
|
+
#define LRE_FLAG_STICKY (1 << 5)
|
36
|
+
#define LRE_FLAG_INDICES (1 << 6) /* Unused by libregexp, just recorded. */
|
37
|
+
#define LRE_FLAG_NAMED_GROUPS (1 << 7) /* named groups are present in the regexp */
|
38
|
+
|
39
|
+
uint8_t *lre_compile(int *plen, char *error_msg, int error_msg_size,
|
40
|
+
const char *buf, size_t buf_len, int re_flags,
|
41
|
+
void *opaque);
|
42
|
+
int lre_get_capture_count(const uint8_t *bc_buf);
|
43
|
+
int lre_get_flags(const uint8_t *bc_buf);
|
44
|
+
const char *lre_get_groupnames(const uint8_t *bc_buf);
|
45
|
+
int lre_exec(uint8_t **capture,
|
46
|
+
const uint8_t *bc_buf, const uint8_t *cbuf, int cindex, int clen,
|
47
|
+
int cbuf_type, void *opaque);
|
48
|
+
|
49
|
+
int lre_parse_escape(const uint8_t **pp, int allow_utf16);
|
50
|
+
|
51
|
+
/* must be provided by the user, return non zero if overflow */
|
52
|
+
int lre_check_stack_overflow(void *opaque, size_t alloca_size);
|
53
|
+
void *lre_realloc(void *opaque, void *ptr, size_t size);
|
54
|
+
|
55
|
+
#endif /* LIBREGEXP_H */
|