X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Freader%2FGuiReader.java;h=8ff9d92072e76f6a29da2a7599decb0736e4c75b;hb=ff05b8284e6e415b13d3543650075d0f7cd27ff5;hp=2f1b33961329179253fa6049ccaded8f3d774f11;hpb=34eb62fc14c1f4db29e65ceb6b190811380aba7e;p=nikiroo-utils.git diff --git a/src/be/nikiroo/fanfix/reader/GuiReader.java b/src/be/nikiroo/fanfix/reader/GuiReader.java index 2f1b339..8ff9d92 100644 --- a/src/be/nikiroo/fanfix/reader/GuiReader.java +++ b/src/be/nikiroo/fanfix/reader/GuiReader.java @@ -14,11 +14,11 @@ import javax.swing.event.HyperlinkListener; import be.nikiroo.fanfix.Instance; import be.nikiroo.fanfix.VersionCheck; -import be.nikiroo.fanfix.bundles.UiConfig; import be.nikiroo.fanfix.data.MetaData; import be.nikiroo.fanfix.data.Story; +import be.nikiroo.fanfix.library.BasicLibrary; +import be.nikiroo.fanfix.library.CacheLibrary; import be.nikiroo.fanfix.library.LocalLibrary; -import be.nikiroo.fanfix.output.BasicOutput.OutputType; import be.nikiroo.utils.Progress; import be.nikiroo.utils.Version; import be.nikiroo.utils.ui.UIUtils; @@ -26,7 +26,9 @@ import be.nikiroo.utils.ui.UIUtils; class GuiReader extends BasicReader { static private boolean nativeLookLoaded; - private LocalLibrary localLibrary; + private CacheLibrary cacheLib; + + private File cacheDir; public GuiReader() throws IOException { if (!nativeLookLoaded) { @@ -34,40 +36,27 @@ class GuiReader extends BasicReader { nativeLookLoaded = true; } - File dir = Instance.getReaderDir(); - dir.mkdirs(); - if (!dir.exists()) { + cacheDir = Instance.getReaderDir(); + cacheDir.mkdirs(); + if (!cacheDir.exists()) { throw new IOException( - "Cannote create cache directory for local reader: " + dir); + "Cannote create cache directory for local reader: " + + cacheDir); } + } - OutputType text = null; - OutputType images = null; - - try { - text = OutputType.valueOfNullOkUC(Instance.getUiConfig().getString( - UiConfig.NON_IMAGES_DOCUMENT_TYPE)); - if (text == null) { - text = OutputType.HTML; - } - - images = OutputType.valueOfNullOkUC(Instance.getUiConfig() - .getString(UiConfig.IMAGES_DOCUMENT_TYPE)); - if (images == null) { - images = OutputType.CBZ; + @Override + public synchronized BasicLibrary getLibrary() { + if (cacheLib == null) { + BasicLibrary lib = super.getLibrary(); + if (lib instanceof CacheLibrary) { + cacheLib = (CacheLibrary) lib; + } else { + cacheLib = new CacheLibrary(cacheDir, lib); } - } catch (Exception e) { - UiConfig key = (text == null) ? UiConfig.NON_IMAGES_DOCUMENT_TYPE - : UiConfig.IMAGES_DOCUMENT_TYPE; - String value = Instance.getUiConfig().getString(key); - - throw new IOException( - String.format( - "The configuration option %s is not valid: %s", - key, value), e); } - localLibrary = new LocalLibrary(dir, text, images); + return cacheLib; } @Override @@ -81,40 +70,6 @@ class GuiReader extends BasicReader { read(meta.getLuid(), null); } - /** - * Import the story into the local reader library, and keep the same LUID. - * - * @param luid - * the Library UID - * @param pg - * the optional progress reporter - * - * @throws IOException - * in case of I/O error - */ - public void imprt(String luid, Progress pg) throws IOException { - Progress pgGetStory = new Progress(); - Progress pgSave = new Progress(); - if (pg != null) { - pg.setMax(2); - pg.addProgress(pgGetStory, 1); - pg.addProgress(pgSave, 1); - } - - try { - Story story = getLibrary().getStory(luid, pgGetStory); - if (story != null) { - story = localLibrary.save(story, luid, pgSave); - } else { - throw new IOException("Cannot find story in Library: " + luid); - } - } catch (IOException e) { - throw new IOException( - "Cannot import story from library to LocalReader library: " - + luid, e); - } - } - /** * Check if the {@link Story} denoted by this Library UID is present in the * {@link GuiReader} cache. @@ -125,7 +80,7 @@ class GuiReader extends BasicReader { * @return TRUE if it is */ public boolean isCached(String luid) { - return localLibrary.getInfo(luid) != null; + return cacheLib.isCached(luid); } @Override @@ -196,7 +151,7 @@ class GuiReader extends BasicReader { // delete from local reader library void clearLocalReaderCache(String luid) { try { - localLibrary.delete(luid); + cacheLib.clearFromCache(luid); } catch (IOException e) { Instance.syserr(e); } @@ -205,8 +160,7 @@ class GuiReader extends BasicReader { // delete from main library void delete(String luid) { try { - localLibrary.delete(luid); - getLibrary().delete(luid); + cacheLib.delete(luid); } catch (IOException e) { Instance.syserr(e); } @@ -214,11 +168,7 @@ class GuiReader extends BasicReader { // open the given book void read(String luid, Progress pg) throws IOException { - File file = localLibrary.getFile(luid); - if (file == null) { - imprt(luid, pg); - file = localLibrary.getFile(luid); - } + File file = cacheLib.getFile(luid, pg); // TODO: show a special page for the chapter? openExternal(getLibrary().getInfo(luid), file); @@ -226,10 +176,7 @@ class GuiReader extends BasicReader { void changeType(String luid, String newSource) { try { - if (localLibrary.getInfo(luid) != null) { - localLibrary.changeSource(luid, newSource, null); - } - getLibrary().changeSource(luid, newSource, null); + cacheLib.changeSource(luid, newSource, null); } catch (IOException e) { Instance.syserr(e); }