2005-12-07 Lluis Sanchez Gual <lluis@ximian.com>
[mono.git] / mcs / gmcs / support.cs
old mode 100755 (executable)
new mode 100644 (file)
index 41f1b6e..8db2278
@@ -20,17 +20,18 @@ namespace Mono.CSharp {
 
        public interface ParameterData {
                Type ParameterType (int pos);
-               GenericConstraints GenericConstraints (int pos);
-               bool HasArrayParameter { get; }
+               Type [] Types { get; }
                int  Count { get; }
+               bool HasParams { get; }
                string ParameterName (int pos);
                string ParameterDesc (int pos);
                Parameter.Modifier ParameterModifier (int pos);
+               string GetSignatureForError ();
        }
 
        public class ReflectionParameters : ParameterData {
                ParameterInfo [] pi;
-               Type[] type_params;
+               Type [] types;
                bool last_arg_is_params = false;
                bool is_varargs = false;
                ParameterData gpd;
@@ -45,20 +46,25 @@ namespace Mono.CSharp {
                        this.pi = pi;
                        int count = pi.Length-1;
 
+                       if (pi.Length == 0) {
+                               types = TypeManager.NoTypes;
+                       } else {
+                               types = new Type [pi.Length];
+                               for (int i = 0; i < pi.Length; i++)
+                                       types [i] = pi [i].ParameterType;
+                       }
+
                        if (count < 0)
                                return;
 
                        if (mb.Mono_IsInflatedMethod) {
                                MethodInfo generic = mb.GetGenericMethodDefinition ();
-                               gpd = Invocation.GetParameterData (generic);
+                               gpd = TypeManager.GetParameterData (generic);
 
-                               last_arg_is_params = gpd.HasArrayParameter;
+                               last_arg_is_params = gpd.HasParams;
                                return;
                        }
 
-                       if (mb.IsGenericMethodDefinition)
-                               type_params = mb.GetGenericArguments ();
-
                        attrs = pi [count].GetCustomAttributes (TypeManager.param_array_type, true);
                        if (attrs == null)
                                return;
@@ -68,9 +74,22 @@ namespace Mono.CSharp {
 
                        last_arg_is_params = true;
                }
-
-               public bool HasArrayParameter {
-                       get { return last_arg_is_params; }
+               
+               public string GetSignatureForError ()
+               {
+                       StringBuilder sb = new StringBuilder ("(");
+                       for (int i = 0; i < pi.Length; ++i) {
+                               if (i != 0)
+                                       sb.Append (", ");
+                               sb.Append (ParameterDesc (i));
+                       }
+                       if (is_varargs) {
+                               if (pi.Length > 0)
+                                       sb.Append (", ");
+                               sb.Append ("__arglist");
+                       }
+                       sb.Append (')');
+                       return sb.ToString ();
                }
 
                public Type ParameterType (int pos)
@@ -86,19 +105,11 @@ namespace Mono.CSharp {
                        }
                }
 
-               public GenericConstraints GenericConstraints (int pos)
+               public string ParameterName (int pos)
                {
                        if (gpd != null)
-                               return gpd.GenericConstraints (pos);
-
-                       if (type_params == null)
-                               return null;
-
-                       return new ReflectionConstraints (type_params [pos]);
-               }
+                               return gpd.ParameterName (pos);
 
-               public string ParameterName (int pos)
-               {
                        if (last_arg_is_params && pos >= pi.Length - 1)
                                return pi [pi.Length - 1].Name;
                        else if (is_varargs && pos >= pi.Length)
@@ -128,8 +139,8 @@ namespace Mono.CSharp {
 
                        if (pos >= pi.Length - 1 && last_arg_is_params)
                                sb.Append ("params ");
-                       
-                       sb.Append (TypeManager.CSharpName (partype));
+
+                       sb.Append (TypeManager.CSharpName (partype).Replace ("&", ""));
 
                        return sb.ToString ();
                        
@@ -137,19 +148,20 @@ namespace Mono.CSharp {
 
                public Parameter.Modifier ParameterModifier (int pos)
                {
-                       int len = pi.Length;
-
                        if (last_arg_is_params && pos >= pi.Length - 1)
                                        return Parameter.Modifier.PARAMS;
                        else if (is_varargs && pos >= pi.Length)
                                return Parameter.Modifier.ARGLIST;
                        
+                       if (gpd != null)
+                               return gpd.ParameterModifier (pos);
+
                        Type t = pi [pos].ParameterType;
                        if (t.IsByRef){
-                               if ((pi [pos].Attributes & ParameterAttributes.Out) != 0)
-                                       return Parameter.Modifier.ISBYREF | Parameter.Modifier.OUT;
+                               if ((pi [pos].Attributes & (ParameterAttributes.Out|ParameterAttributes.In)) == ParameterAttributes.Out)
+                                       return Parameter.Modifier.OUT;
                                else
-                                       return Parameter.Modifier.ISBYREF | Parameter.Modifier.REF;
+                                       return Parameter.Modifier.REF;
                        }
                        
                        return Parameter.Modifier.NONE;
@@ -160,126 +172,18 @@ namespace Mono.CSharp {
                                return is_varargs ? pi.Length + 1 : pi.Length;
                        }
                }
-       }
-
-       public class InternalParameters : ParameterData {
-               Type [] param_types;
-               bool has_varargs;
-               int count;
-
-               public readonly Parameters Parameters;
-               public readonly TypeParameter[] TypeParameters;
-               
-               public InternalParameters (Type [] param_types, Parameters parameters)
-               {
-                       this.param_types = param_types;
-                       this.Parameters = parameters;
-               }
-
-               public InternalParameters (DeclSpace ds, Parameters parameters)
-                       : this (parameters.GetParameterInfo (ds), parameters)
-               {
-                       has_varargs = parameters.HasArglist;
-
-                       if (param_types == null)
-                               count = 0;
-                       else
-                               count = param_types.Length;
-               }
-
-               public InternalParameters (DeclSpace ds, Parameters parameters,
-                                          TypeParameter [] type_params)
-                       : this (ds, parameters)
-               {
-                       this.TypeParameters = type_params;
-               }
 
-               public int Count {
+               public bool HasParams {
                        get {
-                               return has_varargs ? count + 1 : count;
+                               return this.last_arg_is_params;
                        }
                }
 
-               public bool HasArrayParameter {
-                       get { return Parameters.ArrayParameter != null; }
-               }
-
-               Parameter GetParameter (int pos)
-               {
-                       Parameter [] fixed_pars = Parameters.FixedParameters;
-                       if (fixed_pars != null){
-                               int len = fixed_pars.Length;
-                               if (pos < len)
-                                       return Parameters.FixedParameters [pos];
+               public Type[] Types {
+                       get {
+                               return types;
                        }
-
-                       return Parameters.ArrayParameter;
-               }
-
-               public Type ParameterType (int pos)
-               {
-                       if (has_varargs && pos >= count)
-                               return TypeManager.runtime_argument_handle_type;
-
-                       if (param_types == null)
-                               return null;
-
-                       return GetParameter (pos).ExternalType ();
-               }
-
-               public GenericConstraints GenericConstraints (int pos)
-               {
-                       if (TypeParameters == null)
-                               return null;
-
-                       return TypeParameters [pos].Constraints;
-               }
-
-               public string ParameterName (int pos)
-               {
-                       if (has_varargs && pos >= count)
-                               return "__arglist";
-
-                       return GetParameter (pos).Name;
-               }
-
-               public string ParameterDesc (int pos)
-               {
-                       if (has_varargs && pos >= count)
-                               return "__arglist";
-
-                       string tmp = String.Empty;
-                       Parameter p = GetParameter (pos);
-
-                       //
-                       // We need to and for REF/OUT, because if either is set the
-                       // extra flag ISBYREF will be set as well
-                       //
-                       if ((p.ModFlags & Parameter.Modifier.REF) != 0)
-                               tmp = "ref ";
-                       else if ((p.ModFlags & Parameter.Modifier.OUT) != 0)
-                               tmp = "out ";
-                       else if (p.ModFlags == Parameter.Modifier.PARAMS)
-                               tmp = "params ";
-
-                       Type t = ParameterType (pos);
-
-                       return tmp + TypeManager.CSharpName (t);
-               }
-
-               public Parameter.Modifier ParameterModifier (int pos)
-               {
-                       if (has_varargs && pos >= count)
-                               return Parameter.Modifier.ARGLIST;
-
-                       Parameter.Modifier mod = GetParameter (pos).ModFlags;
-
-                       if ((mod & (Parameter.Modifier.REF | Parameter.Modifier.OUT)) != 0)
-                               mod |= Parameter.Modifier.ISBYREF;
-
-                       return mod;
-               }
-               
+               }               
        }
 
        public class ReflectionConstraints : GenericConstraints
@@ -288,17 +192,28 @@ namespace Mono.CSharp {
                Type base_type;
                Type class_constraint;
                Type[] iface_constraints;
+               string name;
 
-               public ReflectionConstraints (Type t)
+               public static GenericConstraints GetConstraints (Type t)
                {
-                       Type[] constraints = t.GetGenericParameterConstraints ();
+                       Type [] constraints = t.GetGenericParameterConstraints ();
+                       GenericParameterAttributes attrs = t.GenericParameterAttributes;
+                       if (constraints.Length == 0 && attrs == GenericParameterAttributes.None)
+                               return null;
+                       return new ReflectionConstraints (t.Name, constraints, attrs);
+               }
+
+               private ReflectionConstraints (string name, Type [] constraints, GenericParameterAttributes attrs)
+               {
+                       this.name = name;
+                       this.attrs = attrs;
+
                        if ((constraints.Length > 0) && !constraints [0].IsInterface) {
                                class_constraint = constraints [0];
                                iface_constraints = new Type [constraints.Length - 1];
                                Array.Copy (constraints, 1, iface_constraints, 0, constraints.Length - 1);
                        } else
                                iface_constraints = constraints;
-                       attrs = t.GenericParameterAttributes;
 
                        if (HasValueTypeConstraint)
                                base_type = TypeManager.value_type;
@@ -308,6 +223,10 @@ namespace Mono.CSharp {
                                base_type = TypeManager.object_type;
                }
 
+               public override string TypeParameter {
+                       get { return name; }
+               }
+
                public override GenericParameterAttributes Attributes {
                        get { return attrs; }
                }
@@ -401,106 +320,67 @@ namespace Mono.CSharp {
        }
 
        /// <summary>
-       ///   This is a wrapper around StreamReader which is seekable.
+       ///   This is a wrapper around StreamReader which is seekable backwards
+       ///   within a window of around 2048 chars.
        /// </summary>
        public class SeekableStreamReader
        {
                public SeekableStreamReader (StreamReader reader)
                {
                        this.reader = reader;
-                       this.buffer = new char [DefaultCacheSize];
-                       
-                       // Compute the preamble size
-                       
+                       this.buffer = new char [AverageReadLength * 3];
+
                        // Let the StreamWriter autodetect the encoder
                        reader.Peek ();
-                       
-                       reader.BaseStream.Position = 0;
-                       Encoding enc = reader.CurrentEncoding;
-                       // First of all, get at least a char
-                       
-                       byte[] auxb = new byte [50];
-                       int num_bytes = 0;
-                       int num_chars = 0;
-                       int br = 0;
-                       do {
-                               br = reader.BaseStream.Read (auxb, num_bytes, auxb.Length - num_bytes);
-                               num_bytes += br;
-                               num_chars = enc.GetCharCount (auxb, 0, num_bytes);
-                       }
-                       while (num_chars == 0 && br > 0);
-                       
-                       if (num_chars != 0)
-                       {
-                               // Now, check which bytes at the beginning have no effect in the
-                               // char count
-                               
-                               int p = 0;
-                               while (enc.GetCharCount (auxb, p, num_bytes-p) >= num_chars)
-                                       p++;
-                               
-                               preamble_size = p - 1;
-                               reader.BaseStream.Position = 0;
-                               reader.DiscardBufferedData ();
-                               
-                               buffer_start = preamble_size;
-                       }
                }
 
-               public SeekableStreamReader (Stream stream, Encoding encoding, bool detect_encoding_from_bytemarks)
-                       : this (new StreamReader (stream, encoding, detect_encoding_from_bytemarks))
+               public SeekableStreamReader (Stream stream, Encoding encoding)
+                       : this (new StreamReader (stream, encoding, true))
                { }
 
                StreamReader reader;
 
-               private const int DefaultCacheSize = 1024;
+               private const int AverageReadLength = 1024;
 
                char[] buffer;
-               int buffer_start;       // in bytes
-               int buffer_size;        // in bytes
+               int buffer_start;       // in chars
                int char_count;         // count buffer[] valid characters
                int pos;                // index into buffer[]
-               int preamble_size;
 
                /// <remarks>
-               ///   The difference to the StreamReader's BaseStream.Position is that this one is reliable; ie. it
-               //    always reports the correct position and if it's modified, it also takes care of the buffered data.
+               ///   This value corresponds to the current position in a stream of characters.
+               ///   The StreamReader hides its manipulation of the underlying byte stream and all
+               ///   character set/decoding issues.  Thus, we cannot use this position to guess at
+               ///   the corresponding position in the underlying byte stream even though there is
+               ///   a correlation between them.
                /// </remarks>
                public int Position {
-                       get {
-                               return buffer_start + reader.CurrentEncoding.GetByteCount (buffer, 0, pos);
-                       }
+                       get { return buffer_start + pos; }
 
                        set {
-                               // This one is easy: we're modifying the position within our current
-                               // buffer.
-                               if ((value >= buffer_start) && (value < buffer_start + buffer_size)) {
-                                       int byte_offset = value - buffer_start;
-                                       pos = byte_offset;
-                                       // encoded characters can take more than 1 byte length
-                                       while (reader.CurrentEncoding.GetByteCount (buffer, 0, pos) > byte_offset)
-                                               pos--;
-                                       
-                                       return;
-                               }
-                               
-                               if (value == 0) // Skip preamble
-                                       value = preamble_size;
-
-                               // Ok, now we need to seek.
-                               reader.DiscardBufferedData ();
-                               reader.BaseStream.Position = buffer_start = value;
-                               char_count = buffer_size = pos = 0;
+                               if (value < buffer_start || value > buffer_start + char_count)
+                                       throw new InternalErrorException ("can't seek that far back: " + (pos - value));
+                               pos = value - buffer_start;
                        }
                }
 
                private bool ReadBuffer ()
                {
-                       pos = 0;
-                       buffer_start += buffer_size;
-                       char_count = reader.Read (buffer, 0, buffer.Length);
-                       buffer_size = reader.CurrentEncoding.GetByteCount (buffer, 0, char_count);
-                       return buffer_size > 0;
+                       int slack = buffer.Length - char_count;
+                       if (slack <= AverageReadLength / 2) {
+                               // shift the buffer to make room for AverageReadLength number of characters
+                               int shift = AverageReadLength - slack;
+                               Array.Copy (buffer, shift, buffer, 0, char_count - shift);
+                               pos -= shift;
+                               char_count -= shift;
+                               buffer_start += shift;
+                               slack += shift;         // slack == AverageReadLength
+                       }
+
+                       int chars_read = reader.Read (buffer, char_count, slack);
+                       char_count += chars_read;
+
+                       return pos < char_count;
                }
 
                public int Peek ()