girparser: Don't accept methods as property-accessor which throw errors
[vala-gnome.git] / vala / valainitializerlist.vala
blobc1f97ca3eb54456dee5707e3bca02c81ddac044f
1 /* valainitializerlist.vala
3 * Copyright (C) 2006-2011 Jürg Billeter
4 * Copyright (C) 2006-2008 Raffaele Sandrini
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 * Author:
21 * Jürg Billeter <j@bitron.ch>
22 * Raffaele Sandrini <raffaele@sandrini.ch>
25 using GLib;
27 /**
28 * Represents an array or struct initializer list in the source code.
30 public class Vala.InitializerList : Expression {
31 private List<Expression> initializers = new ArrayList<Expression> ();
33 /**
34 * Appends the specified expression to this initializer
36 * @param expr an expression
38 public void append (Expression expr) {
39 initializers.add (expr);
40 expr.parent_node = this;
43 /**
44 * Returns a copy of the expression
46 * @return expression list
48 public List<Expression> get_initializers () {
49 return initializers;
52 /**
53 * Returns the initializer count in this initializer
55 public int size {
56 get { return initializers.size; }
59 /**
60 * Creates a new initializer
62 * @param source_reference reference to source code
63 * @return newly created initializer list
65 public InitializerList (SourceReference source_reference) {
66 this.source_reference = source_reference;
69 public override void accept_children (CodeVisitor visitor) {
70 foreach (Expression expr in initializers) {
71 expr.accept (visitor);
75 public override void accept (CodeVisitor visitor) {
76 visitor.visit_initializer_list (this);
78 visitor.visit_expression (this);
81 public override bool is_constant () {
82 foreach (Expression initializer in initializers) {
83 if (!initializer.is_constant ()) {
84 return false;
87 return true;
90 public override bool is_pure () {
91 foreach (Expression initializer in initializers) {
92 if (!initializer.is_pure ()) {
93 return false;
96 return true;
99 public override bool is_accessible (Symbol sym) {
100 foreach (Expression initializer in initializers) {
101 if (!initializer.is_accessible (sym)) {
102 return false;
106 return true;
109 public override void replace_expression (Expression old_node, Expression new_node) {
110 for (int i = 0; i < initializers.size; i++) {
111 if (initializers[i] == old_node) {
112 initializers[i] = new_node;
117 public override bool check (CodeContext context) {
118 if (checked) {
119 return !error;
122 checked = true;
124 if (target_type == null) {
125 error = true;
126 Report.error (source_reference, "initializer list used for unknown type");
127 return false;
128 } else if (target_type is ArrayType) {
129 /* initializer is used as array initializer */
130 var array_type = (ArrayType) target_type;
132 if (!(parent_node is ArrayCreationExpression)
133 && !(parent_node is Constant)
134 && !(parent_node is InitializerList)) {
135 // transform shorthand form
136 // int[] array = { 42 };
137 // into
138 // int[] array = new int[] { 42 };
140 var old_parent_node = parent_node;
142 var array_creation = new ArrayCreationExpression (array_type.element_type.copy (), array_type.rank, this, source_reference);
143 array_creation.target_type = target_type;
144 old_parent_node.replace_expression (this, array_creation);
146 checked = false;
147 return array_creation.check (context);
150 DataType inner_target_type;
151 if (array_type.rank > 1) {
152 // allow initialization of multi-dimensional arrays
153 var inner_array_type = (ArrayType) array_type.copy ();
154 inner_array_type.rank--;
155 inner_target_type = inner_array_type;
156 } else {
157 inner_target_type = array_type.element_type.copy ();
160 foreach (Expression e in get_initializers ()) {
161 e.target_type = inner_target_type;
163 } else if (target_type.data_type is Struct) {
164 /* initializer is used as struct initializer */
165 var st = (Struct) target_type.data_type;
166 while (st.base_struct != null) {
167 st = st.base_struct;
170 var field_it = st.get_fields ().iterator ();
171 foreach (Expression e in get_initializers ()) {
172 Field field = null;
173 while (field == null) {
174 if (!field_it.next ()) {
175 error = true;
176 Report.error (e.source_reference, "too many expressions in initializer list for `%s'".printf (target_type.to_string ()));
177 return false;
179 field = field_it.get ();
180 if (field.binding != MemberBinding.INSTANCE) {
181 // we only initialize instance fields
182 field = null;
186 e.target_type = field.variable_type.copy ();
187 if (!target_type.value_owned) {
188 e.target_type.value_owned = false;
191 } else {
192 error = true;
193 Report.error (source_reference, "initializer list used for `%s', which is neither array nor struct".printf (target_type.to_string ()));
194 return false;
197 foreach (Expression expr in initializers) {
198 expr.check (context);
201 bool error = false;
202 foreach (Expression e in get_initializers ()) {
203 if (e.value_type == null) {
204 error = true;
205 Report.error (e.source_reference, "expression type not allowed as initializer");
206 continue;
209 var unary = e as UnaryExpression;
210 if (unary != null && (unary.operator == UnaryOperator.REF || unary.operator == UnaryOperator.OUT)) {
211 // TODO check type for ref and out expressions
212 } else if (!e.value_type.compatible (e.target_type)) {
213 error = true;
214 e.error = true;
215 Report.error (e.source_reference, "Expected initializer of type `%s' but got `%s'".printf (e.target_type.to_string (), e.value_type.to_string ()));
219 if (!error) {
220 /* everything seems to be correct */
221 value_type = target_type.copy ();
222 value_type.nullable = false;
225 return !error;
228 public override void emit (CodeGenerator codegen) {
229 foreach (Expression expr in initializers) {
230 expr.emit (codegen);
233 codegen.visit_initializer_list (this);
235 codegen.visit_expression (this);
238 public override void get_used_variables (Collection<Variable> collection) {
239 foreach (Expression expr in initializers) {
240 expr.get_used_variables (collection);