glib-2.0: Support owned delegates with Idle.add
[vala-lang.git] / ccode / valaccodeforstatement.vala
blob0710b4c95669e44150a22b58b07e9fe9fc4aa0bc
1 /* valaccodeforstatement.vala
3 * Copyright (C) 2006-2008 Jürg Billeter
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 * Author:
20 * Jürg Billeter <j@bitron.ch>
23 using GLib;
24 using Gee;
26 /**
27 * Represents a for iteration statement in the C code.
29 public class Vala.CCodeForStatement : CCodeStatement {
30 /**
31 * The loop condition.
33 public CCodeExpression? condition { get; set; }
35 /**
36 * The loop body.
38 public CCodeStatement body { get; set; }
40 private Gee.List<CCodeExpression> initializer = new ArrayList<CCodeExpression> ();
41 private Gee.List<CCodeExpression> iterator = new ArrayList<CCodeExpression> ();
43 public CCodeForStatement (CCodeExpression? condition, CCodeStatement? body = null) {
44 this.condition = condition;
45 this.body = body;
48 /**
49 * Appends the specified expression to the list of initializers.
51 * @param expr an initializer expression
53 public void add_initializer (CCodeExpression expr) {
54 initializer.add (expr);
57 /**
58 * Appends the specified expression to the iterator.
60 * @param expr an iterator expression
62 public void add_iterator (CCodeExpression expr) {
63 iterator.add (expr);
66 public override void write (CCodeWriter writer) {
67 bool first;
69 writer.write_indent (line);
70 writer.write_string ("for (");
72 first = true;
73 foreach (CCodeExpression init_expr in initializer) {
74 if (!first) {
75 writer.write_string (", ");
76 } else {
77 first = false;
79 if (init_expr != null) {
80 init_expr.write (writer);
84 writer.write_string ("; ");
85 if (condition != null) {
86 condition.write (writer);
88 writer.write_string ("; ");
90 first = true;
91 foreach (CCodeExpression it_expr in iterator) {
92 if (!first) {
93 writer.write_string (", ");
94 } else {
95 first = false;
97 if (it_expr != null) {
98 it_expr.write (writer);
102 writer.write_string (")");
103 body.write (writer);