Fix testing scripts for TARGET_JVM
[mono.git] / mcs / mbas / report.cs
index 60b4b3c6fdbe4c1e98be1e30bbf9650c56560ade..64d4863c4e73479394f8e75ac23165ccef7ba3cf 100644 (file)
@@ -14,7 +14,7 @@ using System.Text;
 using System.Collections;
 using System.Diagnostics;
 
-namespace Mono.CSharp {
+namespace Mono.MonoBASIC {
 
        /// <summary>
        ///   This class is used to report errors and warnings t te user.
@@ -58,9 +58,30 @@ namespace Mono.CSharp {
                //
                static Hashtable warning_ignore_table;
                
+               static public int ProcessResults(bool quiet)
+               {
+                       if (!quiet)
+                       {
+                               if (Report.ExpectedError != 0)
+                                       Console.WriteLine("Failed to report expected Error " + Report.ExpectedError);
+                                       
+                               if (Errors == 0) 
+                               {
+                                       if (Warnings == 0) 
+                                               Console.WriteLine("Compilation succeeded");
+                                       else
+                                               Console.WriteLine("Compilation succeeded: {0} warning(s)", Warnings);
+                               }
+                               else
+                                       Console.WriteLine("Compilation failed: {0} Error(s), {1} warnings",     Errors, Warnings);
+                       }
+                       return (Errors == 0)?0:1;
+               }
+               
                static void Check (int code)
                {
-                       if (code == expected_error){
+                       if (code == expected_error)
+                       {
                                if (Fatal)
                                        throw new Exception ();
                                
@@ -68,7 +89,7 @@ namespace Mono.CSharp {
                        }
                }
                
-               static public void RealError (string msg)
+               static private void RealError (string msg)
                {
                        Errors++;
                        Console.WriteLine (msg);
@@ -82,8 +103,7 @@ namespace Mono.CSharp {
                static public void Error (int code, Location l, string text)
                {
                        string msg = String.Format (
-                               "{0}({1}) error CS{2:0000}: {3}", l.Name, l.Row, code, text);
-//                             "{0}({1}) error CS{2}: {3}", l.Name, l.Row, code, text);
+                               "{0}({1},{2}) error BC{3:0000}: {4}", l.Name, l.Row, l.Col, code, text);
                        
                        RealError (msg);
                        Check (code);
@@ -99,17 +119,12 @@ namespace Mono.CSharp {
                        if (WarningsAreErrors)
                                Error (code, l, text);
                        else {
-                               string row;
-                               
                                if (Location.IsNull (l))
-                                       row = "";
+                                       Console.WriteLine(String.Format("{0} warning BC{1:0000}: {2}",
+                                               l.Name, code, text));
                                else
-                                       row = l.Row.ToString ();
-                               
-                               Console.WriteLine (String.Format (
-                                       "{0}({1}) warning CS{2:0000}: {3}",
-//                                     "{0}({1}) warning CS{2}: {3}",
-                                       l.Name,  row, code, text));
+                                       Console.WriteLine(String.Format("{0}({1},{2}) warning BC{3:0000}: {4}",
+                                               l.Name, l.Row, l.Col, code, text));
                                Warnings++;
                                Check (code);
 
@@ -123,10 +138,21 @@ namespace Mono.CSharp {
                        Warning (code, Location.Null, text);
                }
 
+               static public void Warning (int code, int level, string text)
+               {
+                       if (RootContext.WarningLevel >= level)
+                               Warning (code, Location.Null, text);
+               }
+
+               static public void Warning (int code, int level, Location l, string text)
+               {
+                       if (RootContext.WarningLevel >= level)
+                               Warning (code, l, text);
+               }
+
                static public void Error (int code, string text)
                {
-                       string msg = String.Format ("error CS{0:0000}: {1}", code, text);
-//                     string msg = String.Format ("error CS{0}: {1}", code, text);
+                       string msg = String.Format ("error BC{0:0000}: {1}", code, text);
                        
                        RealError (msg);
                        Check (code);
@@ -184,6 +210,8 @@ namespace Mono.CSharp {
                                                sb.Append (",");
                                        if (arg == null)
                                                sb.Append ("null");
+                                       else if (arg is ICollection)
+                                               sb.Append (PrintCollection ((ICollection) arg));
                                        else
                                                sb.Append (arg);
                                }
@@ -191,6 +219,26 @@ namespace Mono.CSharp {
 
                        Console.WriteLine (sb.ToString ());
                }
+
+               static public string PrintCollection (ICollection collection)
+               {
+                       StringBuilder sb = new StringBuilder ();
+
+                       sb.Append (collection.GetType ());
+                       sb.Append ("(");
+
+                       bool first = true;
+                       foreach (object o in collection) {
+                               if (first)
+                                       first = false;
+                               else
+                                       sb.Append (",");
+                               sb.Append (o);
+                       }
+
+                       sb.Append (")");
+                       return sb.ToString ();
+               }
        }
 
        public class Message {
@@ -224,6 +272,102 @@ namespace Mono.CSharp {
                        Console.WriteLine (error);
                }
        }
-}
 
+       public enum TimerType {
+               FindMembers     = 0,
+               TcFindMembers   = 1,
+               MemberLookup    = 2,
+               CachedLookup    = 3,
+               CacheInit       = 4,
+               MiscTimer       = 5,
+               CountTimers     = 6
+       }
+
+       public enum CounterType {
+               FindMembers     = 0,
+               MemberCache     = 1,
+               MiscCounter     = 2,
+               CountCounters   = 3
+       }
+
+       public class Timer
+       {
+               static DateTime[] timer_start;
+               static TimeSpan[] timers;
+               static long[] timer_counters;
+               static long[] counters;
+
+               static Timer ()
+               {
+                       timer_start = new DateTime [(int) TimerType.CountTimers];
+                       timers = new TimeSpan [(int) TimerType.CountTimers];
+                       timer_counters = new long [(int) TimerType.CountTimers];
+                       counters = new long [(int) CounterType.CountCounters];
+
+                       for (int i = 0; i < (int) TimerType.CountTimers; i++) {
+                               timer_start [i] = DateTime.Now;
+                               timers [i] = TimeSpan.Zero;
+                       }
+               }
+
+               [Conditional("TIMER")]
+               static public void IncrementCounter (CounterType which)
+               {
+                       ++counters [(int) which];
+               }
+
+               [Conditional("TIMER")]
+               static public void StartTimer (TimerType which)
+               {
+                       timer_start [(int) which] = DateTime.Now;
+               }
+
+               [Conditional("TIMER")]
+               static public void StopTimer (TimerType which)
+               {
+                       timers [(int) which] += DateTime.Now - timer_start [(int) which];
+                       ++timer_counters [(int) which];
+               }
+
+               [Conditional("TIMER")]
+               static public void ShowTimers ()
+               {
+                       ShowTimer (TimerType.FindMembers, "- FindMembers timer");
+                       ShowTimer (TimerType.TcFindMembers, "- TypeContainer.FindMembers timer");
+                       ShowTimer (TimerType.MemberLookup, "- MemberLookup timer");
+                       ShowTimer (TimerType.CachedLookup, "- CachedLookup timer");
+                       ShowTimer (TimerType.CacheInit, "- Cache init");
+                       ShowTimer (TimerType.MiscTimer, "- Misc timer");
+
+                       ShowCounter (CounterType.FindMembers, "- Find members");
+                       ShowCounter (CounterType.MemberCache, "- Member cache");
+                       ShowCounter (CounterType.MiscCounter, "- Misc counter");
+               }
+
+               static public void ShowCounter (CounterType which, string msg)
+               {
+                       Console.WriteLine ("{0} {1}", counters [(int) which], msg);
+               }
+
+               static public void ShowTimer (TimerType which, string msg)
+               {
+                       Console.WriteLine (
+                               "[{0:00}:{1:000}] {2} (used {3} times)",
+                               (int) timers [(int) which].TotalSeconds,
+                               timers [(int) which].Milliseconds, msg,
+                               timer_counters [(int) which]);
+               }
+       }
 
+       public class InternalErrorException : Exception {
+               public InternalErrorException ()
+                       : base ("Internal error")
+               {
+               }
+
+               public InternalErrorException (string message)
+                       : base (message)
+               {
+               }
+       }
+}