X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=binding%2Fyang-binding%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fbinding%2FCodeHelpers.java;h=ff57748811c94c48270d5c81aba46ed3b6c67b98;hb=f735dcbc86962f6b51abecadec0c00f595649984;hp=aba378e49ca11f9d737ea36715585828ee385894;hpb=0e6a64805fc5dfcba9858917c08ed552ccf2b303;p=mdsal.git diff --git a/binding/yang-binding/src/main/java/org/opendaylight/yangtools/yang/binding/CodeHelpers.java b/binding/yang-binding/src/main/java/org/opendaylight/yangtools/yang/binding/CodeHelpers.java index aba378e49c..ff57748811 100644 --- a/binding/yang-binding/src/main/java/org/opendaylight/yangtools/yang/binding/CodeHelpers.java +++ b/binding/yang-binding/src/main/java/org/opendaylight/yangtools/yang/binding/CodeHelpers.java @@ -383,6 +383,31 @@ public final class CodeHelpers { } } + /** + * Utility method for checking whether a target object is compatible with a particular identity class. + * + * @param requiredClass Required class + * @param fieldName name of the field being filled + * @param obj Object to check, may be null + * @return Object cast to required class, if it class matches requirement, or null + * @throws IllegalArgumentException if {@code obj} is not an Class representing {@code requiredClass} + * @throws NullPointerException if {@code requiredClass} or {@code fieldName} is null + */ + public static @Nullable Class checkFieldCastIdentity( + final @NonNull Class requiredClass, final @NonNull String fieldName, final @Nullable Object obj) { + if (obj == null) { + return null; + } + checkArgument(obj instanceof Class, "Invalid input value \"%s\" for property \"%s\"", obj, fieldName); + + try { + return ((Class) obj).asSubclass(requiredClass); + } catch (ClassCastException e) { + throw new IllegalArgumentException("Invalid input value \"" + obj + "\" for property \"" + fieldName + "\"", + e); + } + } + /** * Utility method for checking whether the items of target list is compatible. * @@ -401,7 +426,24 @@ public final class CodeHelpers { } /** - * Utility method for checking whether the items of target list is compatible. + * Utility method for checking whether the items of a target list are compatible with a particular identity class. + * + * @param requiredClass Required class + * @param fieldName name of the field being filled + * @param list List, which items should be checked + * @return Type-checked List + * @throws IllegalArgumentException if a list item is not a Class representing {@code requiredClass} + * @throws NullPointerException if {@code requiredClass} or {@code fieldName} is null + */ + @SuppressWarnings("unchecked") + public static @Nullable List> checkListFieldCastIdentity( + final @NonNull Class requiredClass, final @NonNull String fieldName, final @Nullable List list) { + checkCollectionFieldIdentity(requiredClass, fieldName, list); + return (List>) list; + } + + /** + * Utility method for checking whether the items of target set is compatible. * * @param requiredClass Required item class * @param fieldName name of the field being filled @@ -417,6 +459,23 @@ public final class CodeHelpers { return (Set) set; } + /** + * Utility method for checking whether the items of a target set are compatible with a particular identity class. + * + * @param requiredClass Required class + * @param fieldName name of the field being filled + * @param set Set, which items should be checked + * @return Type-checked Set + * @throws IllegalArgumentException if a set item is not a Class representing {@code requiredClass} + * @throws NullPointerException if {@code requiredClass} or {@code fieldName} is null + */ + @SuppressWarnings("unchecked") + public static @Nullable Set> checkSetFieldCastIdentity( + final @NonNull Class requiredClass, final @NonNull String fieldName, final @Nullable Set set) { + checkCollectionFieldIdentity(requiredClass, fieldName, set); + return (Set>) set; + } + @SuppressFBWarnings(value = "DCN_NULLPOINTER_EXCEPTION", justification = "Internal NPE->IAE conversion") private static void checkCollectionField(final @NonNull Class requiredClass, @@ -431,6 +490,20 @@ public final class CodeHelpers { } } + @SuppressFBWarnings(value = "DCN_NULLPOINTER_EXCEPTION", + justification = "Internal NPE->IAE conversion") + private static void checkCollectionFieldIdentity(final @NonNull Class requiredClass, + final @NonNull String fieldName, final @Nullable Collection collection) { + if (collection != null) { + try { + collection.forEach(item -> ((Class) item).asSubclass(requiredClass)); + } catch (ClassCastException | NullPointerException e) { + throw new IllegalArgumentException("Invalid input item for property \"" + requireNonNull(fieldName) + + "\"", e); + } + } + } + /** * The constant '31' is the result of folding this code: *