Merge branch 'bugfix-main-thread-root'
[mono.git] / mcs / class / System.Web.Extensions / System.Web.UI / AsyncPostBackTrigger.cs
1 //
2 // AsyncPostBackTrigger.cs
3 //
4 // Author:
5 //   Igor Zelmanovich <igorz@mainsoft.com>
6 //
7 // (C) 2007 Mainsoft, Inc.  http://www.mainsoft.com
8 //
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using System;
31 using System.Collections.Generic;
32 using System.Text;
33 using System.ComponentModel;
34 using System.Reflection;
35
36 namespace System.Web.UI
37 {
38         public class AsyncPostBackTrigger : UpdatePanelControlTrigger
39         {
40                 static readonly MethodInfo _eventHandler = typeof (AsyncPostBackTrigger).GetMethod ("OnEvent");
41                 static readonly char[] _controlIdSeparators = {'_', '$'};
42                 
43                 string _eventName;
44
45                 public new string ControlID {
46                         get {
47                                 return base.ControlID;
48                         }
49                         set {
50                                 base.ControlID = value;
51                         }
52                 }
53
54                 [DefaultValue ("")]
55                 [Category ("Behavior")]
56                 public string EventName {
57                         get {
58                                 if (_eventName == null)
59                                         return String.Empty;
60                                 return _eventName;
61                         }
62                         set {
63                                 _eventName = value;
64                         }
65                 }
66
67                 protected internal override bool HasTriggered ()
68                 {
69                         Control ctrl = FindTargetControl (true);
70                         string ctrlUniqueID = ctrl != null ? ctrl.UniqueID : null;
71                         if (ctrlUniqueID == null)
72                                 return false;
73
74                         string asyncPostBackElementID = Owner.ScriptManager.AsyncPostBackSourceElementID;
75                         if (String.Compare (asyncPostBackElementID, ctrlUniqueID, StringComparison.Ordinal) == 0)
76                                 return true;
77                         else {
78                                 int sep = asyncPostBackElementID.IndexOfAny (_controlIdSeparators);
79                                 if (sep > -1 && String.Compare (asyncPostBackElementID, 0, ctrlUniqueID, 0, ctrlUniqueID.Length, StringComparison.Ordinal) == 0)
80                                         return true;
81                         }
82                         
83                         return false;
84                 }
85
86                 protected internal override void Initialize ()
87                 {
88                         Control c = FindTargetControl (true);
89                         ScriptManager sm = Owner.ScriptManager;
90                         string eventName = EventName;
91                         if (String.IsNullOrEmpty (eventName)) {
92                                 object[] attrs = c.GetType ().GetCustomAttributes (typeof (DefaultEventAttribute), true);
93                                 if (attrs != null && attrs.Length > 0) {
94                                         var dea = attrs [0] as DefaultEventAttribute;
95                                         if (dea != null)
96                                                 eventName = dea.Name;
97                                 }
98                         }
99
100                         if (!String.IsNullOrEmpty (eventName)) {
101                                 EventInfo evi = c.GetType ().GetEvent (eventName, BindingFlags.Instance | BindingFlags.Public | BindingFlags.IgnoreCase);
102                                 if (evi == null)
103                                         throw new InvalidOperationException (String.Format ("Could not find an event named '{0}' on associated control '{1}' for the trigger in UpdatePanel '{2}'.", eventName, c.ID, Owner.ID));
104
105                                 Delegate d = null;
106                                 try {
107                                         d = Delegate.CreateDelegate (evi.EventHandlerType, this, _eventHandler);
108                                 }
109                                 catch (ArgumentException) {
110                                         throw new InvalidOperationException (String.Format ("The event '{0}' in '{1}' for the control '{2}' does not match a standard event handler signature.", eventName, c.GetType (), c.ID));
111                                 }
112
113                                 evi.AddEventHandler (c, d);
114                         }
115                         
116                         sm.RegisterAsyncPostBackControl (c);
117                 }
118
119                 public void OnEvent (object sender, EventArgs e)
120                 {
121                         UpdatePanel owner = Owner;
122                         if (owner != null && owner.UpdateMode != UpdatePanelUpdateMode.Always)
123                                 owner.Update ();
124                 }
125
126                 public override string ToString () {
127                         return String.Format ("AsyncPostBackTrigger: {0}.{1}", ControlID, EventName);
128                 }
129         }
130 }