Fixes:
[nikiroo-utils.git] / src / be / nikiroo / fanfix / library / CacheLibrary.java
index d864e2bca13df41e8c7604ea6f75907206e0b848..977331f33ecf0783084f730414b0862dd1de86c1 100644 (file)
@@ -1,6 +1,5 @@
 package be.nikiroo.fanfix.library;
 
-import java.awt.image.BufferedImage;
 import java.io.File;
 import java.io.IOException;
 import java.net.URL;
@@ -10,6 +9,7 @@ import be.nikiroo.fanfix.Instance;
 import be.nikiroo.fanfix.bundles.UiConfig;
 import be.nikiroo.fanfix.data.MetaData;
 import be.nikiroo.fanfix.data.Story;
+import be.nikiroo.utils.Image;
 import be.nikiroo.utils.Progress;
 
 /**
@@ -83,8 +83,8 @@ public class CacheLibrary extends BasicLibrary {
                if (!isCached(luid)) {
                        try {
                                cacheLib.imprt(lib, luid, pgImport);
+                               updateInfo(cacheLib.getInfo(luid));
                                pgImport.done();
-                               clearCache();
                        } catch (IOException e) {
                                Instance.getTraceHandler().error(e);
                        }
@@ -101,7 +101,7 @@ public class CacheLibrary extends BasicLibrary {
        }
 
        @Override
-       public BufferedImage getCover(final String luid) {
+       public Image getCover(final String luid) {
                if (isCached(luid)) {
                        return cacheLib.getCover(luid);
                }
@@ -111,7 +111,7 @@ public class CacheLibrary extends BasicLibrary {
        }
 
        @Override
-       public BufferedImage getSourceCover(String source) {
+       public Image getSourceCover(String source) {
                // no cache for the source cover
                return lib.getSourceCover(source);
        }
@@ -123,10 +123,33 @@ public class CacheLibrary extends BasicLibrary {
        }
 
        @Override
-       protected void clearCache() {
-               metas = null;
-               cacheLib.clearCache();
-               lib.clearCache();
+       protected void updateInfo(MetaData meta) {
+               if (meta != null && metas != null) {
+                       for (int i = 0; i < metas.size(); i++) {
+                               if (metas.get(i).getLuid().equals(meta.getLuid())) {
+                                       metas.set(i, meta);
+                               }
+                       }
+               }
+
+               cacheLib.updateInfo(meta);
+               lib.updateInfo(meta);
+       }
+
+       @Override
+       protected void deleteInfo(String luid) {
+               if (luid == null) {
+                       metas = null;
+               } else if (metas != null) {
+                       for (int i = 0; i < metas.size(); i++) {
+                               if (metas.get(i).getLuid().equals(luid)) {
+                                       metas.remove(i--);
+                               }
+                       }
+               }
+
+               cacheLib.deleteInfo(luid);
+               lib.deleteInfo(luid);
        }
 
        @Override
@@ -146,7 +169,7 @@ public class CacheLibrary extends BasicLibrary {
                story = lib.save(story, luid, pgLib);
                story = cacheLib.save(story, story.getMeta().getLuid(), pgCacheLib);
 
-               clearCache();
+               updateInfo(story.getMeta());
 
                return story;
        }
@@ -157,7 +180,11 @@ public class CacheLibrary extends BasicLibrary {
                        cacheLib.delete(luid);
                }
                lib.delete(luid);
-               clearCache();
+
+               MetaData meta = getInfo(luid);
+               if (meta != null) {
+                       metas.remove(meta);
+               }
        }
 
        @Override
@@ -173,13 +200,20 @@ public class CacheLibrary extends BasicLibrary {
                pg.addProgress(pgCache, 1);
                pg.addProgress(pgOrig, 1);
 
+               MetaData meta = getInfo(luid);
+               if (meta == null) {
+                       throw new IOException("Story not found: " + luid);
+               }
+
                if (isCached(luid)) {
                        cacheLib.changeSource(luid, newSource, pgCache);
                }
                pgCache.done();
+
                lib.changeSource(luid, newSource, pgOrig);
                pgOrig.done();
 
+               meta.setSource(newSource);
                pg.done();
        }
 
@@ -208,7 +242,6 @@ public class CacheLibrary extends BasicLibrary {
        public void clearFromCache(String luid) throws IOException {
                if (isCached(luid)) {
                        cacheLib.delete(luid);
-                       clearCache();
                }
        }
 
@@ -227,6 +260,8 @@ public class CacheLibrary extends BasicLibrary {
                Story story = lib.imprt(url, pgImprt);
                cacheLib.save(story, story.getMeta().getLuid(), pgCache);
 
+               updateInfo(story.getMeta());
+
                pg.done();
                return story;
        }