edn_turbo 0.1.0
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/.gitignore +9 -0
- data/Gemfile +4 -0
- data/README.md +30 -0
- data/Rakefile +47 -0
- data/bin/edn-ruby-read +27 -0
- data/bin/ppedn +41 -0
- data/ext/edn_turbo/edn_parser.cc +2009 -0
- data/ext/edn_turbo/edn_parser.h +62 -0
- data/ext/edn_turbo/edn_parser.rl +725 -0
- data/ext/edn_turbo/edn_parser_def.cc +50 -0
- data/ext/edn_turbo/extconf.rb +3 -0
- data/ext/edn_turbo/main.cc +49 -0
- data/lib/edn_turbo/edn_parser.rb +10 -0
- data/lib/edn_turbo/version.rb +3 -0
- data/lib/edn_turbo.rb +27 -0
- data/test/test_output_diff.rb +209 -0
- metadata +104 -0
@@ -0,0 +1,62 @@
|
|
1
|
+
#ifndef EDN_RUBY_EXT_PARSER_H
|
2
|
+
#define EDN_RUBY_EXT_PARSER_H
|
3
|
+
|
4
|
+
#include <string>
|
5
|
+
#include <strstream>
|
6
|
+
#include <rice/Object.hpp>
|
7
|
+
#include <rice/to_from_ruby.hpp>
|
8
|
+
|
9
|
+
typedef unsigned char ui8;
|
10
|
+
|
11
|
+
namespace edn
|
12
|
+
{
|
13
|
+
//
|
14
|
+
// C-extension EDN Parser class representation
|
15
|
+
class Parser
|
16
|
+
{
|
17
|
+
private:
|
18
|
+
std::size_t line_number;
|
19
|
+
const char* p_save;
|
20
|
+
const char* eof;
|
21
|
+
|
22
|
+
Rice::Object parse(const char* s, std::size_t len);
|
23
|
+
|
24
|
+
const char* EDN_parse_decimal(const char *p, const char *pe, Rice::Object& o);
|
25
|
+
const char* EDN_parse_integer(const char *p, const char *pe, Rice::Object& o);
|
26
|
+
const char* EDN_parse_keyword(const char *p, const char *pe, Rice::Object& o);
|
27
|
+
const char* EDN_parse_tagged (const char *p, const char *pe, Rice::Object& o, bool& dicard);
|
28
|
+
const char* EDN_parse_string (const char *p, const char *pe, Rice::Object& o);
|
29
|
+
const char* EDN_parse_value (const char *p, const char *pe, Rice::Object& o);
|
30
|
+
const char* EDN_parse_vector (const char *p, const char *pe, Rice::Object& o);
|
31
|
+
const char* EDN_parse_map (const char *p, const char *pe, Rice::Object& o);
|
32
|
+
const char* EDN_parse_list (const char *p, const char *pe, Rice::Object& o);
|
33
|
+
|
34
|
+
bool EDN_parse_byte_stream (const char *p, const char *pe, Rice::String& s);
|
35
|
+
|
36
|
+
void error(const std::string& err, char c) const;
|
37
|
+
void error(char err_c) const { error("", err_c); }
|
38
|
+
void error(const std::string& err_msg) const { error(err_msg, '\0'); }
|
39
|
+
|
40
|
+
// utility method to convert a primitive in string form to a
|
41
|
+
// ruby type
|
42
|
+
template <class T>
|
43
|
+
static Rice::Object buftotype(const char* p, long len, T& val) {
|
44
|
+
std::string buf;
|
45
|
+
buf.append(p, len);
|
46
|
+
std::istringstream(buf) >> val;
|
47
|
+
return to_ruby<T>(val);
|
48
|
+
}
|
49
|
+
|
50
|
+
public:
|
51
|
+
Parser() : line_number(1), p_save(NULL), eof(NULL) { }
|
52
|
+
|
53
|
+
Rice::Object process(const std::string& data) { return parse(data.c_str(), data.length()); }
|
54
|
+
|
55
|
+
// handle file read from the c-side
|
56
|
+
Rice::Object open(const std::string& file);
|
57
|
+
|
58
|
+
}; // Engine
|
59
|
+
|
60
|
+
} // namespace
|
61
|
+
|
62
|
+
#endif
|