new memberinfo field subfunctions
[swftools.git] / lib / as3 / registry.h
1 /* registry.h
2
3    Routines for compiling Flash2 AVM2 ABC Actionscript
4
5    Extension module for the rfxswf library.
6    Part of the swftools package.
7
8    Copyright (c) 2008 Matthias Kramm <kramm@quiss.org>
9  
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.
14
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.
19
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 */
23
24 #ifndef __abc_registry_h__
25 #define __abc_registry_h__
26
27 #include "pool.h"
28
29 DECLARE(packageinfo);
30 DECLARE(classinfo);
31 DECLARE(memberinfo);
32 DECLARE_LIST(classinfo);
33
34 /* member/class flags */
35 #define FLAG_PUBLIC 1
36 #define FLAG_PROTECTED 2
37 #define FLAG_NAMESPACE_ADOBE 4
38 #define FLAG_PRIVATE 8
39 #define FLAG_PACKAGEINTERNAL 16
40 #define FLAG_FINAL 32
41
42 /* member flags */
43 #define FLAG_STATIC 64
44 #define FLAG_OVERRIDE 128
45 #define FLAG_NATIVE 256
46
47 /* class flags */
48 #define FLAG_METHOD 64
49 #define FLAG_DYNAMIC 128
50
51 struct _classinfo {
52     U8 access;
53     U8 flags;
54     const char*package;
55     const char*name;
56     union {
57         ptroff_t slot;        // slot nr in initscript traits
58         classinfo_t*cls; // specific class of a Class type
59         memberinfo_t*function; //specific function of a Function type
60     };
61
62     classinfo_t*superclass;
63     dict_t members;
64     classinfo_t*interfaces[];
65 };
66 char classinfo_equals(classinfo_t*c1, classinfo_t*c2);
67
68 #define MEMBER_SLOT 1
69 #define MEMBER_GET 2
70 #define MEMBER_SET 4
71 #define MEMBER_GETSET 6
72 #define MEMBER_METHOD 8
73
74 struct _memberinfo {
75     U8 kind;
76     U8 flags;
77     const char*name;
78     union {
79         classinfo_t*return_type;
80         classinfo_t*type;
81     };
82     classinfo_t*parent;
83     classinfo_list_t*params;
84     int slot;
85     dict_t*subfunctions;
86 };
87
88 extern type_t classinfo_type;
89 extern type_t memberinfo_type;
90
91 void registry_init();
92         
93 classinfo_t* classinfo_register(int access, const char*package, const char*name, int num_interfaces);
94 memberinfo_t* memberinfo_register(classinfo_t*cls, const char*name, U8 type);
95 memberinfo_t* memberinfo_register_global(U8 access, const char*package, const char*name, U8 kind);
96
97 // static multinames
98 classinfo_t* registry_getanytype();
99 classinfo_t* registry_getarrayclass();
100 classinfo_t* registry_getobjectclass();
101 classinfo_t* registry_getnumberclass();
102 classinfo_t* registry_getstringclass();
103 classinfo_t* registry_getintclass();
104 classinfo_t* registry_getuintclass();
105 classinfo_t* registry_getnullclass();
106 classinfo_t* registry_getregexpclass();
107 classinfo_t* registry_getbooleanclass();
108 classinfo_t* registry_getMovieClip();
109 classinfo_t* memberinfo_asclass(memberinfo_t*f);
110 classinfo_t* registry_getclassclass(classinfo_t*a);
111
112 classinfo_t* registry_findclass(const char*package, const char*name);
113 void registry_dumpclasses();
114 memberinfo_t* registry_findmember(classinfo_t*cls, const char*name, char superclasses);
115
116 void registry_fill_multiname(multiname_t*m, namespace_t*n, classinfo_t*c);
117 multiname_t* classinfo_to_multiname(classinfo_t*cls);
118
119 char registry_isfunctionclass();
120 char registry_isclassclass();
121
122 classinfo_t* memberinfo_gettype(memberinfo_t*);
123
124 namespace_t flags2namespace(int flags, char*package);
125
126 /* convenience functions */
127 #define sig2mname(x) classinfo_to_multiname(x)
128 #define TYPE_ANY                  registry_getanytype()
129 #define TYPE_IS_ANY(t)    ((t) == registry_getanytype())
130 #define TYPE_INT                  registry_getintclass()
131 #define TYPE_IS_INT(t)    ((t) == registry_getintclass())
132 #define TYPE_UINT                 registry_getuintclass()
133 #define TYPE_IS_UINT(t)   ((t) == registry_getuintclass())
134 #define TYPE_NUMBER               registry_getnumberclass()
135 #define TYPE_IS_NUMBER(t) ((t) == registry_getnumberclass())
136 #define TYPE_FLOAT                registry_getnumberclass()
137 #define TYPE_IS_FLOAT(t)  ((t) == registry_getnumberclass())
138 #define TYPE_BOOLEAN              registry_getbooleanclass()
139 #define TYPE_IS_BOOLEAN(t)((t) == registry_getbooleanclass())
140 #define TYPE_STRING               registry_getstringclass()
141 #define TYPE_IS_STRING(t) ((t) == registry_getstringclass())
142 #define TYPE_REGEXP               registry_getregexpclass()
143 #define TYPE_IS_REGEXP(t) ((t) == registry_getregexpclass())
144
145 #define TYPE_OBJECT               registry_getobjectclass()
146
147 #define TYPE_FUNCTION(f)          memberinfo_asclass(f)
148 #define TYPE_IS_FUNCTION(t)       registry_isfunctionclass(t)
149
150 #define TYPE_CLASS(f)             registry_getclassclass(f)
151 #define TYPE_IS_CLASS(t)          registry_isclassclass(t)
152
153 #define TYPE_NULL                 registry_getnullclass()
154 #define TYPE_IS_NULL(t)   ((t) == registry_getnullclass())
155         
156 #define TYPE_IS_BUILTIN_SIMPLE(type) (TYPE_IS_INT(type) || \
157                                       TYPE_IS_UINT(type) || \
158                                       TYPE_IS_FLOAT(type) || \
159                                       TYPE_IS_BOOLEAN(type) || \
160                                       TYPE_IS_STRING(type))
161
162
163 #endif