Merge pull request #2815 from lambdageek/dev/monoerror-mono_compile_method
[mono.git] / mcs / class / Novell.Directory.Ldap / Novell.Directory.Ldap.Events.Edir.EventData / ValueEventData.cs
1 /******************************************************************************
2 * The MIT License
3 * Copyright (c) 2003 Novell Inc.  www.novell.com
4
5 * Permission is hereby granted, free of charge, to any person obtaining  a copy
6 * of this software and associated documentation files (the Software), to deal
7 * in the Software without restriction, including  without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 
9 * copies of the Software, and to  permit persons to whom the Software is 
10 * furnished to do so, subject to the following conditions:
11
12 * The above copyright notice and this permission notice shall be included in 
13 * all copies or substantial portions of the Software.
14
15 * THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *******************************************************************************/
23 //
24 // Novell.Directory.Ldap.Events.Edir.EventData.ValueEventData.cs
25 //
26 // Author:
27 //   Anil Bhatia (banil@novell.com)
28 //
29 // (C) 2003 Novell, Inc (http://www.novell.com)
30 //
31
32 using System.IO;
33 using System.Text;
34
35 using Novell.Directory.Ldap.Asn1;
36
37 namespace Novell.Directory.Ldap.Events.Edir.EventData
38 {
39   /// <summary> 
40   /// This class represents the data for Value Events.
41   /// </summary>
42   public class ValueEventData : BaseEdirEventData
43   {
44     protected string strAttribute;
45     public string Attribute
46     {
47       get
48       {
49         return strAttribute;
50       }
51     }
52
53     protected string strClassId;
54     public string ClassId
55     {
56       get
57       {
58         return strClassId;
59       }
60     }
61
62     protected string strData;
63     public string Data
64     {
65       get
66       {
67         return strData;
68       }
69     }
70
71     protected byte[] binData;
72     public byte[] BinaryData
73     {
74       get
75       {
76         return binData;
77       }
78     }
79     protected string strEntry;
80     public string Entry
81     {
82       get
83       {
84         return strEntry;
85       }
86     }
87
88     protected string strPerpetratorDN;
89     public string PerpetratorDN
90     {
91       get 
92       {
93         return strPerpetratorDN;
94       }
95     }
96
97     // syntax
98     protected string strSyntax;
99     public string Syntax
100     {
101       get
102       {
103         return strSyntax;
104       }
105     }
106
107     protected DSETimeStamp timeStampObj;
108     public DSETimeStamp TimeStamp
109     {
110       get
111       {
112         return timeStampObj;
113       }
114     }
115
116     protected int nVerb;
117     public int Verb
118     {
119       get
120       {
121         return nVerb;
122       }
123     }
124
125     public ValueEventData(EdirEventDataType eventDataType, Asn1Object message)
126       : base(eventDataType, message)
127     {
128         int[] length = new int[1];
129         Asn1OctetString octData;
130
131         strPerpetratorDN =
132             ((Asn1OctetString) decoder.decode(decodedData, length)).stringValue();
133         strEntry =
134             ((Asn1OctetString) decoder.decode(decodedData, length)).stringValue();
135         strAttribute =
136             ((Asn1OctetString) decoder.decode(decodedData, length)).stringValue();
137         strSyntax =
138             ((Asn1OctetString) decoder.decode(decodedData, length)).stringValue();
139
140         strClassId =
141             ((Asn1OctetString) decoder.decode(decodedData, length)).stringValue();
142
143         timeStampObj =
144             new DSETimeStamp((Asn1Sequence) decoder.decode(decodedData, length));
145
146         octData = ((Asn1OctetString) decoder.decode(decodedData, length));
147         strData = octData.stringValue();
148         binData = SupportClass.ToByteArray(octData.byteValue());
149
150         nVerb = ((Asn1Integer) decoder.decode(decodedData, length)).intValue();
151
152         DataInitDone();
153     }    
154
155     /// <summary> 
156     /// Returns a string representation of the object.
157     /// </summary>
158     public override string ToString() 
159     {
160       StringBuilder buf = new StringBuilder();
161
162       buf.Append("[ValueEventData");
163       buf.AppendFormat("(Attribute={0})", strAttribute);
164       buf.AppendFormat("(Classid={0})", strClassId);
165       buf.AppendFormat("(Data={0})", strData);
166       buf.AppendFormat("(Data={0})", binData);
167       buf.AppendFormat("(Entry={0})", strEntry);
168       buf.AppendFormat("(Perpetrator={0})", strPerpetratorDN);
169       buf.AppendFormat("(Syntax={0})", strSyntax);
170       buf.AppendFormat("(TimeStamp={0})", timeStampObj);
171       buf.AppendFormat("(Verb={0})", nVerb);
172       buf.Append("]");
173       
174       return buf.ToString();
175     }
176   }
177 }