/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

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package org.apache.solr.core.backup.repository;
  18. import java.io.IOException;
  19. import java.io.OutputStream;
  20. import java.net.URI;
  21. import java.net.URISyntaxException;
  22. import java.nio.file.FileVisitResult;
  23. import java.nio.file.Files;
  24. import java.nio.file.Path;
  25. import java.nio.file.Paths;
  26. import java.nio.file.SimpleFileVisitor;
  27. import java.nio.file.attribute.BasicFileAttributes;
  28. import java.util.Objects;
  29. import org.apache.lucene.store.Directory;
  30. import org.apache.lucene.store.FSDirectory;
  31. import org.apache.lucene.store.IOContext;
  32. import org.apache.lucene.store.IndexInput;
  33. import org.apache.lucene.store.NIOFSDirectory;
  34. import org.apache.lucene.store.NoLockFactory;
  35. import org.apache.solr.common.util.NamedList;
  36. import org.apache.solr.core.DirectoryFactory;
  37. import com.google.common.base.Preconditions;
  38. /**
  39. * A concrete implementation of {@linkplain BackupRepository} interface supporting backup/restore of Solr indexes to a
  40. * local file-system. (Note - This can even be used for a shared file-system if it is exposed via a local file-system
  41. * interface e.g. NFS).
  42. */
  43. public class LocalFileSystemRepository implements BackupRepository {
  44. private NamedList config = null;
  45. @Override
  46. public void init(NamedList args) {
  47. this.config = args;
  48. }
  49. @SuppressWarnings("unchecked")
  50. @Override
  51. public <T> T getConfigProperty(String name) {
  52. return (T) this.config.get(name);
  53. }
  54. @Override
  55. public URI createURI(String location) {
  56. Objects.requireNonNull(location);
  57. URI result = null;
  58. try {
  59. result = new URI(location);
  60. if (!result.isAbsolute()) {
  61. result = Paths.get(location).toUri();
  62. }
  63. } catch (URISyntaxException ex) {
  64. result = Paths.get(location).toUri();
  65. }
  66. return result;
  67. }
  68. @Override
  69. public URI resolve(URI baseUri, String... pathComponents) {
  70. Preconditions.checkArgument(pathComponents.length > 0);
  71. Path result = Paths.get(baseUri);
  72. for (int i = 0; i < pathComponents.length; i++) {
  73. result = result.resolve(pathComponents[i]);
  74. }
  75. return result.toUri();
  76. }
  77. @Override
  78. public void createDirectory(URI path) throws IOException {
  79. Files.createDirectory(Paths.get(path));
  80. }
  81. @Override
  82. public void deleteDirectory(URI path) throws IOException {
  83. Files.walkFileTree(Paths.get(path), new SimpleFileVisitor<Path>() {
  84. @Override
  85. public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
  86. Files.delete(file);
  87. return FileVisitResult.CONTINUE;
  88. }
  89. @Override
  90. public FileVisitResult postVisitDirectory(Path dir, IOException exc) throws IOException {
  91. Files.delete(dir);
  92. return FileVisitResult.CONTINUE;
  93. }
  94. });
  95. }
  96. @Override
  97. public boolean exists(URI path) throws IOException {
  98. return Files.exists(Paths.get(path));
  99. }
  100. @Override
  101. public IndexInput openInput(URI dirPath, String fileName, IOContext ctx) throws IOException {
  102. try (FSDirectory dir = new NIOFSDirectory(Paths.get(dirPath), NoLockFactory.INSTANCE)) {
  103. return dir.openInput(fileName, ctx);
  104. }
  105. }
  106. @Override
  107. public OutputStream createOutput(URI path) throws IOException {
  108. return Files.newOutputStream(Paths.get(path));
  109. }
  110. @Override
  111. public String[] listAll(URI dirPath) throws IOException {
  112. try (FSDirectory dir = new NIOFSDirectory(Paths.get(dirPath), NoLockFactory.INSTANCE)) {
  113. return dir.listAll();
  114. }
  115. }
  116. @Override
  117. public PathType getPathType(URI path) throws IOException {
  118. return Files.isDirectory(Paths.get(path)) ? PathType.DIRECTORY : PathType.FILE;
  119. }
  120. @Override
  121. public void copyFileFrom(Directory sourceDir, String fileName, URI dest) throws IOException {
  122. try (FSDirectory dir = new NIOFSDirectory(Paths.get(dest), NoLockFactory.INSTANCE)) {
  123. dir.copyFrom(sourceDir, fileName, fileName, DirectoryFactory.IOCONTEXT_NO_CACHE);
  124. }
  125. }
  126. @Override
  127. public void copyFileTo(URI sourceDir, String fileName, Directory dest) throws IOException {
  128. try (FSDirectory dir = new NIOFSDirectory(Paths.get(sourceDir), NoLockFactory.INSTANCE)) {
  129. dest.copyFrom(dir, fileName, fileName, DirectoryFactory.IOCONTEXT_NO_CACHE);
  130. }
  131. }
  132. @Override
  133. public void close() throws IOException {}
  134. }