File: streamiterator.c

package info (click to toggle)
libgee-0.8 0.20.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,704 kB
  • sloc: ansic: 134,718; sh: 4,838; makefile: 372
file content (987 lines) | stat: -rw-r--r-- 36,116 bytes parent folder | download | duplicates (2)
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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
/* streamiterator.c generated by valac 0.56.17, the Vala compiler
 * generated from streamiterator.vala, do not modify */

/* streamiterator.vala
 *
 * Copyright (C) 2013  Maciej Piechotka
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.

 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.

 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
 *
 * Author:
 * 	Maciej Piechotka <uzytkownik2@gmail.com>
 */

#include <glib-object.h>
#include "gee.h"
#include <glib.h>

#if !defined(VALA_STRICT_C)
#if !defined(__clang__) && defined(__GNUC__) && (__GNUC__ >= 14)
#pragma GCC diagnostic warning "-Wincompatible-pointer-types"
#elif defined(__clang__) && (__clang_major__ >= 16)
#pragma clang diagnostic ignored "-Wincompatible-function-pointer-types"
#pragma clang diagnostic ignored "-Wincompatible-pointer-types"
#endif
#endif

#define GEE_TYPE_STREAM_ITERATOR (gee_stream_iterator_get_type ())
#define GEE_STREAM_ITERATOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GEE_TYPE_STREAM_ITERATOR, GeeStreamIterator))
#define GEE_STREAM_ITERATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GEE_TYPE_STREAM_ITERATOR, GeeStreamIteratorClass))
#define GEE_IS_STREAM_ITERATOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GEE_TYPE_STREAM_ITERATOR))
#define GEE_IS_STREAM_ITERATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GEE_TYPE_STREAM_ITERATOR))
#define GEE_STREAM_ITERATOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GEE_TYPE_STREAM_ITERATOR, GeeStreamIteratorClass))

typedef struct _GeeStreamIterator GeeStreamIterator;
typedef struct _GeeStreamIteratorClass GeeStreamIteratorClass;
typedef struct _GeeStreamIteratorPrivate GeeStreamIteratorPrivate;
enum  {
	GEE_STREAM_ITERATOR_0_PROPERTY,
	GEE_STREAM_ITERATOR_A_TYPE,
	GEE_STREAM_ITERATOR_A_DUP_FUNC,
	GEE_STREAM_ITERATOR_A_DESTROY_FUNC,
	GEE_STREAM_ITERATOR_G_TYPE,
	GEE_STREAM_ITERATOR_G_DUP_FUNC,
	GEE_STREAM_ITERATOR_G_DESTROY_FUNC,
	GEE_STREAM_ITERATOR_VALID_PROPERTY,
	GEE_STREAM_ITERATOR_READ_ONLY_PROPERTY,
	GEE_STREAM_ITERATOR_NUM_PROPERTIES
};
static GParamSpec* gee_stream_iterator_properties[GEE_STREAM_ITERATOR_NUM_PROPERTIES];
#define _g_object_unref0(var) ((var == NULL) ? NULL : (var = (g_object_unref (var), NULL)))
#define _gee_lazy_unref0(var) ((var == NULL) ? NULL : (var = (gee_lazy_unref (var), NULL)))
typedef struct _Block12Data Block12Data;
#define _vala_assert(expr, msg) if G_LIKELY (expr) ; else g_assertion_message_expr (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, msg);
#define _vala_return_if_fail(expr, msg) if G_LIKELY (expr) ; else { g_return_if_fail_warning (G_LOG_DOMAIN, G_STRFUNC, msg); return; }
#define _vala_return_val_if_fail(expr, msg, val) if G_LIKELY (expr) ; else { g_return_if_fail_warning (G_LOG_DOMAIN, G_STRFUNC, msg); return val; }
#define _vala_warn_if_fail(expr, msg) if G_LIKELY (expr) ; else g_warn_message (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, msg);

struct _GeeStreamIterator {
	GObject parent_instance;
	GeeStreamIteratorPrivate * priv;
};

struct _GeeStreamIteratorClass {
	GObjectClass parent_class;
};

struct _GeeStreamIteratorPrivate {
	GType a_type;
	GBoxedCopyFunc a_dup_func;
	GDestroyNotify a_destroy_func;
	GType g_type;
	GBoxedCopyFunc g_dup_func;
	GDestroyNotify g_destroy_func;
	GeeIterator* _outer;
	GeeStreamFunc _func;
	gpointer _func_target;
	GDestroyNotify _func_target_destroy_notify;
	GeeLazy* _outer_value;
	GeeLazy* _current;
	GeeLazy* _next;
	GeeTraversableStream _state;
	gboolean _need_next;
	gboolean _finished;
};

struct _Block12Data {
	int _ref_count_;
	GType a_type;
	GBoxedCopyFunc a_dup_func;
	GDestroyNotify a_destroy_func;
	GType g_type;
	GBoxedCopyFunc g_dup_func;
	GDestroyNotify g_destroy_func;
	GeeIterator* outer;
};

