posix.vapi: signal is allowed to be null (restoring the original handler)
[vala-lang.git] / vala / valaenumvalue.vala
blobe77d7af4a45c7d1f803a85fc5fe32286ba364f0d
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 private string cname;
36 /**
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);
46 /**
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);
55 this.value = value;
58 /**
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 ("\"");
67 string i = name;
69 while (i.len () > 0) {
70 unichar c = i.get_char ();
71 if (c == '_') {
72 str.append_c ('-');
73 } else {
74 str.append_unichar (c.tolower ());
77 i = i.next_char ();
80 str.append_c ('"');
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) {
90 if (value != null) {
91 value.accept (visitor);
95 /**
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 () {
112 if (cname == null) {
113 cname = get_default_cname ();
115 return 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) {
129 this.cname = cname;
132 public override bool check (SemanticAnalyzer analyzer) {
133 if (checked) {
134 return !error;
137 checked = true;
139 process_attributes ();
141 if (value != null) {
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);
151 return !error;