X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Flibrary%2FCacheLibrary.java;h=a3c3b5e3b7bb6f5a61962e8837158e28692feb56;hb=98b95fb81566ca8b04c8d891a02c8019d8bed63d;hp=40128979ee4dcfdf318272077a99c014ab396097;hpb=ff05b8284e6e415b13d3543650075d0f7cd27ff5;p=fanfix.git diff --git a/src/be/nikiroo/fanfix/library/CacheLibrary.java b/src/be/nikiroo/fanfix/library/CacheLibrary.java deleted file mode 100644 index 4012897..0000000 --- a/src/be/nikiroo/fanfix/library/CacheLibrary.java +++ /dev/null @@ -1,202 +0,0 @@ -package be.nikiroo.fanfix.library; - -import java.awt.image.BufferedImage; -import java.io.File; -import java.io.IOException; -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.Progress; - -/** - * This library will cache another pre-existing {@link BasicLibrary}. - * - * @author niki - */ -public class CacheLibrary extends BasicLibrary { - private List metas; - private BasicLibrary lib; - private LocalLibrary cacheLib; - - /** - * Create a cache library around the given one. - *

- * It will return the same result, but those will be saved to disk at the - * same time to be fetched quicker the next time. - * - * @param cacheDir - * the cache directory where to save the files to disk - * @param lib - * the original library to wrap - */ - public CacheLibrary(File cacheDir, BasicLibrary lib) { - this.cacheLib = new LocalLibrary(cacheDir, Instance.getUiConfig() - .getString(UiConfig.GUI_NON_IMAGES_DOCUMENT_TYPE), Instance - .getUiConfig().getString(UiConfig.GUI_IMAGES_DOCUMENT_TYPE), - true); - this.lib = lib; - } - - @Override - public String getLibraryName() { - return lib.getLibraryName(); - } - - @Override - protected List getMetas(Progress pg) { - if (pg == null) { - pg = new Progress(); - } - - if (metas == null) { - metas = lib.getMetas(pg); - } - - pg.done(); - return metas; - } - - @Override - public synchronized File getFile(final String luid, Progress pg) { - if (pg == null) { - pg = new Progress(); - } - - Progress pgImport = new Progress(); - Progress pgGet = new Progress(); - Progress pgRecall = new Progress(); - - pg.setMinMax(0, 5); - pg.addProgress(pgImport, 3); - pg.addProgress(pgGet, 1); - pg.addProgress(pgRecall, 1); - - if (!isCached(luid)) { - try { - cacheLib.imprt(lib, luid, pgImport); - pgImport.done(); - Story story = cacheLib.getStory(luid, pgGet); - metas.remove(story.getMeta()); - metas.add(story.getMeta()); - } catch (IOException e) { - Instance.syserr(e); - } - - pgImport.done(); - pgGet.done(); - } - - File file = cacheLib.getFile(luid, pgRecall); - pgRecall.done(); - - pg.done(); - return file; - } - - @Override - public BufferedImage getCover(final String luid) { - // Retrieve it from the cache if possible: - if (isCached(luid)) { - return cacheLib.getCover(luid); - } - - return lib.getCover(luid); - } - - @Override - protected void clearCache() { - metas = null; - cacheLib.clearCache(); - lib.clearCache(); - } - - @Override - public synchronized Story save(Story story, String luid, Progress pg) - throws IOException { - story = lib.save(story, luid, pg); - clearCache(); - return story; - } - - @Override - public synchronized void delete(String luid) throws IOException { - cacheLib.delete(luid); - lib.delete(luid); - clearCache(); - } - - @Override - public void setSourceCover(String source, String luid) { - cacheLib.setSourceCover(source, luid); - lib.setSourceCover(source, luid); - } - - @Override - public synchronized void changeSource(String luid, String newSource, - Progress pg) throws IOException { - if (pg == null) { - pg = new Progress(); - } - - Progress pgCache = new Progress(); - Progress pgOrig = new Progress(); - pg.setMinMax(0, 2); - pg.addProgress(pgCache, 1); - pg.addProgress(pgOrig, 1); - - cacheLib.changeSource(luid, newSource, pgCache); - pgCache.done(); - lib.changeSource(luid, newSource, pgOrig); - pgOrig.done(); - - pg.done(); - } - - /** - * Check if the {@link Story} denoted by this Library UID is present in the - * cache. - * - * @param luid - * the Library UID - * - * @return TRUE if it is - */ - public boolean isCached(String luid) { - return cacheLib.getInfo(luid) != null; - } - - /** - * Clear the {@link Story} from the cache. - * - * @param luid - * the story to clear - * - * @throws IOException - * in case of I/O error - */ - public void clearFromCache(String luid) throws IOException { - cacheLib.delete(luid); - clearCache(); - } - - // All the following methods are only used by Save and Delete in - // BasicLibrary: - - @Override - protected int getNextId() { - throw new java.lang.InternalError("Should not have been called"); - } - - @Override - protected void doDelete(String luid) throws IOException { - throw new java.lang.InternalError("Should not have been called"); - } - - @Override - protected Story doSave(Story story, Progress pg) throws IOException { - throw new java.lang.InternalError("Should not have been called"); - } -}