3 Routines for compiling Flash2 AVM2 ABC Actionscript
5 Extension module for the rfxswf library.
6 Part of the swftools package.
8 Copyright (c) 2008 Matthias Kramm <kramm@quiss.org>
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
24 #ifndef __abc_registry_h__
25 #define __abc_registry_h__
29 DECLARE(asset_bundle);
30 DECLARE_LIST(asset_bundle);
35 DECLARE(unresolvedinfo);
37 DECLARE_LIST(classinfo);
38 DECLARE_LIST(slotinfo);
40 /* member/class flags */
42 #define FLAG_BUILTIN 128
47 #define FLAG_OVERRIDE 8
48 #define FLAG_NATIVE 16
52 #define FLAG_DYNAMIC 8
53 #define FLAG_INTERFACE 16
55 #define INFOTYPE_VAR 1
56 #define INFOTYPE_METHOD 2
57 #define INFOTYPE_CLASS 3
58 #define INFOTYPE_UNRESOLVED 4
61 #define SUBTYPE_GETSET 3
64 U8 kind,subtype,flags,access;
69 struct _unresolvedinfo {
70 U8 kind,subtype,flags,access;
74 namespace_list_t*nsset;
77 U8 kind,subtype,flags,access;
81 classinfo_t*superclass;
83 dict_t static_members;
84 void*data; //TODO: get rid of this- parser.y should pass type/value/code triples around
85 asset_bundle_t*assets;
86 classinfo_t*interfaces[];
89 U8 kind,subtype,flags,access;
94 classinfo_t*return_type;
99 struct _methodinfo /*extends memberinfo*/ {
100 U8 kind,subtype,flags,access;
104 classinfo_t*return_type;
106 classinfo_list_t*params;
108 struct _varinfo /*extends memberinfo*/ {
109 U8 kind,subtype,flags,access;
118 struct _asset_bundle {
120 asset_bundle_list_t*dependencies;
124 extern type_t memberinfo_type;
125 extern type_t slotinfo_type;
126 char slotinfo_equals(slotinfo_t*c1, slotinfo_t*c2);
128 void registry_init();
130 classinfo_t* classinfo_register(int access, const char*package, const char*name, int num_interfaces);
131 methodinfo_t* methodinfo_register_onclass(classinfo_t*cls, U8 access, const char*ns, const char*name, char is_static);
132 methodinfo_t* methodinfo_register_global(U8 access, const char*package, const char*name);
133 varinfo_t* varinfo_register_onclass(classinfo_t*cls, U8 access, const char*ns, const char*name, char is_static);
134 varinfo_t* varinfo_register_global(U8 access, const char*package, const char*name);
136 slotinfo_t* registry_resolve(slotinfo_t*s);
137 void registry_resolve_all();
139 slotinfo_t* registry_find(const char*package, const char*name);
140 void registry_dump();
141 memberinfo_t* registry_findmember(classinfo_t*cls, const char*ns, const char*name, char superclasses, char is_static);
142 memberinfo_t* registry_findmember_nsset(classinfo_t*cls, namespace_list_t*ns, const char*name, char superclasses, char is_static);
144 void registry_fill_multiname(multiname_t*m, namespace_t*n, slotinfo_t*c);
145 #define MULTINAME(m,x) \
149 registry_fill_multiname(&m, &m##_ns, (slotinfo_t*)(x));
151 multiname_t* classinfo_to_multiname(slotinfo_t*cls);
153 char registry_isfunctionclass();
154 char registry_isclassclass();
156 classinfo_t* slotinfo_asclass(slotinfo_t*f);
157 classinfo_t* slotinfo_gettype(slotinfo_t*);
159 namespace_t access2namespace(U8 access, char*package);
161 char registry_ispackage(const char*package);
163 void registry_add_asset(asset_bundle_t*bundle);
164 void registry_use(slotinfo_t*s);
165 asset_bundle_list_t*registry_getassets();
168 classinfo_t voidclass;
169 classinfo_t* registry_getanytype();
170 classinfo_t* registry_getarrayclass();
171 classinfo_t* registry_getobjectclass();
172 classinfo_t* registry_getnumberclass();
173 classinfo_t* registry_getstringclass();
174 classinfo_t* registry_getdateclass();
175 classinfo_t* registry_getintclass();
176 classinfo_t* registry_getuintclass();
177 classinfo_t* registry_getnullclass();
178 classinfo_t* registry_getvoidclass();
179 classinfo_t* registry_getarrayclass();
180 classinfo_t* registry_getregexpclass();
181 classinfo_t* registry_getxmlclass();
182 classinfo_t* registry_getxmllistclass();
183 classinfo_t* registry_getbooleanclass();
184 classinfo_t* registry_getMovieClip();
185 classinfo_t* registry_getclassclass(classinfo_t*a);
186 classinfo_t* registry_getnamespaceclass();
187 extern classinfo_t voidclass;
189 char* infotypename(slotinfo_t*s);
190 void slotinfo_dump(slotinfo_t*s);
192 /* convenience functions */
193 #define sig2mname(x) (x->superclass,classinfo_to_multiname((slotinfo_t*)(x)))
196 #define TYPE_IS_ANY(t) ((t) == 0)
197 #define TYPE_INT registry_getintclass()
198 #define TYPE_IS_INT(t) ((t) == registry_getintclass())
199 #define TYPE_UINT registry_getuintclass()
200 #define TYPE_IS_UINT(t) ((t) == registry_getuintclass())
201 #define TYPE_NUMBER registry_getnumberclass()
202 #define TYPE_IS_NUMBER(t) ((t) == registry_getnumberclass())
203 #define TYPE_FLOAT registry_getnumberclass()
204 #define TYPE_IS_FLOAT(t) ((t) == registry_getnumberclass())
205 #define TYPE_BOOLEAN registry_getbooleanclass()
206 #define TYPE_IS_BOOLEAN(t) ((t) == registry_getbooleanclass())
207 #define TYPE_STRING registry_getstringclass()
208 #define TYPE_IS_STRING(t) ((t) == registry_getstringclass())
209 #define TYPE_DATE registry_getdateclass()
210 #define TYPE_IS_DATE(t) ((t) == registry_getdateclass())
211 #define TYPE_OBJECT registry_getobjectclass()
212 #define TYPE_IS_OBJECT(t) ((t) == registry_getobjectclass())
213 #define TYPE_REGEXP registry_getregexpclass()
214 #define TYPE_IS_REGEXP(t) ((t) == registry_getregexpclass())
215 #define TYPE_VOID registry_getvoidclass()
216 #define TYPE_IS_VOID(t) ((t) == registry_getvoidclass())
217 #define TYPE_ARRAY registry_getarrayclass()
218 #define TYPE_IS_ARRAY(t) ((t) == registry_getarrayclass())
219 #define TYPE_NAMESPACE registry_getnamespaceclass()
220 #define TYPE_IS_NAMESPACE(t) ((t) == registry_getnamespaceclass())
221 #define TYPE_FUNCTION(f) ((f)->return_type,slotinfo_asclass((slotinfo_t*)(f)))
222 #define TYPE_IS_FUNCTION(t) registry_isfunctionclass(t)
223 #define TYPE_CLASS(f) ((f)->superclass,slotinfo_asclass((slotinfo_t*)(f)))
224 #define TYPE_IS_CLASS(t) registry_isclassclass(t)
225 #define TYPE_NULL registry_getnullclass()
226 #define TYPE_IS_NULL(t) ((t) == registry_getnullclass())
227 #define TYPE_VOID registry_getvoidclass()
228 #define TYPE_IS_VOID(t) ((t) == registry_getvoidclass())
229 #define TYPE_XML registry_getxmlclass()
230 #define TYPE_IS_XML(t) ((t) == registry_getxmlclass())
231 #define TYPE_XMLLIST registry_getxmllistclass()
232 #define TYPE_IS_XMLLIST(t) ((t) == registry_getxmllistclass())
234 #define TYPE_IS_BUILTIN_SIMPLE(type) (TYPE_IS_INT(type) || \
235 TYPE_IS_UINT(type) || \
236 TYPE_IS_FLOAT(type) || \
237 TYPE_IS_BOOLEAN(type) || \
238 TYPE_IS_STRING(type))
240 #define IS_NUMBER_OR_INT(a) (TYPE_IS_INT((a)) || TYPE_IS_UINT((a)) || TYPE_IS_NUMBER((a)))