edn_turbo 0.3.2 → 0.3.3
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 +10 -9
- data/ext/edn_turbo/edn_parser.cc +269 -267
- data/ext/edn_turbo/edn_parser.rl +2 -0
- data/ext/edn_turbo/edn_parser_util.cc +3 -0
- data/ext/edn_turbo/extconf.rb +6 -8
- data/ext/edn_turbo/main.cc +6 -6
- data/lib/edn_turbo/version.rb +2 -2
- metadata +2 -2
data/ext/edn_turbo/edn_parser.rl
CHANGED
data/ext/edn_turbo/extconf.rb
CHANGED
@@ -11,16 +11,14 @@ LIB_DIRS = [
|
|
11
11
|
'/usr/local/opt/icu4c/lib'
|
12
12
|
]
|
13
13
|
|
14
|
-
|
14
|
+
dir_config('edn_ext', HEADER_DIRS, LIB_DIRS)
|
15
|
+
|
16
|
+
unless find_header('unicode/uversion.h')
|
15
17
|
abort "icu4c headers missing"
|
16
18
|
end
|
17
19
|
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
#end
|
22
|
-
|
23
|
-
# do this instead. sigh
|
24
|
-
$LOCAL_LIBS="-L#{LIB_DIRS[1]} -licuuc"
|
20
|
+
unless have_library('icuuc')
|
21
|
+
abort "ic4c lib missing"
|
22
|
+
end
|
25
23
|
|
26
24
|
create_makefile("edn_turbo/edn_turbo")
|
data/ext/edn_turbo/main.cc
CHANGED
@@ -2,6 +2,8 @@
|
|
2
2
|
#include <iostream>
|
3
3
|
#include <clocale>
|
4
4
|
|
5
|
+
#include <cstring>
|
6
|
+
|
5
7
|
#include "edn_parser.h"
|
6
8
|
|
7
9
|
#include <ruby/ruby.h>
|
@@ -27,18 +29,16 @@ namespace edn {
|
|
27
29
|
|
28
30
|
//
|
29
31
|
// wrappers to hook the class w/ the C-api
|
30
|
-
|
31
|
-
static void delete_obj(T *ptr) {
|
32
|
+
static void delete_parser(edn::Parser *ptr) {
|
32
33
|
delete ptr;
|
33
34
|
}
|
34
35
|
|
35
|
-
|
36
|
-
|
37
|
-
return Data_Wrap_Struct(klass, 0, delete_obj<T>, ptr);
|
36
|
+
static VALUE wrap_parser_ptr(VALUE klass, edn::Parser* ptr) {
|
37
|
+
return Data_Wrap_Struct(klass, 0, delete_parser, ptr);
|
38
38
|
}
|
39
39
|
|
40
40
|
static VALUE alloc_obj(VALUE self){
|
41
|
-
return
|
41
|
+
return wrap_parser_ptr(self, new Parser());
|
42
42
|
}
|
43
43
|
|
44
44
|
static inline Parser* get_parser(VALUE self)
|
data/lib/edn_turbo/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: edn_turbo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ed Porras
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-07-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: edn
|