2010-03-02 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Web / System.Web.UI / DataSourceView.cs
blob7415b671ec96a16e45f27931d151c0727dd42e29
1 //
2 // System.Web.UI.DataSourceView
3 //
4 // Authors:
5 // Ben Maurer (bmaurer@users.sourceforge.net)
6 // Sanjay Gupta (gsanjay@novell.com)
7 //
8 // (C) 2003 Ben Maurer
9 // (C) 2004-2010 Novell, Inc. (http://www.novell.com)
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 //
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 //
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
33 using System.Collections;
34 using System.Collections.Specialized;
35 using System.Text;
36 using System.ComponentModel;
38 namespace System.Web.UI {
39 public abstract class DataSourceView
41 //IDataSource dataSourceOwner;
42 string viewName = String.Empty;
44 protected DataSourceView (IDataSource owner, string viewName)
46 if (owner == null)
47 throw new ArgumentNullException ("owner");
49 //this.dataSourceOwner = owner;
50 this.viewName = viewName;
51 owner.DataSourceChanged += new EventHandler (OnDataSourceChanged);
54 void OnDataSourceChanged (object sender, EventArgs e) {
55 OnDataSourceViewChanged (EventArgs.Empty);
58 public virtual void Delete (IDictionary keys, IDictionary values,
59 DataSourceViewOperationCallback callBack)
61 if (callBack == null)
62 throw new ArgumentNullException ("callBack");
64 int rowAffected;
65 try {
66 rowAffected = ExecuteDelete (keys, values);
68 catch (Exception e) {
69 if (!callBack (0, e))
70 throw;
71 return;
73 callBack (rowAffected, null);
76 protected virtual int ExecuteDelete(IDictionary keys, IDictionary values)
78 throw new NotSupportedException ();
81 protected virtual int ExecuteInsert (IDictionary keys)
83 throw new NotSupportedException();
86 protected internal abstract IEnumerable ExecuteSelect (
87 DataSourceSelectArguments arguments);
89 protected virtual int ExecuteUpdate (IDictionary keys, IDictionary values,
90 IDictionary oldValues )
92 throw new NotSupportedException ();
95 public virtual void Insert (IDictionary values,
96 DataSourceViewOperationCallback callBack)
98 if (callBack == null)
99 throw new ArgumentNullException("callBack");
101 int rowAffected;
102 try {
103 rowAffected = ExecuteInsert (values);
104 } catch (Exception e) {
105 if (!callBack (0, e))
106 throw;
107 return;
110 callBack (rowAffected, null);
113 protected virtual void OnDataSourceViewChanged (EventArgs eventArgs)
115 if (eventsList != null) {
116 EventHandler evtHandler = eventsList [EventDataSourceViewChanged] as EventHandler;
117 if (evtHandler != null)
118 evtHandler(this, eventArgs);
122 protected internal virtual void RaiseUnsupportedCapabilityError (
123 DataSourceCapabilities capability)
125 if ((capability & DataSourceCapabilities.Sort) != 0)
126 if (!CanSort)
127 throw new NotSupportedException ("Sort Capabilites");
129 if ((capability & DataSourceCapabilities.Page) != 0)
130 if (!CanPage)
131 throw new NotSupportedException("Page Capabilites");
133 if ((capability & DataSourceCapabilities.RetrieveTotalRowCount) != 0)
134 if (!CanRetrieveTotalRowCount)
135 throw new NotSupportedException("RetrieveTotalRowCount Capabilites");
137 return;
140 public virtual void Select (DataSourceSelectArguments selectArgs,
141 DataSourceViewSelectCallback callBack)
143 if (callBack == null)
144 throw new ArgumentNullException("callBack");
146 selectArgs.RaiseUnsupportedCapabilitiesError (this);
148 IEnumerable selectList = ExecuteSelect (selectArgs);
149 callBack (selectList);
152 public virtual void Update(IDictionary keys, IDictionary values,
153 IDictionary oldValues, DataSourceViewOperationCallback callBack)
155 if (callBack == null)
156 throw new ArgumentNullException ("callBack");
158 int rowAffected;
159 try {
160 rowAffected = ExecuteUpdate (keys, values, oldValues);
161 } catch (Exception e) {
162 if (!callBack (0, e))
163 throw;
164 return;
167 callBack (rowAffected, null);
170 public virtual bool CanDelete { get { return false; } }
171 public virtual bool CanInsert { get { return false; } }
172 public virtual bool CanPage { get { return false; } }
173 public virtual bool CanRetrieveTotalRowCount { get { return false; } }
174 public virtual bool CanSort { get { return false; } }
175 public virtual bool CanUpdate { get { return false; } }
177 EventHandlerList eventsList;
178 protected EventHandlerList Events {
179 get {
180 if (eventsList == null)
181 eventsList = new EventHandlerList();
183 return eventsList;
187 internal bool HasEvents ()
189 return eventsList != null;
192 public string Name {
193 get { return viewName; }
196 static readonly object EventDataSourceViewChanged = new object ();
198 public event EventHandler DataSourceViewChanged
200 add { Events.AddHandler (EventDataSourceViewChanged, value); }
201 remove { Events.RemoveHandler (EventDataSourceViewChanged, value); }