fixed tests
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / BaseDataBoundControl.cs
1 //
2 // System.Web.UI.WebControls.BaseDataBoundControl.cs
3 //
4 // Authors:
5 //      Lluis Sanchez Gual (lluis@novell.com)
6 //
7 // Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 #if NET_2_0
30 using System.Collections;
31 using System.ComponentModel;
32 using System.Security.Permissions;
33
34 namespace System.Web.UI.WebControls {
35
36         // CAS
37         [AspNetHostingPermission (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]
38         [AspNetHostingPermission (SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)]
39         // attributes
40         [DefaultProperty ("DataSourceID")]
41         [DesignerAttribute ("System.Web.UI.Design.WebControls.BaseDataBoundControlDesigner, " + Consts.AssemblySystem_Design, "System.ComponentModel.Design.IDesigner")]
42         public abstract class BaseDataBoundControl: WebControl
43         {
44                 public event EventHandler DataBound;
45                 
46                 object dataSource;
47                 bool initialized;
48                 bool preRendered;
49                 bool requiresDataBinding;
50                 
51                 protected BaseDataBoundControl ()
52                 {
53                 }
54
55                 /* Used for controls that used to inherit from
56                  * WebControl, so the tag can propagate upwards
57                  */
58                 internal BaseDataBoundControl (HtmlTextWriterTag tag) : base (tag)
59                 {
60                 }
61                 
62                 [BindableAttribute (true)]
63                 [ThemeableAttribute (false)]
64                 [DefaultValueAttribute (null)]
65                 [DesignerSerializationVisibilityAttribute (DesignerSerializationVisibility.Hidden)]
66                 public virtual object DataSource {
67                         get {
68                                 return dataSource;
69                         }
70                         set {
71                                 if(value!=null)
72                                         ValidateDataSource (value);
73                                 dataSource = value;
74                                 OnDataPropertyChanged ();
75                         }
76                 }
77                 
78                 [DefaultValueAttribute ("")]
79                 [ThemeableAttribute (false)]
80                 public virtual string DataSourceID {
81                         get {
82                                 return ViewState.GetString ("DataSourceID", "");
83                         }
84                         set {
85                                 ViewState["DataSourceID"] = value;
86                                 OnDataPropertyChanged ();
87                         }
88                 }
89                 
90                 protected bool Initialized {
91                         get { return initialized; }
92                 }
93                 
94                 protected bool IsBoundUsingDataSourceID {
95                         get { return DataSourceID.Length > 0; }
96                 }
97                 
98                 protected bool RequiresDataBinding {
99                         get { return requiresDataBinding; }
100                         set { 
101                                 requiresDataBinding = value;
102                                 if (value && preRendered && IsBoundUsingDataSourceID && Page != null && !Page.IsCallback)
103                                         EnsureDataBound ();
104                         }
105                 }
106                 
107                 protected void ConfirmInitState ()
108                 {
109                         initialized = true;
110                 }
111                 
112                 public override void DataBind ()
113                 {
114                         PerformSelect ();
115                 }
116
117                 protected virtual void EnsureDataBound ()
118                 {
119                         if (RequiresDataBinding && IsBoundUsingDataSourceID)
120                                 DataBind ();
121                 }
122                 
123                 protected virtual void OnDataBound (EventArgs e)
124                 {
125                         if (DataBound != null)
126                                 DataBound (this, e);
127                 }
128
129                 protected virtual void OnDataPropertyChanged ()
130                 {
131                         if (Initialized)
132                                 RequiresDataBinding = true;
133                 }
134                 
135                 protected internal override void OnInit (EventArgs e)
136                 {
137                         base.OnInit (e);
138                         Page.PreLoad += new EventHandler (OnPagePreLoad);
139
140                         if (!IsViewStateEnabled && Page != null && Page.IsPostBack)
141                                 RequiresDataBinding = true;
142                 }
143                 
144                 protected virtual void OnPagePreLoad (object sender, EventArgs e)
145                 {
146                         ConfirmInitState ();
147                 }
148                 
149                 protected internal override void OnPreRender (EventArgs e)
150                 {
151                         preRendered = true;
152                         EnsureDataBound ();
153                         base.OnPreRender (e);
154                 }
155                 
156                 protected abstract void PerformSelect ();
157                 
158                 protected abstract void ValidateDataSource (object dataSource);
159                 
160         }
161 }
162
163 #endif
164
165