/* * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.yangtools.binding.generator.util; import com.google.common.base.CharMatcher; import com.google.common.collect.ImmutableList; import com.google.common.collect.Iterables; import java.io.ByteArrayOutputStream; import java.io.DataOutputStream; import java.io.IOException; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.Comparator; import java.util.Iterator; import java.util.List; import org.opendaylight.yangtools.sal.binding.model.api.AccessModifier; import org.opendaylight.yangtools.sal.binding.model.api.Restrictions; import org.opendaylight.yangtools.sal.binding.model.api.Type; import org.opendaylight.yangtools.sal.binding.model.api.type.builder.GeneratedPropertyBuilder; import org.opendaylight.yangtools.sal.binding.model.api.type.builder.GeneratedTypeBuilderBase; import org.opendaylight.yangtools.sal.binding.model.api.type.builder.MethodSignatureBuilder; import org.opendaylight.yangtools.sal.binding.model.api.type.builder.TypeMemberBuilder; import org.opendaylight.yangtools.yang.binding.BindingMapping; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.common.QNameModule; import org.opendaylight.yangtools.yang.model.api.Module; import org.opendaylight.yangtools.yang.model.api.SchemaPath; import org.opendaylight.yangtools.yang.model.api.TypeDefinition; import org.opendaylight.yangtools.yang.model.api.type.BinaryTypeDefinition; import org.opendaylight.yangtools.yang.model.api.type.DecimalTypeDefinition; import org.opendaylight.yangtools.yang.model.api.type.IntegerTypeDefinition; import org.opendaylight.yangtools.yang.model.api.type.LengthConstraint; import org.opendaylight.yangtools.yang.model.api.type.PatternConstraint; import org.opendaylight.yangtools.yang.model.api.type.RangeConstraint; import org.opendaylight.yangtools.yang.model.api.type.StringTypeDefinition; import org.opendaylight.yangtools.yang.model.api.type.UnsignedIntegerTypeDefinition; import org.opendaylight.yangtools.yang.model.util.Decimal64; import org.opendaylight.yangtools.yang.model.util.ExtendedType; import org.opendaylight.yangtools.yang.model.util.type.BaseTypes; import org.opendaylight.yangtools.yang.model.util.type.DecimalTypeBuilder; /** * Contains the methods for converting strings to valid JAVA language strings * (package names, class names, attribute names). * * */ public final class BindingGeneratorUtil { /** * Impossible to instantiate this class. All of the methods or attributes * are static. */ private BindingGeneratorUtil() { } /** * Pre-compiled replacement pattern. */ private static final CharMatcher DOT_MATCHER = CharMatcher.is('.'); private static final CharMatcher DASH_COLON_MATCHER = CharMatcher.anyOf("-:"); private static final Restrictions EMPTY_RESTRICTIONS = new Restrictions() { @Override public List getLengthConstraints() { return Collections.emptyList(); } @Override public List getPatternConstraints() { return Collections.emptyList(); } @Override public List getRangeConstraints() { return Collections.emptyList(); } @Override public boolean isEmpty() { return true; } }; private static final Comparator> SUID_MEMBER_COMPARATOR = new Comparator>() { @Override public int compare(final TypeMemberBuilder o1, final TypeMemberBuilder o2) { return o1.getName().compareTo(o2.getName()); } }; private static final Comparator SUID_NAME_COMPARATOR = new Comparator() { @Override public int compare(final Type o1, final Type o2) { return o1.getFullyQualifiedName().compareTo(o2.getFullyQualifiedName()); } }; /** * Converts parameterName to valid JAVA parameter name. * * If the parameterName is one of the JAVA reserved words then * it is prefixed with underscore character. * * @param parameterName * string with the parameter name * @return string with the admissible parameter name */ public static String resolveJavaReservedWordEquivalency(final String parameterName) { if (parameterName != null && BindingMapping.JAVA_RESERVED_WORDS.contains(parameterName)) { return "_" + parameterName; } return parameterName; } /** * Converts module name to valid JAVA package name. * * The package name consists of: *
    *
  • prefix - org.opendaylight.yang.gen.v
  • *
  • module YANG version - org.opendaylight.yang.gen.v
  • *
  • module namespace - invalid characters are replaced with dots
  • *
  • revision prefix - .rev
  • *
  • revision - YYYYMMDD (MM and DD aren't spread to the whole length)
  • *
* * @param module * module which contains data about namespace and revision date * @return string with the valid JAVA package name * @throws IllegalArgumentException * if the revision date of the module equals * null * @deprecated USe {@link BindingMapping#getRootPackageName(QNameModule)} with {@link Module#getQNameModule()}. */ @Deprecated public static String moduleNamespaceToPackageName(final Module module) { return BindingMapping.getRootPackageName(module.getQNameModule()); } /** * Creates package name from specified basePackageName (package * name for module) and schemaPath. * * Resulting package name is concatenation of basePackageName * and all local names of YANG nodes which are parents of some node for * which schemaPath is specified. * * @param basePackageName * string with package name of the module, MUST be normalized, * otherwise this method may return an invalid string. * @param schemaPath * list of names of YANG nodes which are parents of some node + * name of this node * @return string with valid JAVA package name * @throws NullPointerException if any of the arguments are null */ public static String packageNameForGeneratedType(final String basePackageName, final SchemaPath schemaPath) { final int size = Iterables.size(schemaPath.getPathTowardsRoot()) - 1; if (size <= 0) { return basePackageName; } return generateNormalizedPackageName(basePackageName, schemaPath.getPathFromRoot(), size); } /** * Creates package name from specified basePackageName (package * name for module) and schemaPath which crosses an augmentation. * * Resulting package name is concatenation of basePackageName * and all local names of YANG nodes which are parents of some node for * which schemaPath is specified. * * @param basePackageName * string with package name of the module, MUST be normalized, * otherwise this method may return an invalid string. * @param schemaPath * list of names of YANG nodes which are parents of some node + * name of this node * @return string with valid JAVA package name * @throws NullPointerException if any of the arguments are null */ public static String packageNameForAugmentedGeneratedType(final String basePackageName, final SchemaPath schemaPath) { final int size = Iterables.size(schemaPath.getPathTowardsRoot()); if (size == 0) { return basePackageName; } return generateNormalizedPackageName(basePackageName, schemaPath.getPathFromRoot(), size); } private static String generateNormalizedPackageName(final String base, final Iterable path, final int size) { final StringBuilder builder = new StringBuilder(base); final Iterator iterator = path.iterator(); for (int i = 0; i < size; ++i) { builder.append('.'); String nodeLocalName = iterator.next().getLocalName(); // FIXME: Collon ":" is invalid in node local name as per RFC6020, identifier statement. builder.append(DASH_COLON_MATCHER.replaceFrom(nodeLocalName, '.')); } return BindingMapping.normalizePackageName(builder.toString()); } /** * Creates package name from specified basePackageName (package * name for module) and schemaPath. * * Resulting package name is concatenation of basePackageName * and all local names of YANG nodes which are parents of some node for * which schemaPath is specified. * * @param basePackageName * string with package name of the module * @param schemaPath * list of names of YANG nodes which are parents of some node + * name of this node * @return string with valid JAVA package name * * @deprecated Use {@link #packageNameForGeneratedType(String, SchemaPath)} or * {@link #packageNameForAugmentedGeneratedType(String, SchemaPath)} instead. */ @Deprecated public static String packageNameForGeneratedType(final String basePackageName, final SchemaPath schemaPath, final boolean isUsesAugment) { if (basePackageName == null) { throw new IllegalArgumentException("Base Package Name cannot be NULL!"); } if (schemaPath == null) { throw new IllegalArgumentException("Schema Path cannot be NULL!"); } final Iterable iterable = schemaPath.getPathFromRoot(); final int size = Iterables.size(iterable); final int traversalSteps; if (isUsesAugment) { traversalSteps = size; } else { traversalSteps = size - 1; } if (traversalSteps == 0) { return BindingMapping.normalizePackageName(basePackageName); } return generateNormalizedPackageName(basePackageName, iterable, traversalSteps); } /** * Generates the package name for type definition from * typeDefinition and basePackageName. * * @param basePackageName * string with the package name of the module * @param typeDefinition * type definition for which the package name will be generated * * @return string with valid JAVA package name * @throws IllegalArgumentException *
    *
  • if basePackageName equals null
  • *
  • if typeDefinition equals null
  • *
* @deprecated This method ignores typeDefinition argument and its result is only * BindingMapping.normalizePackageName(basePackageName). * Aside from tests, there is not a single user in OpenDaylight codebase, * hence it can be considered buggy and defunct. It is scheduled for removal * in Boron release. */ @Deprecated public static String packageNameForTypeDefinition(final String basePackageName, final TypeDefinition typeDefinition) { if (basePackageName == null) { throw new IllegalArgumentException("Base Package Name cannot be NULL!"); } if (typeDefinition == null) { throw new IllegalArgumentException("Type Definition reference cannot be NULL!"); } return BindingMapping.normalizePackageName(basePackageName); } /** * Converts token to string which is in accordance with best * practices for JAVA class names. * * @param token * string which contains characters which should be converted to * JAVA class name * @return string which is in accordance with best practices for JAVA class * name. * * @deprecated Use {@link BindingMapping#getClassName(QName)} instead. */ @Deprecated public static String parseToClassName(final String token) { return parseToCamelCase(token, true); } /** * Converts token to string which is in accordance with best * practices for JAVA parameter names. * * @param token * string which contains characters which should be converted to * JAVA parameter name * @return string which is in accordance with best practices for JAVA * parameter name. * * @deprecated Use {@link BindingMapping#getPropertyName(String)} instead. */ @Deprecated public static String parseToValidParamName(final String token) { return resolveJavaReservedWordEquivalency(parseToCamelCase(token, false)); } /** * * Converts string token to the cammel case format. * * @param token * string which should be converted to the cammel case format * @param uppercase * boolean value which says whether the first character of the * token should|shuldn't be uppercased * @return string in the cammel case format * @throws IllegalArgumentException *
    *
  • if token without white spaces is empty
  • *
  • if token equals null
  • *
*/ private static String parseToCamelCase(final String token, final boolean uppercase) { if (token == null) { throw new IllegalArgumentException("Name can not be null"); } String correctStr = DOT_MATCHER.removeFrom(token.trim()); if (correctStr.isEmpty()) { throw new IllegalArgumentException("Name can not be empty"); } correctStr = replaceWithCamelCase(correctStr, ' '); correctStr = replaceWithCamelCase(correctStr, '-'); correctStr = replaceWithCamelCase(correctStr, '_'); char firstChar = correctStr.charAt(0); firstChar = uppercase ? Character.toUpperCase(firstChar) : Character.toLowerCase(firstChar); if (firstChar >= '0' && firstChar <= '9') { return '_' + correctStr; } else { return firstChar + correctStr.substring(1); } } /** * Replaces all the occurrences of the removalChar in the * text with empty string and converts following character to * upper case. * * @param text * string with source text which should be converted * @param removalChar * character which is sought in the text * @return string which doesn't contain removalChar and has * following characters converted to upper case * @throws IllegalArgumentException * if the length of the returning string has length 0 */ private static String replaceWithCamelCase(final String text, final char removalChar) { int toBeRemovedPos = text.indexOf(removalChar); if (toBeRemovedPos == -1) { return text; } StringBuilder sb = new StringBuilder(text); String toBeRemoved = String.valueOf(removalChar); do { sb.replace(toBeRemovedPos, toBeRemovedPos + 1, ""); // check if 'toBeRemoved' character is not the only character in // 'text' if (sb.length() == 0) { throw new IllegalArgumentException("The resulting string can not be empty"); } char replacement = Character.toUpperCase(sb.charAt(toBeRemovedPos)); sb.setCharAt(toBeRemovedPos, replacement); toBeRemovedPos = sb.indexOf(toBeRemoved); } while (toBeRemovedPos != -1); return sb.toString(); } private static Iterable sortedCollection(final Comparator comparator, final Collection input) { if (input.size() > 1) { final List ret = new ArrayList<>(input); Collections.sort(ret, comparator); return ret; } else { return input; } } private static final ThreadLocal SHA1_MD = new ThreadLocal() { @Override protected MessageDigest initialValue() { try { return MessageDigest.getInstance("SHA"); } catch (NoSuchAlgorithmException e) { throw new IllegalStateException("Failed to get a SHA digest provider", e); } } }; public static long computeDefaultSUID(final GeneratedTypeBuilderBase to) { final ByteArrayOutputStream bout = new ByteArrayOutputStream(); try (final DataOutputStream dout = new DataOutputStream(bout)) { dout.writeUTF(to.getName()); dout.writeInt(to.isAbstract() ? 3 : 7); for (Type ifc : sortedCollection(SUID_NAME_COMPARATOR, to.getImplementsTypes())) { dout.writeUTF(ifc.getFullyQualifiedName()); } for (GeneratedPropertyBuilder gp : sortedCollection(SUID_MEMBER_COMPARATOR, to.getProperties())) { dout.writeUTF(gp.getName()); } for (MethodSignatureBuilder m : sortedCollection(SUID_MEMBER_COMPARATOR, to.getMethodDefinitions())) { if (!(m.getAccessModifier().equals(AccessModifier.PRIVATE))) { dout.writeUTF(m.getName()); dout.write(m.getAccessModifier().ordinal()); } } dout.flush(); } catch (IOException e) { throw new IllegalStateException("Failed to hash object " + to, e); } final byte[] hashBytes = SHA1_MD.get().digest(bout.toByteArray()); long hash = 0; for (int i = Math.min(hashBytes.length, 8) - 1; i >= 0; i--) { hash = (hash << 8) | (hashBytes[i] & 0xFF); } return hash; } public static Restrictions getRestrictions(final TypeDefinition type) { // Old parser generated types which actually contained based restrictions, but our code deals with that when // binding to core Java types. Hence we'll emit empty restrictions for base types. if (type == null || type.getBaseType() == null) { // Handling of decimal64 has changed in the new parser. It contains range restrictions applied to the type // directly, without an extended type. We need to capture such constraints. In order to retain behavior we // need to analyze the new semantics and see if the constraints have been overridden. To do that we // instantiate a temporary unconstrained type and compare them. // // FIXME: looking at the generated code it looks as though we need to pass the restrictions without // comparison and also even in the case of the old parser if (type instanceof DecimalTypeDefinition && !(type instanceof Decimal64)) { final DecimalTypeDefinition decimal = (DecimalTypeDefinition) type; final DecimalTypeBuilder tmpBuilder = BaseTypes.decimalTypeBuilder(decimal.getPath()); tmpBuilder.setFractionDigits(decimal.getFractionDigits()); final DecimalTypeDefinition tmp = tmpBuilder.build(); if (!tmp.getRangeConstraints().equals(decimal.getRangeConstraints())) { return new Restrictions() { @Override public boolean isEmpty() { return false; } @Override public List getRangeConstraints() { return decimal.getRangeConstraints(); } @Override public List getPatternConstraints() { return ImmutableList.of(); } @Override public List getLengthConstraints() { return ImmutableList.of(); } }; } } return EMPTY_RESTRICTIONS; } final List length; final List pattern; final List range; // Take care of extended types.. if (type instanceof ExtendedType) { final ExtendedType ext = (ExtendedType)type; length = ext.getLengthConstraints(); pattern = ext.getPatternConstraints(); // Interesting special-case... List tmp = ext.getRangeConstraints(); if (tmp.isEmpty()) { final TypeDefinition base = ext.getBaseType(); if (base instanceof IntegerTypeDefinition) { tmp = ((IntegerTypeDefinition)base).getRangeConstraints(); } else if (base instanceof UnsignedIntegerTypeDefinition) { tmp = ((UnsignedIntegerTypeDefinition)base).getRangeConstraints(); } else if (base instanceof DecimalTypeDefinition) { tmp = ((DecimalTypeDefinition)base).getRangeConstraints(); } } range = tmp; } else if (type instanceof BinaryTypeDefinition) { // FIXME: run a diff on base type length = ((BinaryTypeDefinition)type).getLengthConstraints(); pattern = ImmutableList.of(); range = ImmutableList.of(); } else if (type instanceof DecimalTypeDefinition) { length = ImmutableList.of(); pattern = ImmutableList.of(); // FIXME: run a diff on base type range = ((DecimalTypeDefinition)type).getRangeConstraints(); } else if (type instanceof IntegerTypeDefinition) { length = ImmutableList.of(); pattern = ImmutableList.of(); // FIXME: run a diff on base type range = ((IntegerTypeDefinition)type).getRangeConstraints(); } else if (type instanceof StringTypeDefinition) { // FIXME: run a diff on base type length = ((StringTypeDefinition)type).getLengthConstraints(); // FIXME: run a diff on base type pattern = ((StringTypeDefinition)type).getPatternConstraints(); range = ImmutableList.of(); } else if (type instanceof UnsignedIntegerTypeDefinition) { length = ImmutableList.of(); pattern = ImmutableList.of(); // FIXME: run a diff on base type range = ((UnsignedIntegerTypeDefinition)type).getRangeConstraints(); } else { length = ImmutableList.of(); pattern = ImmutableList.of(); range = ImmutableList.of(); } // Now, this may have ended up being empty, too... if (length.isEmpty() && pattern.isEmpty() && range.isEmpty()) { return EMPTY_RESTRICTIONS; } // Nope, not empty allocate a holder return new Restrictions() { @Override public List getRangeConstraints() { return range; } @Override public List getPatternConstraints() { return pattern; } @Override public List getLengthConstraints() { return length; } @Override public boolean isEmpty() { return false; } }; } }