yajl-ruby 1.0.0-x86-mswin32-60

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of yajl-ruby might be problematic. Click here for more details.

Files changed (152) hide show
  1. data/.gitignore +12 -0
  2. data/.rspec +2 -0
  3. data/CHANGELOG.md +327 -0
  4. data/Gemfile +3 -0
  5. data/MIT-LICENSE +20 -0
  6. data/README.md +362 -0
  7. data/Rakefile +2 -0
  8. data/benchmark/encode.rb +72 -0
  9. data/benchmark/encode_json_and_marshal.rb +42 -0
  10. data/benchmark/encode_json_and_yaml.rb +53 -0
  11. data/benchmark/http.rb +32 -0
  12. data/benchmark/parse.rb +94 -0
  13. data/benchmark/parse_json_and_marshal.rb +50 -0
  14. data/benchmark/parse_json_and_yaml.rb +55 -0
  15. data/benchmark/parse_stream.rb +54 -0
  16. data/benchmark/subjects/item.json +1 -0
  17. data/benchmark/subjects/ohai.json +1216 -0
  18. data/benchmark/subjects/ohai.marshal_dump +0 -0
  19. data/benchmark/subjects/ohai.yml +975 -0
  20. data/benchmark/subjects/twitter_search.json +1 -0
  21. data/benchmark/subjects/twitter_stream.json +430 -0
  22. data/benchmark/subjects/unicode.json +1 -0
  23. data/examples/encoding/chunked_encoding.rb +27 -0
  24. data/examples/encoding/one_shot.rb +13 -0
  25. data/examples/encoding/to_an_io.rb +12 -0
  26. data/examples/http/twitter_search_api.rb +12 -0
  27. data/examples/http/twitter_stream_api.rb +26 -0
  28. data/examples/parsing/from_file.rb +14 -0
  29. data/examples/parsing/from_stdin.rb +9 -0
  30. data/examples/parsing/from_string.rb +13 -0
  31. data/ext/yajl/api/yajl_common.h +89 -0
  32. data/ext/yajl/api/yajl_gen.h +161 -0
  33. data/ext/yajl/api/yajl_parse.h +196 -0
  34. data/ext/yajl/api/yajl_version.h +23 -0
  35. data/ext/yajl/extconf.rb +7 -0
  36. data/ext/yajl/yajl.c +164 -0
  37. data/ext/yajl/yajl_alloc.c +65 -0
  38. data/ext/yajl/yajl_alloc.h +50 -0
  39. data/ext/yajl/yajl_buf.c +119 -0
  40. data/ext/yajl/yajl_buf.h +73 -0
  41. data/ext/yajl/yajl_bytestack.h +85 -0
  42. data/ext/yajl/yajl_encode.c +201 -0
  43. data/ext/yajl/yajl_encode.h +52 -0
  44. data/ext/yajl/yajl_ext.c +905 -0
  45. data/ext/yajl/yajl_ext.h +135 -0
  46. data/ext/yajl/yajl_gen.c +344 -0
  47. data/ext/yajl/yajl_lex.c +748 -0
  48. data/ext/yajl/yajl_lex.h +135 -0
  49. data/ext/yajl/yajl_parser.c +450 -0
  50. data/ext/yajl/yajl_parser.h +82 -0
  51. data/ext/yajl/yajl_version.c +7 -0
  52. data/lib/yajl.rb +75 -0
  53. data/lib/yajl/1.8/yajl.so +0 -0
  54. data/lib/yajl/1.9/yajl.so +0 -0
  55. data/lib/yajl/bzip2.rb +11 -0
  56. data/lib/yajl/bzip2/stream_reader.rb +31 -0
  57. data/lib/yajl/bzip2/stream_writer.rb +14 -0
  58. data/lib/yajl/deflate.rb +6 -0
  59. data/lib/yajl/deflate/stream_reader.rb +43 -0
  60. data/lib/yajl/deflate/stream_writer.rb +20 -0
  61. data/lib/yajl/gzip.rb +6 -0
  62. data/lib/yajl/gzip/stream_reader.rb +30 -0
  63. data/lib/yajl/gzip/stream_writer.rb +13 -0
  64. data/lib/yajl/http_stream.rb +212 -0
  65. data/lib/yajl/json_gem.rb +15 -0
  66. data/lib/yajl/json_gem/encoding.rb +51 -0
  67. data/lib/yajl/json_gem/parsing.rb +26 -0
  68. data/lib/yajl/version.rb +3 -0
  69. data/lib/yajl/yajl.rb +2 -0
  70. data/spec/encoding/encoding_spec.rb +271 -0
  71. data/spec/global/global_spec.rb +54 -0
  72. data/spec/http/fixtures/http.bzip2.dump +0 -0
  73. data/spec/http/fixtures/http.chunked.dump +11 -0
  74. data/spec/http/fixtures/http.deflate.dump +0 -0
  75. data/spec/http/fixtures/http.error.dump +12 -0
  76. data/spec/http/fixtures/http.gzip.dump +0 -0
  77. data/spec/http/fixtures/http.html.dump +1220 -0
  78. data/spec/http/fixtures/http.raw.dump +1226 -0
  79. data/spec/http/http_delete_spec.rb +98 -0
  80. data/spec/http/http_error_spec.rb +32 -0
  81. data/spec/http/http_get_spec.rb +109 -0
  82. data/spec/http/http_post_spec.rb +123 -0
  83. data/spec/http/http_put_spec.rb +105 -0
  84. data/spec/http/http_stream_options_spec.rb +27 -0
  85. data/spec/json_gem_compatibility/compatibility_spec.rb +203 -0
  86. data/spec/parsing/active_support_spec.rb +64 -0
  87. data/spec/parsing/chunked_spec.rb +96 -0
  88. data/spec/parsing/fixtures/fail.15.json +1 -0
  89. data/spec/parsing/fixtures/fail.16.json +1 -0
  90. data/spec/parsing/fixtures/fail.17.json +1 -0
  91. data/spec/parsing/fixtures/fail.26.json +1 -0
  92. data/spec/parsing/fixtures/fail11.json +1 -0
  93. data/spec/parsing/fixtures/fail12.json +1 -0
  94. data/spec/parsing/fixtures/fail13.json +1 -0
  95. data/spec/parsing/fixtures/fail14.json +1 -0
  96. data/spec/parsing/fixtures/fail19.json +1 -0
  97. data/spec/parsing/fixtures/fail20.json +1 -0
  98. data/spec/parsing/fixtures/fail21.json +1 -0
  99. data/spec/parsing/fixtures/fail22.json +1 -0
  100. data/spec/parsing/fixtures/fail23.json +1 -0
  101. data/spec/parsing/fixtures/fail24.json +1 -0
  102. data/spec/parsing/fixtures/fail25.json +1 -0
  103. data/spec/parsing/fixtures/fail27.json +2 -0
  104. data/spec/parsing/fixtures/fail28.json +2 -0
  105. data/spec/parsing/fixtures/fail3.json +1 -0
  106. data/spec/parsing/fixtures/fail4.json +1 -0
  107. data/spec/parsing/fixtures/fail5.json +1 -0
  108. data/spec/parsing/fixtures/fail6.json +1 -0
  109. data/spec/parsing/fixtures/fail9.json +1 -0
  110. data/spec/parsing/fixtures/pass.array.json +6 -0
  111. data/spec/parsing/fixtures/pass.codepoints_from_unicode_org.json +1 -0
  112. data/spec/parsing/fixtures/pass.contacts.json +1 -0
  113. data/spec/parsing/fixtures/pass.db100.xml.json +1 -0
  114. data/spec/parsing/fixtures/pass.db1000.xml.json +1 -0
  115. data/spec/parsing/fixtures/pass.dc_simple_with_comments.json +11 -0
  116. data/spec/parsing/fixtures/pass.deep_arrays.json +1 -0
  117. data/spec/parsing/fixtures/pass.difficult_json_c_test_case.json +1 -0
  118. data/spec/parsing/fixtures/pass.difficult_json_c_test_case_with_comments.json +1 -0
  119. data/spec/parsing/fixtures/pass.doubles.json +1 -0
  120. data/spec/parsing/fixtures/pass.empty_array.json +1 -0
  121. data/spec/parsing/fixtures/pass.empty_string.json +1 -0
  122. data/spec/parsing/fixtures/pass.escaped_bulgarian.json +4 -0
  123. data/spec/parsing/fixtures/pass.escaped_foobar.json +1 -0
  124. data/spec/parsing/fixtures/pass.item.json +1 -0
  125. data/spec/parsing/fixtures/pass.json-org-sample1.json +23 -0
  126. data/spec/parsing/fixtures/pass.json-org-sample2.json +11 -0
  127. data/spec/parsing/fixtures/pass.json-org-sample3.json +26 -0
  128. data/spec/parsing/fixtures/pass.json-org-sample4-nows.json +88 -0
  129. data/spec/parsing/fixtures/pass.json-org-sample4.json +89 -0
  130. data/spec/parsing/fixtures/pass.json-org-sample5.json +27 -0
  131. data/spec/parsing/fixtures/pass.map-spain.xml.json +1 -0
  132. data/spec/parsing/fixtures/pass.ns-invoice100.xml.json +1 -0
  133. data/spec/parsing/fixtures/pass.ns-soap.xml.json +1 -0
  134. data/spec/parsing/fixtures/pass.numbers-fp-4k.json +6 -0
  135. data/spec/parsing/fixtures/pass.numbers-fp-64k.json +61 -0
  136. data/spec/parsing/fixtures/pass.numbers-int-4k.json +11 -0
  137. data/spec/parsing/fixtures/pass.numbers-int-64k.json +154 -0
  138. data/spec/parsing/fixtures/pass.twitter-search.json +1 -0
  139. data/spec/parsing/fixtures/pass.twitter-search2.json +1 -0
  140. data/spec/parsing/fixtures/pass.unicode.json +3315 -0
  141. data/spec/parsing/fixtures/pass.yelp.json +1 -0
  142. data/spec/parsing/fixtures/pass1.json +56 -0
  143. data/spec/parsing/fixtures/pass2.json +1 -0
  144. data/spec/parsing/fixtures/pass3.json +6 -0
  145. data/spec/parsing/fixtures_spec.rb +40 -0
  146. data/spec/parsing/one_off_spec.rb +85 -0
  147. data/spec/rcov.opts +3 -0
  148. data/spec/spec_helper.rb +16 -0
  149. data/tasks/compile.rake +35 -0
  150. data/tasks/rspec.rake +16 -0
  151. data/yajl-ruby.gemspec +24 -0
  152. metadata +335 -0
@@ -0,0 +1,23 @@
1
+ #ifndef YAJL_VERSION_H_
2
+ #define YAJL_VERSION_H_
3
+
4
+ #include "api/yajl_common.h"
5
+
6
+ #define YAJL_MAJOR 1
7
+ #define YAJL_MINOR 0
8
+ #define YAJL_MICRO 12
9
+
10
+ #define YAJL_VERSION ((YAJL_MAJOR * 10000) + (YAJL_MINOR * 100) + YAJL_MICRO)
11
+
12
+ #ifdef __cplusplus
13
+ extern "C" {
14
+ #endif
15
+
16
+ extern int YAJL_API yajl_version(void);
17
+
18
+ #ifdef __cplusplus
19
+ }
20
+ #endif
21
+
22
+ #endif /* YAJL_VERSION_H_ */
23
+
@@ -0,0 +1,7 @@
1
+ require 'mkmf'
2
+ require 'rbconfig'
3
+
4
+ $CFLAGS << ' -Wall -funroll-loops'
5
+ $CFLAGS << ' -Wextra -O0 -ggdb3' if ENV['DEBUG']
6
+
7
+ create_makefile('yajl/yajl')
data/ext/yajl/yajl.c ADDED
@@ -0,0 +1,164 @@
1
+ /*
2
+ * Copyright 2010, Lloyd Hilaiel.
3
+ *
4
+ * Redistribution and use in source and binary forms, with or without
5
+ * modification, are permitted provided that the following conditions are
6
+ * met:
7
+ *
8
+ * 1. Redistributions of source code must retain the above copyright
9
+ * notice, this list of conditions and the following disclaimer.
10
+ *
11
+ * 2. Redistributions in binary form must reproduce the above copyright
12
+ * notice, this list of conditions and the following disclaimer in
13
+ * the documentation and/or other materials provided with the
14
+ * distribution.
15
+ *
16
+ * 3. Neither the name of Lloyd Hilaiel nor the names of its
17
+ * contributors may be used to endorse or promote products derived
18
+ * from this software without specific prior written permission.
19
+ *
20
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29
+ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30
+ * POSSIBILITY OF SUCH DAMAGE.
31
+ */
32
+
33
+ #include "api/yajl_parse.h"
34
+ #include "yajl_lex.h"
35
+ #include "yajl_parser.h"
36
+ #include "yajl_alloc.h"
37
+
38
+ #include <stdlib.h>
39
+ #include <string.h>
40
+ #include <assert.h>
41
+
42
+ const char *
43
+ yajl_status_to_string(yajl_status stat)
44
+ {
45
+ const char * statStr = "unknown";
46
+ switch (stat) {
47
+ case yajl_status_ok:
48
+ statStr = "ok, no error";
49
+ break;
50
+ case yajl_status_client_canceled:
51
+ statStr = "client canceled parse";
52
+ break;
53
+ case yajl_status_insufficient_data:
54
+ statStr = "eof was met before the parse could complete";
55
+ break;
56
+ case yajl_status_error:
57
+ statStr = "parse error";
58
+ break;
59
+ }
60
+ return statStr;
61
+ }
62
+
63
+ yajl_handle
64
+ yajl_alloc(const yajl_callbacks * callbacks,
65
+ const yajl_parser_config * config,
66
+ const yajl_alloc_funcs * afs,
67
+ void * ctx)
68
+ {
69
+ unsigned int allowComments = 0;
70
+ unsigned int validateUTF8 = 0;
71
+ yajl_handle hand = NULL;
72
+ yajl_alloc_funcs afsBuffer;
73
+
74
+ /* first order of business is to set up memory allocation routines */
75
+ if (afs != NULL) {
76
+ if (afs->malloc == NULL || afs->realloc == NULL || afs->free == NULL)
77
+ {
78
+ return NULL;
79
+ }
80
+ } else {
81
+ yajl_set_default_alloc_funcs(&afsBuffer);
82
+ afs = &afsBuffer;
83
+ }
84
+
85
+ hand = (yajl_handle) YA_MALLOC(afs, sizeof(struct yajl_handle_t));
86
+
87
+ /* copy in pointers to allocation routines */
88
+ memcpy((void *) &(hand->alloc), (void *) afs, sizeof(yajl_alloc_funcs));
89
+
90
+ if (config != NULL) {
91
+ allowComments = config->allowComments;
92
+ validateUTF8 = config->checkUTF8;
93
+ }
94
+
95
+ hand->callbacks = callbacks;
96
+ hand->ctx = ctx;
97
+ hand->lexer = yajl_lex_alloc(&(hand->alloc), allowComments, validateUTF8);
98
+ hand->bytesConsumed = 0;
99
+ hand->decodeBuf = yajl_buf_alloc(&(hand->alloc));
100
+ yajl_bs_init(hand->stateStack, &(hand->alloc));
101
+
102
+ yajl_bs_push(hand->stateStack, yajl_state_start);
103
+
104
+ return hand;
105
+ }
106
+
107
+ void
108
+ yajl_reset_parser(yajl_handle hand) {
109
+ hand->lexer = yajl_lex_realloc(hand->lexer);
110
+ }
111
+
112
+ void
113
+ yajl_free(yajl_handle handle)
114
+ {
115
+ yajl_bs_free(handle->stateStack);
116
+ yajl_buf_free(handle->decodeBuf);
117
+ yajl_lex_free(handle->lexer);
118
+ YA_FREE(&(handle->alloc), handle);
119
+ }
120
+
121
+ yajl_status
122
+ yajl_parse(yajl_handle hand, const unsigned char * jsonText,
123
+ unsigned int jsonTextLen)
124
+ {
125
+ yajl_status status;
126
+ status = yajl_do_parse(hand, jsonText, jsonTextLen);
127
+ return status;
128
+ }
129
+
130
+ yajl_status
131
+ yajl_parse_complete(yajl_handle hand)
132
+ {
133
+ /* The particular case we want to handle is a trailing number.
134
+ * Further input consisting of digits could cause our interpretation
135
+ * of the number to change (buffered "1" but "2" comes in).
136
+ * A very simple approach to this is to inject whitespace to terminate
137
+ * any number in the lex buffer.
138
+ */
139
+ return yajl_parse(hand, (const unsigned char *)" ", 1);
140
+ }
141
+
142
+ unsigned char *
143
+ yajl_get_error(yajl_handle hand, int verbose,
144
+ const unsigned char * jsonText, unsigned int jsonTextLen)
145
+ {
146
+ return yajl_render_error_string(hand, jsonText, jsonTextLen, verbose);
147
+ }
148
+
149
+ unsigned int
150
+ yajl_get_bytes_consumed(yajl_handle hand)
151
+ {
152
+ if (!hand) return 0;
153
+ else return hand->bytesConsumed;
154
+ }
155
+
156
+
157
+ void
158
+ yajl_free_error(yajl_handle hand, unsigned char * str)
159
+ {
160
+ /* use memory allocation functions if set */
161
+ YA_FREE(&(hand->alloc), str);
162
+ }
163
+
164
+ /* XXX: add utility routines to parse from file */
@@ -0,0 +1,65 @@
1
+ /*
2
+ * Copyright 2010, Lloyd Hilaiel.
3
+ *
4
+ * Redistribution and use in source and binary forms, with or without
5
+ * modification, are permitted provided that the following conditions are
6
+ * met:
7
+ *
8
+ * 1. Redistributions of source code must retain the above copyright
9
+ * notice, this list of conditions and the following disclaimer.
10
+ *
11
+ * 2. Redistributions in binary form must reproduce the above copyright
12
+ * notice, this list of conditions and the following disclaimer in
13
+ * the documentation and/or other materials provided with the
14
+ * distribution.
15
+ *
16
+ * 3. Neither the name of Lloyd Hilaiel nor the names of its
17
+ * contributors may be used to endorse or promote products derived
18
+ * from this software without specific prior written permission.
19
+ *
20
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29
+ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30
+ * POSSIBILITY OF SUCH DAMAGE.
31
+ */
32
+
33
+ /**
34
+ * \file yajl_alloc.h
35
+ * default memory allocation routines for yajl which use malloc/realloc and
36
+ * free
37
+ */
38
+
39
+ #include "yajl_alloc.h"
40
+ #include <stdlib.h>
41
+
42
+ static void * yajl_internal_malloc(void *ctx, unsigned int sz)
43
+ {
44
+ return malloc(sz);
45
+ }
46
+
47
+ static void * yajl_internal_realloc(void *ctx, void * previous,
48
+ unsigned int sz)
49
+ {
50
+ return realloc(previous, sz);
51
+ }
52
+
53
+ static void yajl_internal_free(void *ctx, void * ptr)
54
+ {
55
+ free(ptr);
56
+ }
57
+
58
+ void yajl_set_default_alloc_funcs(yajl_alloc_funcs * yaf)
59
+ {
60
+ yaf->malloc = yajl_internal_malloc;
61
+ yaf->free = yajl_internal_free;
62
+ yaf->realloc = yajl_internal_realloc;
63
+ yaf->ctx = NULL;
64
+ }
65
+
@@ -0,0 +1,50 @@
1
+ /*
2
+ * Copyright 2010, Lloyd Hilaiel.
3
+ *
4
+ * Redistribution and use in source and binary forms, with or without
5
+ * modification, are permitted provided that the following conditions are
6
+ * met:
7
+ *
8
+ * 1. Redistributions of source code must retain the above copyright
9
+ * notice, this list of conditions and the following disclaimer.
10
+ *
11
+ * 2. Redistributions in binary form must reproduce the above copyright
12
+ * notice, this list of conditions and the following disclaimer in
13
+ * the documentation and/or other materials provided with the
14
+ * distribution.
15
+ *
16
+ * 3. Neither the name of Lloyd Hilaiel nor the names of its
17
+ * contributors may be used to endorse or promote products derived
18
+ * from this software without specific prior written permission.
19
+ *
20
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29
+ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30
+ * POSSIBILITY OF SUCH DAMAGE.
31
+ */
32
+
33
+ /**
34
+ * \file yajl_alloc.h
35
+ * default memory allocation routines for yajl which use malloc/realloc and
36
+ * free
37
+ */
38
+
39
+ #ifndef __YAJL_ALLOC_H__
40
+ #define __YAJL_ALLOC_H__
41
+
42
+ #include "api/yajl_common.h"
43
+
44
+ #define YA_MALLOC(afs, sz) (afs)->malloc((afs)->ctx, (sz))
45
+ #define YA_FREE(afs, ptr) (afs)->free((afs)->ctx, (ptr))
46
+ #define YA_REALLOC(afs, ptr, sz) (afs)->realloc((afs)->ctx, (ptr), (sz))
47
+
48
+ void yajl_set_default_alloc_funcs(yajl_alloc_funcs * yaf);
49
+
50
+ #endif
@@ -0,0 +1,119 @@
1
+ /*
2
+ * Copyright 2010, Lloyd Hilaiel.
3
+ *
4
+ * Redistribution and use in source and binary forms, with or without
5
+ * modification, are permitted provided that the following conditions are
6
+ * met:
7
+ *
8
+ * 1. Redistributions of source code must retain the above copyright
9
+ * notice, this list of conditions and the following disclaimer.
10
+ *
11
+ * 2. Redistributions in binary form must reproduce the above copyright
12
+ * notice, this list of conditions and the following disclaimer in
13
+ * the documentation and/or other materials provided with the
14
+ * distribution.
15
+ *
16
+ * 3. Neither the name of Lloyd Hilaiel nor the names of its
17
+ * contributors may be used to endorse or promote products derived
18
+ * from this software without specific prior written permission.
19
+ *
20
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29
+ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30
+ * POSSIBILITY OF SUCH DAMAGE.
31
+ */
32
+
33
+ #include "yajl_buf.h"
34
+
35
+ #include <assert.h>
36
+ #include <stdlib.h>
37
+ #include <string.h>
38
+
39
+ #define YAJL_BUF_INIT_SIZE 2048
40
+
41
+ struct yajl_buf_t {
42
+ unsigned int len;
43
+ unsigned int used;
44
+ unsigned char * data;
45
+ yajl_alloc_funcs * alloc;
46
+ };
47
+
48
+ static
49
+ void yajl_buf_ensure_available(yajl_buf buf, unsigned int want)
50
+ {
51
+ unsigned int need;
52
+
53
+ assert(buf != NULL);
54
+
55
+ /* first call */
56
+ if (buf->data == NULL) {
57
+ buf->len = YAJL_BUF_INIT_SIZE;
58
+ buf->data = (unsigned char *) YA_MALLOC(buf->alloc, buf->len);
59
+ buf->data[0] = 0;
60
+ }
61
+
62
+ need = buf->len;
63
+
64
+ while (want >= (need - buf->used)) need <<= 1;
65
+
66
+ if (need != buf->len) {
67
+ buf->data = (unsigned char *) YA_REALLOC(buf->alloc, buf->data, need);
68
+ buf->len = need;
69
+ }
70
+ }
71
+
72
+ yajl_buf yajl_buf_alloc(yajl_alloc_funcs * alloc)
73
+ {
74
+ yajl_buf b = YA_MALLOC(alloc, sizeof(struct yajl_buf_t));
75
+ memset((void *) b, 0, sizeof(struct yajl_buf_t));
76
+ b->alloc = alloc;
77
+ return b;
78
+ }
79
+
80
+ void yajl_buf_free(yajl_buf buf)
81
+ {
82
+ assert(buf != NULL);
83
+ if (buf->data) YA_FREE(buf->alloc, buf->data);
84
+ YA_FREE(buf->alloc, buf);
85
+ }
86
+
87
+ void yajl_buf_append(yajl_buf buf, const void * data, unsigned int len)
88
+ {
89
+ yajl_buf_ensure_available(buf, len);
90
+ if (len > 0) {
91
+ assert(data != NULL);
92
+ memcpy(buf->data + buf->used, data, len);
93
+ buf->used += len;
94
+ buf->data[buf->used] = 0;
95
+ }
96
+ }
97
+
98
+ void yajl_buf_clear(yajl_buf buf)
99
+ {
100
+ buf->used = 0;
101
+ if (buf->data) buf->data[buf->used] = 0;
102
+ }
103
+
104
+ const unsigned char * yajl_buf_data(yajl_buf buf)
105
+ {
106
+ return buf->data;
107
+ }
108
+
109
+ unsigned int yajl_buf_len(yajl_buf buf)
110
+ {
111
+ return buf->used;
112
+ }
113
+
114
+ void
115
+ yajl_buf_truncate(yajl_buf buf, unsigned int len)
116
+ {
117
+ assert(len <= buf->used);
118
+ buf->used = len;
119
+ }
@@ -0,0 +1,73 @@
1
+ /*
2
+ * Copyright 2010, Lloyd Hilaiel.
3
+ *
4
+ * Redistribution and use in source and binary forms, with or without
5
+ * modification, are permitted provided that the following conditions are
6
+ * met:
7
+ *
8
+ * 1. Redistributions of source code must retain the above copyright
9
+ * notice, this list of conditions and the following disclaimer.
10
+ *
11
+ * 2. Redistributions in binary form must reproduce the above copyright
12
+ * notice, this list of conditions and the following disclaimer in
13
+ * the documentation and/or other materials provided with the
14
+ * distribution.
15
+ *
16
+ * 3. Neither the name of Lloyd Hilaiel nor the names of its
17
+ * contributors may be used to endorse or promote products derived
18
+ * from this software without specific prior written permission.
19
+ *
20
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21
+ * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23
+ * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24
+ * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29
+ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30
+ * POSSIBILITY OF SUCH DAMAGE.
31
+ */
32
+
33
+ #ifndef __YAJL_BUF_H__
34
+ #define __YAJL_BUF_H__
35
+
36
+ #include "api/yajl_common.h"
37
+ #include "yajl_alloc.h"
38
+
39
+ /*
40
+ * Implementation/performance notes. If this were moved to a header
41
+ * only implementation using #define's where possible we might be
42
+ * able to sqeeze a little performance out of the guy by killing function
43
+ * call overhead. YMMV.
44
+ */
45
+
46
+ /**
47
+ * yajl_buf is a buffer with exponential growth. the buffer ensures that
48
+ * you are always null padded.
49
+ */
50
+ typedef struct yajl_buf_t * yajl_buf;
51
+
52
+ /* allocate a new buffer */
53
+ yajl_buf yajl_buf_alloc(yajl_alloc_funcs * alloc);
54
+
55
+ /* free the buffer */
56
+ void yajl_buf_free(yajl_buf buf);
57
+
58
+ /* append a number of bytes to the buffer */
59
+ void yajl_buf_append(yajl_buf buf, const void * data, unsigned int len);
60
+
61
+ /* empty the buffer */
62
+ void yajl_buf_clear(yajl_buf buf);
63
+
64
+ /* get a pointer to the beginning of the buffer */
65
+ const unsigned char * yajl_buf_data(yajl_buf buf);
66
+
67
+ /* get the length of the buffer */
68
+ unsigned int yajl_buf_len(yajl_buf buf);
69
+
70
+ /* truncate the buffer */
71
+ void yajl_buf_truncate(yajl_buf buf, unsigned int len);
72
+
73
+ #endif