static gint GeeStreamIterator_private_offset;
static gpointer gee_stream_iterator_parent_class = NULL;
static GeeTraversableIface * gee_stream_iterator_gee_traversable_parent_iface = NULL;
static GeeIteratorIface * gee_stream_iterator_gee_iterator_parent_iface = NULL;

 G_GNUC_INTERNAL GType gee_stream_iterator_get_type (void) G_GNUC_CONST  G_GNUC_UNUSED ;
 G_GNUC_INTERNAL GeeStreamIterator* gee_stream_iterator_new (GType a_type,
                                            GBoxedCopyFunc a_dup_func,
                                            GDestroyNotify a_destroy_func,
                                            GType g_type,
                                            GBoxedCopyFunc g_dup_func,
                                            GDestroyNotify g_destroy_func,
                                            GeeIterator* outer,
                                            GeeStreamFunc func,
                                            gpointer func_target,
                                            GDestroyNotify func_target_destroy_notify);
 G_GNUC_INTERNAL GeeStreamIterator* gee_stream_iterator_construct (GType object_type,
                                                  GType a_type,
                                                  GBoxedCopyFunc a_dup_func,
                                                  GDestroyNotify a_destroy_func,
                                                  GType g_type,
                                                  GBoxedCopyFunc g_dup_func,
                                                  GDestroyNotify g_destroy_func,
                                                  GeeIterator* outer,
                                                  GeeStreamFunc func,
                                                  gpointer func_target,
                                                  GDestroyNotify func_target_destroy_notify);
static gpointer ____lambda8_ (GeeStreamIterator* self);
static gpointer _____lambda8__gee_lazy_func (gpointer self);
static gboolean gee_stream_iterator_real_foreach (GeeTraversable* base,
                                           GeeForallFunc f,
                                           gpointer f_target);
static inline GeeLazy* gee_stream_iterator_yield_next (GType a_type,
                                         GBoxedCopyFunc a_dup_func,
                                         GDestroyNotify a_destroy_func,
                                         GType g_type,
                                         GBoxedCopyFunc g_dup_func,
                                         GDestroyNotify g_destroy_func,
                                         GeeIterator* outer,
                                         GeeStreamFunc func,
                                         gpointer func_target,
                                         GeeTraversableStream* state,
                                         gboolean* need_next,
                                         GeeLazy** outer_value);
static gboolean gee_stream_iterator_real_next (GeeIterator* base);
static gboolean gee_stream_iterator_real_has_next (GeeIterator* base);
static gpointer gee_stream_iterator_real_get (GeeIterator* base);
static void gee_stream_iterator_real_remove (GeeIterator* base);
static Block12Data* block12_data_ref (Block12Data* _data12_);
static void block12_data_unref (void * _userdata_);
static gpointer _____lambda9_ (Block12Data* _data12_);
static gpointer ______lambda9__gee_lazy_func (gpointer self);
static gpointer _____lambda10_ (Block12Data* _data12_);
static gpointer ______lambda10__gee_lazy_func (gpointer self);
static void gee_stream_iterator_finalize (GObject * obj);
static GType gee_stream_iterator_get_type_once (void);
static void _vala_gee_stream_iterator_get_property (GObject * object,
                                             guint property_id,
                                             GValue * value,
                                             GParamSpec * pspec);
static void _vala_gee_stream_iterator_set_property (GObject * object,
                                             guint property_id,
                                             const GValue * value,
                                             GParamSpec * pspec);

static inline gpointer
gee_stream_iterator_get_instance_private (GeeStreamIterator* self)
{
	return G_STRUCT_MEMBER_P (self, GeeStreamIterator_private_offset);
}

static gpointer
_g_object_ref0 (gpointer self)
{
	return self ? g_object_ref (self) : NULL;
}

static gpointer
____lambda8_ (GeeStreamIterator* self)
{
	GeeIterator* _tmp0_;
	gpointer _tmp1_;
	gpointer result;
	_tmp0_ = self->priv->_outer;
	_tmp1_ = gee_iterator_get (_tmp0_);
	result = _tmp1_;
	return result;
}

static gpointer
_____lambda8__gee_lazy_func (gpointer self)
{
	gpointer result;
	result = ____lambda8_ ((GeeStreamIterator*) self);
	return result;
}

 G_GNUC_INTERNAL GeeStreamIterator*
