/solr/core/src/java/org/apache/solr/core/backup/repository/LocalFileSystemRepository.java
http://github.com/apache/lucene-solr · Java · 158 lines · 113 code · 24 blank · 21 comment · 2 complexity · a7414000bc35ac926079ac62ebb6d6d9 MD5 · raw file
- /*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package org.apache.solr.core.backup.repository;
- import java.io.IOException;
- import java.io.OutputStream;
- import java.net.URI;
- import java.net.URISyntaxException;
- import java.nio.file.FileVisitResult;
- import java.nio.file.Files;
- import java.nio.file.Path;
- import java.nio.file.Paths;
- import java.nio.file.SimpleFileVisitor;
- import java.nio.file.attribute.BasicFileAttributes;
- import java.util.Objects;
- import org.apache.lucene.store.Directory;
- import org.apache.lucene.store.FSDirectory;
- import org.apache.lucene.store.IOContext;
- import org.apache.lucene.store.IndexInput;
- import org.apache.lucene.store.NIOFSDirectory;
- import org.apache.lucene.store.NoLockFactory;
- import org.apache.solr.common.util.NamedList;
- import org.apache.solr.core.DirectoryFactory;
- import com.google.common.base.Preconditions;
- /**
- * A concrete implementation of {@linkplain BackupRepository} interface supporting backup/restore of Solr indexes to a
- * local file-system. (Note - This can even be used for a shared file-system if it is exposed via a local file-system
- * interface e.g. NFS).
- */
- public class LocalFileSystemRepository implements BackupRepository {
- private NamedList config = null;
- @Override
- public void init(NamedList args) {
- this.config = args;
- }
- @SuppressWarnings("unchecked")
- @Override
- public <T> T getConfigProperty(String name) {
- return (T) this.config.get(name);
- }
- @Override
- public URI createURI(String location) {
- Objects.requireNonNull(location);
- URI result = null;
- try {
- result = new URI(location);
- if (!result.isAbsolute()) {
- result = Paths.get(location).toUri();
- }
- } catch (URISyntaxException ex) {
- result = Paths.get(location).toUri();
- }
- return result;
- }
- @Override
- public URI resolve(URI baseUri, String... pathComponents) {
- Preconditions.checkArgument(pathComponents.length > 0);
- Path result = Paths.get(baseUri);
- for (int i = 0; i < pathComponents.length; i++) {
- result = result.resolve(pathComponents[i]);
- }
- return result.toUri();
- }
- @Override
- public void createDirectory(URI path) throws IOException {
- Files.createDirectory(Paths.get(path));
- }
- @Override
- public void deleteDirectory(URI path) throws IOException {
- Files.walkFileTree(Paths.get(path), new SimpleFileVisitor<Path>() {
- @Override
- public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
- Files.delete(file);
- return FileVisitResult.CONTINUE;
- }
- @Override
- public FileVisitResult postVisitDirectory(Path dir, IOException exc) throws IOException {
- Files.delete(dir);
- return FileVisitResult.CONTINUE;
- }
- });
- }
- @Override
- public boolean exists(URI path) throws IOException {
- return Files.exists(Paths.get(path));
- }
- @Override
- public IndexInput openInput(URI dirPath, String fileName, IOContext ctx) throws IOException {
- try (FSDirectory dir = new NIOFSDirectory(Paths.get(dirPath), NoLockFactory.INSTANCE)) {
- return dir.openInput(fileName, ctx);
- }
- }
- @Override
- public OutputStream createOutput(URI path) throws IOException {
- return Files.newOutputStream(Paths.get(path));
- }
- @Override
- public String[] listAll(URI dirPath) throws IOException {
- try (FSDirectory dir = new NIOFSDirectory(Paths.get(dirPath), NoLockFactory.INSTANCE)) {
- return dir.listAll();
- }
- }
- @Override
- public PathType getPathType(URI path) throws IOException {
- return Files.isDirectory(Paths.get(path)) ? PathType.DIRECTORY : PathType.FILE;
- }
- @Override
- public void copyFileFrom(Directory sourceDir, String fileName, URI dest) throws IOException {
- try (FSDirectory dir = new NIOFSDirectory(Paths.get(dest), NoLockFactory.INSTANCE)) {
- dir.copyFrom(sourceDir, fileName, fileName, DirectoryFactory.IOCONTEXT_NO_CACHE);
- }
- }
- @Override
- public void copyFileTo(URI sourceDir, String fileName, Directory dest) throws IOException {
- try (FSDirectory dir = new NIOFSDirectory(Paths.get(sourceDir), NoLockFactory.INSTANCE)) {
- dest.copyFrom(dir, fileName, fileName, DirectoryFactory.IOCONTEXT_NO_CACHE);
- }
- }
- @Override
- public void close() throws IOException {}
- }