Fix cover not deleted, add new UI option "Move to"
[fanfix.git] / src / be / nikiroo / fanfix / Library.java
index ccbd7d40b67b7e6e78c8b43fd95a999c9eb49285..f1f7121385faeab1bae5ba686dbdcf2fce993ae5 100644 (file)
@@ -1,6 +1,8 @@
 package be.nikiroo.fanfix;
 
+import java.awt.image.BufferedImage;
 import java.io.File;
+import java.io.FileFilter;
 import java.io.IOException;
 import java.net.URL;
 import java.util.ArrayList;
@@ -15,6 +17,7 @@ import be.nikiroo.fanfix.data.MetaData;
 import be.nikiroo.fanfix.data.Story;
 import be.nikiroo.fanfix.output.BasicOutput;
 import be.nikiroo.fanfix.output.BasicOutput.OutputType;
+import be.nikiroo.fanfix.output.InfoCover;
 import be.nikiroo.fanfix.supported.BasicSupport;
 import be.nikiroo.fanfix.supported.BasicSupport.SupportType;
 import be.nikiroo.fanfix.supported.InfoReader;
@@ -26,6 +29,9 @@ import be.nikiroo.utils.Progress;
  * <p>
  * Each {@link Story} object will be associated with a (local to the library)
  * unique ID, the LUID, which will be used to identify the {@link Story}.
+ * <p>
+ * Most of the {@link Library} functions work on either the LUID or a partial
+ * (cover not included) {@link MetaData} object.
  * 
  * @author niki
  */
