summaryrefslogtreecommitdiff
path: root/tests/errors/errors.c-expected
blob: 25c46745ad0435a8f1a240621b04831cc1b58f0b (plain)
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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
/* errors_errors.c generated by valac, the Vala compiler
 * generated from errors_errors.vala, do not modify */

#include <glib.h>
#include <glib-object.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#if !defined(VALA_EXTERN)
#if defined(_MSC_VER)
#define VALA_EXTERN __declspec(dllexport) extern
#elif __GNUC__ >= 4
#define VALA_EXTERN __attribute__((visibility("default"))) extern
#else
#define VALA_EXTERN extern
#endif
#endif

#define TYPE_BAR_ERROR (bar_error_get_type ())

#define TYPE_BAR (bar_get_type ())
#define BAR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), TYPE_BAR, Bar))
#define BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_BAR, BarClass))
#define IS_BAR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), TYPE_BAR))
#define IS_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_BAR))
#define BAR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_BAR, BarClass))

typedef struct _Bar Bar;
typedef struct _BarClass BarClass;
typedef struct _BarPrivate BarPrivate;
enum  {
	BAR_0_PROPERTY,
	BAR_NUM_PROPERTIES
};
static GParamSpec* bar_properties[BAR_NUM_PROPERTIES];
#define _g_error_free0(var) ((var == NULL) ? NULL : (var = (g_error_free (var), NULL)))
#define _g_object_unref0(var) ((var == NULL) ? NULL : (var = (g_object_unref (var), NULL)))

typedef enum  {
	BAR_ERROR_FOO,
	BAR_ERROR_BAR
} BarError;
#define BAR_ERROR bar_error_quark ()

struct _Bar {
	GObject parent_instance;
	BarPrivate * priv;
};

struct _BarClass {
	GObjectClass parent_class;
};

static gpointer bar_parent_class = NULL;

VALA_EXTERN GQuark bar_error_quark (void);
GType bar_error_get_type (void) G_GNUC_CONST ;
VALA_EXTERN GType bar_get_type (void) G_GNUC_CONST ;
G_DEFINE_AUTOPTR_CLEANUP_FUNC (Bar, g_object_unref)
VALA_EXTERN void bar_foo (Bar* self,
              GError** error);
VALA_EXTERN gint bar_bad (Bar* self,
              GError** error);
VALA_EXTERN void bar_good (Bar* self,
               GError** error);
VALA_EXTERN void bar_error_cast_check (Bar* self,
                           GError* e);
VALA_EXTERN void bar_run (Bar* self);
VALA_EXTERN void bar_test_generic_catch (void);
VALA_EXTERN void bar_test_try_without_error (void);
VALA_EXTERN Bar* bar_new (void);
VALA_EXTERN Bar* bar_construct (GType object_type);
static GType bar_get_type_once (void);
static void _vala_main (void);

GQuark
bar_error_quark (void)
{
	return g_quark_from_static_string ("bar-error-quark");
}

static GType
bar_error_get_type_once (void)
{
	static const GEnumValue values[] = {{BAR_ERROR_FOO, "BAR_ERROR_FOO", "foo"}, {BAR_ERROR_BAR, "BAR_ERROR_BAR", "bar"}, {0, NULL, NULL}};
	GType bar_error_type_id;
	bar_error_type_id = g_enum_register_static ("BarError", values);
	return bar_error_type_id;
}

GType
bar_error_get_type (void)
{
	static volatile gsize bar_error_type_id__once = 0;
	if (g_once_init_enter (&bar_error_type_id__once)) {
		GType bar_error_type_id;
		bar_error_type_id = bar_error_get_type_once ();
		g_once_init_leave (&bar_error_type_id__once, bar_error_type_id);
	}
	return bar_error_type_id__once;
}

