X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=yang%2Fyang-parser-impl%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fparser%2Fspi%2Fmeta%2FStmtContextUtils.java;h=05b7f67c333ceab95ede69325755457f7db658c5;hb=17f092cc375493891b15139cc0f57584298ba18e;hp=9e3cd702d16f1d45c8343bc95ae79ba02cc4e644;hpb=6445362084c167640d41a1dec9127899fb54b8c0;p=yangtools.git diff --git a/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/spi/meta/StmtContextUtils.java b/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/spi/meta/StmtContextUtils.java index 9e3cd702d1..05b7f67c33 100644 --- a/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/spi/meta/StmtContextUtils.java +++ b/yang/yang-parser-impl/src/main/java/org/opendaylight/yangtools/yang/parser/spi/meta/StmtContextUtils.java @@ -8,58 +8,219 @@ package org.opendaylight.yangtools.yang.parser.spi.meta; import com.google.common.base.Function; +import com.google.common.base.Splitter; +import com.google.common.collect.ImmutableList; +import com.google.common.collect.ImmutableSet; +import com.google.common.collect.ImmutableSet.Builder; +import java.util.Collection; +import org.opendaylight.yangtools.yang.common.QName; +import org.opendaylight.yangtools.yang.common.QNameModule; import org.opendaylight.yangtools.yang.model.api.meta.DeclaredStatement; import org.opendaylight.yangtools.yang.model.api.meta.EffectiveStatement; +import org.opendaylight.yangtools.yang.model.api.stmt.KeyStatement; +import org.opendaylight.yangtools.yang.model.api.stmt.SchemaNodeIdentifier; +import org.opendaylight.yangtools.yang.parser.stmt.rfc6020.UnknownStatementImpl; public final class StmtContextUtils { + public static final Splitter LIST_KEY_SPLITTER = Splitter.on(' ').omitEmptyStrings().trimResults(); - private static final Function, DeclaredStatement> BUILD_DECLARED = new Function, DeclaredStatement>() { - + private static final Function, DeclaredStatement> BUILD_DECLARED = + new Function, DeclaredStatement>() { @Override - public DeclaredStatement apply(StmtContext input) { + public DeclaredStatement apply(final StmtContext input) { return input.buildDeclared(); } - }; - private static final Function, EffectiveStatement> BUILD_EFFECTIVE = new Function, EffectiveStatement>() { - + private static final Function, EffectiveStatement> BUILD_EFFECTIVE = + new Function, EffectiveStatement>() { @Override - public EffectiveStatement apply(StmtContext input) { + public EffectiveStatement apply(final StmtContext input) { return input.buildEffective(); } - }; private StmtContextUtils() { throw new UnsupportedOperationException("Utility class"); } - @SuppressWarnings("unchecked") - public static final > Function, D> buildDeclared() { + public static > Function, D> buildDeclared() { return Function.class.cast(BUILD_DECLARED); } @SuppressWarnings("unchecked") - public static final > Function, E> buildEffective() { + public static > Function, E> buildEffective() { return Function.class.cast(BUILD_EFFECTIVE); } @SuppressWarnings("unchecked") - public static final > AT firstAttributeOf(Iterable> contexts, Class
declaredType) { - for(StmtContext ctx : contexts) { - if(producesDeclared(ctx,declaredType)) { + public static > AT firstAttributeOf( + final Iterable> contexts, final Class
declaredType) { + for (StmtContext ctx : contexts) { + if (producesDeclared(ctx, declaredType)) { return (AT) ctx.getStatementArgument(); } } return null; } - public static final boolean producesDeclared(StmtContext ctx, Class> type) { + @SuppressWarnings("unchecked") + public static > AT firstAttributeOf(final StmtContext ctx, + final Class
declaredType) { + return producesDeclared(ctx, declaredType) ? (AT) ctx.getStatementArgument() : null; + } + + @SuppressWarnings("unchecked") + public static > StmtContext findFirstDeclaredSubstatement( + final StmtContext stmtContext, final Class
declaredType) { + for (StmtContext subStmtContext : stmtContext.declaredSubstatements()) { + if (producesDeclared(subStmtContext,declaredType)) { + return (StmtContext) subStmtContext; + } + } + return null; + } + + @SuppressWarnings("unchecked") + public static > Collection> findAllDeclaredSubstatements( + final StmtContext stmtContext, final Class
declaredType) { + ImmutableList.Builder> listBuilder = ImmutableList.builder(); + for (StmtContext subStmtContext : stmtContext.declaredSubstatements()) { + if (producesDeclared(subStmtContext, declaredType)) { + listBuilder.add((StmtContext) subStmtContext); + } + } + return listBuilder.build(); + } + + @SuppressWarnings("unchecked") + public static > Collection> findAllEffectiveSubstatements( + final StmtContext stmtContext, final Class
type) { + ImmutableList.Builder> listBuilder = ImmutableList.builder(); + for (StmtContext subStmtContext : stmtContext.effectiveSubstatements()) { + if (producesDeclared(subStmtContext, type)) { + listBuilder.add((StmtContext) subStmtContext); + } + } + return listBuilder.build(); + } + + public static > Collection> findAllSubstatements( + final StmtContext stmtContext, final Class
type) { + ImmutableList.Builder> listBuilder = ImmutableList.builder(); + listBuilder.addAll(findAllDeclaredSubstatements(stmtContext, type)); + listBuilder.addAll(findAllEffectiveSubstatements(stmtContext, type)); + return listBuilder.build(); + } + + @SuppressWarnings("unchecked") + public static > StmtContext findFirstEffectiveSubstatement( + final StmtContext stmtContext, final Class
declaredType) { + for (StmtContext subStmtContext : stmtContext.effectiveSubstatements()) { + if (producesDeclared(subStmtContext,declaredType)) { + return (StmtContext) subStmtContext; + } + } + return null; + } + + public static > StmtContext findFirstSubstatement( + final StmtContext stmtContext, final Class
declaredType) { + StmtContext declaredSubstatement = findFirstDeclaredSubstatement(stmtContext, declaredType); + return declaredSubstatement != null ? declaredSubstatement : findFirstEffectiveSubstatement(stmtContext, declaredType); + } + + @SafeVarargs + public static StmtContext findFirstDeclaredSubstatement(final StmtContext stmtContext, + int startIndex, final Class>... types) { + if (startIndex >= types.length) { + return null; + } + + for (StmtContext subStmtContext : stmtContext.declaredSubstatements()) { + if (producesDeclared(subStmtContext,types[startIndex])) { + return startIndex + 1 == types.length ? subStmtContext + : findFirstDeclaredSubstatement(subStmtContext, ++startIndex, types); + } + } + return null; + } + + public static
> StmtContext findFirstDeclaredSubstatementOnSublevel( + final StmtContext stmtContext, final Class
declaredType, int sublevel) { + for (StmtContext subStmtContext : stmtContext.declaredSubstatements()) { + if (sublevel == 1 && producesDeclared(subStmtContext, declaredType)) { + return subStmtContext; + } + if (sublevel > 1) { + final StmtContext result = findFirstDeclaredSubstatementOnSublevel( + subStmtContext, declaredType, --sublevel); + if (result != null) { + return result; + } + } + } + + return null; + } + + public static
> StmtContext findDeepFirstDeclaredSubstatement( + final StmtContext stmtContext, final Class
declaredType) { + for (StmtContext subStmtContext : stmtContext.declaredSubstatements()) { + if (producesDeclared(subStmtContext, declaredType)) { + return subStmtContext; + } + + final StmtContext result = findDeepFirstDeclaredSubstatement(subStmtContext, declaredType); + if (result != null) { + return result; + } + } + + return null; + } + + public static boolean producesDeclared(final StmtContext ctx, + final Class> type) { return type.isAssignableFrom(ctx.getPublicDefinition().getDeclaredRepresentationClass()); } + public static boolean isInExtensionBody(final StmtContext stmtCtx) { + StmtContext current = stmtCtx; + while (!current.getParentContext().isRootContext()) { + current = current.getParentContext(); + if (producesDeclared(current, UnknownStatementImpl.class)) { + return true; + } + } + + return false; + } + + public static boolean isUnknownStatement(final StmtContext stmtCtx) { + return producesDeclared(stmtCtx, UnknownStatementImpl.class); + } + public static Collection replaceModuleQNameForKey( + final StmtContext, KeyStatement, ?> keyStmtCtx, + final QNameModule newQNameModule) { + + final Builder builder = ImmutableSet.builder(); + boolean replaced = false; + for (SchemaNodeIdentifier arg : keyStmtCtx.getStatementArgument()) { + final QName qname = arg.getLastComponent(); + if (!newQNameModule.equals(qname)) { + final QName newQname = keyStmtCtx.getFromNamespace(QNameCacheNamespace.class, + QName.create(newQNameModule, qname.getLocalName())); + builder.add(SchemaNodeIdentifier.create(false, newQname)); + replaced = true; + } else { + builder.add(arg); + } + } + // This makes sure we reuse the collection when a grouping is instantiated in the same module + return replaced ? builder.build() : keyStmtCtx.getStatementArgument(); + } }