New test.
[mono.git] / mcs / class / System.Web / System.Web / TimeoutManager.cs
1 //
2 // System.Web.TimeoutManager
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2003 Novell, Inc (http://www.novell.com)
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 using System;
32 using System.Collections;
33 using System.Threading;
34 using System.Web.Configuration;
35
36 namespace System.Web
37 {
38         class StepTimeout
39         {
40         }
41         
42         class TimeoutManager
43         {
44                 Timer timer;
45                 Hashtable contexts;
46
47                 public TimeoutManager ()
48                 {
49                         contexts = Hashtable.Synchronized (new Hashtable ());
50                         timer = new Timer (new TimerCallback (CheckTimeouts), null, 0, 15000);
51                 }
52
53                 public void Add (HttpContext context)
54                 {
55                         object value = contexts [context];
56                         if (value == null) {
57                                 value = Thread.CurrentThread;
58                         } else if (value is Thread) {
59                                 ArrayList list = new ArrayList ();
60                                 list.Add (value);
61                                 list.Add (Thread.CurrentThread);
62                                 value = list;
63                         } else {
64                                 ArrayList list = (ArrayList) value;
65                                 list.Add (Thread.CurrentThread);
66                                 value = list;
67                         }
68
69                         lock (this) {
70                                 contexts [context] = value;
71                         }
72                 }
73
74                 public Thread Remove (HttpContext context)
75                 {
76                         object value = contexts [context];
77                         if (value == null)
78                                 return null;
79
80                         if (value is Thread) {
81                                 lock (this) {
82                                         contexts.Remove (context);
83                                 }
84                                 return (Thread) value;
85                         }
86                         
87                         ArrayList list = (ArrayList) value;
88                         Thread result = null;
89                         if (list.Count > 0) {
90                                 result = (Thread) list [list.Count - 1];
91                                 list.RemoveAt (list.Count - 1);
92                         }
93
94                         if (list.Count == 0) {
95                                 lock (this) {
96                                         contexts.Remove (context);
97                                 }
98                         }
99
100                         return result;
101                 }
102
103                 void CheckTimeouts (object state)
104                 {
105                         if (contexts.Count == 0) {
106                                 return;
107                         }
108
109                         DateTime now = DateTime.UtcNow;
110                         ArrayList clist = new ArrayList ();
111
112                         lock (this) { // The lock prevents Keys enumerator from being out of synch
113                                 clist.AddRange (contexts.Keys);
114                         }
115
116                         foreach (HttpContext context in clist) {
117                                 if (!context.CheckIfTimeout (now))
118                                         continue;
119
120                                 Thread thread = Remove (context);
121                                 if (thread != null) // Only if context is removed right after the lock
122                                         thread.Abort (new StepTimeout ());
123                         }
124                 }
125         }
126 }
127