@@ -57,13 +63,23 @@ public class Library {
        }
 
        /**
-        * List all the known types of stories.
+        * Refresh the {@link Library}, that is, make sure all stories are loaded.
+        * 
+        * @param pg
+        *            the optional progress reporter
+        */
+       public void refresh(Progress pg) {
+               getStories(pg);
+       }
+
+       /**
+        * List all the known types (sources) of stories.
         * 
         * @return the types
         */
        public synchronized List<String> getTypes() {
                List<String> list = new ArrayList<String>();
-               for (Entry<MetaData, File> entry : getStories().entrySet()) {
+               for (Entry<MetaData, File> entry : getStories(null).entrySet()) {
                        String storyType = entry.getKey().getSource();
                        if (!list.contains(storyType)) {
                                list.add(storyType);
@@ -81,7 +97,7 @@ public class Library {
         */
        public synchronized List<String> getAuthors() {
                List<String> list = new ArrayList<String>();
-               for (Entry<MetaData, File> entry : getStories().entrySet()) {
+               for (Entry<MetaData, File> entry : getStories(null).entrySet()) {
                        String storyAuthor = entry.getKey().getAuthor();
                        if (!list.contains(storyAuthor)) {
                                list.add(storyAuthor);
@@ -95,6 +111,8 @@ public class Library {
        /**
         * List all the stories of the given author in the {@link Library}, or all
         * the stories if NULL is passed as an author.
+        * <p>
+        * Cover images not included.
         * 
         * @param author
         *            the author of the stories to retrieve, or NULL for all
@@ -103,7 +121,7 @@ public class Library {
         */
        public synchronized List<MetaData> getListByAuthor(String author) {
                List<MetaData> list = new ArrayList<MetaData>();
-               for (Entry<MetaData, File> entry : getStories().entrySet()) {
+               for (Entry<MetaData, File> entry : getStories(null).entrySet()) {
                        String storyAuthor = entry.getKey().getAuthor();
                        if (author == null || author.equalsIgnoreCase(storyAuthor)) {
                                list.add(entry.getKey());
@@ -117,6 +135,8 @@ public class Library {
        /**
         * List all the stories of the given source type in the {@link Library}, or
         * all the stories if NULL is passed as a type.
+        * <p>
+        * Cover images not included.
         * 
         * @param type
         *            the type of story to retrieve, or NULL for all
@@ -124,8 +144,13 @@ public class Library {
         * @return the stories
         */
        public synchronized List<MetaData> getListByType(String type) {
+               if (type != null) {
+                       // convert the type to dir name
+                       type = getDir(type).getName();
+               }
+
                List<MetaData> list = new ArrayList<MetaData>();
-               for (Entry<MetaData, File> entry : getStories().entrySet()) {
+               for (Entry<MetaData, File> entry : getStories(null).entrySet()) {
                        String storyType = entry.getValue().getParentFile().getName();
                        if (type == null || type.equalsIgnoreCase(storyType)) {
                                list.add(entry.getKey());
@@ -137,7 +162,8 @@ public class Library {
        }
 
        /**
-        * Retrieve a {@link File} corresponding to the given {@link Story}.
+        * Retrieve a {@link File} corresponding to the given {@link Story}, cover
+        * image not included.
         * 
         * @param luid
         *            the Library UID of the story
@@ -146,7 +172,7 @@ public class Library {
         */
        public synchronized MetaData getInfo(String luid) {
                if (luid != null) {
-                       for (Entry<MetaData, File> entry : getStories().entrySet()) {
+                       for (Entry<MetaData, File> entry : getStories(null).entrySet()) {
                                if (luid.equals(entry.getKey().getLuid())) {
                                        return entry.getKey();
                                }
@@ -166,7 +192,7 @@ public class Library {
         */
        public synchronized File getFile(String luid) {
                if (luid != null) {
-                       for (Entry<MetaData, File> entry : getStories().entrySet()) {
+                       for (Entry<MetaData, File> entry : getStories(null).entrySet()) {
                                if (luid.equals(entry.getKey().getLuid())) {
                                        return entry.getValue();
                                }
@@ -176,6 +202,29 @@ public class Library {
                return null;
        }
 
+       /**
+        * Return the cover image associated to this story.
+        * 
+        * @param luid
+        *            the Library UID of the story
+        * 
+        * @return the cover image
+        */
+       public synchronized BufferedImage getCover(String luid) {
+               MetaData meta = getInfo(luid);
+               if (meta != null) {
+                       try {
+                               File infoFile = new File(getFile(meta).getPath() + ".info");
+                               meta = readMeta(infoFile, true).getKey();
+                               return meta.getCover();
+                       } catch (IOException e) {
+                               Instance.syserr(e);
+                       }
+               }
+
+               return null;
+       }
+
        /**
         * Retrieve a specific {@link Story}.
         * 
@@ -188,7 +237,7 @@ public class Library {
         */
        public synchronized Story getStory(String luid, Progress pg) {
                if (luid != null) {
-                       for (Entry<MetaData, File> entry : getStories().entrySet()) {
+                       for (Entry<MetaData, File> entry : getStories(null).entrySet()) {
                                if (luid.equals(entry.getKey().getLuid())) {
                                        try {
                                                SupportType type = SupportType.valueOfAllOkUC(entry
@@ -323,14 +372,14 @@ public class Library {
                story.setMeta(key);
 
                if (luid == null || luid.isEmpty()) {
-                       getStories(); // refresh lastId if needed
+                       getStories(null); // refresh lastId if needed
                        key.setLuid(String.format("%03d", (++lastId)));
                } else {
                        key.setLuid(luid);
                }
 
-               getDir(key).mkdirs();
-               if (!getDir(key).exists()) {
+               getDir(key.getSource()).mkdirs();
+               if (!getDir(key.getSource()).exists()) {
                        throw new IOException("Cannot create library dir");
                }
 
@@ -361,63 +410,137 @@ public class Library {
        public synchronized boolean delete(String luid) {
                boolean ok = false;
 
+               List<File> files = getFiles(luid);
+               if (!files.isEmpty()) {
+                       for (File file : files) {
+                               IOUtils.deltree(file);
+                       }
+
+                       ok = true;
+
+                       // clear cache
+                       stories.clear();
+               }
+
+               return ok;
+       }
+
+       /**
+        * Change the type (source) of the given {@link Story}.
+        * 
+        * @param luid
+        *            the {@link Story} LUID
+        * @param newSourcethe
+        *            new source
+        * 
+        * @return TRUE if the {@link Story} was found
+        */
+       public synchronized boolean changeType(String luid, String newType) {
                MetaData meta = getInfo(luid);
-               File file = getStories().get(meta);
+               if (meta != null) {
+                       meta.setSource(newType);
+                       File newDir = getDir(meta.getSource());
+                       if (!newDir.exists()) {
+                               newDir.mkdir();
+                       }
 
-               if (file != null) {
-                       if (file.delete()) {
-                               String readerExt = getOutputType(meta)
-                                               .getDefaultExtension(true);
-                               String fileExt = getOutputType(meta).getDefaultExtension(false);
-
-                               String path = file.getAbsolutePath();
-                               if (readerExt != null && !readerExt.equals(fileExt)) {
-                                       path = path
-                                                       .substring(0, path.length() - readerExt.length())
-                                                       + fileExt;
-                                       file = new File(path);
-                                       IOUtils.deltree(file);
+                       List<File> files = getFiles(luid);
+                       for (File file : files) {
+                               if (file.getName().endsWith(".info")) {
+                                       try {
+                                               String name = file.getName().replaceFirst("\\.info$",
+                                                               "");
+                                               InfoCover.writeInfo(newDir, name, meta);
+                                               file.delete();
+                                       } catch (IOException e) {
+                                               Instance.syserr(e);
+                                       }
+                               } else {
+                                       file.renameTo(new File(newDir, file.getName()));
                                }
+                       }
 
-                               File infoFile = new File(path + ".info");
-                               if (!infoFile.exists()) {
-                                       infoFile = new File(path.substring(0, path.length()
-                                                       - fileExt.length())
-                                                       + ".info");
-                               }
-                               infoFile.delete();
-
-                               String coverExt = "."
-                                               + Instance.getConfig().getString(
-                                                               Config.IMAGE_FORMAT_COVER);
-                               File coverFile = new File(path + coverExt);
-                               if (!coverFile.exists()) {
-                                       coverFile = new File(path.substring(0, path.length()
-                                                       - fileExt.length()));
+                       // clear cache
+                       stories.clear();
+
+                       return true;
+               }
+
+               return false;
+       }
+
+       /**
+        * Return the list of files/dirs on disk for this {@link Story}.
+        * <p>
+        * If the {@link Story} is not found, and empty list is returned.
+        * 
+        * @param luid
+        *            the {@link Story} LUID
+        * 
+        * @return the list of {@link File}s
+        */
+       private List<File> getFiles(String luid) {
+               List<File> files = new ArrayList<File>();
+
+               MetaData meta = getInfo(luid);
+               File file = getStories(null).get(meta);
+
+               if (file != null) {
+                       files.add(file);
+
+                       String readerExt = getOutputType(meta).getDefaultExtension(true);
+                       String fileExt = getOutputType(meta).getDefaultExtension(false);
+
+                       String path = file.getAbsolutePath();
+                       if (readerExt != null && !readerExt.equals(fileExt)) {
+                               path = path.substring(0, path.length() - readerExt.length())
+                                               + fileExt;
+                               file = new File(path);
+
+                               if (file.exists()) {
+                                       files.add(file);
                                }
-                               coverFile.delete();
+                       }
 
-                               ok = true;
+                       File infoFile = new File(path + ".info");
+                       if (!infoFile.exists()) {
+                               infoFile = new File(path.substring(0,
+                                               path.length() - fileExt.length())
+                                               + ".info");
                        }
 
-                       // clear cache
-                       stories.clear();
+                       if (infoFile.exists()) {
+                               files.add(infoFile);
+                       }
+
+                       String coverExt = "."
+                                       + Instance.getConfig().getString(Config.IMAGE_FORMAT_COVER);
+                       File coverFile = new File(path + coverExt);
+                       if (!coverFile.exists()) {
+                               coverFile = new File(path.substring(0,
+                                               path.length() - fileExt.length())
+                                               + coverExt);
+                       }
+
+                       if (coverFile.exists()) {
+                               files.add(coverFile);
+                       }
                }
 
-               return ok;
+               return files;
        }
 
        /**
         * The directory (full path) where the {@link Story} related to this
         * {@link MetaData} should be located on disk.
         * 
-        * @param key
-        *            the {@link Story} {@link MetaData}
+        * @param type
+        *            the type (source)
         * 
         * @return the target directory
         */
-       private File getDir(MetaData key) {
-               String source = key.getSource().replaceAll("[^a-zA-Z0-9._+-]", "_");
+       private File getDir(String type) {
+               String source = type.replaceAll("[^a-zA-Z0-9._+-]", "_");
                return new File(baseDir, source);
        }
 
@@ -436,67 +559,115 @@ public class Library {
                        title = "";
                }
                title = title.replaceAll("[^a-zA-Z0-9._+-]", "_");
-               return new File(getDir(key), key.getLuid() + "_" + title);
+               return new File(getDir(key.getSource()), key.getLuid() + "_" + title);
        }
 
        /**
         * Return all the known stories in this {@link Library} object.
         * 
+        * @param pg
+        *            the optional progress reporter
+        * 
         * @return the stories
         */
-       private synchronized Map<MetaData, File> getStories() {
+       private synchronized Map<MetaData, File> getStories(Progress pg) {
+               if (pg == null) {
+                       pg = new Progress();
+               } else {
+                       pg.setMinMax(0, 100);
+               }
+
                if (stories.isEmpty()) {
                        lastId = 0;
 
-                       String ext = ".info";
-                       for (File dir : baseDir.listFiles()) {
-                               if (dir.isDirectory()) {
-                                       for (File file : dir.listFiles()) {
+                       File[] dirs = baseDir.listFiles(new FileFilter() {
+                               public boolean accept(File file) {
+                                       return file != null && file.isDirectory();
+                               }
+                       });
+
+                       Progress pgDirs = new Progress(0, 100 * dirs.length);
+                       pg.addProgress(pgDirs, 100);
+
+                       for (File dir : dirs) {
+                               File[] files = dir.listFiles(new FileFilter() {
+                                       public boolean accept(File file) {
+                                               return file != null
+                                                               && file.getPath().toLowerCase()
+                                                                               .endsWith(".info");
+                                       }
+                               });
+
+                               Progress pgFiles = new Progress(0, files.length);
+                               pgDirs.addProgress(pgFiles, 100);
+                               pgDirs.setName("Loading from: " + dir.getName());
+
+                               for (File file : files) {
+                                       pgFiles.setName(file.getName());
+                                       try {
+                                               Entry<MetaData, File> entry = readMeta(file, false);
                                                try {
-                                                       if (file.getPath().toLowerCase().endsWith(ext)) {
-                                                               MetaData meta = InfoReader.readMeta(file);
-                                                               try {
-                                                                       int id = Integer.parseInt(meta.getLuid());
-                                                                       if (id > lastId) {
-                                                                               lastId = id;
-                                                                       }
-
-                                                                       // Replace .info with whatever is needed:
-                                                                       String path = file.getPath();
-                                                                       path = path.substring(0, path.length()
-                                                                                       - ext.length());
-
-                                                                       String newExt = getOutputType(meta)
-                                                                                       .getDefaultExtension(true);
-
-                                                                       file = new File(path + newExt);
-                                                                       //
-
-                                                                       stories.put(meta, file);
-
-                                                               } catch (Exception e) {
-                                                                       // not normal!!
-                                                                       Instance.syserr(new IOException(
-                                                                                       "Cannot understand the LUID of "
-                                                                                                       + file.getPath() + ": "
-                                                                                                       + meta.getLuid(), e));
-                                                               }
+                                                       int id = Integer.parseInt(entry.getKey().getLuid());
+                                                       if (id > lastId) {
+                                                               lastId = id;
                                                        }
-                                               } catch (IOException e) {
-                                                       // We should not have not-supported files in the
-                                                       // library
-                                                       Instance.syserr(new IOException(
-                                                                       "Cannot load file from library: "
-                                                                                       + file.getPath(), e));
+
+                                                       stories.put(entry.getKey(), entry.getValue());
+                                               } catch (Exception e) {
+                                                       // not normal!!
+                                                       throw new IOException(
+                                                                       "Cannot understand the LUID of "
+                                                                                       + file.getPath() + ": "
+                                                                                       + entry.getKey().getLuid(), e);
                                                }
+                                       } catch (IOException e) {
+                                               // We should not have not-supported files in the
+                                               // library
+                                               Instance.syserr(new IOException(
+                                                               "Cannot load file from library: "
+                                                                               + file.getPath(), e));
                                        }
+                                       pgFiles.add(1);
                                }
+
+                               pgFiles.setName(null);
                        }
+
+                       pgDirs.setName("Loading directories");
                }
 
                return stories;
        }
 
+       private Entry<MetaData, File> readMeta(File infoFile, boolean withCover)
+                       throws IOException {
+
+               final MetaData meta = InfoReader.readMeta(infoFile, withCover);
+
+               // Replace .info with whatever is needed:
+               String path = infoFile.getPath();
+               path = path.substring(0, path.length() - ".info".length());
+
+               String newExt = getOutputType(meta).getDefaultExtension(true);
+
+               File targetFile = new File(path + newExt);
+
+               final File ffile = targetFile;
+               return new Entry<MetaData, File>() {
+                       public File setValue(File value) {
+                               return null;
+                       }
+
+                       public File getValue() {
+                               return ffile;
+                       }
+
+                       public MetaData getKey() {
+                               return meta;
+                       }
+               };
+       }
+
        /**
         * Return the {@link OutputType} for this {@link Story}.
         *