linux: Add constants from program_invocation_name(3)
[vala-gnome.git] / ccode / valaccodeifstatement.vala
blob31a7da996efa5aa6e140358f6168edd346b99664
1 /* valaccodeifstatement.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;
25 /**
26 * Represents an if selection statement in the C code.
28 public class Vala.CCodeIfStatement : CCodeStatement {
29 /**
30 * The boolean condition to evaluate.
32 public CCodeExpression condition { get; set; }
34 /**
35 * The statement to be evaluated if the condition holds.
37 public CCodeStatement true_statement { get; set; }
39 /**
40 * The optional statement to be evaluated if the condition doesn't hold.
42 public CCodeStatement? false_statement { get; set; }
44 public CCodeIfStatement (CCodeExpression cond, CCodeStatement true_stmt, CCodeStatement? false_stmt = null) {
45 condition = cond;
46 true_statement = true_stmt;
47 false_statement = false_stmt;
50 /**
51 * Specifies whether this if statement is part of an else if statement.
52 * This only affects the output formatting.
54 public bool else_if { get; set; }
56 public override void write (CCodeWriter writer) {
57 if (!else_if) {
58 writer.write_indent (line);
59 } else {
60 writer.write_string (" ");
62 writer.write_string ("if (");
63 if (condition != null) {
64 condition.write (writer);
66 writer.write_string (")");
68 /* else shouldn't be on a separate line */
69 if (false_statement != null && true_statement is CCodeBlock) {
70 var cblock = (CCodeBlock) true_statement;
71 cblock.suppress_newline = true;
74 true_statement.write (writer);
75 if (false_statement != null) {
76 if (writer.bol) {
77 writer.write_indent ();
78 writer.write_string ("else");
79 } else {
80 writer.write_string (" else");
83 /* else if should be on one line */
84 if (false_statement is CCodeIfStatement) {
85 var cif = (CCodeIfStatement) false_statement;
86 cif.else_if = true;
89 false_statement.write (writer);