/* * 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.model.repo.api; import com.google.common.annotations.Beta; import com.google.common.base.Optional; import com.google.common.base.Preconditions; import java.util.regex.Pattern; import org.opendaylight.yangtools.concepts.Identifier; import org.opendaylight.yangtools.concepts.Immutable; import org.opendaylight.yangtools.objcache.ObjectCache; import org.opendaylight.yangtools.objcache.ObjectCacheFactory; import org.opendaylight.yangtools.yang.common.SimpleDateFormatUtil; /** * YANG Schema source identifier * * Simple transfer object represents identifier of source for YANG schema (module or submodule), * which consists of *
* (For further reference see: http://tools.ietf.org/html/rfc6020#section-5.2 and * http://tools.ietf.org/html/rfc6022#section-3.1 ). */ @Beta public final class SourceIdentifier implements Identifier, Immutable { /** * Default revision for sources without specified revision. * Marks the source as oldest. */ public static final String NOT_PRESENT_FORMATTED_REVISION = "0000-00-00"; /** * * Simplified compiled revision pattern in format YYYY-mm-dd, which checks * only distribution of number elements. *
* For checking if supplied string is real date, use {@link SimpleDateFormatUtil}
* instead.
*
*/
public static final Pattern REVISION_PATTERN = Pattern.compile("\\d\\d\\d\\d-\\d\\d-\\d\\d");
private static final ObjectCache CACHE = ObjectCacheFactory.getObjectCache(SourceIdentifier.class);
private static final long serialVersionUID = 1L;
private final String revision;
private final String name;
/**
*
* Creates new YANG Schema source identifier for sources without revision.
* {@link SourceIdentifier#NOT_PRESENT_FORMATTED_REVISION} as default revision.
*
* @param name Name of schema
*/
public SourceIdentifier(final String name) {
this(name, NOT_PRESENT_FORMATTED_REVISION);
}
/**
* Creates new YANG Schema source identifier.
*
* @param name Name of schema
* @param formattedRevision Revision of source in format YYYY-mm-dd
*/
public SourceIdentifier(final String name, final String formattedRevision) {
this.name = Preconditions.checkNotNull(name);
this.revision = Preconditions.checkNotNull(formattedRevision);
}
/**
*
* Creates new YANG Schema source identifier.
*
* @param name Name of schema
* @param formattedRevision Revision of source in format YYYY-mm-dd. If not present, default value will be used.
*/
public SourceIdentifier(final String name, final Optional
* Where revision is date in format YYYY-mm-dd.
*
*
* @see RFC6020
*
* @return Filename for this source identifier.
*/
public String toYangFilename() {
return toYangFileName(name, Optional.fromNullable(revision));
}
@Override
public String toString() {
return "SourceIdentifier [name=" + name + "@" + revision + "]";
}
/**
* Returns filename for this YANG module as specified in RFC 6020.
*
* Returns filename in format
*
* See
* http://tools.ietf.org/html/rfc6020#section-5.2
*
* @return Filename for this source identifier.
*/
public static final String toYangFileName(final String moduleName, final Optionalname ['@' revision] '.yang'
* moduleName ['@' revision] '.yang'
*
* Where Where revision-date is in format YYYY-mm-dd.
*
*