File: testIsConvertible.cc

package info (click to toggle)
clhep 2.1.4.1%2Bdfsg-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 10,012 kB
  • sloc: cpp: 50,094; sh: 6,694; makefile: 2,694; perl: 28
file content (357 lines) | stat: -rw-r--r-- 8,071 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
// ======================================================================
// -*- C++ -*-
// $Id: testIsConvertible.cc,v 1.2 2010/06/16 14:15:01 garren Exp $
// ---------------------------------------------------------------------------
// Test is_convertible type trait
//
// W. E. Brown, 2010-03-19
// based on work by John Maddock
// ======================================================================


#include <CLHEP/Utility/noncopyable.h>
#include <CLHEP/Utility/type_traits.h>
#include <cassert>


using namespace CLHEP;


// define some test types:

enum enum_UDT{ one, two, three };
struct UDT
{
  UDT() { };
  ~UDT() { };
  UDT(const UDT&);
  UDT& operator=(const UDT&);
  int i;

  void f1();
  int f2();
  int f3(int);
  int f4(int, float);
};

typedef void(*f1)();
typedef int(*f2)(int);
typedef int(*f3)(int, bool);
typedef void (UDT::*mf1)();
typedef int (UDT::*mf2)();
typedef int (UDT::*mf3)(int);
typedef int (UDT::*mf4)(int, float);
typedef int (UDT::*mp);
typedef int (UDT::*cmf)(int) const;

struct POD_UDT { int x; };
struct empty_UDT
{
  empty_UDT() { };
  empty_UDT(const empty_UDT&) { };
  ~empty_UDT() { };
  empty_UDT& operator=(const empty_UDT&){ return *this; }
  bool operator==(const empty_UDT&)const
  { return true; }
};
struct empty_POD_UDT
{
  bool operator==(const empty_POD_UDT&)const
  { return true; }
};
union union_UDT
{
  int x;
  double y;
  ~union_UDT() { }
};
union POD_union_UDT
{
  int x;
  double y;
};
union empty_union_UDT
{
  ~empty_union_UDT() { }
};
union empty_POD_union_UDT { };

struct nothrow_copy_UDT
{
  nothrow_copy_UDT();
  nothrow_copy_UDT(const nothrow_copy_UDT&)throw();
  ~nothrow_copy_UDT() { };
  nothrow_copy_UDT& operator=(const nothrow_copy_UDT&){ return *this; }
  bool operator==(const nothrow_copy_UDT&)const
  { return true; }
};

struct nothrow_assign_UDT
{
  nothrow_assign_UDT();
  nothrow_assign_UDT(const nothrow_assign_UDT&);
  ~nothrow_assign_UDT() { };
  nothrow_assign_UDT& operator=(const nothrow_assign_UDT&)throw(){ return *this; }
  bool operator==(const nothrow_assign_UDT&)const
  { return true; }
};

struct nothrow_construct_UDT
{
  nothrow_construct_UDT()throw();
  nothrow_construct_UDT(const nothrow_construct_UDT&);
  ~nothrow_construct_UDT() { };
  nothrow_construct_UDT& operator=(const nothrow_construct_UDT&){ return *this; }
  bool operator==(const nothrow_construct_UDT&)const
  { return true; }
};

class Base { };

class Derived : public Base { };
class Derived2 : public Base { };
class MultiBase : public Derived, public Derived2 { };
class PrivateBase : private Base { };

class NonDerived { };

enum enum1
{
  one_,two_
};

enum enum2
{
  three_,four_
};

struct VB
{
  virtual ~VB() { };
};

struct VD : VB
{
  ~VD() { };
};

// struct non_pointer:
// used to verify that is_pointer does not return
// true for class types that implement operator void*()
//
struct non_pointer
{
  operator void*(){return this;}
};
struct non_int_pointer
{
  int i;
  operator int*(){return &i;}
};
struct int_constructible
{
  int_constructible(int);
};
struct int_convertible
{
  operator int();
};
//
// struct non_empty:
// used to verify that is_empty does not emit
// spurious warnings or errors.
//
struct non_empty : private noncopyable
{
  int i;
};
//
// abstract base classes:
struct test_abc1
{
  test_abc1();
  virtual ~test_abc1();
  test_abc1(const test_abc1&);
  test_abc1& operator=(const test_abc1&);
  virtual void foo() = 0;
  virtual void foo2() = 0;
};

struct test_abc2
{
  virtual ~test_abc2();
  virtual void foo() = 0;
  virtual void foo2() = 0;
};

struct test_abc3 : public test_abc1
{
  virtual void foo3() = 0;
};

struct incomplete_type;

struct polymorphic_base
{
  virtual ~polymorphic_base();
  virtual void method();
};

