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
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.io.File; 4 import java.io.FileOutputStream; 5 import java.io.IOException; 6 import java.io.InputStream; 7 import java.net.URI; 3 8 import java.util.List; 4 9 import java.util.Timer; 5 10 import java.util.TimerTask; 6 11 7 12 import org.sophie2.base.commons.util.ImageUtil; 13 import org.sophie2.base.commons.util.bindata.BinData; 8 14 import org.sophie2.base.commons.util.bindata.TmpChunksDirProvider; 9 15 import org.sophie2.base.layout.BaseLayoutModule; 10 16 import org.sophie2.base.layout.LayoutEngine; 11 17 import org.sophie2.base.layout.model.MainWindow; 18 import org.sophie2.base.model.resources.r4.LocationPrefix; 19 import org.sophie2.base.model.resources.r4.ResourceRefR4; 12 20 import org.sophie2.base.model.resources.r4.access.ResourceAccess; 13 21 import org.sophie2.base.skins.BaseSkinPart; 14 22 import org.sophie2.base.skins.SkinUtil; 15 23 import org.sophie2.base.visual.BaseVisualModule; 24 import org.sophie2.core.logging.SophieLog; 16 25 import org.sophie2.core.modularity.SophieExtension; 17 26 import org.sophie2.core.modularity.SophieExtensionPoint; 18 27 import org.sophie2.core.modularity.SophieModule; 19 28 import org.sophie2.main.app.commons.app.AppMainWindow; 20 29 import org.sophie2.main.app.commons.book.BookDocView; 21 30 import org.sophie2.main.app.commons.book.BookViewOptions; 31 import org.sophie2.main.app.commons.util.AppViewUtil; 22 32 23 33 /** 24 34 * Module class for Sophie Author. … … 66 76 protected void doStart() { 67 77 assert instance == null; 68 78 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; 70 89 71 90 new Timer().schedule(new TimerTask() { 72 91 … … 95 114 window.desktopDocument().set(desktopView); 96 115 engine.mainWindows().add(window); 97 116 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 } 98 123 } 99 124 }); 100 125 … … 102 127 }, 1000); 103 128 } 104 129 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 105 168 @Override 106 169 protected void doStop() { 107 170 assert instance == this; -
modules/org.sophie2.reader/src/main/java/org/sophie2/reader/ReaderModule.java
15 15 import org.sophie2.base.layout.BaseLayoutModule; 16 16 import org.sophie2.base.layout.LayoutEngine; 17 17 import org.sophie2.base.layout.model.MainWindow; 18 import org.sophie2.base.model.resources.r4.LocationPrefix; 18 19 import org.sophie2.base.model.resources.r4.ResourceRefR4; 19 20 import org.sophie2.base.skins.BaseSkinPart; 20 21 import org.sophie2.base.skins.SkinUtil; … … 125 126 * If IO error occurs while transferring the book. 126 127 */ 127 128 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) { 131 131 return null; 132 132 } 133 ResourceRefR4 bookRef = ResourceRefR4.make(startupBookLocation); 133 //open only first book. 134 135 ResourceRefR4 bookRef = ResourceRefR4.make(LocationPrefix.FILE + startUpBookFiles[0]); 134 136 URI uri = bookRef.toUri(); 137 135 138 if (!uri.isAbsolute()) { 136 139 SophieLog.warnf("Cannot open non absolute ref %s.", bookRef); 137 140 return null; -
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 }