gee_stream_iterator_construct (GType object_type,
                               GType a_type,
                               GBoxedCopyFunc a_dup_func,
                               GDestroyNotify a_destroy_func,
                               GType g_type,
                               GBoxedCopyFunc g_dup_func,
                               GDestroyNotify g_destroy_func,
                               GeeIterator* outer,
                               GeeStreamFunc func,
                               gpointer func_target,
                               GDestroyNotify func_target_destroy_notify)
{
	GeeStreamIterator * self = NULL;
	GeeIterator* _tmp0_;
	GeeStreamFunc _tmp1_;
	gpointer _tmp1__target;
	GDestroyNotify _tmp1__target_destroy_notify;
	GeeStreamFunc _tmp2_;
	gpointer _tmp2__target;
	GeeLazy* _tmp3_ = NULL;
	GeeTraversableStream _tmp4_;
	g_return_val_if_fail (outer != NULL, NULL);
	self = (GeeStreamIterator*) g_object_new (object_type, "a-type", a_type, "a-dup-func", a_dup_func, "a-destroy-func", a_destroy_func, "g-type", g_type, "g-dup-func", g_dup_func, "g-destroy-func", g_destroy_func, NULL);
	self->priv->a_type = a_type;
	self->priv->a_dup_func = a_dup_func;
	self->priv->a_destroy_func = a_destroy_func;
	self->priv->g_type = g_type;
	self->priv->g_dup_func = g_dup_func;
	self->priv->g_destroy_func = g_destroy_func;
	_tmp0_ = _g_object_ref0 (outer);
	_g_object_unref0 (self->priv->_outer);
	self->priv->_outer = _tmp0_;
	_tmp1_ = func;
	_tmp1__target = func_target;
	_tmp1__target_destroy_notify = func_target_destroy_notify;
	func = NULL;
	func_target = NULL;
	func_target_destroy_notify = NULL;
	(self->priv->_func_target_destroy_notify == NULL) ? NULL : (self->priv->_func_target_destroy_notify (self->priv->_func_target), NULL);
	self->priv->_func = NULL;
	self->priv->_func_target = NULL;
	self->priv->_func_target_destroy_notify = NULL;
	self->priv->_func = _tmp1_;
	self->priv->_func_target = _tmp1__target;
	self->priv->_func_target_destroy_notify = _tmp1__target_destroy_notify;
	_gee_lazy_unref0 (self->priv->_current);
	self->priv->_current = NULL;
	self->priv->_need_next = TRUE;
	self->priv->_finished = FALSE;
	_tmp2_ = self->priv->_func;
	_tmp2__target = self->priv->_func_target;
	_tmp4_ = _tmp2_ (GEE_TRAVERSABLE_STREAM_YIELD, NULL, &_tmp3_, _tmp2__target);
	_gee_lazy_unref0 (self->priv->_current);
	self->priv->_current = _tmp3_;
	self->priv->_state = _tmp4_;
	switch (self->priv->_state) {
		case GEE_TRAVERSABLE_STREAM_WAIT:
		case GEE_TRAVERSABLE_STREAM_YIELD:
		{
			GeeIterator* _tmp5_;
			gboolean _tmp6_;
			gboolean _tmp7_;
			_tmp5_ = self->priv->_outer;
			_tmp6_ = gee_iterator_get_valid (_tmp5_);
			_tmp7_ = _tmp6_;
			self->priv->_need_next = !_tmp7_;
			break;
		}
		case GEE_TRAVERSABLE_STREAM_CONTINUE:
		{
			GeeIterator* _tmp8_;
			gboolean _tmp9_;
			gboolean _tmp10_;
			_tmp8_ = self->priv->_outer;
			_tmp9_ = gee_iterator_get_valid (_tmp8_);
			_tmp10_ = _tmp9_;
			if (_tmp10_) {
				GeeStreamFunc _tmp11_;
				gpointer _tmp11__target;
				GeeLazy* _tmp12_;
				GeeLazy* _tmp13_ = NULL;
				GeeTraversableStream _tmp14_;
				_tmp11_ = self->priv->_func;
				_tmp11__target = self->priv->_func_target;
				_tmp12_ = gee_lazy_new (g_type, (GBoxedCopyFunc) g_dup_func, (GDestroyNotify) g_destroy_func, _____lambda8__gee_lazy_func, g_object_ref (self), g_object_unref);
				_tmp14_ = _tmp11_ (self->priv->_state, _tmp12_, &_tmp13_, _tmp11__target);
				_gee_lazy_unref0 (self->priv->_current);
				self->priv->_current = _tmp13_;
				self->priv->_state = _tmp14_;
				switch (self->priv->_state) {
					case GEE_TRAVERSABLE_STREAM_YIELD:
					case GEE_TRAVERSABLE_STREAM_CONTINUE:
					case GEE_TRAVERSABLE_STREAM_WAIT:
					{
						break;
					}
					case GEE_TRAVERSABLE_STREAM_END:
					{
						self->priv->_finished = TRUE;
						(func_target_destroy_notify == NULL) ? NULL : (func_target_destroy_notify (func_target), NULL);
						func = NULL;
						func_target = NULL;
						func_target_destroy_notify = NULL;
						return self;
					}
					default:
					{
						g_assert_not_reached ();
					}
				}
			}
			break;
		}
		case GEE_TRAVERSABLE_STREAM_END:
		{
			self->priv->_finished = TRUE;
			(func_target_destroy_notify == NULL) ? NULL : (func_target_destroy_notify (func_target), NULL);
			func = NULL;
			func_target = NULL;
			func_target_destroy_notify = NULL;
			return self;
		}
		default:
		break;
	}
	(func_target_destroy_notify == NULL) ? NULL : (func_target_destroy_notify (func_target), NULL);
	func = NULL;
	func_target = NULL;
	func_target_destroy_notify = NULL;
	return self;
}

 G_GNUC_INTERNAL GeeStreamIterator*
gee_stream_iterator_new (GType a_type,
                         GBoxedCopyFunc a_dup_func,
                         GDestroyNotify a_destroy_func,
                         GType g_type,
                         GBoxedCopyFunc g_dup_func,
                         GDestroyNotify g_destroy_func,
                         GeeIterator* outer,
                         GeeStreamFunc func,
                         gpointer func_target,
                         GDestroyNotify func_target_destroy_notify)
{
	return gee_stream_iterator_construct (GEE_TYPE_STREAM_ITERATOR, a_type, a_dup_func, a_destroy_func, g_type, g_dup_func, g_destroy_func, outer, func, func_target, func_target_destroy_notify);
}

static gpointer
_gee_lazy_ref0 (gpointer self)
{
	return self ? gee_lazy_ref (self) : NULL;
}

