Use DrawFrameControl instead of bitmaps in certain cases.
[wine] / dlls / msvcrt / cpp.c
1 /*
2  * msvcrt.dll C++ objects
3  *
4  * Copyright 2000 Jon Griffiths
5  */
6
7 #include "msvcrt.h"
8 #include "msvcrt/eh.h"
9 #include "msvcrt/malloc.h"
10
11 DEFAULT_DEBUG_CHANNEL(msvcrt);
12
13
14 typedef void (*v_table_ptr)();
15
16 static v_table_ptr exception_vtable[2];
17 static v_table_ptr bad_typeid_vtable[3];
18 static v_table_ptr __non_rtti_object_vtable[3];
19 static v_table_ptr bad_cast_vtable[3];
20 static v_table_ptr type_info_vtable[1];
21
22 typedef struct __exception
23 {
24   v_table_ptr *vtable;
25   const char *name;
26   int do_free; /* FIXME: take string copy with char* ctor? */
27 } exception;
28
29 typedef struct __bad_typeid
30 {
31   exception base;
32 } bad_typeid;
33
34 typedef struct ____non_rtti_object
35 {
36   bad_typeid base;
37 } __non_rtti_object;
38
39 typedef struct __bad_cast
40 {
41   exception base;
42 } bad_cast;
43
44 typedef struct __type_info
45 {
46   v_table_ptr *vtable;
47   void *data;
48   char name[1];
49 } type_info;
50
51 typedef struct _rtti_base_descriptor
52 {
53   type_info *type_descriptor;
54   int num_base_classes;
55   int base_class_offset;
56   unsigned int flags;
57 } rtti_base_descriptor;
58
59 typedef struct _rtti_base_array
60 {
61   rtti_base_descriptor *bases[1]; /* First element is the class itself */
62 } rtti_base_array;
63
64 typedef struct _rtti_object_hierachy
65 {
66   int unknown1;
67   int unknown2;
68   int array_len; /* Size of the array pointed to by 'base_classes' */
69   rtti_base_array *base_classes;
70 } rtti_object_hierachy;
71
72 typedef struct _rtti_object_locator
73 {
74   int unknown1;
75   int base_class_offset;
76   unsigned int flags;
77   type_info *type_descriptor;
78   rtti_object_hierachy *type_hierachy;
79 } rtti_object_locator;
80
81 /******************************************************************
82  *              ??0exception@@QAE@ABQBD@Z (MSVCRT.@)
83  */
84 void MSVCRT_exception_ctor(exception * _this, const char ** name)
85 {
86   TRACE("(%p %s)\n",_this,*name);
87   _this->vtable = exception_vtable;
88   _this->name = *name;
89   TRACE("name = %s\n",_this->name);
90   _this->do_free = 0; /* FIXME */
91 }
92
93 /******************************************************************
94  *              ??0exception@@QAE@ABV0@@Z (MSVCRT.@)
95  */
96 void MSVCRT_exception_copy_ctor(exception * _this, const exception * rhs)
97 {
98   TRACE("(%p %p)\n",_this,rhs);
99   if (_this != rhs)
100     memcpy (_this, rhs, sizeof (*_this));
101   TRACE("name = %s\n",_this->name);
102 }
103
104 /******************************************************************
105  *              ??0exception@@QAE@XZ (MSVCRT.@)
106  */
107 void MSVCRT_exception_default_ctor(exception * _this)
108 {
109   TRACE("(%p)\n",_this);
110   _this->vtable = exception_vtable;
111   _this->name = "";
112   _this->do_free = 0; /* FIXME */
113 }
114
115 /******************************************************************
116  *              ??1exception@@UAE@XZ (MSVCRT.@)
117  */
118 void MSVCRT_exception_dtor(exception * _this)
119 {
120   TRACE("(%p)\n",_this);
121 }
122
123 /******************************************************************
124  *              ??4exception@@QAEAAV0@ABV0@@Z (MSVCRT.@)
125  */
126 exception * MSVCRT_exception_opequals(exception * _this, const exception * rhs)
127 {
128   TRACE("(%p %p)\n",_this,rhs);
129   memcpy (_this, rhs, sizeof (*_this));
130   TRACE("name = %s\n",_this->name);
131   return _this;
132 }
133
134 /******************************************************************
135  *              ??_Eexception@@UAEPAXI@Z (MSVCRT.@)
136  */
137 void * MSVCRT_exception__unknown_E(exception * _this, unsigned int arg1)
138 {
139   TRACE("(%p %d)\n",_this,arg1);
140   _purecall();
141   return NULL;
142 }
143
144 /******************************************************************
145  *              ??_Gexception@@UAEPAXI@Z (MSVCRT.@)
146  */
147 void * MSVCRT_exception__unknown_G(exception * _this, unsigned int arg1)
148 {
149   TRACE("(%p %d)\n",_this,arg1);
150   _purecall();
151   return NULL;
152 }
153
154 /******************************************************************
155  *              ?what@exception@@UBEPBDXZ (MSVCRT.@)
156  */
157 const char * MSVCRT_what_exception(exception * _this)
158 {
159   TRACE("(%p) returning %s\n",_this,_this->name);
160   return _this->name;
161 }
162
163
164 static terminate_function func_terminate=NULL;
165 static unexpected_function func_unexpected=NULL;
166
167 /******************************************************************
168  *              ?set_terminate@@YAP6AXXZP6AXXZ@Z (MSVCRT.@)
169  */
170 terminate_function MSVCRT_set_terminate(terminate_function func)
171 {
172   terminate_function previous=func_terminate;
173   TRACE("(%p) returning %p\n",func,previous);
174   func_terminate=func;
175   return previous;
176 }
177
178 /******************************************************************
179  *              ?set_unexpected@@YAP6AXXZP6AXXZ@Z (MSVCRT.@)
180  */
181 unexpected_function MSVCRT_set_unexpected(unexpected_function func)
182 {
183   unexpected_function previous=func_unexpected;
184   TRACE("(%p) returning %p\n",func,previous);
185   func_unexpected=func;
186   return previous;
187 }
188
189 /******************************************************************
190  *              ?terminate@@YAXXZ (MSVCRT.@)
191  */
192 void MSVCRT_terminate()
193 {
194   (*func_terminate)();
195 }
196
197 /******************************************************************
198  *              ?unexpected@@YAXXZ (MSVCRT.@)
199  */
200 void MSVCRT_unexpected()
201 {
202   (*func_unexpected)();
203 }
204
205
206 /******************************************************************
207  *              ??0bad_typeid@@QAE@ABV0@@Z (MSVCRT.@)
208  */
209 void MSVCRT_bad_typeid_copy_ctor(bad_typeid * _this, const bad_typeid * rhs)
210 {
211   TRACE("(%p %p)\n",_this,rhs);
212   MSVCRT_exception_copy_ctor(&_this->base,&rhs->base);
213 }
214
215 /******************************************************************
216  *              ??0bad_typeid@@QAE@PBD@Z (MSVCRT.@)
217  */
218 void MSVCRT_bad_typeid_ctor(bad_typeid * _this, const char * name)
219 {
220   TRACE("(%p %s)\n",_this,name);
221   MSVCRT_exception_ctor(&_this->base, &name);
222   _this->base.vtable = bad_typeid_vtable;
223 }
224
225 /******************************************************************
226  *              ??1bad_typeid@@UAE@XZ (MSVCRT.@)
227  */
228 void MSVCRT_bad_typeid_dtor(bad_typeid * _this)
229 {
230   TRACE("(%p)\n",_this);
231   MSVCRT_exception_dtor(&_this->base);
232 }
233
234 /******************************************************************
235  *              ??4bad_typeid@@QAEAAV0@ABV0@@Z (MSVCRT.@)
236  */
237 bad_typeid * MSVCRT_bad_typeid_opequals(bad_typeid * _this, const bad_typeid * rhs)
238 {
239   TRACE("(%p %p)\n",_this,rhs);
240   MSVCRT_exception_copy_ctor(&_this->base,&rhs->base);
241   return _this;
242 }
243
244 /******************************************************************
245  *              ??0__non_rtti_object@@QAE@ABV0@@Z (MSVCRT.@)
246  */
247 void MSVCRT___non_rtti_object_copy_ctor(__non_rtti_object * _this,
248                                                 const __non_rtti_object * rhs)
249 {
250   TRACE("(%p %p)\n",_this,rhs);
251   MSVCRT_bad_typeid_copy_ctor(&_this->base,&rhs->base);
252 }
253
254 /******************************************************************
255  *              ??0__non_rtti_object@@QAE@PBD@Z (MSVCRT.@)
256  */
257 void MSVCRT___non_rtti_object_ctor(__non_rtti_object * _this,
258                                            const char * name)
259 {
260   TRACE("(%p %s)\n",_this,name);
261   MSVCRT_bad_typeid_ctor(&_this->base,name);
262   _this->base.base.vtable = __non_rtti_object_vtable;
263 }
264
265 /******************************************************************
266  *              ??1__non_rtti_object@@UAE@XZ (MSVCRT.@)
267  */
268 void MSVCRT___non_rtti_object_dtor(__non_rtti_object * _this)
269 {
270   TRACE("(%p)\n",_this);
271   MSVCRT_bad_typeid_dtor(&_this->base);
272 }
273
274 /******************************************************************
275  *              ??4__non_rtti_object@@QAEAAV0@ABV0@@Z (MSVCRT.@)
276  */
277 __non_rtti_object * MSVCRT___non_rtti_object_opequals(__non_rtti_object * _this,
278                                                               const __non_rtti_object *rhs)
279 {
280   TRACE("(%p %p)\n",_this,rhs);
281   memcpy (_this, rhs, sizeof (*_this));
282   TRACE("name = %s\n",_this->base.base.name);
283   return _this;
284 }
285
286 /******************************************************************
287  *              ??_E__non_rtti_object@@UAEPAXI@Z (MSVCRT.@)
288  */
289 void * MSVCRT___non_rtti_object__unknown_E(__non_rtti_object * _this, unsigned int arg1)
290 {
291   TRACE("(%p %d)\n",_this,arg1);
292   _purecall();
293   return NULL;
294 }
295
296 /******************************************************************
297  *              ??_G__non_rtti_object@@UAEPAXI@Z (MSVCRT.@)
298  */
299 void * MSVCRT___non_rtti_object__unknown_G(__non_rtti_object * _this, unsigned int arg1)
300 {
301   TRACE("(%p %d)\n",_this,arg1);
302   _purecall();
303   return NULL;
304 }
305
306 /******************************************************************
307  *              ??0bad_cast@@QAE@ABQBD@Z (MSVCRT.@)
308  */
309 void MSVCRT_bad_cast_ctor(bad_cast * _this, const char ** name)
310 {
311   TRACE("(%p %s)\n",_this,*name);
312   MSVCRT_exception_ctor(&_this->base, name);
313   _this->base.vtable = bad_cast_vtable;
314 }
315
316 /******************************************************************
317  *              ??0bad_cast@@QAE@ABV0@@Z (MSVCRT.@)
318  */
319 void MSVCRT_bad_cast_copy_ctor(bad_cast * _this, const bad_cast * rhs)
320 {
321   TRACE("(%p %p)\n",_this,rhs);
322   MSVCRT_exception_copy_ctor(&_this->base,&rhs->base);
323 }
324
325 /******************************************************************
326  *              ??1bad_cast@@UAE@XZ (MSVCRT.@)
327  */
328 void MSVCRT_bad_cast_dtor(bad_cast * _this)
329 {
330   TRACE("(%p)\n",_this);
331   MSVCRT_exception_dtor(&_this->base);
332 }
333
334 /******************************************************************
335  *              ??4bad_cast@@QAEAAV0@ABV0@@Z (MSVCRT.@)
336  */
337 bad_cast * MSVCRT_bad_cast_opequals(bad_cast * _this, const bad_cast * rhs)
338 {
339   TRACE("(%p %p)\n",_this,rhs);
340   MSVCRT_exception_copy_ctor(&_this->base,&rhs->base);
341   return _this;
342 }
343
344 /******************************************************************
345  *              ??8type_info@@QBEHABV0@@Z (MSVCRT.@)
346  */
347 int __stdcall MSVCRT_type_info_opequals_equals(type_info * _this, const type_info * rhs)
348 {
349   TRACE("(%p %p) returning %d\n",_this,rhs,_this->name == rhs->name);
350   return _this->name == rhs->name;
351 }
352
353 /******************************************************************
354  *              ??9type_info@@QBEHABV0@@Z (MSVCRT.@)
355  */
356 int __stdcall MSVCRT_type_info_opnot_equals(type_info * _this, const type_info * rhs)
357 {
358   TRACE("(%p %p) returning %d\n",_this,rhs,_this->name == rhs->name);
359   return _this->name != rhs->name;
360 }
361
362 /******************************************************************
363  *              ??1type_info@@UAE@XZ (MSVCRT.@)
364  */
365 void MSVCRT_type_info_dtor(type_info * _this)
366 {
367   TRACE("(%p)\n",_this);
368   if (_this->data)
369     MSVCRT_free(_this->data);
370 }
371
372 /******************************************************************
373  *              ?name@type_info@@QBEPBDXZ (MSVCRT.@)
374  */
375 const char * __stdcall MSVCRT_type_info_name(type_info * _this)
376 {
377   TRACE("(%p) returning %s\n",_this,_this->name);
378   return _this->name;
379 }
380
381 /******************************************************************
382  *              ?raw_name@type_info@@QBEPBDXZ (MSVCRT.@)
383  */
384 const char * __stdcall MSVCRT_type_info_raw_name(type_info * _this)
385 {
386   TRACE("(%p) returning %s\n",_this,_this->name);
387   return _this->name;
388 }
389
390
391 /******************************************************************
392  *              __RTtypeid (MSVCRT.@)
393  */
394 type_info* MSVCRT___RTtypeid(type_info *cppobj)
395 {
396   /* Note: cppobj _isn't_ a type_info, we use that struct for its vtable ptr */
397   TRACE("(%p)\n",cppobj);
398
399   if (!IsBadReadPtr(cppobj, sizeof(void *)) &&
400       !IsBadReadPtr(cppobj->vtable - 1,sizeof(void *)) &&
401       !IsBadReadPtr((void*)cppobj->vtable[-1], sizeof(rtti_object_locator)))
402   {
403     rtti_object_locator *obj_locator = (rtti_object_locator *)cppobj->vtable[-1];
404     return obj_locator->type_descriptor;
405   }
406   /* FIXME: throw a C++ exception */
407   FIXME("Should throw(bad_typeid). Creating NULL reference, expect crash!\n");
408   return NULL;
409 }
410
411 /******************************************************************
412  *              __RTDynamicCast (MSVCRT.@)
413  */
414 void* MSVCRT___RTDynamicCast(type_info *cppobj, int unknown,
415                              type_info *src, type_info *dst,
416                              int do_throw)
417 {
418   /* Note: cppobj _isn't_ a type_info, we use that struct for its vtable ptr */
419   TRACE("(%p,%d,%p,%p,%d)\n",cppobj, unknown, src, dst, do_throw);
420
421   if (unknown)
422     FIXME("Unknown prameter is non-zero: please report\n");
423
424   /* To cast an object at runtime:
425    * 1.Find out the true type of the object from the typeinfo at vtable[-1]
426    * 2.Search for the destination type in the class heirachy
427    * 3.If destination type is found, return base object address + dest offset
428    *   Otherwise, fail the cast
429    */
430   if (!IsBadReadPtr(cppobj, sizeof(void *)) &&
431       !IsBadReadPtr(cppobj->vtable - 1,sizeof(void *)) &&
432       !IsBadReadPtr((void*)cppobj->vtable[-1], sizeof(rtti_object_locator)))
433   {
434     int count = 0;
435     rtti_object_locator *obj_locator = (rtti_object_locator *)cppobj->vtable[-1];
436     rtti_object_hierachy *obj_bases = obj_locator->type_hierachy;
437     rtti_base_descriptor **base_desc = obj_bases->base_classes->bases;
438     int src_offset = obj_locator->base_class_offset, dst_offset = -1;
439
440     while (count < obj_bases->array_len)
441     {
442       type_info *typ = (*base_desc)->type_descriptor;
443
444       if (!strcmp(typ->name, dst->name))
445       {
446         dst_offset = (*base_desc)->base_class_offset;
447         break;
448       }
449       base_desc++;
450       count++;
451     }
452     if (dst_offset >= 0)
453       return (void*)((unsigned long)cppobj - src_offset + dst_offset);
454   }
455
456   /* VC++ sets do_throw to 1 when the result of a dynamic_cast is assigned
457    * to a reference, since references cannot be NULL.
458    */
459   if (do_throw)
460     FIXME("Should throw(bad_cast). Creating NULL reference, expect crash!\n");
461   return NULL;
462 }
463
464
465 /******************************************************************
466  *              __RTCastToVoid (MSVCRT.@)
467  */
468 void* MSVCRT___RTCastToVoid(type_info *cppobj)
469 {
470   /* Note: cppobj _isn't_ a type_info, we use that struct for its vtable ptr */
471   TRACE("(%p)\n",cppobj);
472
473   /* Casts to void* simply cast to the base object */
474   if (!IsBadReadPtr(cppobj, sizeof(void *)) &&
475       !IsBadReadPtr(cppobj->vtable - 1,sizeof(void *)) &&
476       !IsBadReadPtr((void*)cppobj->vtable[-1], sizeof(rtti_object_locator)))
477   {
478     rtti_object_locator *obj_locator = (rtti_object_locator *)cppobj->vtable[-1];
479     int src_offset = obj_locator->base_class_offset;
480
481     return (void*)((unsigned long)cppobj - src_offset);
482   }
483   return NULL;
484 }
485
486
487 /* INTERNAL: Set up vtables
488  * FIXME:should be static, cope with versions?
489  */
490 void msvcrt_init_vtables(void)
491 {
492   exception_vtable[0] = MSVCRT_exception_dtor;
493   exception_vtable[1] = (void*)MSVCRT_what_exception;
494
495   bad_typeid_vtable[0] = MSVCRT_bad_typeid_dtor;
496   bad_typeid_vtable[1] = exception_vtable[1];
497   bad_typeid_vtable[2] = _purecall; /* FIXME */
498
499   __non_rtti_object_vtable[0] = MSVCRT___non_rtti_object_dtor;
500   __non_rtti_object_vtable[1] = bad_typeid_vtable[1];
501   __non_rtti_object_vtable[2] = bad_typeid_vtable[2];
502
503   bad_cast_vtable[0] = MSVCRT_bad_cast_dtor;
504   bad_cast_vtable[1] = exception_vtable[1];
505   bad_cast_vtable[2] = _purecall; /* FIXME */
506
507   type_info_vtable[0] = MSVCRT_type_info_dtor;
508
509 }
510