⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rdn.java

📁 JAVA开源LDAP浏览器jxplorer的源码!
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
    }




    /**
     *    Utility function - returns true if the passed attribute value
     *    is contained within the RDN.  This is case insensitive.
     *
     *    @param attributeType the Attribute name (e.g. "cn") to search for.
     *    @return true if it exists in the RDN, false if not.
     */

    public boolean contains(String attributeType)
    {
        if (status == UNTESTED)
            checkForMultiValued();

        if (attributeType == null || attributeType.length()==0)
            return false;

        for (int i=0; i<size(); i++)
            if (attributeType.equalsIgnoreCase(getAtt(i)))
                return true;

        return false;
    }

    /**
     *    Utility function - returns a raw attribute value looked up
     *    by name.  This search is case insensitive.  Note that this
     *    class is not optimized for this function .
     *
     *    @param attributeType the attribute type to find the corresponding
     *                         value for (e.g. "cn").
     *    @return String the corresponding value (e.g. "Fred"), or null
     *                   if there is no such value.
     */

    public String getRawVal(String attributeType)
    {
        if (status == UNTESTED)
            checkForMultiValued();

        if (attributeType == null || attributeType.length()==0)
            return null;

        for (int i=0; i<size(); i++)
            if (attributeType.equalsIgnoreCase(getAtt(i)))
                return getRawVal(i);

        return null;

    }

    /**
     *    Gets the first raw, unescaped, attribute value.
     */

    public String getRawVal()
    {
        return getRawVal(0);
    }

    /**
     *    gets  the raw, unescaped, attribute value from a particular indexed rdn element.
     */

    public String getRawVal(int i)
    {
        if (status == UNTESTED)
            checkForMultiValued();

        if (status == SINGLEVALUED && i!=0)
            return "rdn error X";

        String element = getElement(i);

        int pos = element.indexOf('='); // no need for escape check, since att must be unescaped always.

        if (pos == -1)
        {
            return "rdn error XI";
        }

        String raw = element.substring(pos+1);

        // since the value may be escaped, try to unescape it...
        try
        {
            return NameUtility.unescape(raw);
        }
        catch (Exception e)
        {
            return "rdn error XII";
        }
    }

    /**
     *    gets the attribute values as a String array.
     *    @return an array of attribute types as a string; e.g. {'cn', 'uid'}
     */

    public String[] getRawVals()
    {
        if (status == UNTESTED)
            checkForMultiValued();

        String[] vals = getElements();

        for (int i=0; i<vals.length; i++)
        {
            vals[i] = getRawVal(i);
        }

        return vals;
    }



    /**
     *    Sets the raw, unescaped value of uni-valued rdn.
     */

    public void setRawVal(String v)
        throws InvalidNameException
    {
        setRawVal(v, 0);
    }

    /**
     *    sets a raw, unescaped, value at a particular index position.
     */

    public void setRawVal(String v, int i)
        throws InvalidNameException
    {
        validate();

        String attval = getElement(i);
        String att = attval.substring(0, attval.indexOf('='));
        if (att == null || att.length()==0)
            throw new InvalidNameException("can't parse old RDN '" + ldapEscapedRDN);

        String newElement = att + "=" + NameUtility.escape(v);
        setElement(i, newElement);
    }

    /**
     *    returns the number of sub-elements in this rdn. (usually one!)
     */

    public int size()
    {
        if (status == UNTESTED)
            checkForMultiValued();

        return (status==SINGLEVALUED)?1:elements.length-1;
    }



   /**
    *    Returns whether the rdn is multi-valued.
    */

    public boolean isMultiValued()
    {
       if (status == UNTESTED)
           checkForMultiValued();

       return (status == MULTIVALUED);
    }



   /**
    *   Test two RDNs for equivalence.  Takes a bit of a shortcut -
    *   checks for case insensitive equivalence, doesn't check schema
    *   to see whether the value is case sensitive or not...i.e. the importance
    *   is low because currently we set delete RDN to false by default therefore
    *   you can't store two attributes in the dir that are only different b/c of their
    *   case.  Having delete RDN set to false means that in changing the case we will
    *   have two copies of it in the entry - which can't happen if their differences are
    *   just in their case (upper/lower).
    *   @param test the RDN to test this RDN against for equality.
    *   @return true if the two RDNs are the same, false otherwise.
    */

    public boolean equals(RDN test)
    {
        if (test == null)
            return false;
        else if (test.size() != size()) return false;

        if (isMultiValued())
        {
            // XXX complex equality test for multi valued RDNs
            // should be made here - e.g. ordering of RDN subelements
            // shouldn't be important... in the meantime, we'll cheat.
            //TE: Eventually this will come up as a bug...to do: sort the arrays
            //TE: so that we avoid saying that two multivalued RDNs are different if in fact they are
            //TE: the same but just ordered differently. [e.g cn=A+sn=B == sn=B+cn=A but this method will
            //TE: return false].

            // el hack.

            String[] atts = getAtts();
            String[] vals = getRawVals();               // get unescaped unicode value
            String[] testAtts = test.getAtts();
            String[] testVals = test.getRawVals();      // get unescaped unicode value

            for (int i=0; i<size(); i++)
                if (!elementsEqual(atts[i], testAtts[i], vals[i], testVals[i]) )
                    return false;

            return true;
        }
        else
        {
            return elementsEqual(getAtt(), test.getAtt(), getRawVal(), test.getRawVal());  // use unescaped unicode value
        }
    }



   /**
    *   Check that the two attributes are the same, and that the values
    *   are the same.  The values must be passed in *unescaped* (we use
    *   the unescaped form to get around the problem of having different
    *   types of utf-8/unicode/whatever floating around).
    *   @param att1 the attribute type of the first RDN.
    *   @param att2 the attribute type of the second RDN.
    *   @param val1 the attribute value of the first RDN.
    *   @param val2 the attribute value of the second RDN.
    *   @return true if the the attribute type and value of the first and second RDN are the same (ignoring case).
    */

    private boolean elementsEqual(String att1, String att2, String val1, String val2)
    {
/*  Multiple trailing white spaces will be cut off val2 but not val1...therefore this method will return false &
    try to mod DN which fails b/c DN already exists?  I would expect this to succeed.  If I trim val1
    a mod DN is not done but a modify is done - and again fails because a modify on a DN is not allowed??
    --JX doesn't allow the user to enter spaces at the end of values.  But it should handle values that already
    has a space at the end.  I think this multiple trailing white space thing could be a dir bug - the white
    spaces appear not to be escaped. eg...  baseObject: ou=AAA    \ ,o=DEMOCORP,c=AU.  Seems to work fine with
    correctly escaped single white space eg...baseObject: ou=AAA\ ,o=DEMOCORP,c=AU.
System.out.println(">>"+val1+"<<");
System.out.println(">>"+val2+"<<");
        val1=val1.trim();
System.out.println(">>"+val1+"<<");
System.out.println(">>"+val2+"<<");
*/

            if (att1.equalsIgnoreCase(att2) == false)
                return false;

            // XXX THIS ASSUME CASE INSENSITIVE MATCH!  (Really should check schema...)
            if (val1.equalsIgnoreCase(val2) == false)
                return false;

            return true;
    }



   /**
    *   Generic equality test allows for test against non-RDN objects
    *   via their 'toString()' and a case-insensitive match.
    */

    public boolean equals(Object o)
    {
        if (o == null)
            return false;
        if (o instanceof RDN)
            return equals((RDN)o);
        else
            return (ldapEscapedRDN.equalsIgnoreCase(o.toString()));
    }



    /**
     *    Test for multivaluedness by simply checking for unescaped
     *    plus symbols.  Does *not* validate the entire RDN, or do
     *    any syntax checking, but does break the rdn up into sub units.
     */

    private void checkForMultiValued()
    {
        if (status != UNTESTED) return;  // nothing to do

        if (NameUtility.next(ldapEscapedRDN, 0, '+') == -1)  // test for simplest case
        {
            status = SINGLEVALUED;
        }
        else  // things now get complicated and slow...
        {
            status = MULTIVALUED;
            parseMultiValued(MAXELEMENTS);
        }
    }

    /**
     *    Parse a multi valued RDN.
     */

    private void parseMultiValued()
    {
        parseMultiValued(MAXELEMENTS);
    }


    private void parseMultiValued(int max)
    {
        if (max > 512)
        {
            System.err.println("wierd error in RDN - attempt to parse RDN with more than 512 sub units???");
            return;
        }

        try
        {
            int[] temp = new int[max];

            temp[0] = -1;  // each element is one *before* the next attval pair, including the first

            int numElements = 0;
            int pos = 0;

if (debug) System.out.println("\n*** parsing multi valued rdn");
if (debug) System.out.println("parsing " + ldapEscapedRDN);
            while ((pos = NameUtility.next(ldapEscapedRDN, pos, '+'))>-1)
            {
                numElements++;
                temp[numElements] = pos;

if (debug) System.out.println("found " + numElements + " -th element at " + pos);

                int pos1, pos2;
                pos1 = temp[numElements-1] + 1;
                pos2 = temp[numElements];
if (debug) System.out.println(" = string " + pos1 + " -> " + pos2 + " = ");
if (debug) System.out.println(ldapEscapedRDN.substring(pos1, pos2));

                pos++;
            }

            numElements++;
            temp[numElements] = ldapEscapedRDN.length();

            int pos1, pos2;
            pos1 = temp[numElements-1] + 1;
            pos2 = temp[numElements];

if (debug) System.out.println("found " + numElements + " -th element at " + pos + " = string " +
             pos1 + " -> " + pos2 + " final len: " + ldapEscapedRDN.length());
if (debug) System.out.println(" = '" + ldapEscapedRDN.substring(pos1, pos2) + "'");



if (debug) System.out.println("found total of " + numElements + " elements...\n*****\n");

            elements = new int[numElements+1];
            System.arraycopy(temp, 0, elements, 0, numElements+1);
        }
        catch (IndexOutOfBoundsException e)
        {
if (debug) e.printStackTrace();
            System.err.println("huge number of multi-valued RDN units - increasing to: " + max*2);
            parseMultiValued(max*2);

        }
    }

    /**
     *    Checks whether the RDN is valid (i.e. has non null, correctly escaped elements).
     *    A (relatively) expensive operation.
     */

    public boolean validate()
    {
        try
        {
            if (status == UNTESTED)
                checkForMultiValued();

            if (isEmpty())        // *technically* an empty RDN isn't valid...
                return false;

            int noElements = size();
            for (int i=0; i<noElements; i++)
            {
                String att = getAtt(i);
                String val = getRawVal(i);

                if (att == null || att.length()==0)
                {
                    return false;
                }
                if (val == null || val.length()==0 || val.startsWith("error "))
                {
                    return false;
                }
            }
        }
        catch (Exception e)
        {
            return false;
        }

        return true; // XXX check whether the RDN is sane - i.e. parse it and confirm.
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -