mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-01 14:41:46 +00:00
Moved data-model master into its own directory
This commit is contained in:
399
data-model/src/main/java/org/alfresco/util/ISO9075.java
Normal file
399
data-model/src/main/java/org/alfresco/util/ISO9075.java
Normal file
@@ -0,0 +1,399 @@
|
||||
/*
|
||||
* #%L
|
||||
* Alfresco Data model classes
|
||||
* %%
|
||||
* Copyright (C) 2005 - 2016 Alfresco Software Limited
|
||||
* %%
|
||||
* This file is part of the Alfresco software.
|
||||
* If the software was purchased under a paid Alfresco license, the terms of
|
||||
* the paid license agreement will prevail. Otherwise, the software is
|
||||
* provided under the following open source license terms:
|
||||
*
|
||||
* Alfresco is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Lesser General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* Alfresco is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public License
|
||||
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
||||
* #L%
|
||||
*/
|
||||
package org.alfresco.util;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.alfresco.api.AlfrescoPublicApi;
|
||||
import org.alfresco.service.namespace.NamespaceException;
|
||||
import org.alfresco.service.namespace.NamespacePrefixResolver;
|
||||
import org.alfresco.service.namespace.NamespaceService;
|
||||
import org.alfresco.service.namespace.QName;
|
||||
|
||||
import org.apache.xerces.util.XMLChar;
|
||||
|
||||
/**
|
||||
* Support for the ISO 9075 encoding of XML element names.
|
||||
*
|
||||
* @author Andy Hind
|
||||
*/
|
||||
@AlfrescoPublicApi
|
||||
public class ISO9075
|
||||
{
|
||||
/*
|
||||
* Mask for hex encoding
|
||||
*/
|
||||
private static final int MASK = (1 << 4) - 1;
|
||||
|
||||
/*
|
||||
* Digits used string encoding
|
||||
*/
|
||||
private static final char[] DIGITS = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e',
|
||||
'f' };
|
||||
|
||||
/**
|
||||
* Private constructor
|
||||
*
|
||||
*/
|
||||
private ISO9075()
|
||||
{
|
||||
super();
|
||||
}
|
||||
|
||||
private static boolean isSQLNameStart(char c)
|
||||
{
|
||||
if('a' <= c && c <= 'z' )
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else if('A' <= c && c <= 'Z' )
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else if('_' == c)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
private static boolean isSQLName(char c)
|
||||
{
|
||||
if(isSQLNameStart(c))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else if('0' <= c && c <= '9' )
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else if(':' == c)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else if('$' == c)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else if('#' == c)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Encodes a SQL identifier
|
||||
*
|
||||
* Allowed at the start: 'a'..'z' | 'A'..'Z' | '_'
|
||||
* Allowed after: 'a'..'z' | 'A'..'Z' | '0'..'9' | '_' | ':' | '$'| '#'
|
||||
*
|
||||
* @param toEncode String
|
||||
* @return String
|
||||
*/
|
||||
public static String encodeSQL(String toEncode)
|
||||
{
|
||||
if ((toEncode == null) || (toEncode.length() == 0))
|
||||
{
|
||||
return toEncode;
|
||||
}
|
||||
else
|
||||
{
|
||||
StringBuilder builder = new StringBuilder(toEncode.length());
|
||||
for (int i = 0; i < toEncode.length(); i++)
|
||||
{
|
||||
char c = toEncode.charAt(i);
|
||||
// First requires special test
|
||||
if (i == 0)
|
||||
{
|
||||
if (isSQLNameStart(c))
|
||||
{
|
||||
// The first character may be the _ at the start of an
|
||||
// encoding pattern
|
||||
if (matchesEncodedPattern(toEncode, i))
|
||||
{
|
||||
// Encode the first _
|
||||
encode('_', builder);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Just append
|
||||
builder.append(c);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// Encode an invalid start character for an XML element
|
||||
// name.
|
||||
encode(c, builder);
|
||||
}
|
||||
}
|
||||
else if (!isSQLName(c))
|
||||
{
|
||||
encode(c, builder);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (matchesEncodedPattern(toEncode, i))
|
||||
{
|
||||
// '_' must be encoded
|
||||
encode('_', builder);
|
||||
}
|
||||
else
|
||||
{
|
||||
builder.append(c);
|
||||
}
|
||||
}
|
||||
}
|
||||
return builder.toString();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Encode a string according to ISO 9075
|
||||
*
|
||||
* @param toEncode String
|
||||
* @return String
|
||||
*/
|
||||
public static String encode(String toEncode)
|
||||
{
|
||||
if ((toEncode == null) || (toEncode.length() == 0))
|
||||
{
|
||||
return toEncode;
|
||||
}
|
||||
else if (XMLChar.isValidName(toEncode) && (toEncode.indexOf("_x") == -1) && (toEncode.indexOf(':') == -1))
|
||||
{
|
||||
return toEncode;
|
||||
}
|
||||
else
|
||||
{
|
||||
StringBuilder builder = new StringBuilder(toEncode.length());
|
||||
for (int i = 0; i < toEncode.length(); i++)
|
||||
{
|
||||
char c = toEncode.charAt(i);
|
||||
// First requires special test
|
||||
if (i == 0)
|
||||
{
|
||||
if (XMLChar.isNCNameStart(c))
|
||||
{
|
||||
// The first character may be the _ at the start of an
|
||||
// encoding pattern
|
||||
if (matchesEncodedPattern(toEncode, i))
|
||||
{
|
||||
// Encode the first _
|
||||
encode('_', builder);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Just append
|
||||
builder.append(c);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
// Encode an invalid start character for an XML element
|
||||
// name.
|
||||
encode(c, builder);
|
||||
}
|
||||
}
|
||||
else if (!XMLChar.isNCName(c))
|
||||
{
|
||||
encode(c, builder);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (matchesEncodedPattern(toEncode, i))
|
||||
{
|
||||
// '_' must be encoded
|
||||
encode('_', builder);
|
||||
}
|
||||
else
|
||||
{
|
||||
builder.append(c);
|
||||
}
|
||||
}
|
||||
}
|
||||
return builder.toString();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private static boolean matchesEncodedPattern(String string, int position)
|
||||
{
|
||||
return (string.length() > position + 6)
|
||||
&& (string.charAt(position) == '_') && (string.charAt(position + 1) == 'x')
|
||||
&& isHexChar(string.charAt(position + 2)) && isHexChar(string.charAt(position + 3))
|
||||
&& isHexChar(string.charAt(position + 4)) && isHexChar(string.charAt(position + 5))
|
||||
&& (string.charAt(position + 6) == '_');
|
||||
}
|
||||
|
||||
private static boolean isHexChar(char c)
|
||||
{
|
||||
switch (c)
|
||||
{
|
||||
case '0':
|
||||
case '1':
|
||||
case '2':
|
||||
case '3':
|
||||
case '4':
|
||||
case '5':
|
||||
case '6':
|
||||
case '7':
|
||||
case '8':
|
||||
case '9':
|
||||
case 'a':
|
||||
case 'b':
|
||||
case 'c':
|
||||
case 'd':
|
||||
case 'e':
|
||||
case 'f':
|
||||
case 'A':
|
||||
case 'B':
|
||||
case 'C':
|
||||
case 'D':
|
||||
case 'E':
|
||||
case 'F':
|
||||
return true;
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public static String decode(String toDecode)
|
||||
{
|
||||
if ((toDecode == null) || (toDecode.length() < 7) || (toDecode.indexOf("_x") < 0))
|
||||
{
|
||||
return toDecode;
|
||||
}
|
||||
StringBuffer decoded = new StringBuffer();
|
||||
for (int i = 0, l = toDecode.length(); i < l; i++)
|
||||
{
|
||||
if (matchesEncodedPattern(toDecode, i))
|
||||
{
|
||||
decoded.append(((char) Integer.parseInt(toDecode.substring(i + 2, i + 6), 16)));
|
||||
i += 6;// then one added for the loop to mkae the length of 7
|
||||
}
|
||||
else
|
||||
{
|
||||
decoded.append(toDecode.charAt(i));
|
||||
}
|
||||
}
|
||||
return decoded.toString();
|
||||
}
|
||||
|
||||
private static void encode(char c, StringBuilder builder)
|
||||
{
|
||||
char[] buf = new char[] { '_', 'x', '0', '0', '0', '0', '_' };
|
||||
int charPos = 6;
|
||||
do
|
||||
{
|
||||
buf[--charPos] = DIGITS[c & MASK];
|
||||
c >>>= 4;
|
||||
}
|
||||
while (c != 0);
|
||||
builder.append(buf);
|
||||
}
|
||||
|
||||
public static String getXPathName(QName qName, NamespacePrefixResolver nspr)
|
||||
{
|
||||
|
||||
Collection<String> prefixes = nspr.getPrefixes(qName.getNamespaceURI());
|
||||
if (prefixes.size() == 0)
|
||||
{
|
||||
throw new NamespaceException("A namespace prefix is not registered for uri " + qName.getNamespaceURI());
|
||||
}
|
||||
String prefix = prefixes.iterator().next();
|
||||
if (prefix.equals(NamespaceService.DEFAULT_PREFIX))
|
||||
{
|
||||
return ISO9075.encode(qName.getLocalName());
|
||||
}
|
||||
else
|
||||
{
|
||||
return prefix + ":" + ISO9075.encode(qName.getLocalName());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public static String getXPathName(QName qName)
|
||||
{
|
||||
|
||||
return "{" + qName.getNamespaceURI() + "}" + ISO9075.encode(qName.getLocalName());
|
||||
|
||||
}
|
||||
|
||||
public static QName parseXPathName(String str)
|
||||
{
|
||||
if(!str.startsWith("{"))
|
||||
{
|
||||
throw new IllegalArgumentException("Invalid xpath string " + str);
|
||||
}
|
||||
int idx = str.indexOf("}");
|
||||
if(idx == -1)
|
||||
{
|
||||
throw new IllegalArgumentException("Invalid xpath string " + str);
|
||||
}
|
||||
String namespaceURI = str.substring(1, idx); // skip opening brace
|
||||
String localName = str.substring(idx+1);
|
||||
return QName.createQName(namespaceURI, localName);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @param toLowerCaseEncoded String
|
||||
* @return Object
|
||||
*/
|
||||
public static Object lowerCaseEncodedSQL(String toLowerCaseEncoded)
|
||||
{
|
||||
String lowerCased = toLowerCaseEncoded.toLowerCase();
|
||||
StringBuilder builder = new StringBuilder(toLowerCaseEncoded.length());
|
||||
for (int i = 0; i < toLowerCaseEncoded.length(); i++)
|
||||
{
|
||||
if (matchesEncodedPattern(toLowerCaseEncoded, i))
|
||||
{
|
||||
for(int j = 0; j < 7; j++)
|
||||
{
|
||||
builder.append(lowerCased.charAt(i+j));
|
||||
}
|
||||
i += 6;
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
builder.append(toLowerCaseEncoded.charAt(i));
|
||||
}
|
||||
|
||||
}
|
||||
return builder.toString();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user