Ticket #2396: 2396.patch

File 2396.patch, 8.2 KB (added by stefan, 15 years ago)
  • modules/org.sophie2.launcher/src/main/java/org/sophie2/launcher/Main.java

    ### Eclipse Workspace Patch 1.0
    #P sophie
     
    4444 
    4545                checkAssertions(); 
    4646 
    47                 assert args.length == 2; 
     47                assert args.length >= 2; 
    4848 
    4949                String configFileName = args[0]; 
    5050                String edition = args[1]; 
    51  
     51                String[] files = new String[args.length - 2]; 
     52                 
    5253                String bundlesListFileName = "/" + edition + "-run" + "/" 
    5354                                + configFileName; 
     55                 
     56                for (int i = 0; i < args.length - 2; i++) { 
     57                        files[i] = args[i + 2]; 
     58                } 
     59                 
     60                if (files.length == 0) { 
     61                        files = null; 
     62                } 
    5463 
    5564                URL configUrl = Main.class.getResource(bundlesListFileName); 
    5665                if (configUrl == null) { 
     
    97106                                launcher.stop(); 
    98107                        } 
    99108                }); 
    100                 launcher.start(configUrl, edition, null, null, false); 
     109                launcher.start(configUrl, edition, files, null, false); 
    101110        } 
    102111} 
  • modules/org.sophie2.launcher/src/main/java/org/sophie2/launcher/Launcher.java

     
    8585         *                      The url of the bundles config file. 
    8686         * @param edition  
    8787         *                      The edition to be launched. 
    88          * @param bookRef  
     88         * @param bookRefs  
    8989         *                      The ref of the book to be opened in reader edition or <code>null</code>. 
    9090         * @param splashContainer  
    9191         *                      The splash container or <code>null</code> if a new window will be used. 
     
    9595         * @throws IOException If there is an io error while starting the application. 
    9696         */ 
    9797        public void start(  
    98                         URL configUrl, String edition, String bookRef, RootPaneContainer splashContainer, boolean embedded) throws IOException { 
    99                 if (bookRef != null) { 
    100                         System.setProperty("sophie2.startupBookLocation", bookRef); 
     98                        URL configUrl, String edition, String[] bookRefs, RootPaneContainer splashContainer, boolean embedded) throws IOException { 
     99                if (bookRefs != null) { 
     100                        System.getProperties().put("sophie2.loadOnStartUpFiles", bookRefs); 
    101101                } 
    102102                 
    103103                System.setProperty("sophie-version", SOPHIE_VERSION); 
  • modules/org.sophie2.author/src/main/java/org/sophie2/author/AuthorModule.java

     
    11package org.sophie2.author; 
    22 
     3import java.io.File; 
     4import java.io.FileOutputStream; 
     5import java.io.IOException; 
     6import java.io.InputStream; 
     7import java.net.URI; 
    38import java.util.List; 
    49import java.util.Timer; 
    510import java.util.TimerTask; 
    611 
    712import org.sophie2.base.commons.util.ImageUtil; 
     13import org.sophie2.base.commons.util.bindata.BinData; 
    814import org.sophie2.base.commons.util.bindata.TmpChunksDirProvider; 
    915import org.sophie2.base.layout.BaseLayoutModule; 
    1016import org.sophie2.base.layout.LayoutEngine; 
    1117import org.sophie2.base.layout.model.MainWindow; 
     18import org.sophie2.base.model.resources.r4.LocationPrefix; 
     19import org.sophie2.base.model.resources.r4.ResourceRefR4; 
    1220import org.sophie2.base.model.resources.r4.access.ResourceAccess; 
    1321import org.sophie2.base.skins.BaseSkinPart; 
    1422import org.sophie2.base.skins.SkinUtil; 
    1523import org.sophie2.base.visual.BaseVisualModule; 
     24import org.sophie2.core.logging.SophieLog; 
    1625import org.sophie2.core.modularity.SophieExtension; 
    1726import org.sophie2.core.modularity.SophieExtensionPoint; 
    1827import org.sophie2.core.modularity.SophieModule; 
    1928import org.sophie2.main.app.commons.app.AppMainWindow; 
    2029import org.sophie2.main.app.commons.book.BookDocView; 
    2130import org.sophie2.main.app.commons.book.BookViewOptions; 
     31import org.sophie2.main.app.commons.util.AppViewUtil; 
    2232 
    2333/** 
    2434 * Module class for Sophie Author. 
     
    6676        protected void doStart() { 
    6777                assert instance == null; 
    6878                instance = this; 
    69  
     79                 
     80                ResourceRefR4[] refs; 
     81                try { 
     82                        refs = checkStartUpBooks(); 
     83                } catch (IOException e) { 
     84                        refs = null; 
     85                        SophieLog.error("IO error while opening argument books.", e); 
     86                } 
     87                 
     88                final ResourceRefR4[] bookRefs = refs; 
    7089                 
    7190                new Timer().schedule(new TimerTask() { 
    7291 
     
    95114                                                window.desktopDocument().set(desktopView); 
    96115                                                engine.mainWindows().add(window); 
    97116                                                System.setProperty("sophie2.loaded", "true"); 
     117                                                 
     118                                                if (bookRefs != null) { 
     119                                                        for (int i = 0; i < bookRefs.length; i++) { 
     120                                                                AppViewUtil.openBook(window, bookRefs[i]); 
     121                                                        } 
     122                                                } 
    98123                                        } 
    99124                                }); 
    100125 
     
    102127                }, 1000); 
    103128        } 
    104129 
     130        private ResourceRefR4[] checkStartUpBooks() throws IOException { 
     131                String[] startUpBookFiles = (String[]) System.getProperties().get("sophie2.loadOnStartUpFiles"); 
     132                if (startUpBookFiles == null) { 
     133                        return null; 
     134                } 
     135                 
     136                ResourceRefR4[] resultRefs = new ResourceRefR4[startUpBookFiles.length]; 
     137                for (int i = 0; i < startUpBookFiles.length; i++) { 
     138                        ResourceRefR4 bookRef = ResourceRefR4.make(LocationPrefix.FILE + startUpBookFiles[i]); 
     139                        URI uri = bookRef.toUri(); 
     140                        if (!uri.isAbsolute()) { 
     141                                SophieLog.warnf("Cannot open non absolute ref[%d]: %s.", i, bookRef); 
     142                                resultRefs[i] = null; 
     143                                continue; 
     144                        } 
     145                         
     146                        InputStream from = null; 
     147                        FileOutputStream to = null; 
     148                         
     149                        try { 
     150                                from = uri.toURL().openStream(); 
     151                                File resourceFile = File.createTempFile("sophieStartupBook " + i, null); 
     152                                resourceFile.deleteOnExit(); 
     153                                to = new FileOutputStream(resourceFile); 
     154                                BinData.transport(from, to); 
     155                                resultRefs[i] = ResourceRefR4.make(resourceFile); 
     156                        } finally { 
     157                                if (to != null) { 
     158                                        to.close(); 
     159                                } 
     160                                if (from != null) { 
     161                                        from.close(); 
     162                                } 
     163                        } 
     164                } 
     165                return resultRefs; 
     166        } 
     167         
    105168        @Override 
    106169        protected void doStop() { 
    107170                assert instance == this; 
  • modules/org.sophie2.reader/src/main/java/org/sophie2/reader/ReaderModule.java

     
    1515import org.sophie2.base.layout.BaseLayoutModule; 
    1616import org.sophie2.base.layout.LayoutEngine; 
    1717import org.sophie2.base.layout.model.MainWindow; 
     18import org.sophie2.base.model.resources.r4.LocationPrefix; 
    1819import org.sophie2.base.model.resources.r4.ResourceRefR4; 
    1920import org.sophie2.base.skins.BaseSkinPart; 
    2021import org.sophie2.base.skins.SkinUtil; 
     
    125126         *                      If IO error occurs while transferring the book. 
    126127         */ 
    127128        private ResourceRefR4 checkStartupBook() throws IOException { 
    128                 String startupBookLocation =  
    129                         System.getProperty("sophie2.startupBookLocation"); 
    130                 if (startupBookLocation == null) { 
     129                String[] startUpBookFiles = (String[]) System.getProperties().get("sophie2.loadOnStartUpFiles"); 
     130                if (startUpBookFiles == null) { 
    131131                        return null; 
    132132                } 
    133                 ResourceRefR4 bookRef = ResourceRefR4.make(startupBookLocation); 
     133                //open only first book. 
     134                 
     135                ResourceRefR4 bookRef = ResourceRefR4.make(LocationPrefix.FILE + startUpBookFiles[0]); 
    134136                URI uri = bookRef.toUri(); 
     137                 
    135138                if (!uri.isAbsolute()) { 
    136139                        SophieLog.warnf("Cannot open non absolute ref %s.", bookRef); 
    137140                        return null; 
  • modules/org.sophie2.launcher/src/main/java/org/sophie2/launcher/AppletMain.java

     
    6262                                throw new RuntimeException("Error getting the config file from " + configUrl); 
    6363                        } 
    6464                         
    65                         this.launcher.start(configUrl, edition, bookRef, this, true); 
     65                        String[] bookRefList = {bookRef}; 
     66                        this.launcher.start(configUrl, edition, bookRefList, this, true); 
    6667                } catch (IOException e) { 
    6768                        e.printStackTrace(); 
    6869                }