Ticket #2396: 2396_2.patch
File 2396_2.patch, 9.9 KB (added by stefan, 15 years ago) |
---|
-
modules/org.sophie2.launcher/.classpath
### Eclipse Workspace Patch 1.0 #P sophie
6 6 <classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"/> 7 7 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/> 8 8 <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/> 9 <classpathentry kind="src" path="/org.sophie2.base.model.resources.r4"/> 9 10 <classpathentry kind="output" path="target/classes"/> 10 11 </classpath> -
modules/org.sophie2.launcher/src/main/java/org/sophie2/launcher/Main.java
44 44 45 45 checkAssertions(); 46 46 47 assert args.length == 2;47 assert args.length >= 2; 48 48 49 49 String configFileName = args[0]; 50 50 String edition = args[1]; 51 51 String[] files = new String[args.length - 2]; 52 52 53 String bundlesListFileName = "/" + edition + "-run" + "/" 53 54 + 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 } 54 63 55 64 URL configUrl = Main.class.getResource(bundlesListFileName); 56 65 if (configUrl == null) { … … 97 106 launcher.stop(); 98 107 } 99 108 }); 100 launcher.start(configUrl, edition, null, null, false);109 launcher.start(configUrl, edition, files, null, false); 101 110 } 102 111 } -
modules/org.sophie2.launcher/src/main/java/org/sophie2/launcher/Launcher.java
85 85 * The url of the bundles config file. 86 86 * @param edition 87 87 * The edition to be launched. 88 * @param bookRef 88 * @param bookRefs 89 89 * The ref of the book to be opened in reader edition or <code>null</code>. 90 90 * @param splashContainer 91 91 * The splash container or <code>null</code> if a new window will be used. … … 95 95 * @throws IOException If there is an io error while starting the application. 96 96 */ 97 97 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); 101 101 } 102 102 103 103 System.setProperty("sophie-version", SOPHIE_VERSION); -
modules/org.sophie2.author/src/main/java/org/sophie2/author/AuthorModule.java
1 1 package org.sophie2.author; 2 2 3 import java.net.URI; 3 4 import java.util.List; 4 5 import java.util.Timer; 5 6 import java.util.TimerTask; … … 9 10 import org.sophie2.base.layout.BaseLayoutModule; 10 11 import org.sophie2.base.layout.LayoutEngine; 11 12 import org.sophie2.base.layout.model.MainWindow; 13 import org.sophie2.base.model.resources.r4.LocationPrefix; 14 import org.sophie2.base.model.resources.r4.ResourceRefR4; 12 15 import org.sophie2.base.model.resources.r4.access.ResourceAccess; 13 16 import org.sophie2.base.skins.BaseSkinPart; 14 17 import org.sophie2.base.skins.SkinUtil; 15 18 import org.sophie2.base.visual.BaseVisualModule; 19 import org.sophie2.core.logging.SophieLog; 16 20 import org.sophie2.core.modularity.SophieExtension; 17 21 import org.sophie2.core.modularity.SophieExtensionPoint; 18 22 import org.sophie2.core.modularity.SophieModule; 19 23 import org.sophie2.main.app.commons.app.AppMainWindow; 20 24 import org.sophie2.main.app.commons.book.BookDocView; 21 25 import org.sophie2.main.app.commons.book.BookViewOptions; 26 import org.sophie2.main.app.commons.util.AppViewUtil; 22 27 23 28 /** 24 29 * Module class for Sophie Author. … … 66 71 protected void doStart() { 67 72 assert instance == null; 68 73 instance = this; 69 74 75 final ResourceRefR4[] bookRefs = checkStartUpBooks(); 70 76 71 77 new Timer().schedule(new TimerTask() { 72 78 … … 95 101 window.desktopDocument().set(desktopView); 96 102 engine.mainWindows().add(window); 97 103 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 } 98 110 } 99 111 }); 100 112 … … 102 114 }, 1000); 103 115 } 104 116 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 105 142 @Override 106 143 protected void doStop() { 107 144 assert instance == this; -
modules/org.sophie2.reader/src/main/java/org/sophie2/reader/ReaderModule.java
1 1 package org.sophie2.reader; 2 2 3 import java.io.File;4 import java.io.FileOutputStream;5 import java.io.IOException;6 import java.io.InputStream;7 3 import java.net.URI; 8 4 import java.util.List; 9 5 import java.util.Timer; 10 6 import java.util.TimerTask; 11 7 12 8 import org.sophie2.base.commons.util.ImageUtil; 13 import org.sophie2.base.commons.util.bindata.BinData;14 9 import org.sophie2.base.commons.util.bindata.TmpChunksDirProvider; 15 10 import org.sophie2.base.layout.BaseLayoutModule; 16 11 import org.sophie2.base.layout.LayoutEngine; 17 12 import org.sophie2.base.layout.model.MainWindow; 13 import org.sophie2.base.model.resources.r4.LocationPrefix; 18 14 import org.sophie2.base.model.resources.r4.ResourceRefR4; 19 15 import org.sophie2.base.skins.BaseSkinPart; 20 16 import org.sophie2.base.skins.SkinUtil; … … 72 68 protected void doStart() { 73 69 assert instance == null; 74 70 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(); 83 73 84 74 new Timer().schedule(new TimerTask() { 85 75 @Override … … 121 111 * A {@link ResourceRefR4} to a temporary file with copy of the 122 112 * startup book or <code>null</code> if the system property is not 123 113 * set or is not a valid absolute URL. 124 * @throws IOException125 * If IO error occurs while transferring the book.126 114 */ 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) { 131 118 return null; 132 119 } 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 } 134 127 URI uri = bookRef.toUri(); 128 135 129 if (!uri.isAbsolute()) { 136 130 SophieLog.warnf("Cannot open non absolute ref %s.", bookRef); 137 131 return null; 138 132 } 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; 157 135 } 158 136 159 137 @Override -
modules/org.sophie2.launcher/src/main/java/org/sophie2/launcher/AppletMain.java
62 62 throw new RuntimeException("Error getting the config file from " + configUrl); 63 63 } 64 64 65 this.launcher.start(configUrl, edition, bookRef, this, true); 65 String[] bookRefList = {bookRef}; 66 this.launcher.start(configUrl, edition, bookRefList, this, true); 66 67 } catch (IOException e) { 67 68 e.printStackTrace(); 68 69 }