| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375 |
- //
- // System.Web.Compilation.TemplateBuildProvider
- //
- // Authors:
- // Marek Habersack ([email protected])
- //
- // (C) 2007 Novell, Inc
- //
- //
- // 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.Collections.Generic;
- using System.IO;
- using System.Reflection;
- using System.Text.RegularExpressions;
- using System.Web;
- using System.Web.Hosting;
- using System.Web.UI;
- using System.Web.Util;
- namespace System.Web.Compilation
- {
- abstract class TemplateBuildProvider : GenericBuildProvider <TemplateParser>
- {
- delegate void ExtractDirectiveDependencies (string baseDirectory, CaptureCollection names, CaptureCollection values, TemplateBuildProvider bp);
-
- static SortedDictionary <string, ExtractDirectiveDependencies> directiveAttributes;
- static char[] directiveValueTrimChars = {' ', '\t', '\r', '\n', '"', '\''};
- SortedDictionary <string, bool> dependencies;
- string compilationLanguage;
-
- internal override string LanguageName {
- get {
- if (String.IsNullOrEmpty (compilationLanguage)) {
- ExtractDependencies ();
- if (String.IsNullOrEmpty (compilationLanguage))
- compilationLanguage = base.LanguageName;
- }
-
- return compilationLanguage;
- }
- }
-
- static TemplateBuildProvider ()
- {
- directiveAttributes = new SortedDictionary <string, ExtractDirectiveDependencies> (StringComparer.InvariantCultureIgnoreCase);
- directiveAttributes.Add ("Control", ExtractControlDependencies);
- directiveAttributes.Add ("Master", ExtractPageOrMasterDependencies);
- directiveAttributes.Add ("MasterType", ExtractPreviousPageTypeOrMasterTypeDependencies);
- directiveAttributes.Add ("Page", ExtractPageOrMasterDependencies);
- directiveAttributes.Add ("PreviousPageType", ExtractPreviousPageTypeOrMasterTypeDependencies);
- directiveAttributes.Add ("Reference", ExtractReferenceDependencies);
- directiveAttributes.Add ("Register", ExtractRegisterDependencies);
- directiveAttributes.Add ("WebHandler", ExtractLanguage);
- directiveAttributes.Add ("WebService", ExtractLanguage);
- }
- static string ExtractDirectiveAttribute (string baseDirectory, string name, CaptureCollection names, CaptureCollection values)
- {
- return ExtractDirectiveAttribute (baseDirectory, name, names, values, true);
- }
-
- static string ExtractDirectiveAttribute (string baseDirectory, string name, CaptureCollection names, CaptureCollection values, bool isPath)
- {
- if (names.Count == 0)
- return String.Empty;
- int index = 0;
- int valuesCount = values.Count;
- foreach (Capture c in names) {
- if (String.Compare (c.Value, name, StringComparison.OrdinalIgnoreCase) != 0) {
- index++;
- continue;
- }
-
- if (index > valuesCount)
- return String.Empty;
- if (isPath) {
- string value = values [index].Value.Trim (directiveValueTrimChars);
- if (String.IsNullOrEmpty (value))
- return String.Empty;
-
- return new VirtualPath (value, baseDirectory).Absolute;
- } else
- return values [index].Value.Trim ();
- }
- return String.Empty;
- }
- static void ExtractControlDependencies (string baseDirectory, CaptureCollection names, CaptureCollection values, TemplateBuildProvider bp)
- {
- ExtractLanguage (baseDirectory, names, values, bp);
- ExtractCodeBehind (baseDirectory, names, values, bp);
- }
-
- static void ExtractLanguage (string baseDirectory, CaptureCollection names, CaptureCollection values, TemplateBuildProvider bp)
- {
- string value = ExtractDirectiveAttribute (baseDirectory, "Language", names, values, false);
- if (String.IsNullOrEmpty (value))
- return;
- bp.compilationLanguage = value;
- ExtractCodeBehind (baseDirectory, names, values, bp);
- }
-
- static void ExtractPageOrMasterDependencies (string baseDirectory, CaptureCollection names, CaptureCollection values, TemplateBuildProvider bp)
- {
- ExtractLanguage (baseDirectory, names, values, bp);
- string value = ExtractDirectiveAttribute (baseDirectory, "MasterPageFile", names, values);
- if (!String.IsNullOrEmpty (value)) {
- if (!bp.dependencies.ContainsKey (value))
- bp.dependencies.Add (value, true);
- }
- ExtractCodeBehind (baseDirectory, names, values, bp);
- }
- static void ExtractCodeBehind (string baseDirectory, CaptureCollection names, CaptureCollection values, TemplateBuildProvider bp)
- {
- string[] varray = new string [2];
- varray [0] = ExtractDirectiveAttribute (baseDirectory, "CodeFile", names, values);
- varray [1] = ExtractDirectiveAttribute (baseDirectory, "Src", names, values);
- foreach (string value in varray) {
- if (!String.IsNullOrEmpty (value)) {
- if (!bp.dependencies.ContainsKey (value))
- bp.dependencies.Add (value, true);
- }
- }
- }
-
- static void ExtractRegisterDependencies (string baseDirectory, CaptureCollection names, CaptureCollection values, TemplateBuildProvider bp)
- {
- string src = ExtractDirectiveAttribute (baseDirectory, "Src", names, values);
- if (String.IsNullOrEmpty (src))
- return;
-
- string value = ExtractDirectiveAttribute (baseDirectory, "TagName", names, values);
- if (String.IsNullOrEmpty (value))
- return;
- value = ExtractDirectiveAttribute (baseDirectory, "TagPrefix", names, values);
- if (String.IsNullOrEmpty (value))
- return;
- if (bp.dependencies.ContainsKey (src))
- return;
- bp.dependencies.Add (src, true);
- }
- static void ExtractPreviousPageTypeOrMasterTypeDependencies (string baseDirectory, CaptureCollection names, CaptureCollection values, TemplateBuildProvider bp)
- {
- string value = ExtractDirectiveAttribute (baseDirectory, "VirtualPath", names, values);
- if (String.IsNullOrEmpty (value))
- return;
- if (bp.dependencies.ContainsKey (value))
- return;
- bp.dependencies.Add (value, true);
- }
- static void ExtractReferenceDependencies (string baseDirectory, CaptureCollection names, CaptureCollection values, TemplateBuildProvider bp)
- {
- string control = ExtractDirectiveAttribute (baseDirectory, "Control", names, values);
- string virtualPath = ExtractDirectiveAttribute (baseDirectory, "VirtualPath", names, values);
- string page = ExtractDirectiveAttribute (baseDirectory, "Page", names, values);
- bool controlEmpty = String.IsNullOrEmpty (control);
- bool virtualPathEmpty = String.IsNullOrEmpty (virtualPath);
- bool pageEmpty = String.IsNullOrEmpty (page);
-
- if (controlEmpty && virtualPathEmpty && pageEmpty)
- return;
- if ((controlEmpty ? 1 : 0) + (virtualPathEmpty ? 1 : 0) + (pageEmpty ? 1 : 0) != 2)
- return;
-
- string value;
- if (!controlEmpty)
- value = control;
- else if (!virtualPathEmpty)
- value = virtualPath;
- else
- value = page;
- if (bp.dependencies.ContainsKey (value))
- return;
- bp.dependencies.Add (value, true);
- }
- IDictionary <string, bool> AddParsedDependencies (IDictionary <string, bool> dict)
- {
- if (Parsed) {
- ArrayList deps = Parser.Dependencies;
- if (deps == null || deps.Count > 0)
- return dict;
-
- if (dict == null) {
- dict = dependencies;
- if (dict == null)
- dict = dependencies = new SortedDictionary <string, bool> (StringComparer.InvariantCultureIgnoreCase);
- }
-
- string s;
- foreach (object o in deps) {
- s = o as string;
- if (s == null || dict.ContainsKey (s))
- continue;
- dict.Add (s, true);
- }
- }
- if (dict == null || dict.Count == 0)
- return null;
-
- return dict;
- }
-
- internal override IDictionary <string, bool> ExtractDependencies ()
- {
- if (dependencies != null)
- return AddParsedDependencies (dependencies);
- string vpath = VirtualPath;
- if (String.IsNullOrEmpty (vpath))
- return AddParsedDependencies (null);
- VirtualPathProvider vpp = HostingEnvironment.VirtualPathProvider;
- if (!vpp.FileExists (vpath))
- return AddParsedDependencies (null);
-
- VirtualFile vf = vpp.GetFile (vpath);
- if (vf == null)
- return AddParsedDependencies (null);
- string input;
- using (Stream st = vf.Open ()) {
- if (st == null || !st.CanRead)
- return AddParsedDependencies (null);
-
- using (StreamReader sr = new StreamReader (st, WebEncoding.FileEncoding)) {
- input = sr.ReadToEnd ();
- }
- }
-
- if (String.IsNullOrEmpty (input))
- return AddParsedDependencies (null);
- MatchCollection matches = AspGenerator.DirectiveRegex.Matches (input);
- if (matches == null || matches.Count == 0)
- return AddParsedDependencies (null);
-
- dependencies = new SortedDictionary <string, bool> (StringComparer.InvariantCultureIgnoreCase);
- CaptureCollection ccNames;
- GroupCollection groups;
- string directiveName;
- ExtractDirectiveDependencies edd;
- string baseDirectory = VirtualPathUtility.GetDirectory (vpath);
-
- foreach (Match match in matches) {
- groups = match.Groups;
- if (groups.Count < 6)
- continue;
-
- ccNames = groups [3].Captures;
- directiveName = ccNames [0].Value;
- if (!directiveAttributes.TryGetValue (directiveName, out edd))
- continue;
- edd (baseDirectory, ccNames, groups [5].Captures, this);
- }
- return AddParsedDependencies (dependencies);
- }
-
- protected override string GetClassType (BaseCompiler compiler, TemplateParser parser)
- {
- if (compiler != null)
- return compiler.MainClassType;
- return null;
- }
-
- protected override ICollection GetParserDependencies (TemplateParser parser)
- {
- if (parser != null)
- return parser.Dependencies;
-
- return null;
- }
-
- protected override string GetParserLanguage (TemplateParser parser)
- {
- if (parser != null)
- return parser.Language;
- return null;
- }
-
- protected override string GetCodeBehindSource (TemplateParser parser)
- {
- if (parser != null) {
- string codeBehind = parser.CodeBehindSource;
- if (String.IsNullOrEmpty (codeBehind))
- return null;
- return parser.CodeBehindSource;
- }
-
- return null;
- }
-
- protected override AspGenerator CreateAspGenerator (TemplateParser parser)
- {
- if (parser != null)
- return new AspGenerator (parser);
- return null;
- }
- protected override List <string> GetReferencedAssemblies (TemplateParser parser)
- {
- if (parser == null)
- return null;
-
- ArrayList al = parser.Assemblies;
- if (al == null || al.Count == 0)
- return null;
- List <string> ret = new List <string> ();
- string loc;
-
- foreach (object o in al) {
- loc = o as string;
- if (loc == null)
- continue;
- if (ret.Contains (loc))
- continue;
- ret.Add (loc);
- }
- return ret;
- }
- }
- }
|