org.opendaylight.yangtools.yang.data.util.AbstractNamespaceCodec Maven / Gradle / Ivy
/*
* 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.base.Splitter;
import java.util.Iterator;
import org.eclipse.jdt.annotation.NonNull;
import org.eclipse.jdt.annotation.Nullable;
import org.opendaylight.yangtools.yang.common.QName;
import org.opendaylight.yangtools.yang.common.QNameModule;
import org.opendaylight.yangtools.yang.common.XMLNamespace;
import org.opendaylight.yangtools.yang.data.api.codec.AbstractIllegalArgumentCodec;
abstract class AbstractNamespaceCodec extends AbstractIllegalArgumentCodec {
private static final Splitter COLON_SPLITTER = Splitter.on(':');
/**
* Return string prefix for a particular namespace, allocating a new one if necessary.
*
* @param namespace Namespace to map
* @return Allocated unique prefix, or null if the prefix cannot be mapped.
*/
protected abstract @Nullable String prefixForNamespace(@NonNull XMLNamespace namespace);
/**
* Create a QName for a prefix and local name.
*
* @param prefix Prefix for namespace
* @param localName local name
* @return QName
* @throws IllegalArgumentException if the {@code prefix} cannot be resolved or if the {@code localName} does not
* conform to YANG requirements
*/
protected abstract @NonNull QName createQName(@NonNull String prefix, @NonNull String localName);
private static String getIdAndPrefixAsStr(final String pathPart) {
int predicateStartIndex = pathPart.indexOf('[');
return predicateStartIndex == -1 ? pathPart : pathPart.substring(0, predicateStartIndex);
}
protected final @NonNull StringBuilder appendQName(final StringBuilder sb, final QName qname) {
final String prefix = prefixForNamespace(qname.getNamespace());
checkArgument(prefix != null, "Failed to map QName %s to prefix", qname);
return sb.append(prefix).append(':').append(qname.getLocalName());
}
/**
* Append a QName, potentially taking into account last QNameModule encountered in the serialized path.
*
* @param sb target StringBuilder
* @param qname QName to append
* @param lastModule last QNameModule encountered, may be null
* @return target StringBuilder
*/
protected StringBuilder appendQName(final StringBuilder sb, final QName qname,
final @Nullable QNameModule lastModule) {
// Covers XML and uncompressed JSON codec
return appendQName(sb, qname);
}
protected final QName parseQName(final String str) {
final String xPathPartTrimmed = getIdAndPrefixAsStr(str).trim();
final Iterator it = COLON_SPLITTER.split(xPathPartTrimmed).iterator();
// Empty string
if (!it.hasNext()) {
return null;
}
final String first = it.next().trim();
if (first.isEmpty()) {
return null;
}
final String identifier;
final String prefix;
if (it.hasNext()) {
// It is "prefix:value"
prefix = first;
identifier = it.next().trim();
} else {
prefix = "";
identifier = first;
}
if (identifier.isEmpty()) {
return null;
}
return createQName(prefix, identifier);
}
}