added exception struct
[swftools.git] / lib / as3 / abc.h
1 /* abc.h
2
3    Routines for handling Flash2 AVM2 ABC Actionscript (header file)
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 __swfabc_h__
25 #define __swfabc_h__
26
27 #include "../q.h"
28 #include "pool.h"
29
30 DECLARE(abc_file);
31 DECLARE(abc_method);
32 DECLARE(abc_method_body);
33 DECLARE(abc_interface);
34 DECLARE(abc_class);
35 DECLARE(exception);
36 DECLARE_LIST(exception);
37
38 #include "code.h"
39 #include "opcodes.h"
40
41 DECLARE(trait);
42
43 struct _abc_method {
44     multiname_t*return_type;
45     multiname_list_t*parameters;
46     const char*name;
47     U8 flags;
48     abc_method_body_t*body;
49     
50     int index; //filled in during writing
51 };
52
53 struct _abc_file {
54     // abc_file
55
56     const char*name;
57     array_t*metadata;
58     array_t*methods;
59     array_t*classes;
60     array_t*scripts;
61     array_t*method_bodies;
62 };
63
64 abc_file_t*abc_file_new();
65
66 #define TRAIT_SLOT 0
67 #define TRAIT_METHOD 1
68 #define TRAIT_GETTER 2
69 #define TRAIT_SETTER 3
70 #define TRAIT_CLASS 4
71 #define TRAIT_FUNCTION 5
72 #define TRAIT_CONST 6
73
74 struct _trait {
75     unsigned char kind;
76     unsigned char attributes;
77     multiname_t*name;
78
79     union {
80         int disp_id;
81         int slot_id;
82         int data1;
83     };
84     union {
85         abc_method_t*method;
86         abc_class_t*cls;
87         multiname_t*type_name;
88         int data2;
89     };
90     int vindex;
91     int vkind;
92 };
93
94 struct _abc_class {
95     abc_file_t*pool;
96     
97     multiname_t*classname;
98     multiname_t*superclass;
99     namespace_t*protectedNS;
100
101     multiname_list_t*interfaces;
102
103     abc_method_t*constructor;
104     U8 flags;
105     
106     abc_method_t*static_constructor;
107
108     trait_list_t*static_constructor_traits;
109     trait_list_t*traits;
110     
111     int index; //filled in during writing
112 };
113
114 abc_class_t* abc_class_new(abc_file_t*pool, multiname_t*classname, multiname_t*superclass);
115 abc_class_t* abc_class_new2(abc_file_t*pool, char*classname, char*superclass);
116 void abc_class_sealed(abc_class_t*c);
117 void abc_class_final(abc_class_t*c);
118 void abc_class_interface(abc_class_t*c);
119 void abc_class_protectedNS(abc_class_t*c, char*namespace);
120 void abc_class_add_interface(abc_class_t*c, multiname_t*interface);
121
122 abc_method_body_t* abc_class_staticconstructor(abc_class_t*cls, char*returntype, int num_params, ...);
123 abc_method_body_t* abc_class_constructor(abc_class_t*cls, char*returntype, int num_params, ...);
124 abc_method_body_t* abc_class_method(abc_class_t*cls, char*returntype, char*name, int num_params, ...);
125
126 struct _exception {
127     code_t*from;
128     code_t*to;
129     code_t*target;
130     multiname_t*exc_type;
131     multiname_t*var_name;
132 };
133
134 struct _abc_method_body {
135     abc_file_t*pool;
136     //abc_class_t*cls;
137     abc_method_t*method;
138     code_t*code;
139
140     int max_stack;
141     int local_count;
142     int init_scope_depth;
143     int max_scope_depth;
144
145     exception_list_t* exceptions;
146
147     trait_list_t*traits;
148     
149     int index; // filled in during writing
150 };
151
152 typedef struct _abc_script {
153     abc_method_t*method;
154     abc_file_t*pool;
155     trait_list_t*traits;
156 } abc_script_t;
157
158 abc_method_t* abc_nullmethod(abc_file_t*file);
159
160 abc_script_t* abc_initscript(abc_file_t*pool, char*returntype, int num_params, ...);
161
162 #define __ 
163
164 #endif