/* * 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.yang.data.util; import static com.google.common.base.Preconditions.checkArgument; import com.google.common.annotations.Beta; import org.eclipse.jdt.annotation.NonNull; import org.eclipse.jdt.annotation.Nullable; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.model.api.IdentitySchemaNode; import org.opendaylight.yangtools.yang.model.api.Module; @Beta public abstract class AbstractModuleStringIdentityrefCodec extends AbstractStringIdentityrefCodec { /** * Resolve a string prefix into the corresponding module. * * @param prefix Prefix * @return module mapped to prefix, or null if the module cannot be resolved */ protected abstract @Nullable Module moduleForPrefix(@NonNull String prefix); @Override protected final QName createQName(final String prefix, final String localName) { final Module module = moduleForPrefix(prefix); checkArgument(module != null, "Failed to lookup prefix %s", prefix); final QName qname = QName.create(module.getQNameModule(), localName); for (IdentitySchemaNode identity : module.getIdentities()) { if (qname.equals(identity.getQName())) { return identity.getQName(); } } throw new IllegalArgumentException("Failed to find identity matching " + qname); } }