JAL-3252 tgz unpacking no longer needed by getdown. Unfinished code and dependency...
[jalview.git] / getdown / src / getdown / core / src / main / java / com / threerings / getdown / data / Application.java
index e7f21c6..fd53c79 100644 (file)
@@ -28,7 +28,7 @@ import java.util.regex.Pattern;
 import java.util.zip.GZIPInputStream;
 
 import jalview.bin.MemorySetting;
-import com.install4j.api.launcher.Variables;
+//import com.install4j.api.launcher.Variables;
 
 import com.threerings.getdown.util.*;
 // avoid ambiguity with java.util.Base64 which we can't use as it's 1.8+
@@ -1087,51 +1087,57 @@ public class Application
             }
         }
 
-        // test for jalview/s URL
+        // test for jalview/s URL. Insert startupNotification URI into start of _appargs
+        if (! StringUtil.isBlank(_jalviewUri)) {
+          _appargs.add(0, _jalviewUri);
+        }
         if (_appargs.size() > 0) {
           String uri = _appargs.get(0);
           try {
             log.info("TRYING TO PARSE URL '"+uri+"'");
             URI jalviewUri = new URI(uri);
-            if (jalviewUri.getScheme().equals("jalview") || jalviewUri.getScheme().equals("jalviews")) {
-              boolean https = jalviewUri.getScheme().equals("jalviews");
-              String host = jalviewUri.getHost();
-              int port = jalviewUri.getPort();
-              String file = jalviewUri.getPath();
-              String ref = jalviewUri.getFragment();
-              String query = jalviewUri.getQuery();
-              
-              _appargs.clear();
-              _appargs.add("-open");
-              if (host != null && host.length() > 0) {
-                URL newUrl = new URL(
-                        (https?"https":"http")
-                        + "://"
-                        + host
-                        + (port > -1? String.valueOf(port) : "")
-                        + jalviewUri.getRawPath()
-                        + (query != null && query.length() > 0 ? "?" + jalviewUri.getRawQuery() : "")
-                        );
-                _appargs.add(newUrl.toString());
-              } else {
-                _appargs.add(file);
-              }
-              
-              if (ref != null && ref.length() > 0) {
-                String[] refArgs = ref.split("&");
-                for (String refArg : refArgs) {
-                  if (refArg.startsWith("jvmmempc=")) {
-                    jvmmempc = refArg.substring(9);
-                    continue;
-                  }
-                  if (refArg.startsWith("jvmmemmax=")) {
-                    jvmmemmax = refArg.substring(10);
-                    continue;
+            if (jalviewUri != null) {
+              String scheme = jalviewUri.getScheme();
+              if (scheme != null && (scheme.equals("jalview") || scheme.equals("jalviews"))) {
+                boolean https = jalviewUri.getScheme().equals("jalviews");
+                String host = jalviewUri.getHost();
+                int port = jalviewUri.getPort();
+                String file = jalviewUri.getPath();
+                String ref = jalviewUri.getFragment();
+                String query = jalviewUri.getQuery();
+                
+                _appargs.clear();
+                _appargs.add("-open");
+                if (host != null && host.length() > 0) {
+                  URL newUrl = new URL(
+                          (https?"https":"http")
+                          + "://"
+                          + host
+                          + (port > -1? String.valueOf(port) : "")
+                          + jalviewUri.getRawPath()
+                          + (query != null && query.length() > 0 ? "?" + jalviewUri.getRawQuery() : "")
+                          );
+                  _appargs.add(newUrl.toString());
+                } else {
+                  _appargs.add(file);
+                }
+                
+                if (ref != null && ref.length() > 0) {
+                  String[] refArgs = ref.split("&");
+                  for (String refArg : refArgs) {
+                    if (refArg.startsWith("jvmmempc=")) {
+                      jvmmempc = refArg.substring(9);
+                      continue;
+                    }
+                    if (refArg.startsWith("jvmmemmax=")) {
+                      jvmmemmax = refArg.substring(10);
+                      continue;
+                    }
+                    _appargs.add(URLDecoder.decode(refArg, "UTF-8"));
                   }
-                  _appargs.add(URLDecoder.decode(refArg, "UTF-8"));
                 }
+                
               }
-              
             }
           } catch (URISyntaxException e) {
             log.error("Malformed jalview URI", uri);
@@ -1961,7 +1967,9 @@ public class Application
         for (int i = 0; i < filenames.length; i++) {
           String filename = filenames[i];
           // skip any other locator files in a multiple file list
-          if (! filename.toLowerCase().endsWith("."+Application.LOCATOR_FILE_EXTENSION)) {
+          if (filename.startsWith("jalview://") || filename.startsWith("jalviews://")) {
+            setJalviewUri(filename);
+          } else if (! filename.toLowerCase().endsWith("."+Application.LOCATOR_FILE_EXTENSION)) {
             addStartupFile(filename);
           }
         }
@@ -1976,6 +1984,10 @@ public class Application
       _startupFiles.add(new File(filename));
     }
     
+    public static void setJalviewUri(String uri) {
+      _jalviewUri = uri;
+    }
+    
     private Config createLocatorConfig(Config.ParseOpts opts) {
       if (_locatorFile == null) {
         return null;
@@ -2086,6 +2098,7 @@ public class Application
  
     protected static File _locatorFile;
     protected static List<File> _startupFiles = new ArrayList<>();
+    protected static String _jalviewUri;
     public static final String LOCATOR_FILE_EXTENSION = "jvl";
 
     private boolean _initialised = false;