/* * Copyright (c) 2021 PANTHEON.tech, s.r.o. 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.mdsal.binding.generator.impl.reactor; import org.opendaylight.mdsal.binding.model.api.Type; import org.opendaylight.mdsal.binding.model.ri.Types; import org.opendaylight.yangtools.yang.common.Ordering; import org.opendaylight.yangtools.yang.model.api.stmt.LeafListEffectiveStatement; import org.opendaylight.yangtools.yang.model.api.stmt.OrderedByEffectiveStatement; /** * Generator corresponding to a {@code leaf-list} statement. */ final class LeafListGenerator extends AbstractTypeAwareGenerator { LeafListGenerator(final LeafListEffectiveStatement statement, final AbstractCompositeGenerator parent) { super(statement, parent); } @Override Type methodReturnType(final TypeBuilderFactory builderFactory) { // If we are a leafref and the reference cannot be resolved, we need to generate a list wildcard, not // List, we will try to narrow the return type in subclasses. final Type type = super.methodReturnType(builderFactory); final boolean isObject = Types.objectType().equals(type); final Ordering ordering = statement().findFirstEffectiveSubstatementArgument(OrderedByEffectiveStatement.class) .orElse(Ordering.SYSTEM); switch (ordering) { case SYSTEM: return isObject ? Types.setTypeWildcard() : Types.setTypeFor(type); case USER: return isObject ? Types.listTypeWildcard() : Types.listTypeFor(type); default: throw new IllegalStateException("Unexpected ordering " + ordering); } } }