| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745 |
- //
- // System.Web.UI.Control.cs
- //
- // Authors:
- // Bob Smith <[email protected]>
- // Gonzalo Paniagua Javier ([email protected])
- //
- // (C) Bob Smith
- // (c) 2002 Ximian, Inc. (http://www.ximian.com)
- //
- /*
- * Maintainer: [email protected], [email protected]
- * (C) Bob Smith, Gaurav Vaish
- */
- //notes: view state only tracks changes after OnInit method is executed for the page request. You can read from it at any time, but cant write to it during rendering.
- //even more notes: view state info in trackviewstate method description. read later.
- //Ok, enough notes: what the heck is different between enable view state, and track view state.
- //Well, maybe not. How does the ViewState know when to track changes? Does it look at the property
- //on the owning control, or does it have a method/property of its own that gets called?
- // I think this last question is solved in the Interface for it. Look into this.
- //cycle:
- //init is called when control is first created.
- //load view state ic called right after init to populate the view state.
- //loadpostdata is called if ipostbackdatahandler is implemented.
- //load is called when control is loaded into a page
- //raisepostdatachangedevent if ipostbackdatahandler is implemented.
- //raisepostbackevent if ipostbackeventhandler is implemented.
- //prerender is called when the server is about to render its page object
- //SaveViewState is called.
- //Unload then dispose it apears. :)
- //Naming Container MUST have some methods. What are they? No clue. Help?
- //read this later. http://gotdotnet.com/quickstart/aspplus/
- //This to: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguidnf/html/cpconattributesdesign-timesupport.asp
- //http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguidnf/html/cpcontracefunctionality.asp
- // Isnt life grand? :)
- // See the undocumented methods? Gota love um. ;)
- // ASP.test4_aspx.Page_Load(Object Sender, EventArgs e) in \\genfs2\www24\bobsmith11\test4.aspx:6
- // System.Web.UI.Control.OnLoad(EventArgs e) +67
- // System.Web.UI.Control.LoadRecursive() +73
- // System.Web.UI.Page.ProcessRequestMain() +394
- // ASP.test4_aspx.Page_Unload(Object Sender, EventArgs e) in \\genfs2\www24\bobsmith11\test4.aspx:6
- // System.EventHandler.Invoke(Object sender, EventArgs e) +0
- // System.Web.UI.Control.OnUnload(EventArgs e) +67
- // System.Web.UI.Control.UnloadRecursive(Boolean dispose) +78
- // System.Web.UI.Page.ProcessRequest() +194
- // System.Web.UI.Page.ProcessRequest(HttpContext context) +18
- // System.Web.CallHandlerExecutionStep.Execute() +179
- // System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +87
- // ASP.test4_aspx.Page_Unload(Object Sender, EventArgs e) in \\genfs2\www24\bobsmith11\test4.aspx:6
- // System.Web.UI.Control.OnUnload(EventArgs e) +67
- // System.Web.UI.Control.UnloadRecursive(Boolean dispose) +78
- // System.Web.UI.Page.ProcessRequest()
- // ASP.test4_aspx.Page_Kill(Object Sender, EventArgs e) in \\genfs2\www24\bobsmith11\test4.aspx:6
- // System.Web.UI.Control.OnPreRender(EventArgs e) +67
- // System.Web.UI.Control.PreRenderRecursiveInternal() +61
- // System.Web.UI.Page.ProcessRequestMain() +753
- // ASP.test4_aspx.OnInit(EventArgs e) in \\genfs2\www24\bobsmith11\test4.aspx:6
- // System.Web.UI.Control.InitRecursive(Control namingContainer) +202
- // System.Web.UI.Page.ProcessRequestMain() +120
- // ASP.test4_aspx.SaveViewState() in \\genfs2\www24\bobsmith11\test4.aspx:12
- // System.Web.UI.Control.SaveViewStateRecursive() +51
- // System.Web.UI.Page.SavePageViewState() +174
- // System.Web.UI.Page.ProcessRequestMain() +861
- // ASP.test_aspx.LoadViewState(Object t) +28
- // System.Web.UI.Control.LoadViewStateRecursive(Object savedState) +125
- // System.Web.UI.Page.LoadPageViewState() +182
- // System.Web.UI.Page.ProcessRequestMain() +256
- using System;
- using System.Collections;
- using System.ComponentModel;
- using System.Web;
- using System.Web.Util;
- namespace System.Web.UI
- {
- public class Control : IComponent, IDisposable, IParserAccessor, IDataBindingsAccessor
- {
- private static readonly object DataBindingEvent = new object();
- private static readonly object DisposedEvent = new object();
- private static readonly object InitEvent = new object();
- private static readonly object LoadEvent = new object();
- private static readonly object PreRenderEvent = new object();
- private static readonly object UnloadEvent = new object();
- private string _userId = null;
- private string _cachedUserId = null;
- private string _cachedClientId = null;
- private ControlCollection _controls = null;
- private bool _enableViewState = true;
- private IDictionary _childViewStates = null; //TODO: Not sure datatype. Placeholder guess.
- private bool _isNamingContainer = false;
- private Control _namingContainer = null;
- private Page _page = null;
- private Control _parent = null;
- private ISite _site = null;
- private bool _visible = true;
- private HttpContext _context = null;
- private bool _childControlsCreated = false;
- private StateBag _viewState = null;
- private bool _trackViewState = false;
- private EventHandlerList _events = new EventHandlerList();
- private RenderMethod _renderMethodDelegate = null;
- private bool autoID = true;
- private bool creatingControls = false;
- private bool bindingContainer = true;
- private bool autoEventWireup = true;
-
- private DataBindingCollection dataBindings = null;
- public Control()
- {
- if (this is INamingContainer) _isNamingContainer = true;
- }
- public Control BindingContainer
- {
- get {
- Control container = NamingContainer;
- if (!container.bindingContainer)
- container = container.BindingContainer;
- return container;
- }
- }
-
- public virtual string ClientID //DIT
- {
- get
- {
- if (_cachedUserId != null && _cachedClientId != null)
- return _cachedClientId;
- _cachedUserId = UniqueID.Replace(':', '_');
- return _cachedUserId;
- }
- }
- public virtual ControlCollection Controls //DIT
- {
- get
- {
- if (_controls == null) _controls = CreateControlCollection();
- return _controls;
- }
- }
- public virtual bool EnableViewState //DIT
- {
- get
- {
- return _enableViewState;
- }
- set
- {
- _enableViewState = value;
- }
- }
- public virtual string ID
- {
- get //DIT
- {
- return _userId;
- }
- set
- {
- if (value == null || value == "") return;
- _userId = value;
- _cachedUserId = null;
- //TODO: Some Naming Container stuff here I think.
- }
- }
- public virtual Control NamingContainer //DIT
- {
- get
- {
- if (_namingContainer == null && _parent != null)
- {
- if (_parent._isNamingContainer == false)
- _namingContainer = _parent.NamingContainer;
- else
- _namingContainer = _parent;
- }
- return _namingContainer;
- }
- }
- public virtual Page Page //DIT
- {
- get
- {
- if (_page == null && _parent != null) _page = _parent.Page;
- return _page;
- }
- set
- {
- _page = value;
- }
- }
- public virtual Control Parent //DIT
- {
- get
- {
- return _parent;
- }
- }
- public ISite Site //DIT
- {
- get
- {
- return _site;
- }
- set
- {
- _site = value;
- }
- }
- public virtual string TemplateSourceDirectory {
- get { return (_parent == null) ? String.Empty : _parent.TemplateSourceDirectory; }
- }
- [MonoTODO]
- public virtual string UniqueID
- {
- get
- {
- //TODO: Some Naming container methods here. What are they? Why arnt they declared?
- //Note: Nuked the old stuff here. Was total crap. :)
- return ID;
- }
- }
- public virtual bool Visible
- {
- get
- {
- if (_visible == false)
- return false;
- if (_parent != null)
- return _parent.Visible;
- return true;
- }
- set
- {
- _visible = value;
- }
- }
- protected bool ChildControlsCreated //DIT
- {
- get
- {
- return _childControlsCreated;
- }
- set
- {
- if (value == false && _childControlsCreated == true)
- _controls.Clear();
- _childControlsCreated = value;
- }
- }
- protected virtual HttpContext Context //DIT
- {
- get
- {
- HttpContext context;
- if (_context != null)
- return _context;
- if (_parent == null)
- return HttpContext.Current;
- context = _parent.Context;
- if (context != null)
- return context;
- return HttpContext.Current;
- }
- }
- protected EventHandlerList Events //DIT
- {
- get
- {
- if (_events == null)
- {
- _events = new EventHandlerList();
- }
- return _events;
- }
- }
- protected bool HasChildViewState //DIT
- {
- get
- {
- if (_childViewStates == null) return false;
- return true;
- }
- }
- protected bool IsTrackingViewState //DIT
- {
- get
- {
- return _trackViewState;
- }
- }
- protected virtual StateBag ViewState
- {
- get
- {
- if(_viewState == null)
- _viewState = new StateBag (ViewStateIgnoresCase);
- if (IsTrackingViewState)
- _viewState.TrackViewState ();
- return _viewState;
- }
- }
- protected virtual bool ViewStateIgnoresCase
- {
- get {
- return false;
- }
- }
- internal bool AutoEventWireup {
- get { return autoEventWireup; }
- set { autoEventWireup = value; }
- }
- internal void SetBindingContainer (bool isBC)
- {
- bindingContainer = isBC;
- }
-
- private int defaultNumberID;
- protected internal virtual void AddedControl (Control control, int index)
- {
- /* Ensure the control don't have more than 1 parent */
- if (control._parent != null)
- control._parent.Controls.Remove (control);
- control._parent = this;
- control._page = Page;
- // Without this, DataBoundLiteralControl crashes in OnDataBound event.
- Control namingContainer = NamingContainer;
- if (namingContainer != null)
- control._namingContainer = namingContainer;
-
- if (control.AutoID == true && control.ID == null)
- control.ID = ID + "_ctrl_" + defaultNumberID++;
- }
- protected virtual void AddParsedSubObject(object obj) //DIT
- {
- WebTrace.PushContext ("Control.AddParsedSubobject ()");
- Control c = obj as Control;
- WebTrace.WriteLine ("Start: {0} -> {1}", obj, (c != null) ? c.ID : String.Empty);
- if (c != null) Controls.Add(c);
- WebTrace.WriteLine ("End");
- WebTrace.PopContext ();
- }
- protected void BuildProfileTree(string parentId, bool calcViewState)
- {
- //TODO
- }
- protected void ClearChildViewState()
- {
- //TODO
- //Not quite sure about this. an example clears children then calls this, so I think
- //view state is local to the current object, not children.
- }
- protected virtual void CreateChildControls() {} //DIT
- protected virtual ControlCollection CreateControlCollection() //DIT
- {
- return new ControlCollection(this);
- }
- protected virtual void EnsureChildControls () //DIT
- {
- if (ChildControlsCreated == false && !creatingControls) {
- creatingControls = true;
- CreateChildControls();
- ChildControlsCreated = true;
- creatingControls = false;
- }
- }
- protected virtual Control FindControl(string id, int pathOffset)
- {
- //TODO: I think there is Naming Container stuff here. Redo.
- int i;
- Control ctrl;
- for (i = pathOffset; i < _controls.Count; i++){
- ctrl = _controls [i];
-
- if (ctrl.ID == id)
- return ctrl;
- if (ctrl.Controls.Count > 0){
- Control other = ctrl.FindControl (id);
- if (other != null)
- return other;
- }
-
- }
- return null;
- }
- protected virtual void LoadViewState(object savedState)
- {
- if (savedState != null)
- ViewState.LoadViewState (savedState);
- }
-
- [MonoTODO("Secure?")]
- protected string MapPathSecure(string virtualPath)
- {
- return Context.Request.MapPath (virtualPath);
- }
- protected virtual bool OnBubbleEvent(object source, EventArgs args) //DIT
- {
- return false;
- }
- protected virtual void OnDataBinding(EventArgs e) //DIT
- {
- if (_events != null)
- {
- EventHandler eh = (EventHandler)(_events[DataBindingEvent]);
- if (eh != null) eh(this, e);
- }
- }
- protected virtual void OnInit(EventArgs e) //DIT
- {
- if (_events != null)
- {
- EventHandler eh = (EventHandler)(_events[InitEvent]);
- if (eh != null) eh(this, e);
- }
- }
- protected virtual void OnLoad(EventArgs e) //DIT
- {
- if (_events != null)
- {
- EventHandler eh = (EventHandler)(_events[LoadEvent]);
- if (eh != null) eh(this, e);
- }
- }
- protected virtual void OnPreRender(EventArgs e) //DIT
- {
- if (_events != null)
- {
- EventHandler eh = (EventHandler)(_events[PreRenderEvent]);
- if (eh != null) eh(this, e);
- }
- }
- protected virtual void OnUnload(EventArgs e) //DIT
- {
- if (_events != null)
- {
- EventHandler eh = (EventHandler)(_events[UnloadEvent]);
- if (eh != null) eh(this, e);
- }
- }
-
- protected void RaiseBubbleEvent(object source, EventArgs args)
- {
- Control c = Parent;
- while (c != null) {
- if (c.OnBubbleEvent (source, args))
- break;
- c = c.Parent;
- }
- }
- protected virtual void Render(HtmlTextWriter writer) //DIT
- {
- RenderChildren(writer);
- }
- protected virtual void RenderChildren(HtmlTextWriter writer) //DIT
- {
- if (_renderMethodDelegate != null)
- _renderMethodDelegate(writer, this);
- else if (_controls != null)
- foreach (Control c in _controls)
- c.RenderControl(writer);
- }
-
- protected virtual object SaveViewState ()
- {
- if (_viewState == null)
- return null;
- return _viewState.SaveViewState ();
- }
- protected virtual void TrackViewState()
- {
- if (_viewState != null)
- _viewState.TrackViewState ();
- _trackViewState = true;
- }
-
- public virtual void Dispose()
- {
- if (_events != null)
- {
- EventHandler eh = (EventHandler) _events [DisposedEvent];
- if (eh != null)
- eh(this, EventArgs.Empty);
- }
- }
- public bool HasChildren
- {
- get { return (_controls != null && _controls.Count > 0); }
- }
- public event EventHandler DataBinding //DIT
- {
- add
- {
- Events.AddHandler(DataBindingEvent, value);
- }
- remove
- {
- Events.RemoveHandler(DataBindingEvent, value);
- }
- }
- public event EventHandler Disposed //DIT
- {
- add
- {
- Events.AddHandler(DisposedEvent, value);
- }
- remove
- {
- Events.RemoveHandler(DisposedEvent, value);
- }
- }
- public event EventHandler Init //DIT
- {
- add
- {
- Events.AddHandler(InitEvent, value);
- }
- remove
- {
- Events.RemoveHandler(InitEvent, value);
- }
- }
- public event EventHandler Load //DIT
- {
- add
- {
- Events.AddHandler(LoadEvent, value);
- }
- remove
- {
- Events.RemoveHandler(LoadEvent, value);
- }
- }
- public event EventHandler PreRender //DIT
- {
- add
- {
- Events.AddHandler(PreRenderEvent, value);
- }
- remove
- {
- Events.RemoveHandler(PreRenderEvent, value);
- }
- }
- public event EventHandler Unload //DIT
- {
- add
- {
- Events.AddHandler(UnloadEvent, value);
- }
- remove
- {
- Events.RemoveHandler(UnloadEvent, value);
- }
- }
- public virtual void DataBind() //DIT
- {
- OnDataBinding(EventArgs.Empty);
- if (_controls != null)
- foreach (Control c in _controls)
- c.DataBind();
- }
- public virtual Control FindControl(string id) //DIT
- {
- return FindControl(id, 0);
- }
- public virtual bool HasControls() //DIT
- {
- if (_controls != null && _controls.Count >0) return true;
- return false;
- }
- public void RenderControl(HtmlTextWriter writer)
- {
- if (_visible)
- {
- //TODO: Something about tracing here.
- Render(writer);
- }
- }
-
- [MonoTODO]
- public string ResolveUrl(string relativeUrl)
- {
- return relativeUrl;
- }
- public void SetRenderMethodDelegate(RenderMethod renderMethod) //DIT
- {
- WebTrace.PushContext ("Control.AddParsedSubobject ()");
- WebTrace.WriteLine ("Start");
- _renderMethodDelegate = renderMethod;
- WebTrace.WriteLine ("End");
- WebTrace.PopContext ();
- }
- protected void LoadRecursive()
- {
- OnLoad(EventArgs.Empty);
- if (_controls != null) foreach (Control c in _controls) c.LoadRecursive();
- }
- protected void UnloadRecursive(Boolean dispose)
- {
- OnUnload(EventArgs.Empty);
- if (_controls != null) foreach (Control c in _controls) c.UnloadRecursive(dispose);
- if (dispose) Dispose();
- }
- protected void PreRenderRecursiveInternal()
- {
- OnPreRender(EventArgs.Empty);
- if (_controls != null) foreach (Control c in _controls) c.PreRenderRecursiveInternal();
- }
- protected void InitRecursive(Control namingContainer)
- {
- if (_controls != null) foreach (Control c in _controls) c.InitRecursive(namingContainer);
- OnInit(EventArgs.Empty);
- TrackViewState ();
- }
-
- internal object SaveViewStateRecursive()
- {
- if (!EnableViewState)
- return null;
- ArrayList controlList = null;
- ArrayList controlStates = null;
- foreach (Control ctrl in Controls){
- if (controlList == null) {
- controlList = new ArrayList ();
- controlStates = new ArrayList ();
- }
- controlList.Add (ctrl.ID);
- controlStates.Add (ctrl.SaveViewStateRecursive ());
- }
-
- return new Triplet (SaveViewState (), controlList, controlStates);
- }
-
- internal void LoadViewStateRecursive (object savedState)
- {
- if (!EnableViewState || !Visible || savedState == null)
- return;
- Triplet savedInfo = (Triplet) savedState;
- LoadViewState (savedInfo.First);
- ArrayList controlList = savedInfo.Second as ArrayList;
- if (controlList == null)
- return;
- ArrayList controlStates = savedInfo.Third as ArrayList;
- int nControls = controlList.Count;
- for (int i = 0; i < nControls; i++) {
- Control c = FindControl ((string) controlList [i]);
- if (c != null && controlStates != null)
- c.LoadViewStateRecursive (controlStates [i]);
- }
- }
-
- void IParserAccessor.AddParsedSubObject(object obj)
- {
- AddParsedSubObject(obj);
- }
-
- DataBindingCollection IDataBindingsAccessor.DataBindings
- {
- get
- {
- if(dataBindings == null)
- dataBindings = new DataBindingCollection();
- return dataBindings;
- }
- }
-
- bool IDataBindingsAccessor.HasDataBindings
- {
- get
- {
- return (dataBindings!=null && dataBindings.Count>0);
- }
- }
-
- internal bool AutoID
- {
- get { return autoID; }
- set { autoID = value; }
- }
- internal void PreventAutoID()
- {
- AutoID = false;
- }
-
- protected internal virtual void RemovedControl (Control control)
- {
- control.UnloadRecursive (false);
- control._parent = null;
- control._page = null;
- control._namingContainer = null;
- }
- //TODO: I think there are some needed Interface implementations to do here.
- //TODO: Find api for INamingContainer.
- }
- }
|