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,50 @@
|
|
1
|
+
#include <iostream>
|
2
|
+
#include <string>
|
3
|
+
#include <fstream>
|
4
|
+
#include <rice/Object.hpp>
|
5
|
+
|
6
|
+
#include "edn_parser.h"
|
7
|
+
|
8
|
+
namespace edn
|
9
|
+
{
|
10
|
+
// ============================================================
|
11
|
+
// reads the contents of a file and begins the parsing process
|
12
|
+
//
|
13
|
+
Rice::Object Parser::open(const std::string& file)
|
14
|
+
{
|
15
|
+
Rice::Object rslt = Qnil;
|
16
|
+
|
17
|
+
std::ifstream f(file);
|
18
|
+
|
19
|
+
if (f.is_open())
|
20
|
+
{
|
21
|
+
// determine the length of the file
|
22
|
+
f.seekg(0, f.end);
|
23
|
+
long len = f.tellg();
|
24
|
+
f.seekg(0, f.beg);
|
25
|
+
|
26
|
+
// read its contents
|
27
|
+
char* buf = new char[len];
|
28
|
+
f.read(buf, len);
|
29
|
+
f.close();
|
30
|
+
|
31
|
+
// parse the buffer
|
32
|
+
rslt = parse(buf, len);
|
33
|
+
|
34
|
+
delete [] buf;
|
35
|
+
}
|
36
|
+
return rslt;
|
37
|
+
}
|
38
|
+
|
39
|
+
//
|
40
|
+
// error reporting
|
41
|
+
void Parser::error(const std::string& err, char c) const
|
42
|
+
{
|
43
|
+
std::cerr << "Parse error ";
|
44
|
+
if (err.length() > 0)
|
45
|
+
std::cerr << "(" << err << ") ";
|
46
|
+
if (c != '\0')
|
47
|
+
std::cerr << "at '" << c << "' ";
|
48
|
+
std::cerr << "on line " << line_number << std::endl;
|
49
|
+
}
|
50
|
+
}
|
@@ -0,0 +1,49 @@
|
|
1
|
+
#include <signal.h>
|
2
|
+
#include <iostream>
|
3
|
+
#include <clocale>
|
4
|
+
|
5
|
+
// always include rice headers before ruby.h
|
6
|
+
#include <rice/Data_Type.hpp>
|
7
|
+
#include <rice/Constructor.hpp>
|
8
|
+
|
9
|
+
#include "edn_parser.h"
|
10
|
+
|
11
|
+
|
12
|
+
namespace edn {
|
13
|
+
void die(int sig)
|
14
|
+
{
|
15
|
+
exit(-1);
|
16
|
+
}
|
17
|
+
}
|
18
|
+
|
19
|
+
|
20
|
+
//
|
21
|
+
// ruby calls this to load the extension
|
22
|
+
extern "C"
|
23
|
+
void Init_edn_turbo(void)
|
24
|
+
{
|
25
|
+
struct sigaction a;
|
26
|
+
a.sa_handler = edn::die;
|
27
|
+
sigemptyset(&a.sa_mask);
|
28
|
+
a.sa_flags = 0;
|
29
|
+
sigaction(SIGINT, &a, 0);
|
30
|
+
|
31
|
+
// pass things back as utf-8
|
32
|
+
if (!setlocale( LC_ALL, "" )) {
|
33
|
+
std::cerr << "Error setting locale" << std::endl;
|
34
|
+
return;
|
35
|
+
}
|
36
|
+
|
37
|
+
Rice::Module rb_mEDNT = Rice::define_module("EDNT");
|
38
|
+
|
39
|
+
// bind the ruby Parser class to the C++ one
|
40
|
+
Rice::Data_Type<edn::Parser> rb_cParser =
|
41
|
+
Rice::define_class_under<edn::Parser>(rb_mEDNT, "Parser")
|
42
|
+
.define_constructor(Rice::Constructor<edn::Parser>())
|
43
|
+
.define_method("ext_read", &edn::Parser::process, (Rice::Arg("data")))
|
44
|
+
.define_method("ext_open", &edn::Parser::open, (Rice::Arg("file")))
|
45
|
+
;
|
46
|
+
|
47
|
+
// import whatever else we've defined in the ruby side
|
48
|
+
rb_require("edn_turbo/edn_parser");
|
49
|
+
}
|
data/lib/edn_turbo.rb
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
require_relative 'edn_turbo/edn_parser'
|
2
|
+
require_relative 'edn_turbo/version'
|
3
|
+
require_relative 'edn_turbo/edn_turbo'
|
4
|
+
|
5
|
+
module EDNT
|
6
|
+
|
7
|
+
# ----------------------------------------------------------------------------
|
8
|
+
# instantiate a parser (defined in the C-side) and parse the file
|
9
|
+
#
|
10
|
+
def self.read(input)
|
11
|
+
|
12
|
+
data = input.instance_of?(String) ? input : input.read
|
13
|
+
|
14
|
+
raise "EOF error" if data == ''
|
15
|
+
|
16
|
+
Parser.new.read(data)
|
17
|
+
|
18
|
+
end
|
19
|
+
|
20
|
+
|
21
|
+
# ----------------------------------------------------------------------------
|
22
|
+
# handle file-open from the c-side and then parse
|
23
|
+
#
|
24
|
+
def self.open(filename)
|
25
|
+
Parser.new.ext_open(filename)
|
26
|
+
end
|
27
|
+
end # EDN namespace
|
@@ -0,0 +1,209 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# -*- coding: utf-8 -*-
|
3
|
+
$LOAD_PATH << File.expand_path( File.dirname(__FILE__) + '/../lib' )
|
4
|
+
require 'minitest/autorun'
|
5
|
+
require 'edn_turbo'
|
6
|
+
|
7
|
+
class EDNT_Test < Minitest::Test
|
8
|
+
|
9
|
+
def setup
|
10
|
+
@parser = EDNT::Parser.new
|
11
|
+
end
|
12
|
+
|
13
|
+
def check_file(file, expected_output)
|
14
|
+
File.open(file) { |file|
|
15
|
+
assert_equal(@parser.read(file.read), expected_output)
|
16
|
+
}
|
17
|
+
end
|
18
|
+
|
19
|
+
def test_number
|
20
|
+
|
21
|
+
check_file('test/number.edn',
|
22
|
+
[0, 0, 5, 12, 232, -98798, 13213, 0.11, 231.312, -2321.0, 11.22]
|
23
|
+
)
|
24
|
+
end
|
25
|
+
|
26
|
+
def test_keyword
|
27
|
+
|
28
|
+
check_file('test/keyword.edn',
|
29
|
+
[:key1, :"key_2/adsd2", :key_3, :"key-4", :"key_5/asd-32_ee"]
|
30
|
+
)
|
31
|
+
end
|
32
|
+
|
33
|
+
def test_values
|
34
|
+
|
35
|
+
check_file('test/values.edn',
|
36
|
+
[false, true, nil, "this is a test", "this\tis\\only\ta\ttest\rof\"various\nescaped\\values",
|
37
|
+
"this is a third test", "123➪456®789"]
|
38
|
+
)
|
39
|
+
end
|
40
|
+
|
41
|
+
def test_vector
|
42
|
+
|
43
|
+
check_file('test/vector_1.edn',
|
44
|
+
[true, true, 34, [true, nil, "añ", "", :test, [3213.23]]]
|
45
|
+
)
|
46
|
+
end
|
47
|
+
|
48
|
+
def test_read
|
49
|
+
|
50
|
+
# check read for using string
|
51
|
+
assert_equal(@parser.read('{:a 1 :b 2}'), {:a=>1, :b=>2})
|
52
|
+
|
53
|
+
end
|
54
|
+
|
55
|
+
def test_list
|
56
|
+
|
57
|
+
check_file('test/list_1.edn',
|
58
|
+
[22, 3312, "dss", {:powerpuff=>[:buttercup, :bubbles, :blossom]}]
|
59
|
+
)
|
60
|
+
|
61
|
+
end
|
62
|
+
|
63
|
+
def test_map
|
64
|
+
|
65
|
+
check_file('test/map_1.edn',
|
66
|
+
{:key_a1=>true,:key_a2=>false,:key_a3=>[1, 2, 3, "test string", nil, {1=>2}],
|
67
|
+
:key_a4=>{:key_a31=>23, :key_a32=>24.4},"string_key"=>:kval,
|
68
|
+
:embedded=>[true, {:c2g_md5=>"2bbee1cd3045710db6fec432b00d1e0c"}],
|
69
|
+
2=>{:a=>:b}}
|
70
|
+
)
|
71
|
+
|
72
|
+
check_file('test/map_2.edn',
|
73
|
+
{:int=>1, :string=>"hello", :char=>"a", :array=>[0, 1], :hash=>{:key=>"value"}}
|
74
|
+
)
|
75
|
+
end
|
76
|
+
|
77
|
+
def test_packard
|
78
|
+
|
79
|
+
check_file('test/map_3.edn',
|
80
|
+
{:meta=>{:data_format_version=>304,
|
81
|
+
:filename=>"test/colorspan.pdf",
|
82
|
+
:is_ok=>true,
|
83
|
+
:font_engine_ok=>true,
|
84
|
+
:pdf_ver_major=>1,
|
85
|
+
:pdf_ver_minor=>3,
|
86
|
+
:num_pages=>1,
|
87
|
+
:outline=>[],
|
88
|
+
:font_size_list=>[12.0],
|
89
|
+
:lib_versions=>
|
90
|
+
{:edsel=>"0.20.3",:poppler=>"0.29.0",:libpng=>"1.6.16",:openjpeg=>"1.5.0",:boost=>"1.57",:fontconfig=>"2.11.1",:freetype=>"2.5.5",:leptonica=>"1.71"}},
|
91
|
+
:pages=>
|
92
|
+
[{:data_format_version=>304,
|
93
|
+
:pgnum=>1,
|
94
|
+
:is_ok=>true,
|
95
|
+
:width=>612.0,
|
96
|
+
:height=>792.0,
|
97
|
+
:rotation=>0,
|
98
|
+
:has_invisible_text=>false,
|
99
|
+
:text_bounds=>[[72.0, 71.0], [336.11500000000024, 83.0]],
|
100
|
+
:gfx_bounds=>[[0.0, 0.0], [612.0, 792.0]],
|
101
|
+
:bounds=>[[0.0, 0.0], [612.0, 792.0]],
|
102
|
+
:resources=>
|
103
|
+
{:colors=>["#000000", "#ffffff", "#b51a00", "#669c34"],
|
104
|
+
:fonts=>[{:original_name=>"FQRLCA+Helvetica",:family=>"Helvetica",:general_family=>:sans_serif,:type=>:truetype,:embedded=>true,:c2g_md5=>"fca1d2ac4bbb8bb8ca033cd3f24483d6"}],
|
105
|
+
:images=>{},
|
106
|
+
:glyphs=>[]},
|
107
|
+
:text_spans=>
|
108
|
+
[{:bbox=>[[72.0, 71.0], [182.71680000000006, 83.0]],
|
109
|
+
:type=>:span,
|
110
|
+
:text=>"This is a test of the e",
|
111
|
+
:font_idx=>0,
|
112
|
+
:size=>12.0,
|
113
|
+
:color_idx=>0,
|
114
|
+
:x_vector=>
|
115
|
+
[72.0,
|
116
|
+
79.3296,
|
117
|
+
86.00399999999999,
|
118
|
+
88.67039999999999,
|
119
|
+
94.67039999999999,
|
120
|
+
98.00399999999999,
|
121
|
+
100.67039999999999,
|
122
|
+
106.67039999999999,
|
123
|
+
110.00399999999999,
|
124
|
+
116.67839999999998,
|
125
|
+
120.01199999999999,
|
126
|
+
123.34559999999999,
|
127
|
+
130.01999999999998,
|
128
|
+
136.01999999999998,
|
129
|
+
139.3536,
|
130
|
+
142.68720000000002,
|
131
|
+
149.3616,
|
132
|
+
152.69520000000003,
|
133
|
+
156.02880000000005,
|
134
|
+
159.36240000000006,
|
135
|
+
166.03680000000006,
|
136
|
+
172.71120000000005,
|
137
|
+
176.04480000000007],
|
138
|
+
:clip_path=>0},
|
139
|
+
{:bbox=>[[182.7188, 71.0], [216.7316, 83.0]],
|
140
|
+
:type=>:span,
|
141
|
+
:text=>"merge",
|
142
|
+
:font_idx=>0,
|
143
|
+
:size=>12.0,
|
144
|
+
:color_idx=>2,
|
145
|
+
:x_vector=>[182.7188, 192.7148, 199.3892, 203.3852, 210.0596],
|
146
|
+
:clip_path=>0},
|
147
|
+
{:bbox=>[[216.7324, 71.0], [223.4044, 83.0]],
|
148
|
+
:type=>:span,
|
149
|
+
:text=>"n",
|
150
|
+
:font_idx=>0,
|
151
|
+
:size=>12.0,
|
152
|
+
:color_idx=>3,
|
153
|
+
:x_vector=>[216.7324],
|
154
|
+
:clip_path=>0},
|
155
|
+
{:bbox=>[[223.4062, 71.0], [336.11500000000024, 83.0]],
|
156
|
+
:type=>:span,
|
157
|
+
:text=>"cy broadcast system.",
|
158
|
+
:font_idx=>0,
|
159
|
+
:size=>12.0,
|
160
|
+
:color_idx=>0,
|
161
|
+
:x_vector=>
|
162
|
+
[223.4062,
|
163
|
+
229.4062,
|
164
|
+
235.4062,
|
165
|
+
238.73980000000003,
|
166
|
+
245.41420000000002,
|
167
|
+
249.41020000000003,
|
168
|
+
256.0846000000001,
|
169
|
+
262.7590000000001,
|
170
|
+
269.4334000000002,
|
171
|
+
275.4334000000002,
|
172
|
+
282.1078000000002,
|
173
|
+
288.1078000000002,
|
174
|
+
291.4414000000002,
|
175
|
+
294.7750000000002,
|
176
|
+
300.7750000000002,
|
177
|
+
306.7750000000002,
|
178
|
+
312.7750000000002,
|
179
|
+
316.1086000000002,
|
180
|
+
322.78300000000024,
|
181
|
+
332.7790000000002],
|
182
|
+
:clip_path=>0}],
|
183
|
+
:graphics=>
|
184
|
+
[{:type=>:path,
|
185
|
+
:commands=>
|
186
|
+
[[{:move_to=>[0.0, 792.0]},{:line_to=>[612.0, 792.0]},{:line_to=>[612.0, 0.0]},{:line_to=>[0.0, 0.0]},{:line_to=>[0.0, 792.0]},{:close_path=>true}]],
|
187
|
+
:bbox=>[[0.0, 0.0], [612.0, 792.0]],
|
188
|
+
:path_type=>:clip,
|
189
|
+
:id=>0,
|
190
|
+
:attribs=>{}},
|
191
|
+
{:type=>:path,
|
192
|
+
:commands=>
|
193
|
+
[[{:move_to=>[0.0, 792.0]},{:line_to=>[612.0, 792.0]},{:line_to=>[612.0, 0.0]},{:line_to=>[0.0, 0.0]},{:line_to=>[0.0, 792.0]},{:close_path=>true}]],
|
194
|
+
:bbox=>[[0.0, 0.0], [612.0, 792.0]],
|
195
|
+
:path_type=>:fill,
|
196
|
+
:clip_path=>0,
|
197
|
+
:attribs=>{:fill_color_idx=>1}},
|
198
|
+
{:type=>:path,
|
199
|
+
:commands=>
|
200
|
+
[[{:move_to=>[0.0, 792.0]},{:line_to=>[612.0, 792.0]},{:line_to=>[612.0, 0.0]},{:line_to=>[0.0, 0.0]},{:line_to=>[0.0, 792.0]},{:close_path=>true}]],
|
201
|
+
:bbox=>[[0.0, 0.0], [612.0, 792.0]],
|
202
|
+
:path_type=>:fill,
|
203
|
+
:clip_path=>0,
|
204
|
+
:attribs=>{:fill_color_idx=>1}}],
|
205
|
+
:links=>[]}]}
|
206
|
+
)
|
207
|
+
end
|
208
|
+
|
209
|
+
end
|
metadata
ADDED
@@ -0,0 +1,104 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: edn_turbo
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ed Porras
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-04-30 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rake
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '10.3'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '10.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake-compiler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0.9'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0.9'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rice
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.7'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.7'
|
55
|
+
description: Optimization for parsing of EDN files using ragel in a c++ extension
|
56
|
+
email: ed@motologic.com
|
57
|
+
executables:
|
58
|
+
- ppedn
|
59
|
+
extensions:
|
60
|
+
- ext/edn_turbo/extconf.rb
|
61
|
+
extra_rdoc_files: []
|
62
|
+
files:
|
63
|
+
- ".gitignore"
|
64
|
+
- Gemfile
|
65
|
+
- README.md
|
66
|
+
- Rakefile
|
67
|
+
- bin/edn-ruby-read
|
68
|
+
- bin/ppedn
|
69
|
+
- ext/edn_turbo/edn_parser.cc
|
70
|
+
- ext/edn_turbo/edn_parser.h
|
71
|
+
- ext/edn_turbo/edn_parser.rl
|
72
|
+
- ext/edn_turbo/edn_parser_def.cc
|
73
|
+
- ext/edn_turbo/extconf.rb
|
74
|
+
- ext/edn_turbo/main.cc
|
75
|
+
- lib/edn_turbo.rb
|
76
|
+
- lib/edn_turbo/edn_parser.rb
|
77
|
+
- lib/edn_turbo/version.rb
|
78
|
+
- test/test_output_diff.rb
|
79
|
+
homepage: http://rubygems.org/gems/edn_turbo
|
80
|
+
licenses:
|
81
|
+
- ''
|
82
|
+
metadata: {}
|
83
|
+
post_install_message:
|
84
|
+
rdoc_options: []
|
85
|
+
require_paths:
|
86
|
+
- lib
|
87
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
92
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
requirements: []
|
98
|
+
rubyforge_project:
|
99
|
+
rubygems_version: 2.4.6
|
100
|
+
signing_key:
|
101
|
+
specification_version: 3
|
102
|
+
summary: Read EDN files
|
103
|
+
test_files:
|
104
|
+
- test/test_output_diff.rb
|