/* * Copyright (c) 2017 Pantheon Technologies, 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.yangtools.yang.model.repo.api; import static java.util.Objects.requireNonNull; import com.google.common.base.MoreObjects.ToStringHelper; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.nio.file.Files; import java.util.Optional; import org.eclipse.jdt.annotation.NonNull; import org.opendaylight.yangtools.concepts.Delegator; /** * A {@link YinTextSchemaSource} backed by a file. * * @author Robert Varga */ final class YinTextFileSchemaSource extends YinTextSchemaSource implements Delegator { private final @NonNull File file; YinTextFileSchemaSource(final @NonNull SourceIdentifier identifier, final @NonNull File file) { super(identifier); this.file = requireNonNull(file); } @Override public File getDelegate() { return file; } @Override public InputStream openStream() throws IOException { return Files.newInputStream(file.toPath()); } @Override protected ToStringHelper addToStringAttributes(final ToStringHelper toStringHelper) { return toStringHelper.add("file", file); } @Override public Optional getSymbolicName() { return Optional.of(file.toString()); } }