candle 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE.txt +20 -0
- data/README.md +4 -0
- data/VERSION +1 -0
- data/bin/candle +21 -0
- data/lib/candle.rb +68 -0
- data/lib/candle/command.rb +27 -0
- data/lib/candle/generators/actions.rb +183 -0
- data/lib/candle/generators/blank.rb +127 -0
- data/lib/candle/generators/cli.rb +55 -0
- data/lib/candle/generators/help.rb +47 -0
- data/lib/candle/generators/jam.rb +80 -0
- data/lib/candle/generators/lua/scripts/AppDelegate.lua +36 -0
- data/lib/candle/generators/lua/scripts/tests/init.lua +6 -0
- data/lib/candle/generators/lua/scripts/tests/someTest.lua +12 -0
- data/lib/candle/generators/lua/wax/ProtocolLoader.h +12 -0
- data/lib/candle/generators/lua/wax/bin/hammer +157 -0
- data/lib/candle/generators/lua/wax/bin/update-xibs +131 -0
- data/lib/candle/generators/lua/wax/bin/waxsim +0 -0
- data/lib/candle/generators/lua/wax/lib/build-scripts/compile-stdlib.sh +14 -0
- data/lib/candle/generators/lua/wax/lib/build-scripts/copy-scripts.sh +58 -0
- data/lib/candle/generators/lua/wax/lib/build-scripts/luac.lua +80 -0
- data/lib/candle/generators/lua/wax/lib/extensions/CGAffine/wax_CGTransform.h +12 -0
- data/lib/candle/generators/lua/wax/lib/extensions/CGAffine/wax_CGTransform.m +85 -0
- data/lib/candle/generators/lua/wax/lib/extensions/CGContext/wax_CGContext.h +12 -0
- data/lib/candle/generators/lua/wax/lib/extensions/CGContext/wax_CGContext.m +251 -0
- data/lib/candle/generators/lua/wax/lib/extensions/HTTP/wax_http.h +14 -0
- data/lib/candle/generators/lua/wax/lib/extensions/HTTP/wax_http.m +240 -0
- data/lib/candle/generators/lua/wax/lib/extensions/HTTP/wax_http_connection.h +54 -0
- data/lib/candle/generators/lua/wax/lib/extensions/HTTP/wax_http_connection.m +304 -0
- data/lib/candle/generators/lua/wax/lib/extensions/filesystem/wax_filesystem.h +9 -0
- data/lib/candle/generators/lua/wax/lib/extensions/filesystem/wax_filesystem.m +273 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/Rakefile +10 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/wax_json.c +304 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/wax_json.h +11 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl-1.0.9.tar.gz +0 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/api/yajl_common.h +85 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/api/yajl_gen.h +159 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/api/yajl_parse.h +193 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/yajl.c +159 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/yajl_alloc.c +65 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/yajl_alloc.h +50 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/yajl_buf.c +119 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/yajl_buf.h +73 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/yajl_bytestack.h +85 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/yajl_common.h +85 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/yajl_encode.c +188 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/yajl_encode.h +50 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/yajl_gen.c +322 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/yajl_gen.h +159 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/yajl_lex.c +737 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/yajl_lex.h +133 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/yajl_parse.h +193 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/yajl_parser.c +448 -0
- data/lib/candle/generators/lua/wax/lib/extensions/json/yajl/yajl_parser.h +82 -0
- data/lib/candle/generators/lua/wax/lib/lua/lapi.c +1087 -0
- data/lib/candle/generators/lua/wax/lib/lua/lapi.h +16 -0
- data/lib/candle/generators/lua/wax/lib/lua/lauxlib.c +652 -0
- data/lib/candle/generators/lua/wax/lib/lua/lauxlib.h +174 -0
- data/lib/candle/generators/lua/wax/lib/lua/lbaselib.c +653 -0
- data/lib/candle/generators/lua/wax/lib/lua/lcode.c +839 -0
- data/lib/candle/generators/lua/wax/lib/lua/lcode.h +76 -0
- data/lib/candle/generators/lua/wax/lib/lua/ldblib.c +397 -0
- data/lib/candle/generators/lua/wax/lib/lua/ldebug.c +638 -0
- data/lib/candle/generators/lua/wax/lib/lua/ldebug.h +33 -0
- data/lib/candle/generators/lua/wax/lib/lua/ldo.c +518 -0
- data/lib/candle/generators/lua/wax/lib/lua/ldo.h +57 -0
- data/lib/candle/generators/lua/wax/lib/lua/ldump.c +164 -0
- data/lib/candle/generators/lua/wax/lib/lua/lfunc.c +174 -0
- data/lib/candle/generators/lua/wax/lib/lua/lfunc.h +34 -0
- data/lib/candle/generators/lua/wax/lib/lua/lgc.c +711 -0
- data/lib/candle/generators/lua/wax/lib/lua/lgc.h +110 -0
- data/lib/candle/generators/lua/wax/lib/lua/linit.c +38 -0
- data/lib/candle/generators/lua/wax/lib/lua/liolib.c +553 -0
- data/lib/candle/generators/lua/wax/lib/lua/llex.c +461 -0
- data/lib/candle/generators/lua/wax/lib/lua/llex.h +81 -0
- data/lib/candle/generators/lua/wax/lib/lua/llimits.h +128 -0
- data/lib/candle/generators/lua/wax/lib/lua/lmathlib.c +263 -0
- data/lib/candle/generators/lua/wax/lib/lua/lmem.c +86 -0
- data/lib/candle/generators/lua/wax/lib/lua/lmem.h +49 -0
- data/lib/candle/generators/lua/wax/lib/lua/loadlib.c +666 -0
- data/lib/candle/generators/lua/wax/lib/lua/lobject.c +214 -0
- data/lib/candle/generators/lua/wax/lib/lua/lobject.h +381 -0
- data/lib/candle/generators/lua/wax/lib/lua/lopcodes.c +102 -0
- data/lib/candle/generators/lua/wax/lib/lua/lopcodes.h +268 -0
- data/lib/candle/generators/lua/wax/lib/lua/loslib.c +243 -0
- data/lib/candle/generators/lua/wax/lib/lua/lparser.c +1339 -0
- data/lib/candle/generators/lua/wax/lib/lua/lparser.h +82 -0
- data/lib/candle/generators/lua/wax/lib/lua/lstate.c +214 -0
- data/lib/candle/generators/lua/wax/lib/lua/lstate.h +169 -0
- data/lib/candle/generators/lua/wax/lib/lua/lstring.c +111 -0
- data/lib/candle/generators/lua/wax/lib/lua/lstring.h +31 -0
- data/lib/candle/generators/lua/wax/lib/lua/lstrlib.c +869 -0
- data/lib/candle/generators/lua/wax/lib/lua/ltable.c +588 -0
- data/lib/candle/generators/lua/wax/lib/lua/ltable.h +40 -0
- data/lib/candle/generators/lua/wax/lib/lua/ltablib.c +287 -0
- data/lib/candle/generators/lua/wax/lib/lua/ltm.c +75 -0
- data/lib/candle/generators/lua/wax/lib/lua/ltm.h +54 -0
- data/lib/candle/generators/lua/wax/lib/lua/lua.h +388 -0
- data/lib/candle/generators/lua/wax/lib/lua/luaconf.h +753 -0
- data/lib/candle/generators/lua/wax/lib/lua/lualib.h +53 -0
- data/lib/candle/generators/lua/wax/lib/lua/lundump.c +227 -0
- data/lib/candle/generators/lua/wax/lib/lua/lundump.h +36 -0
- data/lib/candle/generators/lua/wax/lib/lua/lvm.c +763 -0
- data/lib/candle/generators/lua/wax/lib/lua/lvm.h +36 -0
- data/lib/candle/generators/lua/wax/lib/lua/lzio.c +82 -0
- data/lib/candle/generators/lua/wax/lib/lua/lzio.h +67 -0
- data/lib/candle/generators/lua/wax/lib/lua/print.c +227 -0
- data/lib/candle/generators/lua/wax/lib/project.rake +159 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/enums.lua +396 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/ext/http.lua +43 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/ext/init.lua +4 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/ext/number.lua +21 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/ext/string.lua +97 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/ext/table.lua +165 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/helpers/WaxServer.lua +49 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/helpers/autoload.lua +10 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/helpers/base64.lua +64 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/helpers/bit.lua +274 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/helpers/cache.lua +73 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/helpers/callback.lua +22 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/helpers/frame.lua +76 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/helpers/init.lua +78 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/helpers/pickView.lua +54 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/helpers/time.lua +102 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/init.lua +18 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/luaspec/init.lua +2 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/luaspec/luamock.lua +84 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/luaspec/luaspec.lua +377 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/repl.lua +9 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/structs.lua +11 -0
- data/lib/candle/generators/lua/wax/lib/stdlib/waxClass.lua +42 -0
- data/lib/candle/generators/lua/wax/lib/wax.h +16 -0
- data/lib/candle/generators/lua/wax/lib/wax.m +260 -0
- data/lib/candle/generators/lua/wax/lib/wax_class.h +18 -0
- data/lib/candle/generators/lua/wax/lib/wax_class.m +190 -0
- data/lib/candle/generators/lua/wax/lib/wax_gc.h +20 -0
- data/lib/candle/generators/lua/wax/lib/wax_gc.m +56 -0
- data/lib/candle/generators/lua/wax/lib/wax_helpers.h +102 -0
- data/lib/candle/generators/lua/wax/lib/wax_helpers.m +870 -0
- data/lib/candle/generators/lua/wax/lib/wax_instance.h +34 -0
- data/lib/candle/generators/lua/wax/lib/wax_instance.m +810 -0
- data/lib/candle/generators/lua/wax/lib/wax_server.h +47 -0
- data/lib/candle/generators/lua/wax/lib/wax_server.m +252 -0
- data/lib/candle/generators/lua/wax/lib/wax_stdlib.h +3 -0
- data/lib/candle/generators/lua/wax/lib/wax_struct.h +26 -0
- data/lib/candle/generators/lua/wax/lib/wax_struct.m +335 -0
- data/lib/candle/generators/templates/blank/WaxApplication.xcodeproj/project.pbxproj +836 -0
- data/lib/candle/generators/templates/blank/WaxApplication.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/lib/candle/generators/templates/blank/WaxApplication.xcodeproj/project.xcworkspace/xcuserdata/eiffel.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- data/lib/candle/generators/templates/blank/WaxApplication.xcodeproj/xcuserdata/eiffel.xcuserdatad/xcschemes/WaxApplication.xcscheme +86 -0
- data/lib/candle/generators/templates/blank/WaxApplication.xcodeproj/xcuserdata/eiffel.xcuserdatad/xcschemes/xcschememanagement.plist +22 -0
- data/lib/candle/generators/templates/blank/WaxApplication/Default-568h@2x.png +0 -0
- data/lib/candle/generators/templates/blank/WaxApplication/Default.png +0 -0
- data/lib/candle/generators/templates/blank/WaxApplication/Default@2x.png +0 -0
- data/lib/candle/generators/templates/blank/WaxApplication/ProtocolLoader.h +12 -0
- data/lib/candle/generators/templates/blank/WaxApplication/WaxApplication-Info.plist.tt +38 -0
- data/lib/candle/generators/templates/blank/WaxApplication/WaxApplication-Prefix.pch.tt +14 -0
- data/lib/candle/generators/templates/blank/WaxApplication/en.lproj/InfoPlist.strings +2 -0
- data/lib/candle/generators/templates/blank/WaxApplication/main.m.tt +20 -0
- data/lib/candle/tasks.rb +22 -0
- data/lib/candle/utility.rb +30 -0
- data/lib/candle/version.rb +9 -0
- data/lib/candle/view.rb +48 -0
- metadata +582 -0
@@ -0,0 +1,159 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright 2007-2009, 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_free(yajl_handle handle)
|
109
|
+
{
|
110
|
+
yajl_bs_free(handle->stateStack);
|
111
|
+
yajl_buf_free(handle->decodeBuf);
|
112
|
+
yajl_lex_free(handle->lexer);
|
113
|
+
YA_FREE(&(handle->alloc), handle);
|
114
|
+
}
|
115
|
+
|
116
|
+
yajl_status
|
117
|
+
yajl_parse(yajl_handle hand, const unsigned char * jsonText,
|
118
|
+
unsigned int jsonTextLen)
|
119
|
+
{
|
120
|
+
yajl_status status;
|
121
|
+
status = yajl_do_parse(hand, jsonText, jsonTextLen);
|
122
|
+
return status;
|
123
|
+
}
|
124
|
+
|
125
|
+
yajl_status
|
126
|
+
yajl_parse_complete(yajl_handle hand)
|
127
|
+
{
|
128
|
+
/* The particular case we want to handle is a trailing number.
|
129
|
+
* Further input consisting of digits could cause our interpretation
|
130
|
+
* of the number to change (buffered "1" but "2" comes in).
|
131
|
+
* A very simple approach to this is to inject whitespace to terminate
|
132
|
+
* any number in the lex buffer.
|
133
|
+
*/
|
134
|
+
return yajl_parse(hand, (const unsigned char *)" ", 1);
|
135
|
+
}
|
136
|
+
|
137
|
+
unsigned char *
|
138
|
+
yajl_get_error(yajl_handle hand, int verbose,
|
139
|
+
const unsigned char * jsonText, unsigned int jsonTextLen)
|
140
|
+
{
|
141
|
+
return yajl_render_error_string(hand, jsonText, jsonTextLen, verbose);
|
142
|
+
}
|
143
|
+
|
144
|
+
unsigned int
|
145
|
+
yajl_get_bytes_consumed(yajl_handle hand)
|
146
|
+
{
|
147
|
+
if (!hand) return 0;
|
148
|
+
else return hand->bytesConsumed;
|
149
|
+
}
|
150
|
+
|
151
|
+
|
152
|
+
void
|
153
|
+
yajl_free_error(yajl_handle hand, unsigned char * str)
|
154
|
+
{
|
155
|
+
/* use memory allocation functions if set */
|
156
|
+
YA_FREE(&(hand->alloc), str);
|
157
|
+
}
|
158
|
+
|
159
|
+
/* XXX: add utility routines to parse from file */
|
@@ -0,0 +1,65 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright 2007-2009, 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 2007-2009, 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 2007-2009, 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 2007-2009, 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
|