static gboolean
gee_stream_iterator_real_foreach (GeeTraversable* base,
                                  GeeForallFunc f,
                                  gpointer f_target)
{
	GeeStreamIterator * self;
	GeeLazy* current = NULL;
	GeeLazy* _tmp0_;
	GeeLazy* _tmp5_;
	GeeIterator* outer = NULL;
	GeeIterator* _tmp11_;
	GeeStreamFunc func = NULL;
	GeeStreamFunc _tmp12_;
	gpointer _tmp12__target;
	gpointer func_target;
	GeeTraversableStream state = 0;
	gboolean need_next = FALSE;
	gboolean _result_ = FALSE;
	GeeLazy* next_current = NULL;
	GeeLazy* outer_value = NULL;
	GeeLazy* _tmp13_;
	GeeLazy* _tmp14_;
	GeeLazy* _tmp24_;
	GeeLazy* _tmp25_;
	gboolean result;
	self = (GeeStreamIterator*) base;
	current = NULL;
	_tmp0_ = self->priv->_current;
	if (_tmp0_ != NULL) {
		GeeLazy* _tmp1_;
		gconstpointer _tmp2_;
		gconstpointer _tmp3_;
		gpointer _tmp4_;
		_tmp1_ = self->priv->_current;
		_tmp2_ = gee_lazy_get_value (_tmp1_);
		_tmp3_ = _tmp2_;
		_tmp4_ = ((_tmp3_ != NULL) && (self->priv->a_dup_func != NULL)) ? self->priv->a_dup_func ((gpointer) _tmp3_) : ((gpointer) _tmp3_);
		if (!f (_tmp4_, f_target)) {
			result = FALSE;
			_gee_lazy_unref0 (current);
			return result;
		}
	}
	_tmp5_ = self->priv->_next;
	if (_tmp5_ != NULL) {
		GeeLazy* _tmp6_;
		GeeLazy* _tmp7_;
		gconstpointer _tmp8_;
		gconstpointer _tmp9_;
		gpointer _tmp10_;
		_tmp6_ = self->priv->_next;
		self->priv->_next = NULL;
		_gee_lazy_unref0 (current);
		current = _tmp6_;
		_tmp7_ = current;
		_tmp8_ = gee_lazy_get_value (_tmp7_);
		_tmp9_ = _tmp8_;
		_tmp10_ = ((_tmp9_ != NULL) && (self->priv->a_dup_func != NULL)) ? self->priv->a_dup_func ((gpointer) _tmp9_) : ((gpointer) _tmp9_);
		if (!f (_tmp10_, f_target)) {
			result = FALSE;
			_gee_lazy_unref0 (current);
			return result;
		}
	} else {
		if (self->priv->_finished) {
			result = TRUE;
			_gee_lazy_unref0 (current);
			return result;
		}
	}
	_tmp11_ = self->priv->_outer;
	outer = _tmp11_;
	_tmp12_ = self->priv->_func;
	_tmp12__target = self->priv->_func_target;
	func = _tmp12_;
	func_target = _tmp12__target;
	state = self->priv->_state;
	need_next = self->priv->_need_next;
	_result_ = TRUE;
	_tmp13_ = self->priv->_outer_value;
	_tmp14_ = _gee_lazy_ref0 (_tmp13_);
	outer_value = _tmp14_;
	while (TRUE) {
		GeeIterator* _tmp15_;
		GeeStreamFunc _tmp16_;
		gpointer _tmp16__target;
		GeeLazy* _tmp17_;
		GeeLazy* _tmp18_;
		GeeLazy* _tmp19_;
		GeeLazy* _tmp20_;
		gconstpointer _tmp21_;
		gconstpointer _tmp22_;
		gpointer _tmp23_;
		_tmp15_ = outer;
		_tmp16_ = func;
		_tmp16__target = func_target;
		_tmp17_ = gee_stream_iterator_yield_next (self->priv->a_type, (GBoxedCopyFunc) self->priv->a_dup_func, (GDestroyNotify) self->priv->a_destroy_func, self->priv->g_type, (GBoxedCopyFunc) self->priv->g_dup_func, (GDestroyNotify) self->priv->g_destroy_func, _tmp15_, _tmp16_, _tmp16__target, &state, &need_next, &outer_value);
		_gee_lazy_unref0 (next_current);
		next_current = _tmp17_;
		_tmp18_ = next_current;
		if (!(_tmp18_ != NULL)) {
			break;
		}
		_tmp19_ = next_current;
		next_current = NULL;
		_gee_lazy_unref0 (current);
		current = _tmp19_;
		_tmp20_ = current;
		_tmp21_ = gee_lazy_get_value (_tmp20_);
		_tmp22_ = _tmp21_;
		_tmp23_ = ((_tmp22_ != NULL) && (self->priv->a_dup_func != NULL)) ? self->priv->a_dup_func ((gpointer) _tmp22_) : ((gpointer) _tmp22_);
		if (!f (_tmp23_, f_target)) {
			_result_ = FALSE;
			break;
		}
	}
	self->priv->_state = state;
	self->priv->_need_next = need_next;
	self->priv->_finished = _result_;
	_tmp24_ = current;
	current = NULL;
	_gee_lazy_unref0 (self->priv->_current);
	self->priv->_current = _tmp24_;
	_tmp25_ = outer_value;
	outer_value = NULL;
	_gee_lazy_unref0 (self->priv->_outer_value);
	self->priv->_outer_value = _tmp25_;
	result = _result_;
	_gee_lazy_unref0 (outer_value);
	_gee_lazy_unref0 (next_current);
	_gee_lazy_unref0 (current);
	return result;
}