void
bar_foo (Bar* self,
         GError** error)
{
	FILE* _tmp0_;
	GError* _tmp1_;
	GError* _inner_error0_ = NULL;
	g_return_if_fail (IS_BAR (self));
	_tmp0_ = stdout;
	fprintf (_tmp0_, " 6");
	_tmp1_ = g_error_new_literal (BAR_ERROR, BAR_ERROR_FOO, " 8");
	_inner_error0_ = _tmp1_;
	if (_inner_error0_->domain == BAR_ERROR) {
		g_propagate_error (error, _inner_error0_);
		return;
	} else {
		g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error0_->message, g_quark_to_string (_inner_error0_->domain), _inner_error0_->code);
		g_clear_error (&_inner_error0_);
		return;
	}
	g_assert_not_reached ();
}

gint
bar_bad (Bar* self,
         GError** error)
{
	FILE* _tmp0_;
	GError* _inner_error0_ = NULL;
	gint result;
	g_return_val_if_fail (IS_BAR (self), 0);
	_tmp0_ = stdout;
	fprintf (_tmp0_, " 5");
	bar_foo (self, &_inner_error0_);
	if (G_UNLIKELY (_inner_error0_ != NULL)) {
		if (_inner_error0_->domain == BAR_ERROR) {
			gint _tmp1_ = -1;
			g_propagate_error (error, _inner_error0_);
			return _tmp1_;
		} else {
			gint _tmp2_ = -1;
			g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error0_->message, g_quark_to_string (_inner_error0_->domain), _inner_error0_->code);
			g_clear_error (&_inner_error0_);
			return _tmp2_;
		}
	}
	g_assert_not_reached ();
	result = 0;
	return result;
}

void
bar_good (Bar* self,
          GError** error)
{
	FILE* _tmp0_;
	g_return_if_fail (IS_BAR (self));
	_tmp0_ = stdout;
	fprintf (_tmp0_, " 4");
}

void
bar_error_cast_check (Bar* self,
                      GError* e)
{
	g_return_if_fail (IS_BAR (self));
	g_return_if_fail (e != NULL);
}

void
bar_run (Bar* self)
{
	FILE* _tmp0_;
	FILE* _tmp6_;
	GError* _inner_error0_ = NULL;
	g_return_if_fail (IS_BAR (self));
	_tmp0_ = stdout;
	fprintf (_tmp0_, " 2");
	{
		FILE* _tmp1_;
		gint i = 0;
		_tmp1_ = stdout;
		fprintf (_tmp1_, " 3");
		bar_good (self, &_inner_error0_);
		if (G_UNLIKELY (_inner_error0_ != NULL)) {
			if (_inner_error0_->domain == BAR_ERROR) {
				goto __catch0_bar_error;
			}
			g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error0_->message, g_quark_to_string (_inner_error0_->domain), _inner_error0_->code);
			g_clear_error (&_inner_error0_);
			return;
		}
		i = bar_bad (self, &_inner_error0_);
		if (G_UNLIKELY (_inner_error0_ != NULL)) {
			if (_inner_error0_->domain == BAR_ERROR) {
				goto __catch0_bar_error;
			}
			g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error0_->message, g_quark_to_string (_inner_error0_->domain), _inner_error0_->code);
			g_clear_error (&_inner_error0_);
			return;
		}
		bar_good (self, &_inner_error0_);
		if (G_UNLIKELY (_inner_error0_ != NULL)) {
			if (_inner_error0_->domain == BAR_ERROR) {
				goto __catch0_bar_error;
			}
			g_critical ("file %s: line %d: unexpected error: %s (%s, %d)", __FILE__, __LINE__, _inner_error0_->message, g_quark_to_string (_inner_error0_->domain), _inner_error0_->code);
			g_clear_error (&_inner_error0_);
			return;
		}
		g_assert_not_reached ();
	}
	goto __finally0;
	__catch0_bar_error:
	{
		GError* e = NULL;
		FILE* _tmp2_;
		FILE* _tmp3_;
		const gchar* _tmp4_;
		FILE* _tmp5_;
		e = _inner_error0_;
		_inner_error0_ = NULL;
		_tmp2_ = stdout;
		fprintf (_tmp2_, " 7");
		_tmp3_ = stdout;
		_tmp4_ = e->message;
		fprintf (_tmp3_, "%s", _tmp4_);
		_tmp5_ = stdout;
		fprintf (_tmp5_, " 9");
		_g_error_free0 (e);
	}
	__finally0:
	if (G_UNLIKELY (_inner_error0_ != NULL)) {
		g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error0_->message, g_quark_to_string (_inner_error0_->domain), _inner_error0_->code);
		g_clear_error (&_inner_error0_);
		return;
	}
	_tmp6_ = stdout;
	fprintf (_tmp6_, " 10");
}

