| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496 |
- //
- // System.Web.UI.ControlBuilder.cs
- //
- // Authors:
- // Duncan Mak ([email protected])
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) 2002, 2003 Ximian, Inc. (http://www.ximian.com)
- // Copyright (C) 2005 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.
- //
- using System.Collections;
- using System.CodeDom;
- using System.Reflection;
- using System.Security.Permissions;
- using System.Web.Compilation;
- namespace System.Web.UI {
- // CAS
- [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
- [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
- public class ControlBuilder
- {
- internal static BindingFlags flagsNoCase = BindingFlags.Public |
- BindingFlags.Instance |
- BindingFlags.Static |
- BindingFlags.IgnoreCase;
- TemplateParser parser;
- internal ControlBuilder parentBuilder;
- Type type;
- string tagName;
- string id;
- internal IDictionary attribs;
- internal int line;
- internal string fileName;
- bool childrenAsProperties;
- bool isIParserAccessor = true;
- bool hasAspCode;
- internal ControlBuilder defaultPropertyBuilder;
- ArrayList children;
- static int nextID;
- internal bool haveParserVariable;
- internal CodeMemberMethod method;
- internal CodeMemberMethod renderMethod;
- internal int renderIndex;
- internal bool isProperty;
- internal ILocation location;
- ArrayList otherTags;
- public ControlBuilder ()
- {
- }
- internal ControlBuilder (TemplateParser parser,
- ControlBuilder parentBuilder,
- Type type,
- string tagName,
- string id,
- IDictionary attribs,
- int line,
- string sourceFileName)
- {
- this.parser = parser;
- this.parentBuilder = parentBuilder;
- this.type = type;
- this.tagName = tagName;
- this.id = id;
- this.attribs = attribs;
- this.line = line;
- this.fileName = sourceFileName;
- }
- internal void EnsureOtherTags ()
- {
- if (otherTags == null)
- otherTags = new ArrayList ();
- }
-
- internal ArrayList OtherTags {
- get { return otherTags; }
- }
- public Type ControlType {
- get { return type; }
- }
- protected bool FChildrenAsProperties {
- get { return childrenAsProperties; }
- }
- protected bool FIsNonParserAccessor {
- get { return !isIParserAccessor; }
- }
- public bool HasAspCode {
- get { return hasAspCode; }
- }
- public string ID {
- get { return id; }
- set { id = value; }
- }
- internal ArrayList Children {
- get { return children; }
- }
- internal void SetControlType (Type t)
- {
- type = t;
- }
-
- protected bool InDesigner {
- get { return false; }
- }
- public Type NamingContainerType {
- get {
- if (parentBuilder == null)
- return typeof (Control);
- Type ptype = parentBuilder.ControlType;
- if (ptype == null)
- return parentBuilder.NamingContainerType;
- if (!typeof (INamingContainer).IsAssignableFrom (ptype))
- return parentBuilder.NamingContainerType;
- return ptype;
- }
- }
- #if NET_2_0
- public
- #else
- internal
- #endif
- Type BindingContainerType {
- get {
- if (parentBuilder == null)
- return typeof (Control);
-
- if (parentBuilder is TemplateBuilder && ((TemplateBuilder)parentBuilder).ContainerType != null)
- return ((TemplateBuilder)parentBuilder).ContainerType;
- Type ptype = parentBuilder.ControlType;
- if (ptype == null)
- return parentBuilder.BindingContainerType;
- if (!typeof (INamingContainer).IsAssignableFrom (ptype))
- return parentBuilder.BindingContainerType;
- return ptype;
- }
- }
- internal TemplateBuilder ParentTemplateBuilder {
- get {
- if (parentBuilder == null)
- return null;
- else if (parentBuilder is TemplateBuilder)
- return (TemplateBuilder) parentBuilder;
- else
- return parentBuilder.ParentTemplateBuilder;
- }
- }
- protected TemplateParser Parser {
- get { return parser; }
- }
- public string TagName {
- get { return tagName; }
- }
- internal RootBuilder Root {
- get {
- if (GetType () == typeof (RootBuilder))
- return (RootBuilder) this;
- return (RootBuilder) parentBuilder.Root;
- }
- }
- internal bool ChildrenAsProperties {
- get { return childrenAsProperties; }
- }
-
- public virtual bool AllowWhitespaceLiterals ()
- {
- return true;
- }
- public virtual void AppendLiteralString (string s)
- {
- if (s == null || s == "")
- return;
- if (childrenAsProperties || !isIParserAccessor) {
- if (defaultPropertyBuilder != null) {
- defaultPropertyBuilder.AppendLiteralString (s);
- } else if (s.Trim () != "") {
- throw new HttpException ("Literal content not allowed for " + tagName + " " +
- GetType () + " \"" + s + "\"");
- }
- return;
- }
-
- if (!AllowWhitespaceLiterals () && s.Trim () == "")
- return;
- if (HtmlDecodeLiterals ())
- s = HttpUtility.HtmlDecode (s);
- if (children == null)
- children = new ArrayList ();
- children.Add (s);
- }
- public virtual void AppendSubBuilder (ControlBuilder subBuilder)
- {
- subBuilder.OnAppendToParentBuilder (this);
-
- subBuilder.parentBuilder = this;
- if (childrenAsProperties) {
- AppendToProperty (subBuilder);
- return;
- }
- if (typeof (CodeRenderBuilder).IsAssignableFrom (subBuilder.GetType ())) {
- AppendCode (subBuilder);
- return;
- }
- if (children == null)
- children = new ArrayList ();
- children.Add (subBuilder);
- }
- void AppendToProperty (ControlBuilder subBuilder)
- {
- if (typeof (CodeRenderBuilder) == subBuilder.GetType ())
- throw new HttpException ("Code render not supported here.");
- if (defaultPropertyBuilder != null) {
- defaultPropertyBuilder.AppendSubBuilder (subBuilder);
- return;
- }
- if (children == null)
- children = new ArrayList ();
- children.Add (subBuilder);
- }
- void AppendCode (ControlBuilder subBuilder)
- {
- if (type != null && !(typeof (Control).IsAssignableFrom (type)))
- throw new HttpException ("Code render not supported here.");
- if (typeof (CodeRenderBuilder) == subBuilder.GetType ())
- hasAspCode = true;
- if (children == null)
- children = new ArrayList ();
- children.Add (subBuilder);
- }
- public virtual void CloseControl ()
- {
- }
- public static ControlBuilder CreateBuilderFromType (TemplateParser parser,
- ControlBuilder parentBuilder,
- Type type,
- string tagName,
- string id,
- IDictionary attribs,
- int line,
- string sourceFileName)
- {
- ControlBuilder builder;
- object [] atts = type.GetCustomAttributes (typeof (ControlBuilderAttribute), true);
- if (atts != null && atts.Length > 0) {
- ControlBuilderAttribute att = (ControlBuilderAttribute) atts [0];
- builder = (ControlBuilder) Activator.CreateInstance (att.BuilderType);
- } else {
- builder = new ControlBuilder ();
- }
- builder.Init (parser, parentBuilder, type, tagName, id, attribs);
- builder.line = line;
- builder.fileName = sourceFileName;
- return builder;
- }
- public virtual Type GetChildControlType (string tagName, IDictionary attribs)
- {
- return null;
- }
- public virtual bool HasBody ()
- {
- return true;
- }
- public virtual bool HtmlDecodeLiterals ()
- {
- return false;
- }
- ControlBuilder CreatePropertyBuilder (string propName, TemplateParser parser, IDictionary atts)
- {
- PropertyInfo prop = type.GetProperty (propName, flagsNoCase);
- if (prop == null) {
- string msg = String.Format ("Property {0} not found in type {1}", propName, type);
- throw new HttpException (msg);
- }
- Type propType = prop.PropertyType;
- ControlBuilder builder = null;
- if (typeof (ICollection).IsAssignableFrom (propType)) {
- builder = new CollectionBuilder ();
- } else if (typeof (ITemplate).IsAssignableFrom (propType)) {
- builder = new TemplateBuilder (prop);
- } else {
- builder = CreateBuilderFromType (parser, parentBuilder, propType, prop.Name,
- null, atts, line, fileName);
- builder.isProperty = true;
- return builder;
- }
- builder.Init (parser, this, null, prop.Name, null, atts);
- builder.fileName = fileName;
- builder.line = line;
- builder.isProperty = true;
- return builder;
- }
-
- public virtual void Init (TemplateParser parser,
- ControlBuilder parentBuilder,
- Type type,
- string tagName,
- string id,
- IDictionary attribs)
- {
- this.parser = parser;
- if (parser != null)
- this.location = parser.Location;
- this.parentBuilder = parentBuilder;
- this.type = type;
- this.tagName = tagName;
- this.id = id;
- this.attribs = attribs;
- if (type == null)
- return;
- if (this is TemplateBuilder)
- return;
- object [] atts = type.GetCustomAttributes (typeof (ParseChildrenAttribute), true);
-
- if (!typeof (IParserAccessor).IsAssignableFrom (type) && atts.Length == 0) {
- isIParserAccessor = false;
- childrenAsProperties = true;
- } else if (atts.Length > 0) {
- ParseChildrenAttribute att = (ParseChildrenAttribute) atts [0];
- childrenAsProperties = att.ChildrenAsProperties;
- if (childrenAsProperties && att.DefaultProperty != "") {
- defaultPropertyBuilder = CreatePropertyBuilder (att.DefaultProperty,
- parser, null);
- }
- }
- }
- public virtual bool NeedsTagInnerText ()
- {
- return false;
- }
- public virtual void OnAppendToParentBuilder (ControlBuilder parentBuilder)
- {
- if (defaultPropertyBuilder == null)
- return;
- ControlBuilder old = defaultPropertyBuilder;
- defaultPropertyBuilder = null;
- AppendSubBuilder (old);
- }
- internal void SetTagName (string name)
- {
- tagName = name;
- }
-
- public virtual void SetTagInnerText (string text)
- {
- }
- internal string GetNextID (string proposedID)
- {
- if (proposedID != null && proposedID.Trim () != "")
- return proposedID;
- return "_bctrl_" + nextID++;
- }
- internal virtual ControlBuilder CreateSubBuilder (string tagid,
- Hashtable atts,
- Type childType,
- TemplateParser parser,
- ILocation location)
- {
- ControlBuilder childBuilder = null;
- if (childrenAsProperties) {
- if (defaultPropertyBuilder == null) {
- childBuilder = CreatePropertyBuilder (tagid, parser, atts);
- } else {
- childBuilder = defaultPropertyBuilder.CreateSubBuilder (tagid, atts,
- null, parser, location);
- }
- return childBuilder;
- }
- childType = GetChildControlType (tagid, atts);
- if (childType == null)
- return null;
- childBuilder = CreateBuilderFromType (parser, this, childType, tagid, id, atts,
- location.BeginLine, location.Filename);
- return childBuilder;
- }
- internal virtual object CreateInstance ()
- {
- // HtmlGenericControl, HtmlTableCell...
- object [] atts = type.GetCustomAttributes (typeof (ConstructorNeedsTagAttribute), true);
- object [] args = null;
- if (atts != null && atts.Length > 0) {
- ConstructorNeedsTagAttribute att = (ConstructorNeedsTagAttribute) atts [0];
- if (att.NeedsTag)
- args = new object [] {tagName};
- }
- return Activator.CreateInstance (type, args);
- }
- internal virtual void CreateChildren (object parent)
- {
- if (children == null || children.Count == 0)
- return;
- IParserAccessor parser = parent as IParserAccessor;
- if (parser == null)
- return;
- foreach (object o in children) {
- if (o is string) {
- parser.AddParsedSubObject (new LiteralControl ((string) o));
- } else {
- parser.AddParsedSubObject (((ControlBuilder) o).CreateInstance ());
- }
- }
- }
- }
- }
|