static gboolean
gee_stream_iterator_real_next (GeeIterator* base)
{
	GeeStreamIterator * self;
	gboolean result;
	self = (GeeStreamIterator*) base;
	if (gee_iterator_has_next ((GeeIterator*) self)) {
		GeeLazy* _tmp0_;
		GeeLazy* _tmp2_;
		_tmp0_ = self->priv->_current;
		if (_tmp0_ != NULL) {
			GeeLazy* _tmp1_;
			_tmp1_ = self->priv->_current;
			gee_lazy_eval (_tmp1_);
		}
		_tmp2_ = self->priv->_next;
		self->priv->_next = NULL;
		_gee_lazy_unref0 (self->priv->_current);
		self->priv->_current = _tmp2_;
		result = TRUE;
		return result;
	} else {
		result = FALSE;
		return result;
	}
}

static gboolean
gee_stream_iterator_real_has_next (GeeIterator* base)
{
	GeeStreamIterator * self;
	GeeLazy* _tmp0_;
	GeeIterator* _tmp1_;
	GeeStreamFunc _tmp2_;
	gpointer _tmp2__target;
	GeeLazy* _tmp3_;
	GeeLazy* _tmp4_;
	gboolean result;
	self = (GeeStreamIterator*) base;
	if (self->priv->_finished) {
		result = FALSE;
		return result;
	}
	_tmp0_ = self->priv->_next;
	if (_tmp0_ != NULL) {
		result = TRUE;
		return result;
	}
	_tmp1_ = self->priv->_outer;
	_tmp2_ = self->priv->_func;
	_tmp2__target = self->priv->_func_target;
	_tmp3_ = gee_stream_iterator_yield_next (self->priv->a_type, (GBoxedCopyFunc) self->priv->a_dup_func, (GDestroyNotify) self->priv->a_destroy_func, self->priv->g_type, (GBoxedCopyFunc) self->priv->g_dup_func, (GDestroyNotify) self->priv->g_destroy_func, _tmp1_, _tmp2_, _tmp2__target, &self->priv->_state, &self->priv->_need_next, &self->priv->_outer_value);
	_gee_lazy_unref0 (self->priv->_next);
	self->priv->_next = _tmp3_;
	_tmp4_ = self->priv->_next;
	self->priv->_finished = _tmp4_ == NULL;
	result = !self->priv->_finished;
	return result;
}

static gpointer
gee_stream_iterator_real_get (GeeIterator* base)
{
	GeeStreamIterator * self;
	GeeLazy* _tmp0_;
	GeeLazy* _tmp1_;
	gconstpointer _tmp2_;
	gconstpointer _tmp3_;
	gpointer _tmp4_;
	gpointer result;
	self = (GeeStreamIterator*) base;
	_tmp0_ = self->priv->_current;
	_vala_assert (_tmp0_ != NULL, "_current != null");
	_tmp1_ = self->priv->_current;
	_tmp2_ = gee_lazy_get_value (_tmp1_);
	_tmp3_ = _tmp2_;
	_tmp4_ = ((_tmp3_ != NULL) && (self->priv->a_dup_func != NULL)) ? self->priv->a_dup_func ((gpointer) _tmp3_) : ((gpointer) _tmp3_);
	result = _tmp4_;
	return result;
}

static void
gee_stream_iterator_real_remove (GeeIterator* base)
{
	GeeStreamIterator * self;
	self = (GeeStreamIterator*) base;
	g_assert_not_reached ();
}

static Block12Data*
block12_data_ref (Block12Data* _data12_)
{
	g_atomic_int_inc (&_data12_->_ref_count_);
	return _data12_;
}

static void
block12_data_unref (void * _userdata_)
{
	Block12Data* _data12_;
	_data12_ = (Block12Data*) _userdata_;
	if (g_atomic_int_dec_and_test (&_data12_->_ref_count_)) {
		GType a_type;
		GBoxedCopyFunc a_dup_func;
		GDestroyNotify a_destroy_func;
		GType g_type;
		GBoxedCopyFunc g_dup_func;
		GDestroyNotify g_destroy_func;
		a_type = _data12_->a_type;
		a_dup_func = _data12_->a_dup_func;
		a_destroy_func = _data12_->a_destroy_func;
		g_type = _data12_->g_type;
		g_dup_func = _data12_->g_dup_func;
		g_destroy_func = _data12_->g_destroy_func;
		_g_object_unref0 (_data12_->outer);
		g_slice_free (Block12Data, _data12_);
	}
}

static gpointer
_____lambda9_ (Block12Data* _data12_)
{
	GType a_type;
	GBoxedCopyFunc a_dup_func;
	GDestroyNotify a_destroy_func;
	GType g_type;
	GBoxedCopyFunc g_dup_func;
	GDestroyNotify g_destroy_func;
	gpointer _tmp0_;
	gpointer result;
	a_type = _data12_->a_type;
	a_dup_func = _data12_->a_dup_func;
	a_destroy_func = _data12_->a_destroy_func;
	g_type = _data12_->g_type;
	g_dup_func = _data12_->g_dup_func;
	g_destroy_func = _data12_->g_destroy_func;
	_vala_assert (gee_iterator_next (_data12_->outer), "outer.next ()");
	_tmp0_ = gee_iterator_get (_data12_->outer);
	result = _tmp0_;
	return result;
}

static gpointer
______lambda9__gee_lazy_func (gpointer self)
{
	gpointer result;
	result = _____lambda9_ (self);
	return result;
}

static gpointer
_____lambda10_ (Block12Data* _data12_)
{
	GType a_type;
	GBoxedCopyFunc a_dup_func;
	GDestroyNotify a_destroy_func;
	GType g_type;
	GBoxedCopyFunc g_dup_func;
	GDestroyNotify g_destroy_func;
	gpointer _tmp0_;
	gpointer result;
	a_type = _data12_->a_type;
	a_dup_func = _data12_->a_dup_func;
	a_destroy_func = _data12_->a_destroy_func;
	g_type = _data12_->g_type;
	g_dup_func = _data12_->g_dup_func;
	g_destroy_func = _data12_->g_destroy_func;
	_tmp0_ = gee_iterator_get (_data12_->outer);
	result = _tmp0_;
	return result;
}

