2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / System.Web / System.Web.UI / SimpleWebHandlerParser.cs
index 1b44dc87b0c595da3da6fe01e2814cc1f62f3517..d075d404a5cc89064fb60ccde2e54a397c427dca 100644 (file)
@@ -7,6 +7,27 @@
 // (C) 2002,2003 Ximian, Inc (http://www.ximian.com)
 //
 
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
 using System;
 using System.CodeDom.Compiler;
 using System.Collections;
@@ -39,9 +60,14 @@ namespace System.Web.UI
                string baseVDir;
                CompilationConfiguration compilationConfig;
                int appAssemblyIndex = -1;
+               Type cachedType;
 
                protected SimpleWebHandlerParser (HttpContext context, string virtualPath, string physicalPath)
                {
+                       cachedType = CachingCompiler.GetTypeFromCache (physicalPath);
+                       if (cachedType != null)
+                               return; // We don't need anything else.
+
                        this.context = context;
                        this.vPath = virtualPath;
                        this.physPath = physicalPath;
@@ -61,10 +87,9 @@ namespace System.Web.UI
                        GetDirectivesAndContent ();
                }
 
-               [MonoTODO]
                protected Type GetCompiledTypeFromCache ()
                {
-                       return null;
+                       return cachedType;
                }
 
                void GetDirectivesAndContent ()
@@ -74,7 +99,7 @@ namespace System.Web.UI
                        bool directiveFound = false;
                        StringBuilder content = new StringBuilder ();
 
-                       while ((line = reader.ReadLine ()) != null) {
+                       while ((line = reader.ReadLine ()) != null && cachedType == null) {
                                string trimmed = line.Trim ();
                                if (!directiveFound && trimmed == String.Empty)
                                        continue;
@@ -82,18 +107,26 @@ namespace System.Web.UI
                                if (trimmed.StartsWith ("<")) {
                                        ParseDirective (trimmed);
                                        directiveFound = true;
+                                       if (gotDefault) {
+                                               cachedType = CachingCompiler.GetTypeFromCache (physPath);
+                                               if (cachedType != null)
+                                                       break;
+                                       }
+
                                        continue;
                                }
 
                                content.Append (line + "\n");
                                content.Append (reader.ReadToEnd ());
                        }
+                       reader.Close ();
 
                        if (!gotDefault)
-                               throw new ParseException (null, "No @WebService directive found");
-                               
-                       this.program = content.ToString ();
-                       reader.Close ();
+                               throw new ParseException (null, "No @" + DefaultDirectiveName +
+                                                       " directive found");
+
+                       if (cachedType == null)
+                               this.program = content.ToString ();
                }
 
                void TagParsed (ILocation location, System.Web.Compilation.TagType tagtype, string tagid, TagAttributes attributes)
@@ -287,7 +320,7 @@ namespace System.Web.UI
 
                        AddDependency (realPath);
 
-                       CompilerResults result = CachingCompiler.Compile (realPath, realPath, assemblies);
+                       CompilerResults result = CachingCompiler.Compile (language, realPath, realPath, assemblies);
                        if (result.NativeCompilerReturnValue != 0) {
                                StreamReader reader = new StreamReader (realPath);
                                throw new CompilationException (realPath, result.Errors, reader.ReadToEnd ());