This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / class / corlib / System.Security.Policy / Zone.cs
1 //
2 // System.Security.Policy.Zone
3 //
4 // Authors:
5 //      Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 //
7 // (C) 2002 Ximian, Inc (http://www.ximian.com)
8 //
9
10 //
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
12 //
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.
31 //
32 using System;
33 using System.Security;
34 using System.Security.Permissions;
35
36 namespace System.Security.Policy {
37
38         [Serializable]
39         public sealed class Zone : IIdentityPermissionFactory, IBuiltInEvidence {
40                 SecurityZone zone;
41                 
42                 public Zone (SecurityZone zone)
43                 {
44                         if (!Enum.IsDefined (typeof (SecurityZone), zone))
45                                 throw new ArgumentException ("invalid zone");
46
47                         this.zone = zone;
48                 }
49
50                 public object Copy ()
51                 {
52                         return new Zone (zone);
53                 }
54
55                 public IPermission CreateIdentityPermission (Evidence evidence)
56                 {
57                         return new ZoneIdentityPermission (zone);
58                 }
59
60                 [MonoTODO("This depends on zone configuration in IE")]
61                 public static Zone CreateFromUrl (string url)
62                 {
63                         throw new NotImplementedException ();
64                 }
65
66                 public override bool Equals (object o)
67                 {
68                         if (!(o is Zone))
69                                 return false;
70
71                         return (((Zone) o).zone == zone);
72                 }
73
74                 public override int GetHashCode ()
75                 {
76                         return (int) zone;
77                 }
78
79                 public override string ToString ()
80                 {
81                         SecurityElement se = new SecurityElement (GetType ().FullName);
82                         se.AddAttribute ("version", "1");
83                         se.AddChild (new SecurityElement ("Zone", zone.ToString ()));
84
85                         return se.ToString ();
86                 }
87
88                 int IBuiltInEvidence.GetRequiredSize (bool verbose)
89                 {
90                         return 3;
91                 }
92
93                 int IBuiltInEvidence.InitFromBuffer (char [] buffer, int position) {
94                         int new_zone = (int) buffer [position++];
95                         new_zone += buffer [position++];
96                         return position;
97                 }
98
99                 int IBuiltInEvidence.OutputToBuffer (char [] buffer, int position, bool verbose)
100                 {
101                         buffer [position++] = '\x0003';
102                         buffer [position++] = (char) (((int) zone) >> 16);
103                         buffer [position++] = (char) (((int) zone) & 0x0FFFF);
104                         return position;
105                 }
106
107                 public SecurityZone SecurityZone
108                 {
109                         get { return zone; }
110                 }
111         }
112 }
113