X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Freader%2FBasicReader.java;h=7b9c98c2a6c1f0239bb460fc2fc8b7938a36a9fb;hb=9119671d3774c0b74ce8661b5262ff14e6bfb010;hp=0bcfd931e1b505da7e28fb43897a46a839f17ab4;hpb=3b2b638f7e1395702f843b5b19d7959327f604b2;p=fanfix.git diff --git a/src/be/nikiroo/fanfix/reader/BasicReader.java b/src/be/nikiroo/fanfix/reader/BasicReader.java index 0bcfd93..7b9c98c 100644 --- a/src/be/nikiroo/fanfix/reader/BasicReader.java +++ b/src/be/nikiroo/fanfix/reader/BasicReader.java @@ -1,5 +1,6 @@ package be.nikiroo.fanfix.reader; +import java.awt.Desktop; import java.io.File; import java.io.IOException; import java.net.MalformedURLException; @@ -8,9 +9,13 @@ import java.net.URL; import be.nikiroo.fanfix.Instance; import be.nikiroo.fanfix.Library; import be.nikiroo.fanfix.bundles.Config; +import be.nikiroo.fanfix.bundles.UiConfig; +import be.nikiroo.fanfix.data.MetaData; import be.nikiroo.fanfix.data.Story; import be.nikiroo.fanfix.supported.BasicSupport; import be.nikiroo.utils.Progress; +import be.nikiroo.utils.ui.UIUtils; +import be.nikiroo.utils.serial.SerialUtils; /** * The class that handles the different {@link Story} readers you can use. @@ -24,10 +29,25 @@ public abstract class BasicReader { /** Simple reader that outputs everything on the console */ CLI, /** Reader that starts local programs to handle the stories */ - LOCAL + GUI, + /** A text (UTF-8) reader with menu and text windows */ + TUI, + + ; + + public String getTypeName() { + String pkg = "be.nikiroo.fanfix.reader."; + switch (this) { + case CLI: return pkg + "CliReader"; + case TUI: return pkg + "TuiReader"; + case GUI: return pkg + "LocalReader"; + } + + return null; + } } - private static ReaderType defaultType = ReaderType.CLI; + private static ReaderType defaultType = ReaderType.GUI; private Story story; private ReaderType type; @@ -134,8 +154,12 @@ public abstract class BasicReader { * * @param chapter * the chapter + * + * @throws IOException + * in case of I/O error or if the {@link Story} was not + * previously set */ - public abstract void read(int chapter); + public abstract void read(int chapter) throws IOException; /** * Start the reader in browse mode for the given type (or pass NULL for all @@ -157,16 +181,12 @@ public abstract class BasicReader { public static BasicReader getReader() { try { if (defaultType != null) { - switch (defaultType) { - case LOCAL: - return new LocalReader().setType(ReaderType.LOCAL); - case CLI: - return new CliReader().setType(ReaderType.CLI); - } + return ((BasicReader)SerialUtils.createObject + (defaultType.getTypeName())).setType(defaultType); } - } catch (IOException e) { + } catch (Exception e) { Instance.syserr(new Exception("Cannot create a reader of type: " - + defaultType, e)); + + defaultType + " (Not compiled in?)", e)); } return null; @@ -220,4 +240,41 @@ public abstract class BasicReader { return source; } + + // open with external player the related file + public static void open(String luid) throws IOException { + MetaData meta = Instance.getLibrary().getInfo(luid); + File target = Instance.getLibrary().getFile(luid); + + open(meta, target); + } + + // open with external player the related file + protected static void open(MetaData meta, File target) throws IOException { + String program = null; + if (meta.isImageDocument()) { + program = Instance.getUiConfig().getString( + UiConfig.IMAGES_DOCUMENT_READER); + } else { + program = Instance.getUiConfig().getString( + UiConfig.NON_IMAGES_DOCUMENT_READER); + } + + if (program != null && program.trim().isEmpty()) { + program = null; + } + + if (program == null) { + try { + Desktop.getDesktop().browse(target.toURI()); + } catch (UnsupportedOperationException e) { + Runtime.getRuntime().exec( + new String[] { "xdg-open", target.getAbsolutePath() }); + + } + } else { + Runtime.getRuntime().exec( + new String[] { program, target.getAbsolutePath() }); + } + } }