static gpointer
______lambda10__gee_lazy_func (gpointer self)
{
	gpointer result;
	result = _____lambda10_ (self);
	return result;
}

static inline GeeLazy*
gee_stream_iterator_yield_next (GType a_type,
                                GBoxedCopyFunc a_dup_func,
                                GDestroyNotify a_destroy_func,
                                GType g_type,
                                GBoxedCopyFunc g_dup_func,
                                GDestroyNotify g_destroy_func,
                                GeeIterator* outer,
                                GeeStreamFunc func,
                                gpointer func_target,
                                GeeTraversableStream* state,
                                gboolean* need_next,
                                GeeLazy** outer_value)
{
	Block12Data* _data12_;
	GeeIterator* _tmp0_;
	GeeLazy* value = NULL;
	GeeLazy* result;
	g_return_val_if_fail (outer != NULL, NULL);
	_data12_ = g_slice_new0 (Block12Data);
	_data12_->_ref_count_ = 1;
	_data12_->a_type = a_type;
	_data12_->a_dup_func = a_dup_func;
	_data12_->a_destroy_func = a_destroy_func;
	_data12_->g_type = g_type;
	_data12_->g_dup_func = g_dup_func;
	_data12_->g_destroy_func = g_destroy_func;
	_tmp0_ = _g_object_ref0 (outer);
	_g_object_unref0 (_data12_->outer);
	_data12_->outer = _tmp0_;
	value = NULL;
	if ((*state) != GEE_TRAVERSABLE_STREAM_CONTINUE) {
		GeeLazy* _tmp1_ = NULL;
		GeeTraversableStream _tmp2_;
		_tmp2_ = func (*state, NULL, &_tmp1_, func_target);
		_gee_lazy_unref0 (value);
		value = _tmp1_;
		*state = _tmp2_;
	}
	while (TRUE) {
		switch (*state) {
			case GEE_TRAVERSABLE_STREAM_YIELD:
			{
				result = value;
				block12_data_unref (_data12_);
				_data12_ = NULL;
				return result;
			}
			case GEE_TRAVERSABLE_STREAM_CONTINUE:
			{
				GeeLazy* _tmp7_;
				GeeLazy* _tmp8_ = NULL;
				GeeTraversableStream _tmp9_;
				if ((*outer_value) != NULL) {
					gee_lazy_eval (*outer_value);
				}
				if (*need_next) {
					GeeLazy* _tmp5_;
					if (!gee_iterator_has_next (_data12_->outer)) {
						GeeLazy* _tmp3_ = NULL;
						GeeTraversableStream _tmp4_;
						_tmp4_ = func (GEE_TRAVERSABLE_STREAM_END, NULL, &_tmp3_, func_target);
						_gee_lazy_unref0 (value);
						value = _tmp3_;
						*state = _tmp4_;
						continue;
					}
					_tmp5_ = gee_lazy_new (g_type, (GBoxedCopyFunc) g_dup_func, (GDestroyNotify) g_destroy_func, ______lambda9__gee_lazy_func, block12_data_ref (_data12_), block12_data_unref);
					_gee_lazy_unref0 (*outer_value);
					*outer_value = _tmp5_;
				} else {
					GeeLazy* _tmp6_;
					*need_next = TRUE;
					_tmp6_ = gee_lazy_new (g_type, (GBoxedCopyFunc) g_dup_func, (GDestroyNotify) g_destroy_func, ______lambda10__gee_lazy_func, block12_data_ref (_data12_), block12_data_unref);
					_gee_lazy_unref0 (*outer_value);
					*outer_value = _tmp6_;
				}
				_tmp7_ = _gee_lazy_ref0 (*outer_value);
				_tmp9_ = func (*state, _tmp7_, &_tmp8_, func_target);
				_gee_lazy_unref0 (value);
				value = _tmp8_;
				*state = _tmp9_;
				break;
			}
			case GEE_TRAVERSABLE_STREAM_WAIT:
			{
				GeeLazy* _tmp10_ = NULL;
				GeeTraversableStream _tmp11_;
				_tmp11_ = func (*state, NULL, &_tmp10_, func_target);
				_gee_lazy_unref0 (value);
				value = _tmp10_;
				*state = _tmp11_;
				break;
			}
			case GEE_TRAVERSABLE_STREAM_END:
			{
				result = NULL;
				_gee_lazy_unref0 (value);
				block12_data_unref (_data12_);
				_data12_ = NULL;
				return result;
			}
			default:
			{
				g_assert_not_reached ();
			}
		}
	}
}

static gboolean
gee_stream_iterator_real_get_valid (GeeIterator* base)
{
	gboolean result;
	GeeStreamIterator* self;
	GeeLazy* _tmp0_;
	self = (GeeStreamIterator*) base;
	_tmp0_ = self->priv->_current;
	result = _tmp0_ != NULL;
	return result;
}

static gboolean
gee_stream_iterator_real_get_read_only (GeeIterator* base)
{
	gboolean result;
	GeeStreamIterator* self;
	self = (GeeStreamIterator*) base;
	result = TRUE;
	return result;
}

