* CheckBox.cs: Do not change the status of a checkbox when there
[mono.git] / mcs / mcs / const.cs
1 //
2 // const.cs: Constant declarations.
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) 2001 Ximian, Inc.
8 //
9 //
10
11 //
12 // This is needed because the following situation arises:
13 //
14 //     The FieldBuilder is declared with the real type for an enumeration
15 //
16 //     When we attempt to set the value for the constant, the FieldBuilder.SetConstant
17 //     function aborts because it requires its argument to be of the same type
18 //
19
20 namespace Mono.CSharp {
21
22         using System;
23         using System.Reflection;
24         using System.Reflection.Emit;
25         using System.Collections;
26
27         public class Const : MemberBase {
28                 public Expression ConstantType;
29                 public Expression Expr;
30                 public FieldBuilder FieldBuilder;
31                 EmitContext const_ec;
32
33                 object ConstantValue = null;
34                 Type type;
35
36                 bool in_transit = false;
37
38                 public const int AllowedModifiers =
39                         Modifiers.NEW |
40                         Modifiers.PUBLIC |
41                         Modifiers.PROTECTED |
42                         Modifiers.INTERNAL |
43                         Modifiers.PRIVATE;
44
45                 public Const (Expression constant_type, string name, Expression expr, int mod_flags,
46                               Attributes attrs, Location loc)
47                         : base (constant_type, mod_flags, AllowedModifiers, Modifiers.PRIVATE, name, attrs, loc)
48                 {
49                         ConstantType = constant_type;
50                         Name = name;
51                         Expr = expr;
52                 }
53
54                 public FieldAttributes FieldAttr {
55                         get {
56                                 return FieldAttributes.Literal | FieldAttributes.Static |
57                                         Modifiers.FieldAttr (ModFlags) ;
58                         }
59                 }
60
61 #if DEBUG
62                 void dump_tree (Type t)
63                 {
64                         Console.WriteLine ("Dumping hierarchy");
65                         while (t != null){
66                                 Console.WriteLine ("   " + t.FullName + " " +
67                                         (t.GetType ().IsEnum ? "yes" : "no"));
68                                 t = t.BaseType;
69                         }
70                 }
71 #endif
72
73                 /// <summary>
74                 ///   Defines the constant in the @parent
75                 /// </summary>
76                 public override bool Define (TypeContainer parent)
77                 {
78                         type = parent.ResolveType (ConstantType, false, Location);
79
80                         if (type == null)
81                                 return false;
82
83                         const_ec = new EmitContext (parent, Location, null, type, ModFlags);
84                         
85                         if (!TypeManager.IsBuiltinType (type) &&
86                             (!type.IsSubclassOf (TypeManager.enum_type))) {
87                                 Report.Error (
88                                         -3, Location,
89                                         "Constant type is not valid (only system types are allowed)");
90                                 return false;
91                         }
92
93                         Type ptype = parent.TypeBuilder.BaseType;
94
95                         if (ptype != null) {
96                                 MemberList list = TypeContainer.FindMembers (
97                                         ptype, MemberTypes.Field, BindingFlags.Public,
98                                         System.Type.FilterName, Name);
99                                 
100                                 if (list.Count == 0)
101                                         if ((ModFlags & Modifiers.NEW) != 0)
102                                                 WarningNotHiding (parent);
103
104                         } else if ((ModFlags & Modifiers.NEW) != 0)
105                                 WarningNotHiding (parent);
106
107                         FieldBuilder = parent.TypeBuilder.DefineField (Name, type, FieldAttr);
108
109                         TypeManager.RegisterConstant (FieldBuilder, this);
110
111                         return true;
112                 }
113
114                 /// <summary>
115                 ///  Looks up the value of a constant field. Defines it if it hasn't
116                 ///  already been. Similar to LookupEnumValue in spirit.
117                 /// </summary>
118                 public object LookupConstantValue ()
119                 {
120                         if (ConstantValue != null)
121                                 return ConstantValue;
122
123                         if (in_transit) {
124                                 Report.Error (110, Location,
125                                               "The evaluation of the constant value for `" +
126                                               Name + "' involves a circular definition.");
127                                 return null;
128                         }
129
130                         in_transit = true;
131                         int errors = Report.Errors;
132
133                         Expr = Expr.Resolve (const_ec);
134
135                         in_transit = false;
136
137                         if (Expr == null) {
138                                 if (errors == Report.Errors)
139                                         Report.Error (150, Location, "A constant value is expected");
140                                 return null;
141                         }
142
143                         if (!(Expr is Constant)) {
144                                 UnCheckedExpr un_expr = Expr as UnCheckedExpr;
145                                 CheckedExpr ch_expr = Expr as CheckedExpr;
146
147                                 if ((un_expr != null) && (un_expr.Expr is Constant))
148                                         Expr = un_expr.Expr;
149                                 else if ((ch_expr != null) && (ch_expr.Expr is Constant))
150                                         Expr = ch_expr.Expr;
151                                 else {
152                                         if (errors == Report.Errors)
153                                                 Report.Error (150, Location, "A constant value is expected");
154                                         return null;
155                                 }
156                         }
157
158                         ConstantValue = ((Constant) Expr).GetValue ();
159
160                         if (type != Expr.Type) {
161                                 bool fail;
162
163                                 // from the null type to any reference-type.
164                                 if (Expr is NullLiteral && !type.IsValueType &&
165                                     !TypeManager.IsEnumType (type)){
166                                         return NullLiteral.Null;
167                                 }
168                                 
169                                 ConstantValue = TypeManager.ChangeType (ConstantValue, type, out fail);
170                                 if (fail){
171                                         Convert.Error_CannotImplicitConversion (Location, Expr.Type, type);
172                                         return null;
173                                 }
174
175                                 if (type == TypeManager.int32_type)
176                                         Expr = new IntConstant ((int) ConstantValue);
177                                 else if (type == TypeManager.uint32_type)
178                                         Expr = new UIntConstant ((uint) ConstantValue);
179                                 else if (type == TypeManager.int64_type)
180                                         Expr = new LongConstant ((long) ConstantValue);
181                                 else if (type == TypeManager.uint64_type)
182                                         Expr = new ULongConstant ((ulong) ConstantValue);
183                                 else if (type == TypeManager.float_type)
184                                         Expr = new FloatConstant ((float) ConstantValue);
185                                 else if (type == TypeManager.double_type)
186                                         Expr = new DoubleConstant ((double) ConstantValue);
187                                 else if (type == TypeManager.string_type)
188                                         Expr = new StringConstant ((string) ConstantValue);
189                                 else if (type == TypeManager.short_type)
190                                         Expr = new ShortConstant ((short) ConstantValue);
191                                 else if (type == TypeManager.ushort_type)
192                                         Expr = new UShortConstant ((ushort) ConstantValue);
193                                 else if (type == TypeManager.sbyte_type)
194                                         Expr = new SByteConstant ((sbyte) ConstantValue);
195                                 else if (type == TypeManager.byte_type)
196                                         Expr = new ByteConstant ((byte) ConstantValue);
197                                 else if (type == TypeManager.char_type)
198                                         Expr = new CharConstant ((char) ConstantValue);
199                                 else if (type == TypeManager.bool_type)
200                                         Expr = new BoolConstant ((bool) ConstantValue);
201                         }
202
203                         if (type.IsEnum){
204                                 //
205                                 // This sadly does not work for our user-defined enumerations types ;-(
206                                 //
207                                 try {
208                                         ConstantValue = System.Enum.ToObject (
209                                                 type, ConstantValue);
210                                 } catch (ArgumentException){
211                                         Report.Error (
212                                                 -16, Location,
213                                                 ".NET SDK 1.0 does not permit to create the constant "+
214                                                 " field from a user-defined enumeration");
215                                 }
216                         }
217
218                         FieldBuilder.SetConstant (ConstantValue);
219
220                         if (!TypeManager.RegisterFieldValue (FieldBuilder, ConstantValue))
221                                 return null;
222
223                         return ConstantValue;
224                 }
225                 
226                 
227                 /// <summary>
228                 ///  Emits the field value by evaluating the expression
229                 /// </summary>
230                 public void EmitConstant (TypeContainer parent)
231                 {
232                         LookupConstantValue ();
233                         
234                         return;
235                 }
236         }
237 }
238
239