StringKeyFileManager.java

  1. package net.morimekta.providence.storage.dir;

  2. import net.morimekta.util.FileUtil;

  3. import javax.annotation.Nonnull;
  4. import java.io.File;
  5. import java.io.IOException;
  6. import java.io.UncheckedIOException;
  7. import java.nio.file.Files;
  8. import java.nio.file.Path;
  9. import java.text.Normalizer;
  10. import java.util.Collection;
  11. import java.util.HashSet;

  12. /**
  13.  * File manager for the {@link net.morimekta.providence.storage.DirectoryMessageStore}
  14.  * and {@link net.morimekta.providence.storage.DirectoryMessageListStore} store
  15.  * classes that keeps all files in a single directory, and keeps a <code>.tmp</code>
  16.  * directory for temporary files. Note that this differs from the DefaultFileManager
  17.  * that it does not allow full paths for the key, e.g. cannot contain file separator
  18.  * in the key string.
  19.  */
  20. public class StringKeyFileManager implements FileManager<String> {
  21.     private static final String TMP_DIR = ".tmp";

  22.     private final Path directory;
  23.     private final Path tempDir;

  24.     public StringKeyFileManager(@Nonnull Path directory) {
  25.         try {
  26.             if (!Files.isDirectory(directory)) {
  27.                 throw new IllegalArgumentException("Not a directory: " + directory.toString());
  28.             }
  29.             this.directory = FileUtil.readCanonicalPath(directory);
  30.             this.tempDir = this.directory.resolve(TMP_DIR);
  31.             if (!Files.exists(tempDir)) {
  32.                 Files.createDirectories(tempDir);
  33.             } else if (!Files.isDirectory(tempDir)) {
  34.                 throw new IllegalStateException("File blocking temp directory: " + tempDir.toString());
  35.             }
  36.         } catch (IOException e) {
  37.             throw new UncheckedIOException(e.getMessage(), e);
  38.         }
  39.     }

  40.     @Override
  41.     public Path getFileFor(@Nonnull String key) {
  42.         return directory.resolve(validateKey(key));
  43.     }

  44.     @Override
  45.     public Path tmpFileFor(@Nonnull String key) {
  46.         return tempDir.resolve(validateKey(key));
  47.     }

  48.     @Override
  49.     public Collection<String> initialKeySet() {
  50.         HashSet<String> set = new HashSet<>();
  51.         try {
  52.             Files.list(directory)
  53.                  .forEach(file -> {
  54.                          try {
  55.                              if (Files.isRegularFile(file) &&
  56.                                  !Files.isHidden(file) &&
  57.                                  !file.getFileName().startsWith(".")) {
  58.                                  set.add(file.getFileName().toString());
  59.                              }
  60.                          } catch (Exception e) {
  61.                              throw new IllegalStateException("Unable to get key from file: " + file, e);
  62.                          }
  63.                  });
  64.         } catch (IOException e) {
  65.             throw new IllegalStateException("Storage directory no longer a directory.", e);
  66.         }

  67.         return set;
  68.     }

  69.     private String validateKey(String key) {
  70.         key = Normalizer.normalize(key, Normalizer.Form.NFKC);
  71.         if (key.startsWith(".")) {
  72.             throw new IllegalArgumentException("Special file char in start of key " + key);
  73.         }
  74.         if (key.contains(File.separator)) {
  75.             throw new IllegalArgumentException("Path name separator in key " + key);
  76.         }
  77.         return key;
  78.     }
  79. }