2005-10-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.Web / System.Web / SiteMapNode.cs
1 //
2 // System.Web.SiteMapNode
3 //
4 // Authors:
5 //      Ben Maurer (bmaurer@users.sourceforge.net)
6 //
7 // (C) 2003 Ben Maurer
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 #if NET_2_0
32 using System.Collections;
33 using System.Collections.Specialized;
34 using System.Text;
35 using System.Web.UI;
36 using System.Web.UI.WebControls;
37 using System.ComponentModel;
38
39 namespace System.Web {
40         public class SiteMapNode : IHierarchyData, INavigateUIData, ICloneable {
41         
42                 private SiteMapNode () {}
43                 
44                 public SiteMapNode (SiteMapProvider provider, string key) : this (provider, key, null, null, null, null, null, null, null) {}
45                 public SiteMapNode (SiteMapProvider provider, string key, string url) : this (provider, key, url, null, null, null, null, null, null) {}
46                 public SiteMapNode (SiteMapProvider provider, string key, string url, string title) : this (provider, key, url, title, null, null, null, null, null) {}
47                 public SiteMapNode (SiteMapProvider provider, string key, string url, string title, string description) : this (provider, key, url, title, description, null, null, null, null) {}
48                 public SiteMapNode (SiteMapProvider provider, string key, string url, string title, string description, IList roles, NameValueCollection attributes, NameValueCollection explicitResourceKeys, string implicitResourceKey)
49                 {
50                         if (provider == null)
51                                 throw new ArgumentNullException ("provider");
52                         if (key == null)
53                                 throw new ArgumentNullException ("key");
54                         
55                         this.provider = provider;
56                         this.key = key;
57                         this.url = url;
58                         this.title = title;
59                         this.description = description;
60                         this.roles = roles;
61                         this.attributes = attributes;
62                         this.resourceKeys = explicitResourceKeys;
63                         this.implicitResourceKey = implicitResourceKey;
64                 }
65
66                 public SiteMapDataSourceView GetDataSourceView (SiteMapDataSource owner, string viewName)
67                 {
68                         return new SiteMapDataSourceView (owner, viewName, this);
69                 }
70                 
71                 public SiteMapHierarchicalDataSourceView GetHierarchicalDataSourceView ()
72                 {
73                         return new SiteMapHierarchicalDataSourceView (this);
74                 }
75                 
76                 public bool IsAccessibleToUser (System.Web.HttpContext ctx)
77                 {
78                         return provider.IsAccessibleToUser (ctx, this);
79                 }
80                 
81                 public override string ToString()
82                 {
83                         return Title;
84                 }
85
86                 public virtual bool HasChildNodes {
87                         get { return ChildNodes != null && ChildNodes.Count != 0; }
88                 }
89
90                 public SiteMapNodeCollection GetAllNodes ()
91                 {
92                         SiteMapNodeCollection ret;
93                 
94                         ret = new SiteMapNodeCollection ();
95                         GetAllNodesRecursive (ret);
96                         return SiteMapNodeCollection.ReadOnly (ret);
97                 }
98                 
99                 void GetAllNodesRecursive(SiteMapNodeCollection c)
100                 {
101                         SiteMapNodeCollection childNodes = this.ChildNodes;
102                         
103                         if (childNodes.Count > 0) {
104                                 childNodes.AddRange (childNodes);
105                                 foreach (SiteMapNode n in childNodes)
106                                         n.GetAllNodesRecursive (c);
107                         }
108                 }
109
110                 
111                 public virtual bool IsDescendantOf (SiteMapNode node)
112                 {
113                         for (SiteMapNode n = ParentNode; n != null; n = n.ParentNode)
114                                 if (n == node) return true; 
115
116                         return false; 
117                 }
118                 
119                 public virtual SiteMapNode NextSibling {
120                         get {
121                                 IList siblings = this.SiblingNodes;
122                                 if (siblings == null)
123                                         return null; 
124                                 
125                                 int pos = siblings.IndexOf (this);
126                                 if (pos >= 0 && pos < siblings.Count - 1)
127                                         return (SiteMapNode) siblings [pos + 1]; 
128                                 
129                                 return null; 
130                         }
131                 }
132                 
133                 public virtual SiteMapNode PreviousSibling {
134                         get {
135                                 IList siblings = this.SiblingNodes;
136                                 if (siblings == null)
137                                         return null; 
138                                 
139                                 int pos = siblings.IndexOf (this);
140                                 if (pos > 0 && pos < siblings.Count)
141                                         return (SiteMapNode) siblings [pos - 1]; 
142                                 
143                                 return null; 
144                         }
145                 }
146                 
147                 public virtual SiteMapNode ParentNode {
148                         get {
149                                 if (parent != null) return parent;
150                                 
151                                 SiteMapProvider provider = this.provider;
152                                 
153                                 do {
154                                         parent = provider.GetParentNode (this);
155                                         if (parent != null)
156                                                 return parent; 
157                                         
158                                         provider = provider.ParentProvider;
159                                 } while (provider != null);
160                                 return null;
161                         }
162                         set {
163                                 CheckWritable ();
164                                 parent = value;
165                         }
166                 }
167                 
168                 public virtual SiteMapNodeCollection ChildNodes {
169                         get {
170                                 if (childNodes != null) return childNodes;
171                                 return provider.GetChildNodes (this);
172                         } 
173                         set {
174                                 CheckWritable ();
175                                 childNodes = value;
176                         }
177                 }
178
179                 public virtual SiteMapNode RootNode { get { return provider.RootProvider.RootNode; }  }
180                 
181                 SiteMapNodeCollection SiblingNodes {
182                         get {
183                                 if (ParentNode != null)
184                                         return ParentNode.ChildNodes;
185                                 
186                                 return null;
187                         }
188                 }
189                 
190                 [MonoTODO]
191                 protected string GetExplicitResourceString (string attributeName, string defaultValue, bool throwIfNotFound)
192                 {
193                         return null;
194                 }
195                 
196                 [MonoTODO]
197                 protected string GetImplicitResourceString (string attributeName)
198                 {
199                         return null;
200                 }
201                 
202                 [MonoTODO ("resource string?")]
203                 public string this [string key]
204                 {
205                         get {
206                                 string val = null;
207                                 if (provider.EnableLocalization) {
208                                         val = GetExplicitResourceString (key, null, true);
209                                         if (val == null) val = GetImplicitResourceString (key);
210                                 }
211                                 if (val != null) return null;
212                                 if (attributes != null) return attributes [key];
213                                 return null;
214                         }
215                         set {
216                                 CheckWritable ();
217                                 if (attributes == null) attributes = new NameValueCollection ();
218                                 attributes [key] = value;
219                         }
220                 }
221                 
222                 object ICloneable.Clone ()
223                 {
224                         return Clone (false);
225                 }
226                 
227                 public virtual SiteMapNode Clone ()
228                 {
229                         return Clone (false);
230                 }
231                 
232                 public virtual SiteMapNode Clone (bool cloneParentNodes)
233                 {
234                         SiteMapNode node = new SiteMapNode ();
235                         node.provider = provider;
236                         node.key = key;
237                         node.url = url;
238                         node.title = title;
239                         node.description = description;
240                         node.roles = new ArrayList (roles);
241                         node.attributes = new NameValueCollection (attributes);
242                         if (cloneParentNodes && ParentNode != null)
243                                 node.parent = (SiteMapNode) ParentNode.Clone (true);
244                         return node;
245                 }
246                 
247                 public override bool Equals (object ob)
248                 {
249                         SiteMapNode node = ob as SiteMapNode;
250                         if (node == null) return false;
251                         
252                         if (node.key != key ||
253                                         node.url != url ||
254                                         node.title != title ||
255                                         node.description != description) {
256                                 return false;
257                         }
258                         
259                         if ((roles == null || node.roles == null) && (roles != node.roles)) return false;
260                         if (roles.Count != node.roles.Count) return false;
261
262                         foreach (object role in roles)
263                                 if (!node.roles.Contains (role)) return false;
264                                 
265                         if ((attributes == null || node.attributes == null) && (attributes != node.attributes)) return false;
266                         if (attributes.Count != node.attributes.Count) return false;
267
268                         foreach (string k in attributes)
269                                 if (attributes [k] != node.attributes [k]) return false;
270
271                         return true;
272                 }
273                 
274                 public override int GetHashCode ()
275                 {
276                         return (key + url + title + description).GetHashCode ();
277                 }
278                 
279                 void CheckWritable ()
280                 {
281                         if (readOnly)
282                                 throw new InvalidOperationException ("Can't modify read-only node");
283                 }
284                                 
285                 #region Field Accessors
286                 
287                 public virtual NameValueCollection Attributes {
288                         get { return attributes; } 
289                         set { CheckWritable (); attributes = value; }
290                 }
291                 
292                 [Localizable (true)]
293                 public virtual string Description {
294                         get { return description != null ? description : ""; }
295                         set { CheckWritable (); description = value; }
296                 }
297                 
298                 [LocalizableAttribute (true)]
299                 public virtual string Title {
300                         get { return title != null ? title : ""; }
301                         set { CheckWritable (); title = value; }
302                 }
303                 
304                 public virtual string Url {
305                         get { return url != null ? url : ""; }
306                         set { CheckWritable (); url = value; }
307                 }
308                 
309                 public virtual IList Roles {
310                         get { return roles; }
311                         set { CheckWritable (); roles = value; }
312                 }
313                 
314                 public bool ReadOnly {
315                         get { return readOnly; }
316                         set { readOnly = value; }
317                 }
318                 
319                 [MonoTODO ("Do somethig with this")]
320                 public string ResourceKey {
321                         get { return resourceKey; }
322                         set { resourceKey = value; }
323                 }
324                 
325                 public string Key { get { return key; } }
326                 public SiteMapProvider Provider { get { return provider; } }
327                 
328                 #endregion
329                 
330                 #region INavigateUIData
331                 IHierarchicalEnumerable System.Web.UI.IHierarchyData.GetChildren () { return ChildNodes; }
332                 IHierarchyData System.Web.UI.IHierarchyData.GetParent ()
333                 {
334                         return ParentNode;
335                 }
336
337                 bool System.Web.UI.IHierarchyData.HasChildren { get { return HasChildNodes; } }
338                 object System.Web.UI.IHierarchyData.Item { get { return this; } }
339                 string System.Web.UI.IHierarchyData.Path { get { return Url; } }
340                 string System.Web.UI.IHierarchyData.Type { get { return "SiteMapNode"; } }
341                 #endregion
342                 
343                 #region INavigateUIData
344                 string INavigateUIData.Name { get { return Title; }  }
345                 string INavigateUIData.NavigateUrl { get { return Url; } }
346                 string INavigateUIData.Value { get { return Title; } }
347                 #endregion
348
349                 #region Fields
350                 SiteMapProvider provider;
351                 string key;
352                 string url;
353                 string title;
354                 string description;
355                 IList roles;
356                 NameValueCollection attributes;
357                 NameValueCollection resourceKeys;
358                 bool readOnly;
359                 string resourceKey;
360                 SiteMapNode parent;
361                 string implicitResourceKey;
362                 SiteMapNodeCollection childNodes;
363                 #endregion
364                 
365         }
366 }
367 #endif
368