edn_turbo 0.2.1 → 0.2.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 +4 -4
- data/README.md +16 -40
- data/ext/edn_turbo/edn_parser.cc +1651 -1529
- data/ext/edn_turbo/edn_parser.h +15 -12
- data/ext/edn_turbo/edn_parser.rl +375 -327
- data/ext/edn_turbo/edn_parser_unicode.cc +1 -1
- data/ext/edn_turbo/{edn_parser_def.cc → edn_parser_util.cc} +23 -15
- data/lib/edn_turbo/version.rb +2 -2
- data/test/test_output_diff.rb +1 -1
- metadata +3 -3
data/ext/edn_turbo/edn_parser.h
CHANGED
@@ -37,24 +37,30 @@ namespace edn
|
|
37
37
|
Rice::Object parse(const char* s, std::size_t len);
|
38
38
|
|
39
39
|
const char* parse_value (const char *p, const char *pe, Rice::Object& o);
|
40
|
-
const char* parse_operator(const char *p, const char *pe, Rice::Object& o);
|
41
|
-
const char* parse_esc_char(const char *p, const char *pe, Rice::Object& o);
|
42
|
-
const char* parse_symbol (const char *p, const char *pe, std::string& s);
|
43
|
-
const char* parse_keyword (const char *p, const char *pe, Rice::Object& o);
|
44
40
|
const char* parse_string (const char *p, const char *pe, Rice::Object& o);
|
41
|
+
const char* parse_keyword (const char *p, const char *pe, Rice::Object& o);
|
45
42
|
const char* parse_decimal (const char *p, const char *pe, Rice::Object& o);
|
46
43
|
const char* parse_integer (const char *p, const char *pe, Rice::Object& o);
|
44
|
+
const char* parse_operator(const char *p, const char *pe, Rice::Object& o);
|
45
|
+
const char* parse_esc_char(const char *p, const char *pe, Rice::Object& o);
|
46
|
+
const char* parse_symbol (const char *p, const char *pe, std::string& s);
|
47
47
|
const char* parse_vector (const char *p, const char *pe, Rice::Object& o);
|
48
48
|
const char* parse_list (const char *p, const char *pe, Rice::Object& o);
|
49
|
-
const char* parse_set (const char *p, const char *pe, Rice::Object& o);
|
50
49
|
const char* parse_map (const char *p, const char *pe, Rice::Object& o);
|
51
|
-
const char* parse_tagged (const char *p, const char *pe, Rice::Object& o);
|
52
|
-
const char* parse_discard (const char *p, const char *pe);
|
53
50
|
const char* parse_dispatch(const char *p, const char *pe, Rice::Object& o);
|
51
|
+
const char* parse_set (const char *p, const char *pe, Rice::Object& o);
|
52
|
+
const char* parse_discard (const char *p, const char *pe);
|
53
|
+
const char* parse_tagged (const char *p, const char *pe, Rice::Object& o);
|
54
|
+
|
55
|
+
// defined in edn_parser_unicode.cc
|
56
|
+
static bool to_utf8(const char *s, std::size_t len, std::string& rslt);
|
54
57
|
|
55
|
-
|
58
|
+
// defined in edn_parser_util.cc
|
59
|
+
static Rice::Object integer_to_ruby(const char* str, std::size_t len);
|
60
|
+
static Rice::Object float_to_ruby (const char* str, std::size_t len);
|
61
|
+
|
62
|
+
static bool parse_byte_stream (const char *p, const char *pe, Rice::String& s, bool encode);
|
56
63
|
static bool parse_escaped_char(const char *p, const char *pe, Rice::Object& s);
|
57
|
-
static bool unicode_to_utf8 (const char *s, std::size_t len, std::string& rslt);
|
58
64
|
|
59
65
|
static Rice::Object make_edn_symbol(const std::string& name);
|
60
66
|
static Rice::Object make_ruby_set(const Rice::Array& elems);
|
@@ -75,9 +81,6 @@ namespace edn
|
|
75
81
|
return to_ruby<T>(val);
|
76
82
|
}
|
77
83
|
|
78
|
-
static Rice::Object integer_to_ruby(const char* str, std::size_t len);
|
79
|
-
static Rice::Object float_to_ruby(const char* str, std::size_t len);
|
80
|
-
|
81
84
|
public:
|
82
85
|
Parser() : line_number(1), p_save(NULL), eof(NULL) { }
|
83
86
|
|