struct polymorphic_derived1 : polymorphic_base
{
};

struct polymorphic_derived2 : polymorphic_base
{
  virtual void method();
};

struct virtual_inherit1 : virtual Base { };
struct virtual_inherit2 : virtual_inherit1 { };
struct virtual_inherit3 : private virtual Base { };
struct virtual_inherit4 : virtual noncopyable { };
struct virtual_inherit5 : virtual int_convertible { };
struct virtual_inherit6 : virtual Base { virtual ~virtual_inherit6()throw(); };

typedef void foo0_t();
typedef void foo1_t(int);
typedef void foo2_t(int&, double);
typedef void foo3_t(int&, bool, int, int);
typedef void foo4_t(int, bool, int*, int[], int, int, int, int, int);

struct trivial_except_construct
{
  trivial_except_construct();
  int i;
};

struct trivial_except_destroy
{
  ~trivial_except_destroy();
  int i;
};

struct trivial_except_copy
{
  trivial_except_copy(trivial_except_copy const&);
  int i;
};

struct trivial_except_assign
{
  trivial_except_assign& operator=(trivial_except_assign const&);
  int i;
};

template< typename T >
struct wrap
{
  T t;
  int j;
protected:
  wrap();
  wrap(const wrap&);
  wrap& operator=(const wrap&);
};


template< typename T >
struct convertible_from
{ convertible_from(T); };

struct base2 { };
struct middle2 : virtual base2 { };
struct derived2 : middle2 { };


int main()
{
  #define conversion_claim(From,To) (is_convertible<From,To>::value)
  #define does_convert(From,To)     assert(conversion_claim(From,To))
  #define does_not_convert(From,To) assert(!conversion_claim(From,To))

  does_not_convert(NonDerived,Base);

  does_convert(Base,Base);
  does_convert(Derived,Base);
  does_convert(Derived,Derived);
  does_not_convert(Base,Derived);

  does_convert(Derived&, Base&);
  does_convert(const Derived&, const Base&);
  does_not_convert(Base&, Derived&);
  does_not_convert(const Base&, const Derived&);

  does_convert(Derived*, Base*);
  does_convert(const Derived*, const Base*);
  does_not_convert(Base*, Derived*);
  does_not_convert(const Base*, const Derived*);

  does_convert(polymorphic_derived1,polymorphic_base);
  does_convert(polymorphic_derived2,polymorphic_base);
  does_not_convert(polymorphic_base,polymorphic_derived1);
  does_not_convert(polymorphic_base,polymorphic_derived2);

  does_convert(virtual_inherit2,virtual_inherit1);
  does_convert(VD,VB);

  does_convert(void,void);
  does_not_convert(void,float);
  does_convert(float,void);
  //does_convert(float,int);

  does_convert(enum1, int);

  does_not_convert(const int *, int*);
  does_not_convert(const int&, int&);
  does_not_convert(const int*, int[3]);
  does_convert(const int&, int);
  does_convert(int(&)[4], const int*);
  does_convert(int(&)(int), int(*)(int));
  does_convert(int *, const int*);
  does_convert(int&, const int&);
  does_convert(int[2], int*);
  does_convert(int[2], const int*);
  does_not_convert(const int[2], int*);
  does_not_convert(int*, int[3]);
  //does_convert(test_abc3, const test_abc1&);

  does_convert(non_pointer, void*);
  does_not_convert(non_pointer, int*);
  does_convert(non_int_pointer, int*);
  does_convert(non_int_pointer, void*);

  does_not_convert(test_abc1&, test_abc2&);
  does_not_convert(test_abc1&, int_constructible);
  does_not_convert(int_constructible, test_abc1&);

  does_not_convert(test_abc1&, test_abc2);

  #if defined(__GNUC__) && ((__GNUC__ < 4) || (__GNUC_MINOR__ < 2))
    // known to be defective
  #elif defined(_MSC_VER)  && (_MSC_VER <= 1400)
    // known to be defective
  #else
    // let's give it a try
  does_convert(int, int_constructible);
  does_convert(float,convertible_from<float> );
  does_convert(float,convertible_from<float const&> );
  does_convert(float,convertible_from<float&> );

  does_convert(float,convertible_from<char> );
  does_convert(float,convertible_from<char const&> );
  does_not_convert(float,convertible_from<char&> );

  does_convert(char,convertible_from<char> );
  does_convert(char,convertible_from<char const&> );
  does_convert(char,convertible_from<char&> );

  does_convert(float&,convertible_from<float> );
  does_convert(float const&,convertible_from<float> );
  does_convert(float&,convertible_from<float&> );
  does_convert(float const&,convertible_from<float const&> );
  does_convert(float&,convertible_from<float const&> );
  #endif  // compiler

  return 0;
}