Remove or move java.awt dependencies
[nikiroo-utils.git] / src / be / nikiroo / fanfix / library / CacheLibrary.java
index 62ac9fa77bb4f3f7efd4a463863896961ce7abce..26204156b4d587cb7353851de1a8ea8af7e12b84 100644 (file)
@@ -1,14 +1,15 @@
 package be.nikiroo.fanfix.library;
 
-import java.awt.image.BufferedImage;
 import java.io.File;
 import java.io.IOException;
+import java.net.URL;
 import java.util.List;
 
 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,7 +84,7 @@ public class CacheLibrary extends BasicLibrary {
                        try {
                                cacheLib.imprt(lib, luid, pgImport);
                                pgImport.done();
-                               clearCache();
+                               invalidateInfo(luid);
                        } catch (IOException e) {
                                Instance.getTraceHandler().error(e);
                        }
@@ -100,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);
                }
@@ -110,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);
        }
@@ -122,10 +123,31 @@ public class CacheLibrary extends BasicLibrary {
        }
 
        @Override
-       protected void clearCache() {
-               metas = null;
-               cacheLib.clearCache();
-               lib.clearCache();
+       protected void invalidateInfo(String luid) {
+               List<MetaData> metas = this.metas;
+
+               if (luid == null) {
+                       this.metas = null;
+               } else if (metas != null) {
+                       MetaData meta = lib.getInfo(luid);
+                       for (int i = 0; i < metas.size(); i++) {
+                               if (metas.get(i).getLuid().equals(luid)) {
+                                       if (meta != null) {
+                                               metas.set(i, meta);
+                                               meta = null;
+                                       } else {
+                                               metas.remove(i--);
+                                       }
+                               }
+                       }
+
+                       if (meta != null) {
+                               metas.add(meta);
+                       }
+               }
+
+               cacheLib.invalidateInfo(luid);
+               lib.invalidateInfo(luid);
        }
 
        @Override
@@ -143,9 +165,9 @@ public class CacheLibrary extends BasicLibrary {
                pg.addProgress(pgCacheLib, 1);
 
                story = lib.save(story, luid, pgLib);
-               story = cacheLib.save(story, luid, pgCacheLib);
+               story = cacheLib.save(story, story.getMeta().getLuid(), pgCacheLib);
 
-               clearCache();
+               invalidateInfo(story.getMeta().getLuid());
 
                return story;
        }
@@ -156,7 +178,15 @@ public class CacheLibrary extends BasicLibrary {
                        cacheLib.delete(luid);
                }
                lib.delete(luid);
-               clearCache();
+
+               List<MetaData> metas = this.metas;
+               if (metas != null) {
+                       for (int i = 0; i < metas.size(); i++) {
+                               if (metas.get(i).getLuid().equals(luid)) {
+                                       metas.set(i, lib.getInfo(luid));
+                               }
+                       }
+               }
        }
 
        @Override
@@ -172,13 +202,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();
        }
 
@@ -207,10 +244,29 @@ public class CacheLibrary extends BasicLibrary {
        public void clearFromCache(String luid) throws IOException {
                if (isCached(luid)) {
                        cacheLib.delete(luid);
-                       clearCache();
+                       invalidateInfo(luid);
                }
        }
 
+       @Override
+       public Story imprt(URL url, Progress pg) throws IOException {
+               if (pg == null) {
+                       pg = new Progress();
+               }
+
+               Progress pgImprt = new Progress();
+               Progress pgCache = new Progress();
+               pg.setMinMax(0, 10);
+               pg.addProgress(pgImprt, 7);
+               pg.addProgress(pgCache, 3);
+
+               Story story = lib.imprt(url, pgImprt);
+               cacheLib.save(story, story.getMeta().getLuid(), pgCache);
+
+               pg.done();
+               return story;
+       }
+
        // All the following methods are only used by Save and Delete in
        // BasicLibrary: