| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349 |
- //
- // System.Web.Compilation.BaseCompiler
- //
- // Authors:
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (c) Copyright 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;
- using System.CodeDom.Compiler;
- using System.Collections;
- using System.Reflection;
- using System.Text;
- using System.Web.UI;
- using System.Web.Configuration;
- using System.IO;
- namespace System.Web.Compilation
- {
- abstract class BaseCompiler
- {
- protected static string dynamicBase = AppDomain.CurrentDomain.SetupInformation.DynamicBase;
- TemplateParser parser;
- CodeDomProvider provider;
- ICodeCompiler compiler;
- CodeCompileUnit unit;
- CodeNamespace mainNS;
- CompilerParameters compilerParameters;
- protected CodeTypeDeclaration mainClass;
- protected CodeTypeReferenceExpression mainClassExpr;
- protected static CodeThisReferenceExpression thisRef = new CodeThisReferenceExpression ();
- protected BaseCompiler (TemplateParser parser)
- {
- compilerParameters = new CompilerParameters ();
- this.parser = parser;
- }
- void Init ()
- {
- unit = new CodeCompileUnit ();
- mainNS = new CodeNamespace ("ASP");
- unit.Namespaces.Add (mainNS);
- mainClass = new CodeTypeDeclaration (parser.ClassName);
- mainClass.TypeAttributes = TypeAttributes.Public;
- mainNS.Types.Add (mainClass);
- mainClass.BaseTypes.Add (new CodeTypeReference (parser.BaseType.FullName));
- mainClassExpr = new CodeTypeReferenceExpression ("ASP." + parser.ClassName);
- foreach (object o in parser.Imports) {
- if (o is string)
- mainNS.Imports.Add (new CodeNamespaceImport ((string) o));
- }
- if (parser.Assemblies != null) {
- foreach (object o in parser.Assemblies) {
- if (o is string)
- unit.ReferencedAssemblies.Add ((string) o);
- }
- }
- // Late-bound generators specifics (as for MonoBASIC/VB.NET)
- unit.UserData["RequireVariableDeclaration"] = parser.ExplicitOn;
- unit.UserData["AllowLateBound"] = !parser.StrictOn;
-
- AddInterfaces ();
- AddClassAttributes ();
- CreateStaticFields ();
- AddApplicationAndSessionObjects ();
- AddScripts ();
- CreateConstructor (null, null);
- }
- protected virtual void CreateStaticFields ()
- {
- CodeMemberField fld = new CodeMemberField (typeof (bool), "__intialized");
- fld.Attributes = MemberAttributes.Private | MemberAttributes.Static;
- fld.InitExpression = new CodePrimitiveExpression (false);
- mainClass.Members.Add (fld);
- }
- protected virtual void CreateConstructor (CodeStatementCollection localVars,
- CodeStatementCollection trueStmt)
- {
- CodeConstructor ctor = new CodeConstructor ();
- ctor.Attributes = MemberAttributes.Public;
- mainClass.Members.Add (ctor);
- if (localVars != null)
- ctor.Statements.AddRange (localVars);
- CodeTypeReferenceExpression r;
- r = new CodeTypeReferenceExpression (mainNS.Name + "." + mainClass.Name);
- CodeFieldReferenceExpression intialized;
- intialized = new CodeFieldReferenceExpression (r, "__intialized");
-
- CodeBinaryOperatorExpression bin;
- bin = new CodeBinaryOperatorExpression (intialized,
- CodeBinaryOperatorType.ValueEquality,
- new CodePrimitiveExpression (false));
- CodeAssignStatement assign = new CodeAssignStatement (intialized,
- new CodePrimitiveExpression (true));
- CodeConditionStatement cond = new CodeConditionStatement (bin, assign);
- if (trueStmt != null)
- cond.TrueStatements.AddRange (trueStmt);
-
- ctor.Statements.Add (cond);
- }
-
- void AddScripts ()
- {
- if (parser.Scripts == null || parser.Scripts.Count == 0)
- return;
- foreach (object o in parser.Scripts) {
- if (o is string)
- mainClass.Members.Add (new CodeSnippetTypeMember ((string) o));
- }
- }
-
- protected virtual void CreateMethods ()
- {
- }
- protected virtual void AddInterfaces ()
- {
- if (parser.Interfaces == null)
- return;
- foreach (object o in parser.Interfaces) {
- if (o is string)
- mainClass.BaseTypes.Add (new CodeTypeReference ((string) o));
- }
- }
- protected virtual void AddClassAttributes ()
- {
- }
-
- protected virtual void AddApplicationAndSessionObjects ()
- {
- }
- /* Utility methods for <object> stuff */
- protected void CreateApplicationOrSessionPropertyForObject (Type type,
- string propName,
- bool isApplication,
- bool isPublic)
- {
- /* if isApplication this generates (the 'cachedapp' field is created earlier):
- private MyNS.MyClass app {
- get {
- if ((this.cachedapp == null)) {
- this.cachedapp = ((MyNS.MyClass)
- (this.Application.StaticObjects.GetObject("app")));
- }
- return this.cachedapp;
- }
- }
- else, this is for Session:
- private MyNS.MyClass ses {
- get {
- return ((MyNS.MyClass) (this.Session.StaticObjects.GetObject("ses")));
- }
- }
- */
- CodeExpression result = null;
- CodeMemberProperty prop = new CodeMemberProperty ();
- prop.Type = new CodeTypeReference (type);
- prop.Name = propName;
- if (isPublic)
- prop.Attributes = MemberAttributes.Public | MemberAttributes.Final;
- else
- prop.Attributes = MemberAttributes.Private | MemberAttributes.Final;
- CodePropertyReferenceExpression p1;
- if (isApplication)
- p1 = new CodePropertyReferenceExpression (thisRef, "Application");
- else
- p1 = new CodePropertyReferenceExpression (thisRef, "Session");
- CodePropertyReferenceExpression p2;
- p2 = new CodePropertyReferenceExpression (p1, "StaticObjects");
- CodeMethodReferenceExpression getobject;
- getobject = new CodeMethodReferenceExpression (p2, "GetObject");
- CodeMethodInvokeExpression invoker;
- invoker = new CodeMethodInvokeExpression (getobject,
- new CodePrimitiveExpression (propName));
- CodeCastExpression cast = new CodeCastExpression (prop.Type, invoker);
- if (isApplication) {
- CodeFieldReferenceExpression field;
- field = new CodeFieldReferenceExpression (thisRef, "cached" + propName);
- CodeConditionStatement stmt = new CodeConditionStatement();
- stmt.Condition = new CodeBinaryOperatorExpression (field,
- CodeBinaryOperatorType.IdentityEquality,
- new CodePrimitiveExpression (null));
- CodeAssignStatement assign = new CodeAssignStatement ();
- assign.Left = field;
- assign.Right = cast;
- stmt.TrueStatements.Add (assign);
- prop.GetStatements.Add (stmt);
- result = field;
- } else {
- result = cast;
- }
-
- prop.GetStatements.Add (new CodeMethodReturnStatement (result));
- mainClass.Members.Add (prop);
- }
- protected string CreateFieldForObject (Type type, string name)
- {
- string fieldName = "cached" + name;
- CodeMemberField f = new CodeMemberField (type, fieldName);
- f.Attributes = MemberAttributes.Private;
- mainClass.Members.Add (f);
- return fieldName;
- }
- protected void CreatePropertyForObject (Type type, string propName, string fieldName, bool isPublic)
- {
- CodeFieldReferenceExpression field = new CodeFieldReferenceExpression (thisRef, fieldName);
- CodeMemberProperty prop = new CodeMemberProperty ();
- prop.Type = new CodeTypeReference (type);
- prop.Name = propName;
- if (isPublic)
- prop.Attributes = MemberAttributes.Public | MemberAttributes.Final;
- else
- prop.Attributes = MemberAttributes.Private | MemberAttributes.Final;
- CodeConditionStatement stmt = new CodeConditionStatement();
- stmt.Condition = new CodeBinaryOperatorExpression (field,
- CodeBinaryOperatorType.IdentityEquality,
- new CodePrimitiveExpression (null));
- CodeObjectCreateExpression create = new CodeObjectCreateExpression (prop.Type);
- stmt.TrueStatements.Add (new CodeAssignStatement (field, create));
- prop.GetStatements.Add (stmt);
- prop.GetStatements.Add (new CodeMethodReturnStatement (field));
- mainClass.Members.Add (prop);
- }
- /******/
- void CheckCompilerErrors (CompilerResults results)
- {
- if (results.NativeCompilerReturnValue == 0)
- return;
- StringWriter writer = new StringWriter();
- provider.CreateGenerator().GenerateCodeFromCompileUnit (unit, writer, null);
- throw new CompilationException (parser.InputFile, results.Errors, writer.ToString ());
- }
- public virtual Type GetCompiledType ()
- {
- Type type = CachingCompiler.GetTypeFromCache (parser.InputFile);
- if (type != null)
- return type;
- Init ();
- string lang = parser.Language;
- CompilationConfiguration config;
- config = CompilationConfiguration.GetInstance (parser.Context);
- provider = config.GetProvider (lang);
- if (provider == null)
- throw new HttpException ("Configuration error. Language not supported: " +
- lang, 500);
- compiler = provider.CreateCompiler ();
- CreateMethods ();
- compilerParameters.IncludeDebugInformation = parser.Debug;
- compilerParameters.CompilerOptions = config.GetCompilerOptions (lang) + " " +
- parser.CompilerOptions;
- compilerParameters.WarningLevel = config.GetWarningLevel (lang);
- bool keepFiles = (Environment.GetEnvironmentVariable ("MONO_ASPNET_NODELETE") != null);
- if (!Directory.Exists (dynamicBase))
- Directory.CreateDirectory (dynamicBase);
- TempFileCollection tempcoll = new TempFileCollection (config.TempDirectory, keepFiles);
- compilerParameters.TempFiles = tempcoll;
- string dllfilename = Path.GetFileName (tempcoll.AddExtension ("dll", true));
- compilerParameters.OutputAssembly = Path.Combine (dynamicBase, dllfilename);
- CompilerResults results = CachingCompiler.Compile (this);
- CheckCompilerErrors (results);
- if (results.CompiledAssembly == null)
- throw new CompilationException (parser.InputFile, results.Errors,
- "No assembly returned after compilation!?");
- results.TempFiles.Delete ();
- return results.CompiledAssembly.GetType (mainClassExpr.Type.BaseType, true);
- }
- internal CompilerParameters CompilerParameters {
- get { return compilerParameters; }
- }
- internal CodeCompileUnit Unit {
- get { return unit; }
- }
- internal virtual ICodeCompiler Compiler {
- get { return compiler; }
- }
- internal TemplateParser Parser {
- get { return parser; }
- }
- }
- }
|