1 | // Termination Exception Tests |
---|
2 | |
---|
3 | #include <exception.hfa> |
---|
4 | #include "except-io.hfa" |
---|
5 | |
---|
6 | EHM_EXCEPTION(yin)(); |
---|
7 | EHM_EXCEPTION(yang)(); |
---|
8 | EHM_EXCEPTION(zen)(); |
---|
9 | |
---|
10 | EHM_VIRTUAL_TABLE(yin, yin_vt); |
---|
11 | EHM_VIRTUAL_TABLE(yang, yang_vt); |
---|
12 | EHM_VIRTUAL_TABLE(zen, zen_vt); |
---|
13 | |
---|
14 | void in_void(void); |
---|
15 | |
---|
16 | int main(int argc, char * argv[]) { |
---|
17 | yin a_yin = {&yin_vt}; |
---|
18 | yang a_yang = {&yang_vt}; |
---|
19 | zen a_zen = {&zen_vt}; |
---|
20 | |
---|
21 | // The simple throw catch test. |
---|
22 | try { |
---|
23 | loud_exit a = "simple try clause"; |
---|
24 | printf("simple throw\n"); |
---|
25 | throw a_zen; |
---|
26 | printf("end of try clause\n"); |
---|
27 | } catch (zen * error) { |
---|
28 | loud_exit a = "simple catch clause"; |
---|
29 | printf("simple catch\n"); |
---|
30 | } |
---|
31 | printf("\n"); |
---|
32 | |
---|
33 | // Throw catch-all test. |
---|
34 | try { |
---|
35 | throw a_zen; |
---|
36 | } catch (exception_t * error) { |
---|
37 | printf("catch-all\n"); |
---|
38 | } |
---|
39 | printf("\n"); |
---|
40 | |
---|
41 | // Don't catch if handler does not match exception. |
---|
42 | try { |
---|
43 | try { |
---|
44 | throw a_yin; |
---|
45 | } catch (zen *) { |
---|
46 | printf("caught yin as zen\n"); |
---|
47 | } |
---|
48 | } catch (yang *) { |
---|
49 | printf("caught yin as yang\n"); |
---|
50 | } catch (yin *) { |
---|
51 | printf("caught yin as yin\n"); |
---|
52 | } |
---|
53 | printf("\n"); |
---|
54 | |
---|
55 | // Test rethrowing an exception. |
---|
56 | try { |
---|
57 | try { |
---|
58 | loud_exit a = "rethrow inner try"; |
---|
59 | printf("rethrow inner try\n"); |
---|
60 | throw a_zen; |
---|
61 | } catch (zen *) { |
---|
62 | loud_exit a = "rethrowing catch clause"; |
---|
63 | printf("caught throw, will rethrow\n"); |
---|
64 | throw; |
---|
65 | } |
---|
66 | } catch (zen *) { |
---|
67 | loud_exit a = "rethrow catch clause"; |
---|
68 | printf("caught rethrow\n"); |
---|
69 | } |
---|
70 | printf("\n"); |
---|
71 | |
---|
72 | // Throw a different exception in a catch. |
---|
73 | try { |
---|
74 | try { |
---|
75 | throw a_yin; |
---|
76 | } catch (yin *) { |
---|
77 | printf("caught yin, will throw yang\n"); |
---|
78 | throw a_yang; |
---|
79 | } catch (yang *) { |
---|
80 | printf("caught exception from same try\n"); |
---|
81 | } |
---|
82 | } catch (yang *) { |
---|
83 | printf("caught yang\n"); |
---|
84 | } |
---|
85 | printf("\n"); |
---|
86 | |
---|
87 | // Another throw in the catch does not interfere. |
---|
88 | try { |
---|
89 | try { |
---|
90 | printf("throwing first exception\n"); |
---|
91 | throw a_yin; |
---|
92 | } catch (yin *) { |
---|
93 | printf("caught first exception\n"); |
---|
94 | try { |
---|
95 | printf("throwing second exception\n"); |
---|
96 | throw a_yang; |
---|
97 | } catch (yang *) { |
---|
98 | printf("caught second exception\n"); |
---|
99 | } |
---|
100 | throw; |
---|
101 | } |
---|
102 | } catch (yin *) { |
---|
103 | printf("recaught first exception\n"); |
---|
104 | } catch (yang *) { |
---|
105 | printf("caught second exception (bad location)\n"); |
---|
106 | } |
---|
107 | printf("\n"); |
---|
108 | |
---|
109 | // Check successive operations. |
---|
110 | try { |
---|
111 | try { |
---|
112 | throw a_zen; |
---|
113 | throw a_zen; |
---|
114 | } catch (zen *) { |
---|
115 | printf("inner catch\n"); |
---|
116 | } |
---|
117 | throw a_zen; |
---|
118 | } catch (zen *) { |
---|
119 | printf("outer catch\n"); |
---|
120 | } |
---|
121 | printf("\n"); |
---|
122 | |
---|
123 | in_void(); |
---|
124 | } |
---|
125 | |
---|
126 | // Do a throw and rethrow in a void function. |
---|
127 | void in_void(void) { |
---|
128 | zen a_zen = {&zen_vt}; |
---|
129 | try { |
---|
130 | try { |
---|
131 | printf("throw\n"); |
---|
132 | throw a_zen; |
---|
133 | } catch (zen *) { |
---|
134 | printf("rethrow\n"); |
---|
135 | throw; |
---|
136 | } |
---|
137 | } catch (zen *) { |
---|
138 | printf("handle\n"); |
---|
139 | } |
---|
140 | } |
---|