void
bar_test_generic_catch (void)
{
	GError* _inner_error0_ = NULL;
	{
		GError* _tmp0_;
		_tmp0_ = g_error_new_literal (BAR_ERROR, BAR_ERROR_FOO, "error message");
		_inner_error0_ = _tmp0_;
		goto __catch0_g_error;
	}
	goto __finally0;
	__catch0_g_error:
	{
		GError* e = NULL;
		gboolean _tmp1_ = FALSE;
		GError* _tmp2_;
		e = _inner_error0_;
		_inner_error0_ = NULL;
		_tmp2_ = e;
		if (_tmp2_->domain == BAR_ERROR) {
			GError* _tmp3_;
			_tmp3_ = e;
			_tmp1_ = g_error_matches (_tmp3_, BAR_ERROR, BAR_ERROR_FOO);
		} else {
			_tmp1_ = FALSE;
		}
		if (_tmp1_) {
			_g_error_free0 (e);
			return;
		}
		_g_error_free0 (e);
	}
	__finally0:
	if (G_UNLIKELY (_inner_error0_ != NULL)) {
		g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error0_->message, g_quark_to_string (_inner_error0_->domain), _inner_error0_->code);
		g_clear_error (&_inner_error0_);
		return;
	}
	g_assert_not_reached ();
}

void
bar_test_try_without_error (void)
{
	GError* _inner_error0_ = NULL;
	{
	}
	goto __finally0;
	__catch0_g_error:
	{
		g_clear_error (&_inner_error0_);
		g_assert_not_reached ();
	}
	__finally0:
	if (G_UNLIKELY (_inner_error0_ != NULL)) {
		g_critical ("file %s: line %d: uncaught error: %s (%s, %d)", __FILE__, __LINE__, _inner_error0_->message, g_quark_to_string (_inner_error0_->domain), _inner_error0_->code);
		g_clear_error (&_inner_error0_);
		return;
	}
}

Bar*
bar_construct (GType object_type)
{
	Bar * self = NULL;
	self = (Bar*) g_object_new (object_type, NULL);
	return self;
}

Bar*
bar_new (void)
{
	return bar_construct (TYPE_BAR);
}

static void
bar_class_init (BarClass * klass,
                gpointer klass_data)
{
	bar_parent_class = g_type_class_peek_parent (klass);
}

static void
bar_instance_init (Bar * self,
                   gpointer klass)
{
}

static GType
bar_get_type_once (void)
{
	static const GTypeInfo g_define_type_info = { sizeof (BarClass), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) bar_class_init, (GClassFinalizeFunc) NULL, NULL, sizeof (Bar), 0, (GInstanceInitFunc) bar_instance_init, NULL };
	GType bar_type_id;
	bar_type_id = g_type_register_static (G_TYPE_OBJECT, "Bar", &g_define_type_info, 0);
	return bar_type_id;
}

GType
bar_get_type (void)
{
	static volatile gsize bar_type_id__once = 0;
	if (g_once_init_enter (&bar_type_id__once)) {
		GType bar_type_id;
		bar_type_id = bar_get_type_once ();
		g_once_init_leave (&bar_type_id__once, bar_type_id);
	}
	return bar_type_id__once;
}

static void
_vala_main (void)
{
	FILE* _tmp0_;
	Bar* bar = NULL;
	Bar* _tmp1_;
	FILE* _tmp2_;
	_tmp0_ = stdout;
	fprintf (_tmp0_, "Exception Test: 1");
	_tmp1_ = bar_new ();
	bar = _tmp1_;
	bar_run (bar);
	_tmp2_ = stdout;
	fprintf (_tmp2_, " 11\n");
	bar_test_generic_catch ();
	bar_test_try_without_error ();
	_g_object_unref0 (bar);
}

int
main (int argc,
      char ** argv)
{
	_vala_main ();
	return 0;
}