7bd8bcff11702dbb7b6cf986c312bed0789a6fef
[mono.git] / mcs / class / Novell.Directory.Ldap / Novell.Directory.Ldap.Extensions / SplitPartitionRequest.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.Extensions.SplitPartitionRequest.cs
25 //
26 // Author:
27 //   Sunil Kumar (Sunilk@novell.com)
28 //
29 // (C) 2003 Novell, Inc (http://www.novell.com)
30 //
31
32 using System;
33 using Novell.Directory.Ldap;
34 using Novell.Directory.Ldap.Asn1;
35 using Novell.Directory.Ldap.Utilclass;
36
37 namespace Novell.Directory.Ldap.Extensions
38 {
39         
40         /// <summary>  Creates a new partition.
41         /// 
42         /// To split a new partition, you must create an instance of this
43         /// class and then call the extendedOperation method with this
44         /// object as the required LdapExtendedOperation parameter.
45         /// 
46         /// The SplitPartitionRequest extension uses the following OID:
47         /// 2.16.840.1.113719.1.27.100.3
48         /// 
49         /// The requestValue has the following format:
50         /// 
51         /// requestValue ::=
52         ///  flags  INTEGER
53         ///  dn     LdapDN
54         /// </summary>
55         public class SplitPartitionRequest:LdapExtendedOperation
56         {
57                 
58                 /// <summary> 
59                 /// Constructs an extended operation object for splitting partition.
60                 /// 
61                 /// </summary>
62                 /// <param name="dn">     The distinguished name of the container where the new 
63                 /// partition  root should be located.
64                 /// 
65                 /// </param>
66                 /// <param name="flags">Specifies whether all servers in the replica ring must be up before
67                 /// proceeding. When set to zero, the status of the servers is not
68                 /// checked. When set to Ldap_ENSURE_SERVERS_UP, all servers must be up
69                 /// for the operation to proceed.
70                 /// 
71                 /// </param>
72                 /// <exception> LdapException A general exception which includes an error message
73                 /// and an Ldap error code.
74                 /// </exception>
75                 public SplitPartitionRequest(System.String dn, int flags):base(ReplicationConstants.CREATE_NAMING_CONTEXT_REQ, null)
76                 {
77                         
78                         try
79                         {
80                                 
81                                 if ((System.Object) dn == null)
82                                         throw new System.ArgumentException(ExceptionMessages.PARAM_ERROR);
83                                 
84                                 System.IO.MemoryStream encodedData = new System.IO.MemoryStream();
85                                 LBEREncoder encoder = new LBEREncoder();
86                                 
87                                 Asn1Integer asn1_flags = new Asn1Integer(flags);
88                                 Asn1OctetString asn1_dn = new Asn1OctetString(dn);
89                                 
90                                 asn1_flags.encode(encoder, encodedData);
91                                 asn1_dn.encode(encoder, encodedData);
92                                 
93                                 setValue(SupportClass.ToSByteArray(encodedData.ToArray()));
94                         }
95                         catch (System.IO.IOException ioe)
96                         {
97                                 throw new LdapException(ExceptionMessages.ENCODING_ERROR, LdapException.ENCODING_ERROR, (System.String) null);
98                         }
99                 }
100         }
101 }