2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / class / Novell.Directory.Ldap / Novell.Directory.Ldap.Events / Novell.Directory.Ldap.Events.Edir / MonitorEventResponse.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.MonitorEventResponse.cs
25 //
26 // Author:
27 //   Anil Bhatia (banil@novell.com)
28 //
29 // (C) 2003 Novell, Inc (http://www.novell.com)
30 //
31
32 using Novell.Directory.Ldap.Rfc2251;
33 using Novell.Directory.Ldap.Asn1;
34
35 namespace Novell.Directory.Ldap.Events.Edir
36 {
37   /// <summary> 
38   /// This object represents the ExtendedResponse returned when Event
39   /// Registeration fails. This Extended Response structure is generated for
40   /// requests send as MonitorEventRequest.
41   /// </summary>
42   public class MonitorEventResponse : LdapExtendedResponse
43   {
44     protected EdirEventSpecifier[] specifier_list;
45     public EdirEventSpecifier[] SpecifierList
46     {
47       get
48       {
49         return specifier_list;
50       }
51     }
52
53     public MonitorEventResponse(RfcLdapMessage message)
54       : base(message)
55     {
56       sbyte[] returnedValue = Value;
57       
58       if (null == returnedValue)
59       {
60         throw new LdapException(LdapException.resultCodeToString(ResultCode),
61                                 ResultCode, 
62                                 null);
63       }
64
65       LBERDecoder decoder = new LBERDecoder();
66
67       Asn1Sequence sequence = (Asn1Sequence) decoder.decode(returnedValue);
68       
69       int length = ((Asn1Integer) sequence.get_Renamed(0)).intValue();
70       Asn1Set sequenceSet = (Asn1Set) sequence.get_Renamed(1);
71       specifier_list = new EdirEventSpecifier[length];
72
73       for (int i = 0; i < length; i++) 
74       {
75         Asn1Sequence eventspecifiersequence =
76                 (Asn1Sequence) sequenceSet.get_Renamed(i);
77         int classfication =
78                 ((Asn1Integer) eventspecifiersequence.get_Renamed(0)).intValue();
79         int enumtype =
80           ((Asn1Enumerated) eventspecifiersequence.get_Renamed(1)).intValue();
81         specifier_list[i] =
82           new EdirEventSpecifier((EdirEventType)classfication, (EdirEventResultType)enumtype);
83         }
84     }
85   }
86 }