/****************************************************************************** * The MIT License * Copyright (c) 2003 Novell Inc. www.novell.com * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the Software), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. *******************************************************************************/ // // Novell.Directory.Ldap.LdapMatchingRuleUseSchema.cs // // Author: // Sunil Kumar (Sunilk@novell.com) // // (C) 2003 Novell, Inc (http://www.novell.com) // using System; using SchemaParser = Novell.Directory.Ldap.Utilclass.SchemaParser; namespace Novell.Directory.Ldap { /// Represents the definition of a specific matching rule use in the /// directory schema. /// /// The LdapMatchingRuleUseSchema class represents the definition of a /// matching rule use. It is used to discover or modify which attributes are /// suitable for use with an extensible matching rule. It contains the name and /// identifier of a matching rule, and a list of attributes which /// it applies to. /// /// /// /// /// /// /// /// public class LdapMatchingRuleUseSchema:LdapSchemaElement { /// Returns an array of all the attributes which this matching rule /// applies to. /// /// /// An array of all the attributes which this matching rule applies to. /// virtual public System.String[] Attributes { get { return attributes; } } private System.String[] attributes; /// Constructs a matching rule use definition for adding to or deleting /// from the schema. /// /// /// Name(s) of the matching rule. /// /// /// Object Identifier of the the matching rule /// in dotted-decimal format. /// /// /// Optional description of the matching rule use. /// /// /// True if the matching rule use is obsolete. /// /// /// List of attributes that this matching rule /// applies to. These values may be either the /// names or numeric oids of the attributes. /// public LdapMatchingRuleUseSchema(System.String[] names, System.String oid, System.String description, bool obsolete, System.String[] attributes):base(LdapSchema.schemaTypeNames[LdapSchema.MATCHING_USE]) { base.names = new System.String[names.Length]; names.CopyTo(base.names, 0); base.oid = oid; base.description = description; base.obsolete = obsolete; this.attributes = new System.String[attributes.Length]; attributes.CopyTo(this.attributes, 0); base.Value = formatString(); return ; } /// Constructs a matching rule use definition from the raw string value /// returned on a schema query for matchingRuleUse. /// /// /// The raw string value returned on a schema /// query for matchingRuleUse. /// public LdapMatchingRuleUseSchema(System.String raw):base(LdapSchema.schemaTypeNames[LdapSchema.MATCHING_USE]) { try { SchemaParser matchParser = new SchemaParser(raw); base.names = new System.String[matchParser.Names.Length]; matchParser.Names.CopyTo(base.names, 0); base.oid = matchParser.ID; base.description = matchParser.Description; base.obsolete = matchParser.Obsolete; this.attributes = matchParser.Applies; base.Value = formatString(); } catch (System.IO.IOException e) { } return ; } /// Returns a string in a format suitable for directly adding to a /// directory, as a value of the particular schema element attribute. /// /// /// A string representation of the attribute's definition. /// protected internal override System.String formatString() { System.Text.StringBuilder valueBuffer = new System.Text.StringBuilder("( "); System.String token; System.String[] strArray; if ((System.Object) (token = ID) != null) { valueBuffer.Append(token); } strArray = Names; if (strArray != null) { valueBuffer.Append(" NAME "); if (strArray.Length == 1) { valueBuffer.Append("'" + strArray[0] + "'"); } else { valueBuffer.Append("( "); for (int i = 0; i < strArray.Length; i++) { valueBuffer.Append(" '" + strArray[i] + "'"); } valueBuffer.Append(" )"); } } if ((System.Object) (token = Description) != null) { valueBuffer.Append(" DESC "); valueBuffer.Append("'" + token + "'"); } if (Obsolete) { valueBuffer.Append(" OBSOLETE"); } if ((strArray = Attributes) != null) { valueBuffer.Append(" APPLIES "); if (strArray.Length > 1) valueBuffer.Append("( "); for (int i = 0; i < strArray.Length; i++) { if (i > 0) valueBuffer.Append(" $ "); valueBuffer.Append(strArray[i]); } if (strArray.Length > 1) valueBuffer.Append(" )"); } valueBuffer.Append(" )"); return valueBuffer.ToString(); } } }