| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- //
- // System.Web.Compilation.BuildProvider
- //
- // Authors:
- // Chris Toshok ([email protected])
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2006 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.Compiler;
- using System.Collections;
- using System.Collections.Specialized;
- using System.IO;
- using System.Reflection;
- using System.Web.Configuration;
- using System.Web.Hosting;
- using System.Web.Util;
- namespace System.Web.Compilation {
- public abstract class BuildProvider {
- static object locker = new object ();
- static string private_bin_path;
- string virtual_path;
- ArrayList ref_assemblies;
- ICollection vpath_deps;
- protected BuildProvider()
- {
- ref_assemblies = new ArrayList ();
- }
- internal void SetVirtualPath (string path)
- {
- virtual_path = path;
- }
- public virtual void GenerateCode (AssemblyBuilder assemblyBuilder)
- {
- }
- [MonoTODO]
- public virtual string GetCustomString (CompilerResults results)
- {
- throw new NotImplementedException ();
- }
- protected CompilerType GetDefaultCompilerType ()
- {
- CompilationSection config;
- config = (CompilationSection) WebConfigurationManager.GetSection ("system.web/compilation");
- return GetDefaultCompilerTypeForLanguage (config.DefaultLanguage);
- }
- void SetCommonParameters (CompilationSection config, CompilerParameters p)
- {
- p.IncludeDebugInformation = config.Debug;
- foreach (AssemblyInfo info in config.Assemblies) {
- if (info.Assembly != "*") {
- p.ReferencedAssemblies.Add (info.Assembly);
- ref_assemblies.Add (info.Assembly);
- } else {
- AddAssembliesInBin (p.ReferencedAssemblies);
- }
- }
- // explicit, strict?
- // embedded? linked?/resources
- }
-
- static void InitPath ()
- {
- lock (locker) {
- if (private_bin_path != null)
- return;
- AppDomainSetup setup = AppDomain.CurrentDomain.SetupInformation;
- private_bin_path = Path.Combine (setup.ApplicationBase, setup.PrivateBinPath);
- }
- }
- void AddAssembliesInBin (StringCollection coll)
- {
- InitPath ();
- if (!Directory.Exists (private_bin_path))
- return;
- string [] binDlls = Directory.GetFiles (private_bin_path, "*.dll");
- foreach (string s in binDlls) {
- coll.Add (s);
- ref_assemblies.Add (s);
- }
- }
- protected CompilerType GetDefaultCompilerTypeForLanguage (string language)
- {
- // MS throws when accesing a Hashtable, we do here.
- if (language == null || language == "")
- throw new ArgumentNullException ("language");
- CompilationSection config;
- config = (CompilationSection) WebConfigurationManager.GetSection ("system.web/compilation");
- Compiler compiler = config.Compilers.Get (language);
- CompilerParameters p;
- if (compiler != null) {
- Type type = Type.GetType (compiler.Type, true);
- p = new CompilerParameters ();
- p.CompilerOptions = compiler.CompilerOptions;
- p.WarningLevel = compiler.WarningLevel;
- SetCommonParameters (config, p);
- return new CompilerType (type, p);
- }
- if (!CodeDomProvider.IsDefinedLanguage (language))
- throw new HttpException (String.Format ("No compiler for language '{0}'.", language));
- CompilerInfo info = CodeDomProvider.GetCompilerInfo (language);
- CompilerParameters par = info.CreateDefaultCompilerParameters ();
- SetCommonParameters (config, par);
- return new CompilerType (info.CodeDomProviderType, par);
- }
- public virtual Type GetGeneratedType (CompilerResults results)
- {
- return null;
- }
- public virtual BuildProviderResultFlags GetResultFlags (CompilerResults results)
- {
- return BuildProviderResultFlags.Default;
- }
- protected TextReader OpenReader ()
- {
- return OpenReader (VirtualPath);
- }
- protected TextReader OpenReader (string virtualPath)
- {
- Stream st = OpenStream (virtualPath);
- return new StreamReader (st, WebEncoding.FileEncoding);
- }
- protected Stream OpenStream ()
- {
- return OpenStream (VirtualPath);
- }
- protected Stream OpenStream (string virtualPath)
- {
- // MS also throws a NullReferenceException here when not hosted.
- return VirtualPathProvider.OpenFile (virtualPath);
- }
- public virtual CompilerType CodeCompilerType {
- get { return null; } // Documented to return null
- }
- protected ICollection ReferencedAssemblies {
- get { return ref_assemblies; }
- }
- protected internal string VirtualPath {
- get { return virtual_path; }
- }
- public virtual ICollection VirtualPathDependencies {
- get {
- if (vpath_deps == null)
- vpath_deps = new OneNullCollection ();
- return vpath_deps;
- }
- }
- }
- class OneNullCollection : ICollection {
- public int Count {
- get { return 1; }
- }
- public bool IsSynchronized {
- get { return false; }
- }
- public object SyncRoot {
- get { return this; }
- }
- public void CopyTo (Array array, int index)
- {
- if (array == null)
- throw new ArgumentNullException ();
- if (index < 0)
- throw new ArgumentOutOfRangeException ();
- if (array.Rank > 1)
- throw new ArgumentException ();
- int length = array.Length;
- if (index >= length || index > length - 1)
- throw new ArgumentException ();
- array.SetValue (null, index);
- }
- public IEnumerator GetEnumerator ()
- {
- yield return null;
- }
- }
- }
- #endif
|