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
20 * Jürg Billeter <j@bitron.ch>
26 * Represents an enum member in the source code.
28 public class Vala
.EnumValue
: Symbol
{
30 * Specifies the numerical representation of this enum value.
32 public Expression value
{ get; set; }
37 * Creates a new enum value.
39 * @param name enum value name
40 * @return newly created enum value
42 public EnumValue (string name
, SourceReference? source_reference
= null) {
43 base (name
, source_reference
);
47 * Creates a new enum value with the specified numerical representation.
49 * @param name enum value name
50 * @param value numerical representation
51 * @return newly created enum value
53 public EnumValue
.with_value (string name
, Expression value
, SourceReference? source_reference
= null) {
54 this (name
, source_reference
);
59 * Returns the string literal of this signal to be used in C code.
60 * (FIXME: from vlaasignal.vala)
62 * @return string literal to be used in C code
64 public CCodeConstant
get_canonical_cconstant () {
65 var str
= new
StringBuilder ("\"");
69 while (i
.len () > 0) {
70 unichar c
= i
.get_char ();
74 str
.append_unichar (c
.tolower ());
82 return new
CCodeConstant (str
.str
);
85 public override void accept (CodeVisitor visitor
) {
86 visitor
.visit_enum_value (this
);
89 public override void accept_children (CodeVisitor visitor
) {
91 value
.accept (visitor
);
96 * Process all associated attributes.
98 public void process_attributes () {
99 foreach (Attribute a
in attributes
) {
100 if (a
.name
== "CCode" && a
.has_argument("cname")) {
101 cname
= a
.get_string ("cname");
107 * Returns the name of this enum value as it is used in C code.
109 * @return the name to be used in C code
111 public string get_cname () {
113 cname
= get_default_cname ();
118 public string get_default_cname () {
119 var en
= (Enum
) parent_symbol
;
120 return "%s%s".printf (en
.get_cprefix (), name
);
124 * Sets the name of this enum value to be used in C code.
126 * @param cname the name to be used in C code
128 public void set_cname (string cname
) {
132 public override bool check (SemanticAnalyzer analyzer
) {
139 process_attributes ();
142 value
.check (analyzer
);
144 // ensure to include dependency in header file as well if necessary
145 if (!parent_symbol
.is_internal_symbol ()
146 &&value is MemberAccess
&& value
.symbol_reference
!= null) {
147 analyzer
.current_source_file
.add_symbol_dependency (value
.symbol_reference
, SourceFileDependencyType
.HEADER_SHALLOW
);