Ticket #2396: 2396_2.patch

File 2396_2.patch, 9.9 KB (added by stefan, 15 years ago)

a patch for the second attempt on design.

  • modules/org.sophie2.launcher/.classpath

    ### Eclipse Workspace Patch 1.0
    #P sophie
     
    66        <classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"/> 
    77        <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/> 
    88        <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/> 
     9        <classpathentry kind="src" path="/org.sophie2.base.model.resources.r4"/> 
    910        <classpathentry kind="output" path="target/classes"/> 
    1011</classpath> 
  • modules/org.sophie2.launcher/src/main/java/org/sophie2/launcher/Main.java

     
    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.net.URI; 
    34import java.util.List; 
    45import java.util.Timer; 
    56import java.util.TimerTask; 
     
    910import org.sophie2.base.layout.BaseLayoutModule; 
    1011import org.sophie2.base.layout.LayoutEngine; 
    1112import org.sophie2.base.layout.model.MainWindow; 
     13import org.sophie2.base.model.resources.r4.LocationPrefix; 
     14import org.sophie2.base.model.resources.r4.ResourceRefR4; 
    1215import org.sophie2.base.model.resources.r4.access.ResourceAccess; 
    1316import org.sophie2.base.skins.BaseSkinPart; 
    1417import org.sophie2.base.skins.SkinUtil; 
    1518import org.sophie2.base.visual.BaseVisualModule; 
     19import org.sophie2.core.logging.SophieLog; 
    1620import org.sophie2.core.modularity.SophieExtension; 
    1721import org.sophie2.core.modularity.SophieExtensionPoint; 
    1822import org.sophie2.core.modularity.SophieModule; 
    1923import org.sophie2.main.app.commons.app.AppMainWindow; 
    2024import org.sophie2.main.app.commons.book.BookDocView; 
    2125import org.sophie2.main.app.commons.book.BookViewOptions; 
     26import org.sophie2.main.app.commons.util.AppViewUtil; 
    2227 
    2328/** 
    2429 * Module class for Sophie Author. 
     
    6671        protected void doStart() { 
    6772                assert instance == null; 
    6873                instance = this; 
    69  
     74                 
     75                final ResourceRefR4[] bookRefs = checkStartUpBooks(); 
    7076                 
    7177                new Timer().schedule(new TimerTask() { 
    7278 
     
    95101                                                window.desktopDocument().set(desktopView); 
    96102                                                engine.mainWindows().add(window); 
    97103                                                System.setProperty("sophie2.loaded", "true"); 
     104                                                 
     105                                                if (bookRefs != null) { 
     106                                                        for (int i = 0; i < bookRefs.length; i++) { 
     107                                                                AppViewUtil.openBook(window, bookRefs[i]); 
     108                                                        } 
     109                                                } 
    98110                                        } 
    99111                                }); 
    100112 
     
    102114                }, 1000); 
    103115        } 
    104116 
     117        private ResourceRefR4[] checkStartUpBooks() { 
     118                String[] startUpBookFiles = (String[]) System.getProperties().get("sophie2.loadOnStartUpFiles"); 
     119                if (startUpBookFiles == null) { 
     120                        return null; 
     121                } 
     122                 
     123                ResourceRefR4[] resultRefs = new ResourceRefR4[startUpBookFiles.length]; 
     124                for (int i = 0; i < startUpBookFiles.length; i++) { 
     125                        ResourceRefR4 bookRef; 
     126                        if (startUpBookFiles[i].startsWith(LocationPrefix.FILE)) { 
     127                                bookRef = ResourceRefR4.make(startUpBookFiles[i]); 
     128                        } else { 
     129                                bookRef = ResourceRefR4.make(LocationPrefix.FILE + startUpBookFiles[i]); 
     130                        } 
     131                        URI uri = bookRef.toUri(); 
     132                        if (!uri.isAbsolute()) { 
     133                                SophieLog.warnf("Cannot open non absolute ref[%d]: %s.", i, bookRef); 
     134                                resultRefs[i] = null; 
     135                                continue; 
     136                        } 
     137                        resultRefs[i] = bookRef; 
     138                } 
     139                return resultRefs; 
     140        } 
     141         
    105142        @Override 
    106143        protected void doStop() { 
    107144                assert instance == this; 
  • modules/org.sophie2.reader/src/main/java/org/sophie2/reader/ReaderModule.java

     
    11package org.sophie2.reader; 
    22 
    3 import java.io.File; 
    4 import java.io.FileOutputStream; 
    5 import java.io.IOException; 
    6 import java.io.InputStream; 
    73import java.net.URI; 
    84import java.util.List; 
    95import java.util.Timer; 
    106import java.util.TimerTask; 
    117 
    128import org.sophie2.base.commons.util.ImageUtil; 
    13 import org.sophie2.base.commons.util.bindata.BinData; 
    149import org.sophie2.base.commons.util.bindata.TmpChunksDirProvider; 
    1510import org.sophie2.base.layout.BaseLayoutModule; 
    1611import org.sophie2.base.layout.LayoutEngine; 
    1712import org.sophie2.base.layout.model.MainWindow; 
     13import org.sophie2.base.model.resources.r4.LocationPrefix; 
    1814import org.sophie2.base.model.resources.r4.ResourceRefR4; 
    1915import org.sophie2.base.skins.BaseSkinPart; 
    2016import org.sophie2.base.skins.SkinUtil; 
     
    7268        protected void doStart() { 
    7369                assert instance == null; 
    7470                instance = this; 
    75                 ResourceRefR4 ref; 
    76                 try { 
    77                         ref = checkStartupBook(); 
    78                 } catch (IOException e) { 
    79                         ref = null; 
    80                         SophieLog.error("IO error while reading startup book.", e); 
    81                 } 
    82                 final ResourceRefR4 bookRef = ref; 
     71                 
     72                final ResourceRefR4 bookRef = checkStartupBook(); 
    8373 
    8474                new Timer().schedule(new TimerTask() { 
    8575                        @Override 
     
    121111         *                      A {@link ResourceRefR4} to a temporary file with copy of the  
    122112         *                      startup book or <code>null</code> if the system property is not 
    123113         *                      set or is not a valid absolute URL. 
    124          * @throws IOException  
    125          *                      If IO error occurs while transferring the book. 
    126114         */ 
    127         private ResourceRefR4 checkStartupBook() throws IOException { 
    128                 String startupBookLocation =  
    129                         System.getProperty("sophie2.startupBookLocation"); 
    130                 if (startupBookLocation == null) { 
     115        private ResourceRefR4 checkStartupBook(){ 
     116                String[] startUpBookFiles = (String[]) System.getProperties().get("sophie2.loadOnStartUpFiles"); 
     117                if (startUpBookFiles == null) { 
    131118                        return null; 
    132119                } 
    133                 ResourceRefR4 bookRef = ResourceRefR4.make(startupBookLocation); 
     120                //open only first book. 
     121                ResourceRefR4 bookRef; 
     122                if (startUpBookFiles[0].startsWith(LocationPrefix.FILE)) { 
     123                        bookRef = ResourceRefR4.make(startUpBookFiles[0]); 
     124                } else { 
     125                        bookRef = ResourceRefR4.make(LocationPrefix.FILE + startUpBookFiles[0]); 
     126                } 
    134127                URI uri = bookRef.toUri(); 
     128                 
    135129                if (!uri.isAbsolute()) { 
    136130                        SophieLog.warnf("Cannot open non absolute ref %s.", bookRef); 
    137131                        return null; 
    138132                } 
    139                 InputStream from = null; 
    140                 FileOutputStream to = null; 
    141                 try { 
    142                         from = uri.toURL().openStream(); 
    143                         // I do not believe in file entry manger so just use tmp folder. 
    144                         File resourceFile = File.createTempFile("sophieStartupBook", null); 
    145                         resourceFile.deleteOnExit(); 
    146                         to = new FileOutputStream(resourceFile); 
    147                         BinData.transport(from, to); 
    148                         return ResourceRefR4.make(resourceFile); 
    149                 } finally { 
    150                         if (to != null) { 
    151                                 to.close(); 
    152                         } 
    153                         if (from != null) { 
    154                                 from.close(); 
    155                         } 
    156                 } 
     133 
     134                return bookRef; 
    157135        } 
    158136 
    159137        @Override 
  • 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                }