]> git.buserror.net Git - polintos/scott/priv.git/blob - idlcomp/languages/c++/c++.h
Initial checkin from Perforce.
[polintos/scott/priv.git] / idlcomp / languages / c++ / c++.h
1 #ifndef IDLC_CPP_H
2 #define IDLC_CPP_H
3
4 #include <fstream>
5 #include <list>
6
7 #include <lang.h>
8 #include <util.h>
9
10 using std::ofstream;
11 using std::ostream;
12
13 // Output the namespace-qualified symbol name, including
14 // user namespaces.   A prefix for the final component (i.e. the
15 // actual name) can optionally be specified.
16
17 void cpp_output_name(ostream &file, Symbol *sym, const char *prefix = "");
18
19 // Output the C++ type, not including the array, including
20 // a trailing space.
21
22 void cpp_output_type(ostream &file, Type *t, bool array, bool is_mutable);
23 void cpp_output_type(ostream &file, CompiledBasicType &t, bool is_mutable);
24
25 // Output the param's fully-qualified type, a space, and the name
26 // of the param.
27
28 void cpp_output_one_param(ostream &file, Param *p, bool is_server,
29                           bool is_copy = false);
30         
31 // Each IDL namespace is mapped to a C++ header file,
32 // represented by a CPPFile.
33
34 class CPPFile : public LangCallback {
35         Indent indent;
36         string dirname;
37         ofstream file;
38         UserNameSpace *ns;
39         StrList *fqname;
40
41         //// Interface caller-side members:
42         
43         // Outputs the body of the internal _i_<ifacename> struct,
44         // containing a vtable pointer (and definition).
45
46         void output_internal(Interface *sym);
47         
48         // Outputs the user-visible class wrapper that is used to
49         // allow implicit upcasts.
50         
51         void output_wrapper(Interface *sym);
52
53         // Output implementations of the cast methods prototyped in the wrapper.
54         // The implementation is delayed to avoid circular dependency problems.
55
56         void output_casts(Interface *sym);
57
58         // Output the downcast and implicit upcast methods for
59         // the given interface/superinterface pair.
60
61         static void wrapper_cast_callback(Interface *iface, void *arg);
62         void output_downcast(Interface *iface, Interface *super);
63         void output_upcast(Interface *iface, Interface *super);
64
65         static void wrapper_cast_proto_callback(Interface *iface, void *arg);
66         void output_downcast_proto(Interface *iface, Interface *super);
67         void output_upcast_proto(Interface *iface, Interface *super);
68
69         static void wrapper_method_proto_callback(Interface *iface, void *arg);
70         static void wrapper_method_callback(Interface *iface, void *arg);
71
72         void output_iface_tbl(Interface *iface);
73         static void tbl_callback(Interface *iface, void *arg);
74         void output_iface_tbl_entry(Interface *iface, Interface *super);
75
76         static void output_method_ptrs_callback(Interface *iface, void *arg);
77         void output_method_ptrs(Interface *iface);
78         void output_methods(Interface *iface, Interface *super, bool prototype);
79         void output_method_defs(Interface *iface);
80
81         void CPPFile::output_one_method(Interface *iface, Method *m, 
82                                         bool prototype, bool retval);
83         void CPPFile::output_one_method_ptr(Method *m, Interface *iface);
84         
85         static void output_iface_ns(CPPFile *file, NameSpace *sym);
86
87         //// Misc members:
88
89         // Output the static const guid[] value.
90
91         void output_guid(const uint64_t *guid);
92
93         // Output a datum in the given struct, along with any necessary
94         // padding.  Return the offset of the next datum.
95         
96         int output_datum(Struct *ns, Datum *d, int offset);
97
98         static void output_vstruct_ns(CPPFile *file, NameSpace *sym);
99         void output_vstruct_info(Struct *sym);
100         void output_vstruct_main(Struct *sym);
101         void output_struct_ctor(Struct *sym, bool extra_vstruct);
102         int output_struct_ctor_rec1(Struct *sym, int num);
103         int output_struct_ctor_rec2(Struct *sym, int num);
104
105         void output_bf_elem(Datum *d, int pos, int bits, string &prefix);
106         void output_bf(BitField *bf, int bits, int typebits, string &prefix);
107                 
108         // Call ns_in on the symbol in order to declare the containing
109         // namespace.  Call ns_out when finished.  ns_out also takes care
110         // of inserting the extra newline separating declarations.  The
111         // "extra" parameter allows extra output passes to have unique
112         // #ifndef names, and should have a trailing underscore.
113         
114         void ns_in(Symbol *sym, const char *extra = "DEF_");
115         void ns_out(Symbol *sym);
116
117         // As above, but also outputs non-user namespaces (optionally
118         // including "sym" itself).
119
120         void all_ns_in(Symbol *sym, bool include_self = false,
121                        const char *extra = "DEF_");
122         void all_ns_out(Symbol *sym, bool include_self = false);
123
124         // Output a protective #ifndef/#define block to keep a type
125         // from being declared more than once.  Call ifndef_out()
126         // for the #endif.
127         
128         void ifndef_in(Symbol *sym, const char *extra = "DEF_");
129         void ifndef_out();
130         
131         // Return the namespace-qualified symbol name, excluding
132         // user namespaces.  This is used when defining a name
133         // which (if it is nested) has been previously forward
134         // declared.  A prefix for the final component (i.e. the
135         // actual name) can optionally be specified.
136         
137         String &get_definition_name(Symbol *sym, const char *prefix = "");
138         
139         // Output the _ns declaration of a struct or interface.
140         // If a callback is supplied, it is called inside the
141         // namespace, before any namespace members have been
142         // emitted.
143         
144         typedef void (*nsdecl_callback)(CPPFile *file, NameSpace *ns);
145         void output_nsdecl(NameSpace *ns, nsdecl_callback cb = NULL);
146
147         void output_aliases_and_types(NameSpace *ns);
148         
149         // When a top-level struct or interface is about to be generated,
150         // it is scanned for other types which need to be generated.  If the
151         // full definition is needed, it goes on the need_to_declare list;
152         // otherwise, it goes on the need_to_forward_declare list.  When
153         // processing the lists, if a node has already been marked as
154         // traversed, it is skipped.
155         
156         // Full declaration is needed for superstructs, superinterfaces,
157         // inline structs (once implemented) used, and typedefs used.
158         // It is also necessary to fully declare any type which contains
159         // a type whose forward declaration is needed, as such types
160         // cannot (as far as I know) be forward-declared.
161         
162         std::list<Symbol *> need_to_declare;
163         
164         // Forward declaration is needed for types used via a pointer only.
165         
166         std::list<Symbol *> need_to_forward_declare;
167         
168         void declare_dependencies(Struct *sym);
169         void declare_dependencies(Interface *iface, bool need_obj_def = false);
170         void declare_type_dependency(Type *t, bool need_obj_def = false);
171
172         // This is the traversal of the first namespace; any symbol
173         // whose last traversal is at least this has been written to
174         // at least one of the included namespaces (and/or the
175         // current namespace).
176
177         int first_traversal;
178
179         // The traversal indices are also passed as "arg1" to determine
180         // which pass to generate.  Higher numbers are performed first.
181         
182         enum {
183                 trav_full = 0,     // Full, final output
184                 trav_obj_def = 1,  // Object struct definition
185                 trav_obj_stub = 2, // Object pointer stub,
186                               // so it can be used in structs.
187                 trav_nsdecl = 3,   // _ns declaration
188                 trav_forward = 4,  // Forward declaration of
189                               // structs/interfaces in nsdecl
190         };
191
192         bool pass_needed(Symbol *sym, int pass)
193         {
194                 return first_traversal > sym->traversed[pass];
195         }
196
197         void output_pass(Symbol *sym, int pass)
198         {
199                 if (pass_needed(sym, pass)) {
200                         sym->traversed[pass] = traversal;
201                         sym->output_lang(this, pass);
202                 }
203         }
204
205         bool do_extra_newline;
206
207         void downscope()
208         {
209                 indent.indent_level++;
210                 do_extra_newline = false;
211         }
212         
213         void upscope()
214         {
215                 indent.indent_level--;
216                 do_extra_newline = true;
217         }
218         
219         void extra_newline()
220         {
221                 if (do_extra_newline)
222                         file << "\n";
223                 
224                 do_extra_newline = true;
225         }
226
227 public:
228         CPPFile(UserNameSpace *ns, const char *dir);
229         virtual ~CPPFile();
230
231         void output(UserNameSpace *sym, int pass = trav_full, void *arg2 = NULL);
232         void output(Struct *sym, int pass = trav_full, void *arg2 = NULL);
233         void output(Interface *sym, int pass = trav_full, void *arg2 = NULL);
234         void output(BitField *sym, int pass = trav_full, void *arg2 = NULL);
235         void output(Enum *sym, int pass = trav_full, void *arg2 = NULL);
236         void output(BasicType *sym, int pass = trav_full, void *arg2 = NULL);
237         void output(Alias *sym, int pass = trav_full, void *arg2 = NULL);
238         void output(TypeDef *sym, int pass = trav_full, void *arg2 = NULL);
239         void output(Datum *sym, int pass = trav_full, void *arg2 = NULL);
240 };
241
242 class CPPBinding : public Language {
243 public:
244         CPPBinding()
245         {
246                 name = "C++";
247                 next = first_lang;
248                 first_lang = this;
249         }
250
251         void output_root(UserNameSpace *ns, const char *dir);
252         void output_server(UserNameSpace *ns, const char *dir);
253 };
254
255 #endif