Support constructor chain up to GObject using Object (...)
[vala-lang.git] / vala / valaenumvalue.vala
blobeaade92c15af1f86175fbfb29cecb1dced517be0
1 /* valaenumvalue.vala
3 * Copyright (C) 2006-2009 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 enum member in the source code.
28 public class Vala.EnumValue : Symbol {
29 /**
30 * Specifies the numerical representation of this enum value.
32 public Expression value { get; set; }
34 public Comment comment { get; set; }
36 private string cname;
38 /**
39 * Creates a new enum value.
41 * @param name enum value name
42 * @return newly created enum value
44 public EnumValue (string name, SourceReference? source_reference = null, Comment? comment = null) {
45 base (name, source_reference);
46 this.comment = comment;
49 /**
50 * Creates a new enum value with the specified numerical representation.
52 * @param name enum value name
53 * @param value numerical representation
54 * @return newly created enum value
56 public EnumValue.with_value (string name, Expression value, SourceReference? source_reference = null, Comment? comment = null) {
57 this (name, source_reference, comment);
58 this.value = value;
61 /**
62 * Returns the string literal of this signal to be used in C code.
63 * (FIXME: from vlaasignal.vala)
65 * @return string literal to be used in C code
67 public CCodeConstant get_canonical_cconstant () {
68 var str = new StringBuilder ("\"");
70 string i = name;
72 while (i.len () > 0) {
73 unichar c = i.get_char ();
74 if (c == '_') {
75 str.append_c ('-');
76 } else {
77 str.append_unichar (c.tolower ());
80 i = i.next_char ();
83 str.append_c ('"');
85 return new CCodeConstant (str.str);
88 public override void accept (CodeVisitor visitor) {
89 visitor.visit_enum_value (this);
92 public override void accept_children (CodeVisitor visitor) {
93 if (value != null) {
94 value.accept (visitor);
98 /**
99 * Process all associated attributes.
101 public void process_attributes () {
102 foreach (Attribute a in attributes) {
103 if (a.name == "CCode" && a.has_argument("cname")) {
104 cname = a.get_string ("cname");
110 * Returns the name of this enum value as it is used in C code.
112 * @return the name to be used in C code
114 public string get_cname () {
115 if (cname == null) {
116 cname = get_default_cname ();
118 return cname;
121 public string get_default_cname () {
122 var en = (Enum) parent_symbol;
123 return "%s%s".printf (en.get_cprefix (), name);
127 * Sets the name of this enum value to be used in C code.
129 * @param cname the name to be used in C code
131 public void set_cname (string cname) {
132 this.cname = cname;
135 public override bool check (SemanticAnalyzer analyzer) {
136 if (checked) {
137 return !error;
140 checked = true;
142 process_attributes ();
144 if (value != null) {
145 value.check (analyzer);
148 return !error;