static void
gee_stream_iterator_class_init (GeeStreamIteratorClass * klass,
                                gpointer klass_data)
{
	gee_stream_iterator_parent_class = g_type_class_peek_parent (klass);
	g_type_class_adjust_private_offset (klass, &GeeStreamIterator_private_offset);
	G_OBJECT_CLASS (klass)->get_property = _vala_gee_stream_iterator_get_property;
	G_OBJECT_CLASS (klass)->set_property = _vala_gee_stream_iterator_set_property;
	G_OBJECT_CLASS (klass)->finalize = gee_stream_iterator_finalize;
	g_object_class_install_property (G_OBJECT_CLASS (klass), GEE_STREAM_ITERATOR_A_TYPE, g_param_spec_gtype ("a-type", "type", "type", G_TYPE_NONE, G_PARAM_STATIC_STRINGS | G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
	g_object_class_install_property (G_OBJECT_CLASS (klass), GEE_STREAM_ITERATOR_A_DUP_FUNC, g_param_spec_pointer ("a-dup-func", "dup func", "dup func", G_PARAM_STATIC_STRINGS | G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
	g_object_class_install_property (G_OBJECT_CLASS (klass), GEE_STREAM_ITERATOR_A_DESTROY_FUNC, g_param_spec_pointer ("a-destroy-func", "destroy func", "destroy func", G_PARAM_STATIC_STRINGS | G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
	g_object_class_install_property (G_OBJECT_CLASS (klass), GEE_STREAM_ITERATOR_G_TYPE, g_param_spec_gtype ("g-type", "type", "type", G_TYPE_NONE, G_PARAM_STATIC_STRINGS | G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
	g_object_class_install_property (G_OBJECT_CLASS (klass), GEE_STREAM_ITERATOR_G_DUP_FUNC, g_param_spec_pointer ("g-dup-func", "dup func", "dup func", G_PARAM_STATIC_STRINGS | G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
	g_object_class_install_property (G_OBJECT_CLASS (klass), GEE_STREAM_ITERATOR_G_DESTROY_FUNC, g_param_spec_pointer ("g-destroy-func", "destroy func", "destroy func", G_PARAM_STATIC_STRINGS | G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
	g_object_class_install_property (G_OBJECT_CLASS (klass), GEE_STREAM_ITERATOR_VALID_PROPERTY, gee_stream_iterator_properties[GEE_STREAM_ITERATOR_VALID_PROPERTY] = g_param_spec_boolean ("valid", "valid", "valid", FALSE, G_PARAM_STATIC_STRINGS | G_PARAM_READABLE));
	g_object_class_install_property (G_OBJECT_CLASS (klass), GEE_STREAM_ITERATOR_READ_ONLY_PROPERTY, gee_stream_iterator_properties[GEE_STREAM_ITERATOR_READ_ONLY_PROPERTY] = g_param_spec_boolean ("read-only", "read-only", "read-only", FALSE, G_PARAM_STATIC_STRINGS | G_PARAM_READABLE));
}

static GType
gee_stream_iterator_gee_traversable_get_g_type (GeeStreamIterator* self)
{
	return (GType) self->priv->a_type;
}

static GBoxedCopyFunc
gee_stream_iterator_gee_traversable_get_g_dup_func (GeeStreamIterator* self)
{
	return (GBoxedCopyFunc) self->priv->a_dup_func;
}

static GDestroyNotify
gee_stream_iterator_gee_traversable_get_g_destroy_func (GeeStreamIterator* self)
{
	return (GDestroyNotify) self->priv->a_destroy_func;
}

static void
gee_stream_iterator_gee_traversable_interface_init (GeeTraversableIface * iface,
                                                    gpointer iface_data)
{
	gee_stream_iterator_gee_traversable_parent_iface = g_type_interface_peek_parent (iface);
	iface->foreach = (gboolean (*) (GeeTraversable*, GeeForallFunc, gpointer)) gee_stream_iterator_real_foreach;
	iface->get_g_type = (GType (*) (GeeTraversable *)) gee_stream_iterator_gee_traversable_get_g_type;
	iface->get_g_dup_func = (GBoxedCopyFunc (*) (GeeTraversable *)) gee_stream_iterator_gee_traversable_get_g_dup_func;
	iface->get_g_destroy_func = (GDestroyNotify (*) (GeeTraversable *)) gee_stream_iterator_gee_traversable_get_g_destroy_func;
}

static void
gee_stream_iterator_gee_iterator_interface_init (GeeIteratorIface * iface,
                                                 gpointer iface_data)
{
	gee_stream_iterator_gee_iterator_parent_iface = g_type_interface_peek_parent (iface);
	iface->next = (gboolean (*) (GeeIterator*)) gee_stream_iterator_real_next;
	iface->has_next = (gboolean (*) (GeeIterator*)) gee_stream_iterator_real_has_next;
	iface->get = (gpointer (*) (GeeIterator*)) gee_stream_iterator_real_get;
	iface->remove = (void (*) (GeeIterator*)) gee_stream_iterator_real_remove;
	iface->get_valid = gee_stream_iterator_real_get_valid;
	iface->get_read_only = gee_stream_iterator_real_get_read_only;
}

static void
gee_stream_iterator_instance_init (GeeStreamIterator * self,
                                   gpointer klass)
{
	self->priv = gee_stream_iterator_get_instance_private (self);
}

static void
gee_stream_iterator_finalize (GObject * obj)
{
	GeeStreamIterator * self;
	self = G_TYPE_CHECK_INSTANCE_CAST (obj, GEE_TYPE_STREAM_ITERATOR, GeeStreamIterator);
	_g_object_unref0 (self->priv->_outer);
	(self->priv->_func_target_destroy_notify == NULL) ? NULL : (self->priv->_func_target_destroy_notify (self->priv->_func_target), NULL);
	self->priv->_func = NULL;
	self->priv->_func_target = NULL;
	self->priv->_func_target_destroy_notify = NULL;
	_gee_lazy_unref0 (self->priv->_outer_value);
	_gee_lazy_unref0 (self->priv->_current);
	_gee_lazy_unref0 (self->priv->_next);
	G_OBJECT_CLASS (gee_stream_iterator_parent_class)->finalize (obj);
}

static GType
gee_stream_iterator_get_type_once (void)
{
	static const GTypeInfo g_define_type_info = { sizeof (GeeStreamIteratorClass), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) gee_stream_iterator_class_init, (GClassFinalizeFunc) NULL, NULL, sizeof (GeeStreamIterator), 0, (GInstanceInitFunc) gee_stream_iterator_instance_init, NULL };
	static const GInterfaceInfo gee_traversable_info = { (GInterfaceInitFunc) gee_stream_iterator_gee_traversable_interface_init, (GInterfaceFinalizeFunc) NULL, NULL};
	static const GInterfaceInfo gee_iterator_info = { (GInterfaceInitFunc) gee_stream_iterator_gee_iterator_interface_init, (GInterfaceFinalizeFunc) NULL, NULL};
	GType gee_stream_iterator_type_id;
	gee_stream_iterator_type_id = g_type_register_static (G_TYPE_OBJECT, "GeeStreamIterator", &g_define_type_info, 0);
	g_type_add_interface_static (gee_stream_iterator_type_id, GEE_TYPE_TRAVERSABLE, &gee_traversable_info);
	g_type_add_interface_static (gee_stream_iterator_type_id, GEE_TYPE_ITERATOR, &gee_iterator_info);
	GeeStreamIterator_private_offset = g_type_add_instance_private (gee_stream_iterator_type_id, sizeof (GeeStreamIteratorPrivate));
	return gee_stream_iterator_type_id;
}

 G_GNUC_INTERNAL GType
gee_stream_iterator_get_type (void)
{
	static volatile gsize gee_stream_iterator_type_id__once = 0;
	if (g_once_init_enter (&gee_stream_iterator_type_id__once)) {
		GType gee_stream_iterator_type_id;
		gee_stream_iterator_type_id = gee_stream_iterator_get_type_once ();
		g_once_init_leave (&gee_stream_iterator_type_id__once, gee_stream_iterator_type_id);
	}
	return gee_stream_iterator_type_id__once;
}

static void
_vala_gee_stream_iterator_get_property (GObject * object,
                                        guint property_id,
                                        GValue * value,
                                        GParamSpec * pspec)
{
	GeeStreamIterator * self;
	self = G_TYPE_CHECK_INSTANCE_CAST (object, GEE_TYPE_STREAM_ITERATOR, GeeStreamIterator);
	switch (property_id) {
		case GEE_STREAM_ITERATOR_VALID_PROPERTY:
		g_value_set_boolean (value, gee_iterator_get_valid ((GeeIterator*) self));
		break;
		case GEE_STREAM_ITERATOR_READ_ONLY_PROPERTY:
		g_value_set_boolean (value, gee_iterator_get_read_only ((GeeIterator*) self));
		break;
		case GEE_STREAM_ITERATOR_A_TYPE:
		g_value_set_gtype (value, self->priv->a_type);
		break;
		case GEE_STREAM_ITERATOR_A_DUP_FUNC:
		g_value_set_pointer (value, self->priv->a_dup_func);
		break;
		case GEE_STREAM_ITERATOR_A_DESTROY_FUNC:
		g_value_set_pointer (value, self->priv->a_destroy_func);
		break;
		case GEE_STREAM_ITERATOR_G_TYPE:
		g_value_set_gtype (value, self->priv->g_type);
		break;
		case GEE_STREAM_ITERATOR_G_DUP_FUNC:
		g_value_set_pointer (value, self->priv->g_dup_func);
		break;
		case GEE_STREAM_ITERATOR_G_DESTROY_FUNC:
		g_value_set_pointer (value, self->priv->g_destroy_func);
		break;
		default:
		G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
		break;
	}
}

static void
_vala_gee_stream_iterator_set_property (GObject * object,
                                        guint property_id,
                                        const GValue * value,
                                        GParamSpec * pspec)
{
	GeeStreamIterator * self;
	self = G_TYPE_CHECK_INSTANCE_CAST (object, GEE_TYPE_STREAM_ITERATOR, GeeStreamIterator);
	switch (property_id) {
		case GEE_STREAM_ITERATOR_A_TYPE:
		self->priv->a_type = g_value_get_gtype (value);
		break;
		case GEE_STREAM_ITERATOR_A_DUP_FUNC:
		self->priv->a_dup_func = g_value_get_pointer (value);
		break;
		case GEE_STREAM_ITERATOR_A_DESTROY_FUNC:
		self->priv->a_destroy_func = g_value_get_pointer (value);
		break;
		case GEE_STREAM_ITERATOR_G_TYPE:
		self->priv->g_type = g_value_get_gtype (value);
		break;
		case GEE_STREAM_ITERATOR_G_DUP_FUNC:
		self->priv->g_dup_func = g_value_get_pointer (value);
		break;
		case GEE_STREAM_ITERATOR_G_DESTROY_FUNC:
		self->priv->g_destroy_func = g_value_get_pointer (value);
		break;
		default:
		G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
		break;
	}
}