Instance: use getInstance()
[nikiroo-utils.git] / src / be / nikiroo / fanfix / reader / tui / TuiReader.java
index cc39dcde77e7173229c5cd597942e36721e6462b..ef5e71bc676a237dd59dd2e53d7fad4affb527be 100644 (file)
@@ -52,12 +52,19 @@ class TuiReader extends BasicReader {
 
        @Override
        public void read(boolean sync) throws IOException {
+               // TODO
+               if (!sync) {
+                       // How could you do a not-sync in TUI mode?
+                       throw new java.lang.IllegalStateException(
+                                       "Async mode not implemented yet.");
+               }
+
                try {
                        TuiReaderApplication app = new TuiReaderApplication(this,
                                        guessBackendType());
-                       new Thread(app).start();
+                       app.run();
                } catch (Exception e) {
-                       Instance.getTraceHandler().error(e);
+                       Instance.getInstance().getTraceHandler().error(e);
                }
        }
 
@@ -66,21 +73,35 @@ class TuiReader extends BasicReader {
                try {
                        TuiReaderApplication app = new TuiReaderApplication(this, source,
                                        guessBackendType());
-                       new Thread(app).start();
+                       app.run();
                } catch (Exception e) {
-                       Instance.getTraceHandler().error(e);
+                       Instance.getInstance().getTraceHandler().error(e);
+               }
+       }
+
+       @Override
+       public void search(boolean sync) throws IOException {
+               // TODO
+               if (sync) {
+                       throw new java.lang.IllegalStateException("Not implemented yet.");
                }
        }
-       
+
        @Override
-       public void search(SupportType searchOn, String keywords, int page, int item) {
-               // TODO: !!!
-               throw new java.lang.IllegalStateException("Not implemented yet.");      
+       public void search(SupportType searchOn, String keywords, int page,
+                       int item, boolean sync) {
+               // TODO
+               if (sync) {
+                       throw new java.lang.IllegalStateException("Not implemented yet.");
+               }
        }
-       
+
        @Override
-       public void searchTag(SupportType searchOn, int page, int item, String... tags) {
-               // TODO: !!!
-               throw new java.lang.IllegalStateException("Not implemented yet.");
+       public void searchTag(SupportType searchOn, int page, int item,
+                       boolean sync, Integer... tags) {
+               // TODO
+               if (sync) {
+                       throw new java.lang.IllegalStateException("Not implemented yet.");
+               }
        }
 }