source: dev/trunk/abdev/BasicCompiler_Common/include/Type.h@ 370

Last change on this file since 370 was 370, checked in by dai_9181, 16 years ago

COM修飾子に対応。COMインターフェイスを呼び出せるようにした

File size: 8.6 KB
Line 
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <boost/foreach.hpp>
7
8#include <jenga/include/common/Exception.h>
9#include <BoostSerializationSupport.h>
10#include <jenga/include/smoothie/BasicFixed.h>
11
12#include <option.h>
13#include <Program.h>
14
15#include <windows.h>
16
17class CClass;
18
19class GenericType;
20typedef std::vector<GenericType> GenericTypes;
21
22class Type{
23 int basicType;
24 union{
25 LONG_PTR index;
26 const CClass *pClass;
27 };
28
29 // ジェネリクス クラス インスタンス型の場合に使う
30 GenericTypes actualGenericTypes;
31
32 // 型パラメータで使う
33 std::string formalTypeName; // 型パラメータの名前
34 int formalTypeIndex; // 型パラメータの引数番号
35
36 // XMLシリアライズ用
37private:
38 friend class boost::serialization::access;
39 template<class Archive> void serialize(Archive& ar, const unsigned int version)
40 {
41 trace_for_serialize( "serializing - Type" );
42
43 ar & BOOST_SERIALIZATION_NVP( basicType );
44 if( HasMember() )
45 {
46 ar & boost::serialization::make_nvp("pClass", const_cast<CClass *&>(pClass));
47 ar & BOOST_SERIALIZATION_NVP( actualGenericTypes );
48 }
49 else
50 {
51 ar & BOOST_SERIALIZATION_NVP( index );
52 }
53
54 if( IsTypeParameter() )
55 {
56 ar & BOOST_SERIALIZATION_NVP( formalTypeName );
57 ar & BOOST_SERIALIZATION_NVP( formalTypeIndex );
58 }
59 }
60
61public:
62 static int GetBasicSize( int basicType );
63
64 Type():
65 basicType( DEF_NON ),
66 index( -1 ){}
67 Type( int basicType ):
68 basicType( basicType ),
69 index( -1 ){}
70
71 Type( int basicType, LONG_PTR index )
72 : basicType( basicType )
73 , index( index )
74 {
75 }
76
77 Type( int basicType, const CClass &objClass ):
78 basicType( basicType ),
79 index( (LONG_PTR)&objClass ){}
80
81 Type( const Type &type )
82 : basicType( type.basicType )
83 , index( type.index )
84 , actualGenericTypes( type.actualGenericTypes )
85 , formalTypeName( type.formalTypeName )
86 , formalTypeIndex( type.formalTypeIndex )
87 {
88 }
89
90 ~Type();
91
92 void operator= ( const Type &type )
93 {
94 basicType = type.basicType;
95 index = type.index;
96 actualGenericTypes = type.actualGenericTypes;
97 formalTypeName = type.formalTypeName;
98 formalTypeIndex = type.formalTypeIndex;
99 }
100
101 __inline int GetBasicType() const
102 {
103 return basicType;
104 }
105 LONG_PTR GetIndex() const
106 {
107 return index;
108 }
109 const CClass &GetClass() const;
110
111 void SetBasicType( int basicType ){
112 this->basicType = basicType;
113 }
114 void SetIndex( LONG_PTR index ){
115 this->index = index;
116 }
117 void SetClassPtr( const CClass *pClass )
118 {
119 int naturalBasicType = NATURAL_TYPE( basicType );
120 if( !HasMember() )
121 {
122 Jenga::Throw( "クラスまたは構造体でない型に対してSetClassPtrを呼び出した" );
123 }
124 this->pClass = pClass;
125 }
126 void SetNull(){
127 SetBasicType( DEF_NON );
128 SetIndex( -1 );
129 }
130 void SetType( int basicType, LONG_PTR index ){
131 SetBasicType( basicType );
132 SetIndex( index );
133 }
134 void SetType( int basicType, const CClass *pClass ){
135 SetBasicType( basicType );
136 this->pClass = pClass;
137 }
138 void SetActualGenericTypes( const GenericTypes &genericTypes )
139 {
140 this->actualGenericTypes = genericTypes;
141 }
142
143 int PtrLevel() const
144 {
145 return PTR_LEVEL( basicType );
146 }
147 void PtrLevelUp(){
148 PTR_LEVEL_UP( basicType );
149 }
150 void PtrLevelDown(){
151 PTR_LEVEL_DOWN( basicType );
152 }
153
154 bool Equals( const Type &type ) const;
155
156 int GetBasicSize() const;
157 int GetSize() const;
158
159 bool IsNull() const;
160
161 bool IsByte() const;
162 bool IsSByte() const;
163 bool IsWord() const;
164 bool IsInteger() const;
165 bool IsDWord() const;
166 bool IsLong() const;
167 bool IsQWord() const;
168 bool IsInt64() const;
169 bool IsSingle() const;
170 bool IsDouble() const;
171 bool IsBoolean() const;
172
173 static bool IsPointer( int basicType );
174 bool IsPointer() const;
175 bool IsSigned() const;
176 bool IsNaturalWhole() const;
177 bool IsWhole() const;
178 bool IsReal() const;
179 bool Is64() const;
180 bool IsProcPtr() const;
181 bool IsStruct() const;
182 bool IsStructPtr() const;
183 bool IsObject() const;
184 bool IsObjectPtr() const;
185 bool IsTypeParameter() const;
186 bool IsObjectClass() const;
187 bool IsStringClass() const;
188 bool IsVoidPtr() const;
189 bool IsAny() const;
190 bool IsDelegate() const;
191 bool IsInterface() const;
192 bool IsComInterface() const;
193
194 // オブジェクトや構造体など、メンバを持つ型かどうかを判別する
195 bool HasMember() const;
196
197 // 型パラメータの名前を取得
198 const std::string &GetFormalTypeName() const
199 {
200 if( !IsTypeParameter() )
201 {
202 Jenga::Throw( "型パラメータでない型に対してGetFormalTypeNameメソッドが呼ばれた" );
203 }
204 return formalTypeName;
205 }
206 void SetFormalTypeName( const std::string &formalTypeName )
207 {
208 if( !IsTypeParameter() )
209 {
210 Jenga::Throw( "型パラメータでない型に対してSetFormalTypeNameメソッドが呼ばれた" );
211 }
212 this->formalTypeName = formalTypeName;
213 }
214 int GetFormalTypeIndex() const
215 {
216 if( !IsTypeParameter() )
217 {
218 Jenga::Throw( "型パラメータでない型に対してGetFormalTypeIndexメソッドが呼ばれた" );
219 }
220 return formalTypeIndex;
221 }
222 void SetFormalTypeIndex( int formalTypeIndex )
223 {
224 if( !IsTypeParameter() )
225 {
226 Jenga::Throw( "型パラメータでない型に対してSetFormalTypeIndexメソッドが呼ばれた" );
227 }
228 this->formalTypeIndex = formalTypeIndex;
229 }
230
231 // 未完成
232 const Type &GetActualGenericType( int index ) const;
233 bool HasActualGenericType() const;
234
235
236private:
237 static const int basicTypeList[];
238 static const std::string basicTypeNameList[];
239public:
240 static bool StringToBasicType( const std::string &typeName, int &basicType );
241 static const char *Type::BasicTypeToCharPtr( const Type &type );
242 static int GetBasicTypeFromSimpleName( const char *variable );
243};
244typedef std::vector<Type> Types;
245
246void ResolveFormalGenericTypeParameter( Type &typeParameter, const Type &classType, const UserProc *pUserProc = NULL );
247
248class GenericType
249{
250 std::string name;
251 Type type;
252
253 // XMLシリアライズ用
254private:
255 friend class boost::serialization::access;
256 template<class Archive> void serialize(Archive& ar, const unsigned int version)
257 {
258 trace_for_serialize( "serializing - GenericType" );
259
260 ar & BOOST_SERIALIZATION_NVP( name );
261 ar & BOOST_SERIALIZATION_NVP( type );
262 }
263
264public:
265 GenericType( const std::string &name, const Type &type )
266 : name( name )
267 , type( type )
268 {
269 }
270 GenericType()
271 {
272 }
273 ~GenericType()
274 {
275 }
276
277 const std::string &GetName() const
278 {
279 return name;
280 }
281 const Type &GetType() const
282 {
283 return type;
284 }
285};
286
287class BlittableType
288{
289 Type basicType;
290 CClass *pClass;
291
292 // XMLシリアライズ用
293private:
294 friend class boost::serialization::access;
295 template<class Archive> void serialize(Archive& ar, const unsigned int version)
296 {
297 trace_for_serialize( "serializing - BlittableType" );
298
299 ar & BOOST_SERIALIZATION_NVP( basicType );
300 ar & BOOST_SERIALIZATION_NVP( pClass );
301 }
302
303public:
304 bool isTargetObjectModule;
305 BlittableType( const Type &basicType, CClass *pClass )
306 : basicType( basicType )
307 , pClass( pClass )
308 , isTargetObjectModule( true )
309 {
310 }
311 BlittableType()
312 : isTargetObjectModule( true )
313 {
314 }
315 const Type &GetBasicType() const
316 {
317 return basicType;
318 }
319 const CClass *GetClassPtr() const
320 {
321 return pClass;
322 }
323 const std::string GetCreateStaticMethodFullName() const;
324};
325class BlittableTypes : public std::vector<BlittableType>
326{
327 // XMLシリアライズ用
328private:
329 friend class boost::serialization::access;
330 template<class Archive> void serialize(Archive& ar, const unsigned int version)
331 {
332 trace_for_serialize( "serializing - BlittableTypes" );
333
334 ar & boost::serialization::make_nvp("vector_BlittableType",
335 boost::serialization::base_object<std::vector<BlittableType>>(*this));
336 }
337
338public:
339 bool IsExist( Type type ) const
340 {
341 const BlittableTypes &blittableTypes = *this;
342 BOOST_FOREACH( const BlittableType &blittableType, blittableTypes ){
343 if( blittableType.GetBasicType().Equals( type ) ){
344 return true;
345 }
346 }
347 return false;
348 }
349 const BlittableType &Find( const Type &type ) const
350 {
351 const BlittableTypes &blittableTypes = *this;
352 BOOST_FOREACH( const BlittableType &blittableType, blittableTypes ){
353 if( blittableType.GetBasicType().Equals( type ) ){
354 return blittableType;
355 }
356 }
357 Jenga::Throw( "Blittable型ではない" );
358
359 static BlittableType dummy;
360 return dummy;
361 }
362 const CClass *GetClassPtr( const Type &type ) const
363 {
364 const BlittableTypes &blittableTypes = *this;
365 BOOST_FOREACH( const BlittableType &blittableType, blittableTypes ){
366 if( blittableType.GetBasicType().Equals( type ) ){
367 return blittableType.GetClassPtr();
368 }
369 }
370 return NULL;
371 }
372 const CClass &GetClass( const Type &type ) const
373 {
374 return *GetClassPtr( type );
375 }
376};
Note: See TracBrowser for help on using the repository browser.