* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / System.Web / System.Web.SessionState / RemoteStateServer.cs
1 //
2 // System.Web.SessionState.RemoteStateServer
3 //
4 // Author(s):
5 //  Jackson Harper (jackson@ximian.com)
6 //  Gonzalo Paniagua (gonzalo@ximian.com)
7 //
8 // (C) 2003-2006 Novell, Inc (http://www.novell.com)
9 //
10
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31
32 using System;
33 using System.Web.Caching;
34
35 namespace System.Web.SessionState {
36         internal class RemoteStateServer : MarshalByRefObject {
37                 Cache cache;
38                 //CacheItemRemovedCallback removedCB;
39
40                 internal RemoteStateServer ()
41                 {
42                         cache = new Cache ();
43                         //removedCB = new CacheItemRemovedCallback (OnItemRemoved);
44                 }
45
46                 /*
47                 void OnItemRemoved (string key, object value, CacheItemRemovedReason reason)
48                 {
49                         Console.WriteLine ("{2} {0} removed. Reason: {1}", key, reason, Datetime.Now);
50                 }
51                 */
52
53                 internal void Insert (string id, StateServerItem item)
54                 {
55                         //cache.Insert (id, item, null, Cache.NoAbsoluteExpiration, new TimeSpan (0, item.Timeout, 0), CacheItemPriority.Normal, removedCB);
56                         cache.Insert (id, item, null, Cache.NoAbsoluteExpiration, new TimeSpan (0, item.Timeout, 0));
57                 }
58
59                 internal void Update (string id, byte [] dict_data, byte [] sobjs_data)
60                 {
61                         StateServerItem item = cache [id] as StateServerItem;
62                         if (item == null)
63                                 return;
64
65                         item.DictionaryData = dict_data;
66                         item.StaticObjectsData = sobjs_data;
67                 }
68                 
69                 internal StateServerItem Get (string id)
70                 {
71                         StateServerItem item = cache [id] as StateServerItem;
72                         if (item == null || item.IsAbandoned ())
73                                 return null;
74
75                         return item;
76                 }
77
78                 internal void Remove (string id)
79                 {
80                         cache.Remove (id);
81                 }
82
83                 public override object InitializeLifetimeService ()
84                 {
85                         return null; // just in case...
86                 }
87         }
88 }
89