// // System.Web.Compilation.AssemblyBuilder // // Authors: // Chris Toshok (toshok@ximian.com) // Gonzalo Paniagua Javier (gonzalo@ximian.com) // Marek Habersack (mhabersack@novell.com) // // (C) 2006-2008 Novell, Inc (http://www.novell.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. // #if NET_2_0 using System; using System.CodeDom; using System.CodeDom.Compiler; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.IO; using System.Reflection; using System.Text; using System.Web.Configuration; using System.Web.Util; using System.Web.Hosting; namespace System.Web.Compilation { internal class CompileUnitPartialType { public readonly CodeCompileUnit Unit; public readonly CodeNamespace ParentNamespace; public readonly CodeTypeDeclaration PartialType; string typeName; public string TypeName { get { if (typeName == null) { if (ParentNamespace == null || PartialType == null) return null; typeName = ParentNamespace.Name; if (String.IsNullOrEmpty (typeName)) typeName = PartialType.Name; else typeName += "." + PartialType.Name; } return typeName; } } public CompileUnitPartialType (CodeCompileUnit unit, CodeNamespace parentNamespace, CodeTypeDeclaration type) { this.Unit = unit; this.ParentNamespace = parentNamespace; this.PartialType = type; } } public class AssemblyBuilder { const string DEFAULT_ASSEMBLY_BASE_NAME = "App_Web_"; const int COPY_BUFFER_SIZE = 8192; static bool KeepFiles = (Environment.GetEnvironmentVariable ("MONO_ASPNET_NODELETE") != null); CodeDomProvider provider; CompilerParameters parameters; Dictionary code_files; Dictionary > partial_types; List units; List source_files; List referenced_assemblies; Dictionary resource_files; TempFileCollection temp_files; string outputFilesPrefix; string outputAssemblyPrefix; string outputAssemblyName; internal AssemblyBuilder (CodeDomProvider provider) : this (null, provider, DEFAULT_ASSEMBLY_BASE_NAME) {} internal AssemblyBuilder (CodeDomProvider provider, string assemblyBaseName) : this (null, provider, assemblyBaseName) {} internal AssemblyBuilder (VirtualPath virtualPath, CodeDomProvider provider) : this (virtualPath, provider, DEFAULT_ASSEMBLY_BASE_NAME) {} internal AssemblyBuilder (VirtualPath virtualPath, CodeDomProvider provider, string assemblyBaseName) { this.provider = provider; this.outputFilesPrefix = assemblyBaseName ?? DEFAULT_ASSEMBLY_BASE_NAME; units = new List (); CompilationSection section; if (virtualPath != null) section = (CompilationSection) WebConfigurationManager.GetSection ("system.web/compilation", virtualPath.Absolute); else section = (CompilationSection) WebConfigurationManager.GetSection ("system.web/compilation"); string tempdir = section.TempDirectory; if (String.IsNullOrEmpty (tempdir)) tempdir = AppDomain.CurrentDomain.SetupInformation.DynamicBase; if (!KeepFiles) KeepFiles = section.Debug; temp_files = new TempFileCollection (tempdir, KeepFiles); } internal string OutputFilesPrefix { get { if (outputFilesPrefix == null) outputFilesPrefix = DEFAULT_ASSEMBLY_BASE_NAME; return outputFilesPrefix; } set { if (String.IsNullOrEmpty (value)) outputFilesPrefix = DEFAULT_ASSEMBLY_BASE_NAME; else outputFilesPrefix = value; outputAssemblyPrefix = null; outputAssemblyName = null; } } internal string OutputAssemblyPrefix { get { if (outputAssemblyPrefix == null) { string basePath = temp_files.BasePath; string baseName = Path.GetFileName (basePath); string baseDir = Path.GetDirectoryName (basePath); outputAssemblyPrefix = Path.Combine (baseDir, String.Concat (OutputFilesPrefix, baseName)); } return outputAssemblyPrefix; } } internal string OutputAssemblyName { get { if (outputAssemblyName == null) outputAssemblyName = OutputAssemblyPrefix + ".dll"; return outputAssemblyName; } } internal TempFileCollection TempFiles { get { return temp_files; } } internal CompilerParameters CompilerOptions { get { return parameters; } set { parameters = value; } } internal CodeCompileUnit [] GetUnitsAsArray () { CodeCompileUnit [] result = new CodeCompileUnit [units.Count]; units.CopyTo (result, 0); return result; } internal List Units { get { if (units == null) units = new List (); return units; } } internal Dictionary > PartialTypes { get { if (partial_types == null) partial_types = new Dictionary > (); return partial_types; } } Dictionary CodeFiles { get { if (code_files == null) code_files = new Dictionary (); return code_files; } } List SourceFiles { get { if (source_files == null) source_files = new List (); return source_files; } } Dictionary ResourceFiles { get { if (resource_files == null) resource_files = new Dictionary (); return resource_files; } } public void AddAssemblyReference (Assembly a) { if (a == null) throw new ArgumentNullException ("a"); List assemblies = ReferencedAssemblies; if (assemblies.Contains (a)) return; assemblies.Add (a); } internal void AddAssemblyReference (string assemblyLocation) { try { Assembly asm = Assembly.LoadFrom (assemblyLocation); if (asm == null) return; AddAssemblyReference (asm); } catch { // ignore, it will come up later } } internal void AddAssemblyReference (ICollection asmcoll) { if (asmcoll == null || asmcoll.Count == 0) return; Assembly asm; foreach (object o in asmcoll) { asm = o as Assembly; if (asm == null) continue; AddAssemblyReference (asm); } } internal void AddAssemblyReference (List asmlist) { if (asmlist == null) return; foreach (Assembly a in asmlist) { if (a == null) continue; AddAssemblyReference (a); } } internal void AddCodeCompileUnit (CodeCompileUnit compileUnit) { if (compileUnit == null) throw new ArgumentNullException ("compileUnit"); units.Add (CheckForPartialTypes (compileUnit)); } public void AddCodeCompileUnit (BuildProvider buildProvider, CodeCompileUnit compileUnit) { if (buildProvider == null) throw new ArgumentNullException ("buildProvider"); if (compileUnit == null) throw new ArgumentNullException ("compileUnit"); units.Add (CheckForPartialTypes (compileUnit)); } public TextWriter CreateCodeFile (BuildProvider buildProvider) { if (buildProvider == null) throw new ArgumentNullException ("buildProvider"); // Generate a file name with the correct source language extension string filename = GetTempFilePhysicalPath (provider.FileExtension); SourceFiles.Add (filename); return new StreamWriter (File.OpenWrite (filename)); } internal void AddCodeFile (string path) { AddCodeFile (path, null, false); } internal void AddCodeFile (string path, BuildProvider bp) { AddCodeFile (path, bp, false); } internal void AddCodeFile (string path, BuildProvider bp, bool isVirtual) { if (String.IsNullOrEmpty (path)) return; Dictionary codeFiles = CodeFiles; if (codeFiles.ContainsKey (path)) return; codeFiles.Add (path, true); string extension = Path.GetExtension (path); if (extension == null || extension.Length == 0) return; // maybe better to throw an exception here? extension = extension.Substring (1); string filename = GetTempFilePhysicalPath (extension); if (isVirtual) { VirtualFile vf = HostingEnvironment.VirtualPathProvider.GetFile (path); if (vf == null) throw new HttpException (404, "Virtual file '" + path + "' does not exist."); CopyFile (vf.Open (), filename); } else CopyFile (path, filename); SourceFiles.Add (filename); } void CopyFile (string input, string filename) { CopyFile (new FileStream (input, FileMode.Open, FileAccess.Read), filename); } void CopyFile (Stream input, string filename) { using (StreamWriter sw = new StreamWriter (new FileStream (filename, FileMode.Create, FileAccess.Write), Encoding.UTF8)) { using (StreamReader sr = new StreamReader (input, WebEncoding.FileEncoding)) { sw.Write (sr.ReadToEnd ()); } } } public Stream CreateEmbeddedResource (BuildProvider buildProvider, string name) { if (buildProvider == null) throw new ArgumentNullException ("buildProvider"); if (name == null || name == "") throw new ArgumentNullException ("name"); string filename = GetTempFilePhysicalPath ("resource"); Stream stream = File.OpenWrite (filename); ResourceFiles [name] = filename; return stream; } [MonoTODO ("Not implemented, does nothing")] public void GenerateTypeFactory (string typeName) { // Do nothing by now. } public string GetTempFilePhysicalPath (string extension) { if (extension == null) throw new ArgumentNullException ("extension"); string newFileName = OutputAssemblyPrefix + "_" + temp_files.Count + "." + extension; temp_files.AddFile (newFileName, KeepFiles); return newFileName; } public CodeDomProvider CodeDomProvider { get { return provider; } } List ReferencedAssemblies { get { if (referenced_assemblies == null) referenced_assemblies = new List (); return referenced_assemblies; } } CodeCompileUnit CheckForPartialTypes (CodeCompileUnit compileUnit) { if (compileUnit == null) return null; CodeTypeDeclarationCollection types; CompileUnitPartialType partialType; string partialTypeName; List tmp; Dictionary > partialTypes = PartialTypes; foreach (CodeNamespace ns in compileUnit.Namespaces) { if (ns == null) continue; types = ns.Types; if (types == null || types.Count == 0) continue; foreach (CodeTypeDeclaration type in types) { if (type == null) continue; if (type.IsPartial) { partialType = new CompileUnitPartialType (compileUnit, ns, type); partialTypeName = partialType.TypeName; if (!partialTypes.TryGetValue (partialTypeName, out tmp)) { tmp = new List (1); partialTypes.Add (partialTypeName, tmp); } tmp.Add (partialType); } } } return compileUnit; } void ProcessPartialTypes () { Dictionary > partialTypes = PartialTypes; if (partialTypes.Count == 0) return; foreach (KeyValuePair > kvp in partialTypes) ProcessType (kvp.Value); } void ProcessType (List typeList) { CompileUnitPartialType[] types = new CompileUnitPartialType [typeList.Count]; int counter = 0; foreach (CompileUnitPartialType type in typeList) { if (counter == 0) { types [0] = type; counter++; continue; } for (int i = 0; i < counter; i++) CompareTypes (types [i], type); types [counter++] = type; } } void CompareTypes (CompileUnitPartialType source, CompileUnitPartialType target) { CodeTypeDeclaration sourceType = source.PartialType; CodeTypeMemberCollection targetMembers = target.PartialType.Members; List membersToRemove = new List (); foreach (CodeTypeMember member in targetMembers) { if (TypeHasMember (sourceType, member)) membersToRemove.Add (member); } foreach (CodeTypeMember member in membersToRemove) targetMembers.Remove (member); } bool TypeHasMember (CodeTypeDeclaration type, CodeTypeMember member) { if (type == null || member == null) return false; return (FindMemberByName (type, member.Name) != null); } CodeTypeMember FindMemberByName (CodeTypeDeclaration type, string name) { foreach (CodeTypeMember m in type.Members) { if (m == null || m.Name != name) continue; return m; } return null; } internal CompilerResults BuildAssembly () { return BuildAssembly (null, CompilerOptions); } internal CompilerResults BuildAssembly (VirtualPath virtualPath) { return BuildAssembly (virtualPath, CompilerOptions); } internal CompilerResults BuildAssembly (CompilerParameters options) { return BuildAssembly (null, options); } internal CompilerResults BuildAssembly (VirtualPath virtualPath, CompilerParameters options) { if (options == null) throw new ArgumentNullException ("options"); options.TempFiles = temp_files; if (options.OutputAssembly == null) options.OutputAssembly = OutputAssemblyName; ProcessPartialTypes (); CompilerResults results; CodeCompileUnit [] units = GetUnitsAsArray (); // Since we may have some source files and some code // units, we generate code from all of them and then // compile the assembly from the set of temporary source // files. This also facilates possible debugging for the // end user, since they get the code beforehand. List files = SourceFiles; Dictionary resources = ResourceFiles; if (units.Length == 0 && files.Count == 0 && resources.Count == 0 && options.EmbeddedResources.Count == 0) return null; string filename; StreamWriter sw = null; foreach (CodeCompileUnit unit in units) { filename = GetTempFilePhysicalPath (provider.FileExtension); try { sw = new StreamWriter (File.OpenWrite (filename), Encoding.UTF8); provider.GenerateCodeFromCompileUnit (unit, sw, null); files.Add (filename); } catch { throw; } finally { if (sw != null) { sw.Flush (); sw.Close (); } } } foreach (KeyValuePair de in resources) options.EmbeddedResources.Add (de.Value); AddAssemblyReference (BuildManager.GetReferencedAssemblies ()); foreach (Assembly refasm in ReferencedAssemblies) { string path = new Uri (refasm.CodeBase).LocalPath; options.ReferencedAssemblies.Add (path); } results = provider.CompileAssemblyFromFile (options, files.ToArray ()); if (results.NativeCompilerReturnValue != 0) { string fileText = null; try { using (StreamReader sr = File.OpenText (results.Errors [0].FileName)) { fileText = sr.ReadToEnd (); } } catch (Exception) {} #if DEBUG Console.WriteLine ("********************************************************************"); Console.WriteLine ("Compilation failed."); Console.WriteLine ("Output:"); foreach (string s in results.Output) Console.WriteLine (" " + s); Console.WriteLine ("\nErrors:"); foreach (CompilerError err in results.Errors) Console.WriteLine (err); Console.WriteLine ("File name: {0}", results.Errors [0].FileName); Console.WriteLine ("File text:\n{0}\n", fileText); Console.WriteLine ("********************************************************************"); #endif throw new CompilationException (virtualPath != null ? virtualPath.Original : String.Empty, results, fileText); } Assembly assembly = results.CompiledAssembly; if (assembly == null) { if (!File.Exists (options.OutputAssembly)) { results.TempFiles.Delete (); throw new CompilationException (virtualPath != null ? virtualPath.Original : String.Empty, results.Errors, "No assembly returned after compilation!?"); } try { results.CompiledAssembly = Assembly.LoadFrom (options.OutputAssembly); } catch (Exception ex) { results.TempFiles.Delete (); throw new HttpException ("Unable to load compiled assembly", ex); } } if (!KeepFiles) results.TempFiles.Delete (); return results; } } } #endif