JAL-3348 jvmmempc in jvl file now works in linux
[jalview.git] / getdown / src / getdown / core / src / main / java / com / threerings / getdown / data / Application.java
1 //
2 // Getdown - application installer, patcher and launcher
3 // Copyright (C) 2004-2018 Getdown authors
4 // https://github.com/threerings/getdown/blob/master/LICENSE
5
6 package com.threerings.getdown.data;
7
8 import java.io.*;
9 import java.lang.reflect.Method;
10 import java.net.MalformedURLException;
11 import java.net.Proxy;
12 import java.net.URL;
13 import java.net.URLClassLoader;
14 import java.net.URLConnection;
15 import java.net.URLEncoder;
16 import java.nio.channels.FileChannel;
17 import java.nio.channels.FileLock;
18 import java.nio.channels.OverlappingFileLockException;
19 import java.security.*;
20 import java.security.cert.Certificate;
21 import java.util.*;
22 import java.util.concurrent.*;
23 import java.util.regex.Matcher;
24 import java.util.regex.Pattern;
25 import java.util.zip.GZIPInputStream;
26
27 import jalview.bin.MemorySetting;
28
29 import com.threerings.getdown.util.*;
30 // avoid ambiguity with java.util.Base64 which we can't use as it's 1.8+
31 import com.threerings.getdown.util.Base64;
32
33 import com.threerings.getdown.data.EnvConfig;
34 import com.threerings.getdown.data.EnvConfig.Note;
35
36 import static com.threerings.getdown.Log.log;
37 import static java.nio.charset.StandardCharsets.UTF_8;
38
39 /**
40  * Parses and provide access to the information contained in the <code>getdown.txt</code>
41  * configuration file.
42  */
43 public class Application
44 {
45     /** The name of our configuration file. */
46     public static final String CONFIG_FILE = "getdown.txt";
47     
48     /** Dir where a backup config file might reside */ 
49     public static final String BACKUP_CONFIG_DIR = "install";
50
51     /** The name of our target version file. */
52     public static final String VERSION_FILE = "version.txt";
53
54     /** System properties that are prefixed with this string will be passed through to our
55      * application (minus this prefix). */
56     public static final String PROP_PASSTHROUGH_PREFIX = "app.";
57
58     /** Suffix used for control file signatures. */
59     public static final String SIGNATURE_SUFFIX = ".sig";
60
61     /** A special classname that means 'use -jar code.jar' instead of a classname. */
62     public static final String MANIFEST_CLASS = "manifest";
63
64     /** Used to communicate information about the UI displayed when updating the application. */
65     public static final class UpdateInterface
66     {
67         /**
68          * The major steps involved in updating, along with some arbitrary percentages
69          * assigned to them, to mark global progress.
70          */
71         public enum Step
72         {
73             //UPDATE_JAVA(10),
74             UPDATE_JAVA(20),
75             //VERIFY_METADATA(15, 65, 95),
76             VERIFY_METADATA(15, 45, 90),
77             DOWNLOAD(60),
78             PATCH(60),
79             //VERIFY_RESOURCES(70, 97),
80             VERIFY_RESOURCES(40, 90),
81             //REDOWNLOAD_RESOURCES(90),
82             REDOWNLOAD_RESOURCES(80),
83             //UNPACK(98),
84             UNPACK(95),
85             //LAUNCH(99);
86             LAUNCH(100);
87
88             /** What is the final percent value for this step? */
89             public final List<Integer> defaultPercents;
90
91             /** Enum constructor. */
92             Step (int... percents)
93             {
94                 this.defaultPercents = intsToList(percents);
95             }
96         }
97
98         /** The human readable name of this application. */
99         public final String name;
100
101         /** A background color, just in case. */
102         public final int background;
103
104         /** Background image specifiers for `RotatingBackgrounds`. */
105         public final List<String> rotatingBackgrounds;
106
107         /** The error background image for `RotatingBackgrounds`. */
108         public final String errorBackground;
109
110         /** The paths (relative to the appdir) of images for the window icon. */
111         public final List<String> iconImages;
112
113         /** The path (relative to the appdir) to a single background image to appear first. */
114         public final String instantBackgroundImage;
115
116         /** The path (relative to the appdir) to a single background image. */
117         public final String backgroundImage;
118
119         /** The path (relative to the appdir) to the progress bar image. */
120         public final String progressImage;
121
122         /** The dimensions of the progress bar. */
123         public final Rectangle progress;
124
125         /** The color of the progress text. */
126         public final int progressText;
127
128         /** The color of the progress bar. */
129         public final int progressBar;
130
131         /** The dimensions of the status display. */
132         public final Rectangle status;
133
134         /** The color of the status text. */
135         public final int statusText;
136
137         /** The color of the text shadow. */
138         public final int textShadow;
139
140         /** Where to point the user for help with install errors. */
141         public final String installError;
142
143         /** The dimensions of the patch notes button. */
144         public final Rectangle patchNotes;
145
146         /** The patch notes URL. */
147         public final String patchNotesUrl;
148
149         /** Whether window decorations are hidden for the UI. */
150         public final boolean hideDecorations;
151
152         /** Whether progress text should be hidden or not. */
153         public final boolean hideProgressText;
154
155         /** Whether the splash screen should update non-asynchronously before being shown. */
156         public final boolean progressSync;
157
158         /** Whether the splash screen should update non-asynchronously after being shown. */
159         public final boolean progressSyncAfterShown;
160
161         /** Whether the splash screen should retain focus. */
162         public final boolean keepOnTop;
163
164         /** Whether to display the appbase. */
165         public final boolean displayAppbase;
166
167         /** Whether to display the version. */
168         public final boolean displayVersion;
169
170         /** The minimum number of seconds to display the GUI. This is to prevent the GUI from
171           * flashing up on the screen and immediately disappearing, which can be confusing to the
172           * user. */
173         public final int minShowSeconds;
174
175         /** The global percentages for each step. A step may have more than one, and
176          * the lowest reasonable one is used if a step is revisited. */
177         public final Map<Step, List<Integer>> stepPercentages;
178
179         /** Generates a string representation of this instance. */
180         @Override
181         public String toString ()
182         {
183             return "[name=" + name + ", bg=" + background + ", bg=" + backgroundImage + ", instant_bg=" + instantBackgroundImage +
184                 ", pi=" + progressImage + ", prect=" + progress + ", pt=" + progressText +
185                 ", pb=" + progressBar + ", srect=" + status + ", st=" + statusText +
186                 ", shadow=" + textShadow + ", err=" + installError + ", nrect=" + patchNotes +
187                 ", notes=" + patchNotesUrl + ", stepPercentages=" + stepPercentages +
188                 ", hideProgressText=" + hideProgressText + ", keepOnTop=" + keepOnTop + ", progressSync=" + progressSync +
189                 ", progressSyncAfterShown=" + progressSyncAfterShown + ", minShow=" + minShowSeconds +
190                 ", displayAppbase=" + displayAppbase + ", displayVersion=" + displayVersion + "]";
191         }
192
193         public UpdateInterface (Config config)
194         {
195             this.name = config.getString("ui.name");
196             this.progress = config.getRect("ui.progress", new Rectangle(5, 5, 300, 15));
197             this.progressText = config.getColor("ui.progress_text", Color.BLACK);
198             this.hideProgressText = config.getBoolean("ui.hide_progress_text");
199             this.progressSync = config.getBoolean("ui.progress_sync_before_shown");
200             this.progressSyncAfterShown = config.getBoolean("ui.progress_sync_after_shown");
201             this.keepOnTop =  config.getBoolean("ui.keep_on_top");
202             this.displayAppbase =  config.getBoolean("ui.display_appbase");
203             this.displayVersion =  config.getBoolean("ui.display_version");
204             this.minShowSeconds = config.getInt("ui.min_show_seconds", 5);
205             this.progressBar = config.getColor("ui.progress_bar", 0x6699CC);
206             this.status = config.getRect("ui.status", new Rectangle(5, 25, 500, 100));
207             this.statusText = config.getColor("ui.status_text", Color.BLACK);
208             this.textShadow = config.getColor("ui.text_shadow", Color.CLEAR);
209             this.hideDecorations = config.getBoolean("ui.hide_decorations");
210             this.backgroundImage = config.getString("ui.background_image");
211             this.instantBackgroundImage = config.getString("ui.instant_background_image");
212             // default to black or white bg color, depending on the brightness of the progressText
213             int defaultBackground = (0.5f < Color.brightness(this.progressText)) ?
214                 Color.BLACK : Color.WHITE;
215             this.background = config.getColor("ui.background", defaultBackground);
216             this.progressImage = config.getString("ui.progress_image");
217             this.rotatingBackgrounds = stringsToList(
218                 config.getMultiValue("ui.rotating_background"));
219             this.iconImages = stringsToList(config.getMultiValue("ui.icon"));
220             this.errorBackground = config.getString("ui.error_background");
221
222             // On an installation error, where do we point the user.
223             String installError = config.getUrl("ui.install_error", null);
224             this.installError = (installError == null) ?
225                 "m.default_install_error" : MessageUtil.taint(installError);
226
227             // the patch notes bits
228             this.patchNotes = config.getRect("ui.patch_notes", new Rectangle(5, 50, 112, 26));
229             this.patchNotesUrl = config.getUrl("ui.patch_notes_url", null);
230
231             // step progress percentage (defaults and then customized values)
232             EnumMap<Step, List<Integer>> stepPercentages = new EnumMap<>(Step.class);
233             for (Step step : Step.values()) {
234                 stepPercentages.put(step, step.defaultPercents);
235             }
236             for (UpdateInterface.Step step : UpdateInterface.Step.values()) {
237                 String spec = config.getString("ui.percents." + step.name());
238                 if (spec != null) {
239                     try {
240                         stepPercentages.put(step, intsToList(StringUtil.parseIntArray(spec)));
241                     } catch (Exception e) {
242                         log.warning("Failed to parse percentages for " + step + ": " + spec);
243                     }
244                 }
245             }
246             this.stepPercentages = Collections.unmodifiableMap(stepPercentages);
247         }
248     }
249
250     /**
251      * Used by {@link #verifyMetadata} to communicate status in circumstances where it needs to
252      * take network actions.
253      */
254     public static interface StatusDisplay
255     {
256         /** Requests that the specified status message be displayed. */
257         public void updateStatus (String message);
258     }
259
260     /**
261      * Contains metadata for an auxiliary resource group.
262      */
263     public static class AuxGroup {
264         public final String name;
265         public final List<Resource> codes;
266         public final List<Resource> rsrcs;
267
268         public AuxGroup (String name, List<Resource> codes, List<Resource> rsrcs) {
269             this.name = name;
270             this.codes = Collections.unmodifiableList(codes);
271             this.rsrcs = Collections.unmodifiableList(rsrcs);
272         }
273     }
274
275     /** The proxy that should be used to do HTTP downloads. This must be configured prior to using
276       * the application instance. Yes this is a public mutable field, no I'm not going to create a
277       * getter and setter just to pretend like that's not the case. */
278     public Proxy proxy = Proxy.NO_PROXY;
279
280     /**
281      * Creates an application instance which records the location of the <code>getdown.txt</code>
282      * configuration file from the supplied application directory.
283      *
284      */
285     public Application (EnvConfig envc) {
286         _envc = envc;
287         _config = getLocalPath(envc.appDir, CONFIG_FILE);
288         _backupConfig = getLocalPath(envc.appDir, BACKUP_CONFIG_DIR+File.separator+CONFIG_FILE);
289     }
290
291     /**
292      * Returns the configured application directory.
293      */
294     public File getAppDir () {
295         return _envc.appDir;
296     }
297
298     /**
299      * Returns whether the application should cache code resources prior to launching the
300      * application.
301      */
302     public boolean useCodeCache ()
303     {
304         return _useCodeCache;
305     }
306
307     /**
308      * Returns the number of days a cached code resource is allowed to stay unused before it
309      * becomes eligible for deletion.
310      */
311     public int getCodeCacheRetentionDays ()
312     {
313         return _codeCacheRetentionDays;
314     }
315
316     /**
317      * Returns the configured maximum concurrent downloads. Used to cap simultaneous downloads of
318      * app files from its hosting server.
319      */
320     public int maxConcurrentDownloads () {
321         return _maxConcDownloads;
322     }
323
324     /**
325      * Returns a resource that refers to the application configuration file itself.
326      */
327     public Resource getConfigResource ()
328     {
329         try {
330                 return createResource(CONFIG_FILE, Resource.NORMAL);
331         } catch (Exception e) {
332                 throw new RuntimeException("Invalid appbase '" + _vappbase + "'.", e);
333         }
334     }
335
336     /**
337      * Returns a list of the code {@link Resource} objects used by this application.
338      */
339     public List<Resource> getCodeResources ()
340     {
341         return _codes;
342     }
343
344     /**
345      * Returns a list of the non-code {@link Resource} objects used by this application.
346      */
347     public List<Resource> getResources ()
348     {
349         return _resources;
350     }
351
352     /**
353      * Returns the digest of the given {@code resource}.
354      */
355     public String getDigest (Resource resource)
356     {
357         return _digest.getDigest(resource);
358     }
359
360     /**
361      * Returns a list of all the active {@link Resource} objects used by this application (code and
362      * non-code).
363      */
364     public List<Resource> getAllActiveResources ()
365     {
366         List<Resource> allResources = new ArrayList<>();
367         allResources.addAll(getActiveCodeResources());
368         allResources.addAll(getActiveResources());
369         return allResources;
370     }
371
372     /**
373      * Returns the auxiliary resource group with the specified name, or null.
374      */
375     public AuxGroup getAuxGroup (String name)
376     {
377         return _auxgroups.get(name);
378     }
379
380     /**
381      * Returns the set of all auxiliary resource groups defined by the application. An auxiliary
382      * resource group is a collection of resource files that are not downloaded unless a group
383      * token file is present in the application directory.
384      */
385     public Iterable<AuxGroup> getAuxGroups ()
386     {
387         return _auxgroups.values();
388     }
389
390     /**
391      * Returns true if the specified auxgroup has been "activated", false if not. Non-activated
392      * groups should be ignored, activated groups should be downloaded and patched along with the
393      * main resources.
394      */
395     public boolean isAuxGroupActive (String auxgroup)
396     {
397         Boolean active = _auxactive.get(auxgroup);
398         if (active == null) {
399             // TODO: compare the contents with the MD5 hash of the auxgroup name and the client's
400             // machine ident
401             active = getLocalPath(auxgroup + ".dat").exists();
402             _auxactive.put(auxgroup, active);
403         }
404         return active;
405     }
406
407     /**
408      * Returns all main code resources and all code resources from active auxiliary resource groups.
409      */
410     public List<Resource> getActiveCodeResources ()
411     {
412         ArrayList<Resource> codes = new ArrayList<>();
413         codes.addAll(getCodeResources());
414         for (AuxGroup aux : getAuxGroups()) {
415             if (isAuxGroupActive(aux.name)) {
416                 codes.addAll(aux.codes);
417             }
418         }
419         return codes;
420     }
421
422     /**
423      * Returns all resources indicated to contain native library files (.dll, .so, etc.).
424      */
425     public List<Resource> getNativeResources ()
426     {
427         List<Resource> natives = new ArrayList<>();
428         for (Resource resource: _resources) {
429             if (resource.isNative()) {
430                 natives.add(resource);
431             }
432         }
433         return natives;
434     }
435
436     /**
437      * Returns all non-code resources and all resources from active auxiliary resource groups.
438      */
439     public List<Resource> getActiveResources ()
440     {
441         ArrayList<Resource> rsrcs = new ArrayList<>();
442         rsrcs.addAll(getResources());
443         for (AuxGroup aux : getAuxGroups()) {
444             if (isAuxGroupActive(aux.name)) {
445                 rsrcs.addAll(aux.rsrcs);
446             }
447         }
448         return rsrcs;
449     }
450
451     /**
452      * Returns a resource that can be used to download a patch file that will bring this
453      * application from its current version to the target version.
454      *
455      * @param auxgroup the auxiliary resource group for which a patch resource is desired or null
456      * for the main application patch resource.
457      */
458     public Resource getPatchResource (String auxgroup)
459     {
460         if (_targetVersion <= _version) {
461             log.warning("Requested patch resource for up-to-date or non-versioned application",
462                 "cvers", _version, "tvers", _targetVersion);
463             return null;
464         }
465
466         String infix = (auxgroup == null) ? "" : ("-" + auxgroup);
467         String pfile = "patch" + infix + _version + ".dat";
468         try {
469             URL remote = new URL(createVAppBase(_targetVersion), encodePath(pfile));
470             return new Resource(pfile, remote, getLocalPath(pfile), Resource.NORMAL);
471         } catch (Exception e) {
472             log.warning("Failed to create patch resource path",
473                 "pfile", pfile, "appbase", _appbase, "tvers", _targetVersion, "error", e);
474             return null;
475         }
476     }
477
478     /**
479      * Returns a resource for a zip file containing a Java VM that can be downloaded to use in
480      * place of the installed VM (in the case where the VM that launched Getdown does not meet the
481      * application's version requirements) or null if no VM is available for this platform.
482      */
483     public Resource getJavaVMResource ()
484     {
485         if (StringUtil.isBlank(_javaLocation)) {
486             return null;
487         }
488
489         String extension = (_javaLocation.endsWith(".tgz"))?".tgz":".jar";
490         String vmfile = LaunchUtil.LOCAL_JAVA_DIR + extension;
491                 log.info("vmfile is '"+vmfile+"'");
492                 System.out.println("vmfile is '"+vmfile+"'");
493         try {
494             URL remote = new URL(createVAppBase(_targetVersion), encodePath(_javaLocation));
495             log.info("Attempting to fetch jvm at "+remote.toString());
496             System.out.println("Attempting to fetch jvm at "+remote.toString());
497             return new Resource(vmfile, remote, getLocalPath(vmfile),
498                                 EnumSet.of(Resource.Attr.UNPACK, Resource.Attr.CLEAN));
499         } catch (Exception e) {
500             log.warning("Failed to create VM resource", "vmfile", vmfile, "appbase", _appbase,
501                 "tvers", _targetVersion, "javaloc", _javaLocation, "error", e);
502             System.out.println("Failed to create VM resource: vmfile="+vmfile+", appbase="+_appbase+
503                 ", tvers="+_targetVersion+", javaloc="+_javaLocation+", error="+e);
504             return null;
505         }
506     }
507
508     /**
509      * Returns a resource that can be used to download an archive containing all files belonging to
510      * the application.
511      */
512     public Resource getFullResource ()
513     {
514         String file = "full";
515         try {
516             URL remote = new URL(createVAppBase(_targetVersion), encodePath(file));
517             return new Resource(file, remote, getLocalPath(file), Resource.NORMAL);
518         } catch (Exception e) {
519             log.warning("Failed to create full resource path",
520                 "file", file, "appbase", _appbase, "tvers", _targetVersion, "error", e);
521             return null;
522         }
523     }
524
525     /**
526      * Returns the URL to use to report an initial download event. Returns null if no tracking
527      * start URL was configured for this application.
528      *
529      * @param event the event to be reported: start, jvm_start, jvm_complete, complete.
530      */
531     public URL getTrackingURL (String event)
532     {
533         try {
534             String suffix = _trackingURLSuffix == null ? "" : _trackingURLSuffix;
535             String ga = getGATrackingCode();
536             return _trackingURL == null ? null :
537                 HostWhitelist.verify(new URL(_trackingURL + encodePath(event + suffix + ga)));
538         } catch (MalformedURLException mue) {
539             log.warning("Invalid tracking URL", "path", _trackingURL, "event", event, "error", mue);
540             return null;
541         }
542     }
543
544     /**
545      * Returns the URL to request to report that we have reached the specified percentage of our
546      * initial download. Returns null if no tracking request was configured for the specified
547      * percentage.
548      */
549     public URL getTrackingProgressURL (int percent)
550     {
551         if (_trackingPcts == null || !_trackingPcts.contains(percent)) {
552             return null;
553         }
554         return getTrackingURL("pct" + percent);
555     }
556
557     /**
558      * Returns the name of our tracking cookie or null if it was not set.
559      */
560     public String getTrackingCookieName ()
561     {
562         return _trackingCookieName;
563     }
564
565     /**
566      * Returns the name of our tracking cookie system property or null if it was not set.
567      */
568     public String getTrackingCookieProperty ()
569     {
570         return _trackingCookieProperty;
571     }
572
573     /**
574      * Instructs the application to parse its {@code getdown.txt} configuration and prepare itself
575      * for operation. The application base URL will be parsed first so that if there are errors
576      * discovered later, the caller can use the application base to download a new {@code
577      * getdown.txt} file and try again.
578      *
579      * @return a {@code Config} instance that contains information from the config file.
580      *
581      * @exception IOException thrown if there is an error reading the file or an error encountered
582      * during its parsing.
583      */
584     public Config init (boolean checkPlatform)
585         throws IOException
586     {
587         Config config = null;
588         File cfgfile = _config;
589         Config.ParseOpts opts = Config.createOpts(checkPlatform);
590         try {
591             // if we have a configuration file, read the data from it
592             if (cfgfile.exists()) {
593                 config = Config.parseConfig(_config, opts);
594             }
595             // otherwise, try reading data from our backup config file; thanks to funny windows
596             // bullshit, we have to do this backup file fiddling in case we got screwed while
597             // updating getdown.txt during normal operation
598             else if ((cfgfile = getLocalPath(CONFIG_FILE + "_old")).exists()) {
599                 config = Config.parseConfig(cfgfile, opts);
600             }
601             // otherwise, issue a warning that we found no getdown file
602             else {
603                 log.info("Found no getdown.txt file", "appdir", getAppDir());
604             }
605         } catch (Exception e) {
606             log.warning("Failure reading config file", "file", _config, e);
607         }
608         if (config == null || config.getString("appbase") == null || config.getString("appbase").isEmpty()) {
609                 try {
610                         Config backupConfig = Config.parseConfig(_backupConfig, opts);
611                         config = backupConfig;
612                         log.warning("Using backup config file", "appdir", getAppDir(), "backupConfig", _backupConfig.getAbsoluteFile());
613                 } catch (Exception e) {
614                         log.warning("Failure reading backup config file", "file", _backupConfig, e);
615                 }
616         }
617         
618         // see if there's an override config from locator file
619         Config locatorConfig = createLocatorConfig(opts);
620         
621         // merge the locator file config into config (or replace config with)
622         if (locatorConfig != null) {
623           if (config == null || locatorConfig.getBoolean(LOCATOR_FILE_EXTENSION+"_replace")) {
624             config = locatorConfig;
625           } else {
626             config.mergeConfig(locatorConfig, locatorConfig.getBoolean(LOCATOR_FILE_EXTENSION+"_merge"));
627           }
628         }
629
630         // if we failed to read our config file, check for an appbase specified via a system
631         // property; we can use that to bootstrap ourselves back into operation
632         if (config == null) {
633             String appbase = _envc.appBase;
634             log.info("Using 'appbase' from bootstrap config", "appbase", appbase);
635             Map<String, Object> cdata = new HashMap<>();
636             cdata.put("appbase", appbase);
637             config = new Config(cdata);
638         }
639
640         // first determine our application base, this way if anything goes wrong later in the
641         // process, our caller can use the appbase to download a new configuration file
642         _appbase = config.getString("appbase");
643         
644         // see if locatorConfig override
645         if (locatorConfig != null && !StringUtil.isBlank(locatorConfig.getString("appbase"))) {
646           _appbase = locatorConfig.getString("appbase");
647         }
648         
649         if (_appbase == null) {
650             throw new RuntimeException("m.missing_appbase");
651         }
652
653         // check if we're overriding the domain in the appbase
654         _appbase = SysProps.overrideAppbase(_appbase);
655
656         // make sure there's a trailing slash
657         if (!_appbase.endsWith("/")) {
658             _appbase = _appbase + "/";
659         }
660
661         // extract our version information
662         _version = config.getLong("version", -1L);
663
664         // if we are a versioned deployment, create a versioned appbase
665         try {
666             _vappbase = createVAppBase(_version);
667         } catch (MalformedURLException mue) {
668             String err = MessageUtil.tcompose("m.invalid_appbase", _appbase);
669             throw (IOException) new IOException(err).initCause(mue);
670         }
671
672         // check for a latest config URL
673         String latest = config.getString("latest");
674         if (latest != null) {
675             if (latest.startsWith(_appbase)) {
676                 latest = _appbase + latest.substring(_appbase.length());
677             } else {
678                 latest = SysProps.replaceDomain(latest);
679             }
680             try {
681                 _latest = HostWhitelist.verify(new URL(latest));
682             } catch (MalformedURLException mue) {
683                 log.warning("Invalid URL for latest attribute.", mue);
684             }
685         }
686
687         String appPrefix = _envc.appId == null ? "" : (_envc.appId + ".");
688
689         // determine our application class name (use app-specific class _if_ one is provided)
690         _class = config.getString("class");
691         if (appPrefix.length() > 0) {
692             _class = config.getString(appPrefix + "class", _class);
693         }
694         if (_class == null) {
695             throw new IOException("m.missing_class");
696         }
697
698         // determine whether we want strict comments
699         _strictComments = config.getBoolean("strict_comments");
700
701         // check to see if we're using a custom java.version property and regex
702         _javaVersionProp = config.getString("java_version_prop", _javaVersionProp);
703         _javaVersionRegex = config.getString("java_version_regex", _javaVersionRegex);
704
705         // check to see if we require a particular JVM version and have a supplied JVM
706         _javaMinVersion = config.getLong("java_version", _javaMinVersion);
707         // we support java_min_version as an alias of java_version; it better expresses the check
708         // that's going on and better mirrors java_max_version
709         _javaMinVersion = config.getLong("java_min_version", _javaMinVersion);
710         // check to see if we require a particular max JVM version and have a supplied JVM
711         _javaMaxVersion = config.getLong("java_max_version", _javaMaxVersion);
712         // check to see if we require a particular JVM version and have a supplied JVM
713         _javaExactVersionRequired = config.getBoolean("java_exact_version_required");
714
715         // this is a little weird, but when we're run from the digester, we see a String[] which
716         // contains java locations for all platforms which we can't grok, but the digester doesn't
717         // need to know about that; when we're run in a real application there will be only one!
718         Object javaloc = config.getRaw("java_location");
719         if (javaloc instanceof String) {
720             _javaLocation = (String)javaloc;
721         }
722
723         // determine whether we have any tracking configuration
724         _trackingURL = config.getString("tracking_url");
725
726         // check for tracking progress percent configuration
727         String trackPcts = config.getString("tracking_percents");
728         if (!StringUtil.isBlank(trackPcts)) {
729             _trackingPcts = new HashSet<>();
730             for (int pct : StringUtil.parseIntArray(trackPcts)) {
731                 _trackingPcts.add(pct);
732             }
733         } else if (!StringUtil.isBlank(_trackingURL)) {
734             _trackingPcts = new HashSet<>();
735             _trackingPcts.add(50);
736         }
737
738         // Check for tracking cookie configuration
739         _trackingCookieName = config.getString("tracking_cookie_name");
740         _trackingCookieProperty = config.getString("tracking_cookie_property");
741
742         // Some app may need an extra suffix added to the tracking URL
743         _trackingURLSuffix = config.getString("tracking_url_suffix");
744
745         // Some app may need to generate google analytics code
746         _trackingGAHash = config.getString("tracking_ga_hash");
747
748         // clear our arrays as we may be reinitializing
749         _codes.clear();
750         _resources.clear();
751         _auxgroups.clear();
752         _jvmargs.clear();
753         _appargs.clear();
754         _txtJvmArgs.clear();
755
756         // parse our code resources
757         if (config.getMultiValue("code") == null &&
758             config.getMultiValue("ucode") == null) {
759             throw new IOException("m.missing_code");
760         }
761         parseResources(config, "code", Resource.NORMAL, _codes);
762         parseResources(config, "ucode", Resource.UNPACK, _codes);
763
764         // parse our non-code resources
765         parseResources(config, "resource", Resource.NORMAL, _resources);
766         parseResources(config, "uresource", Resource.UNPACK, _resources);
767         parseResources(config, "xresource", Resource.EXEC, _resources);
768         parseResources(config, "presource", Resource.PRELOAD, _resources);
769         parseResources(config, "nresource", Resource.NATIVE, _resources);
770
771         // parse our auxiliary resource groups
772         for (String auxgroup : config.getList("auxgroups")) {
773             ArrayList<Resource> codes = new ArrayList<>();
774             parseResources(config, auxgroup + ".code", Resource.NORMAL, codes);
775             parseResources(config, auxgroup + ".ucode", Resource.UNPACK, codes);
776             ArrayList<Resource> rsrcs = new ArrayList<>();
777             parseResources(config, auxgroup + ".resource", Resource.NORMAL, rsrcs);
778             parseResources(config, auxgroup + ".xresource", Resource.EXEC, rsrcs);
779             parseResources(config, auxgroup + ".uresource", Resource.UNPACK, rsrcs);
780             parseResources(config, auxgroup + ".presource", Resource.PRELOAD, rsrcs);
781             parseResources(config, auxgroup + ".nresource", Resource.NATIVE, rsrcs);
782             _auxgroups.put(auxgroup, new AuxGroup(auxgroup, codes, rsrcs));
783         }
784
785         // transfer our JVM arguments (we include both "global" args and app_id-prefixed args)
786         String[] jvmargs = config.getMultiValue("jvmarg");
787         addAll(jvmargs, _jvmargs);
788         if (appPrefix.length() > 0) {
789             jvmargs = config.getMultiValue(appPrefix + "jvmarg");
790             addAll(jvmargs, _jvmargs);
791         }
792
793         // see if a percentage of physical memory option exists
794         int jvmmempc = config.getInt("jvmmempc", -1);
795         // app_id prefixed setting overrides
796         if (appPrefix.length() > 0) {
797             jvmmempc = config.getInt(appPrefix + "jvmmempc", jvmmempc);
798         }
799         if (0 <= jvmmempc && jvmmempc <= 100) {
800           
801           long maxMemLong = -1;
802
803           try
804           {
805             maxMemLong = MemorySetting.memPercent(jvmmempc);
806           } catch (Exception e)
807           {
808             e.printStackTrace();
809           } catch (Throwable t)
810           {
811             t.printStackTrace();
812           }
813
814           if (maxMemLong > 0)
815           {
816             
817             String[] maxMemHeapArg = new String[]{"-Xmx"+Long.toString(maxMemLong)};
818             // remove other max heap size arg
819             ARG: for (int i = 0; i < _jvmargs.size(); i++) {
820               if (_jvmargs.get(i) instanceof java.lang.String && _jvmargs.get(i).startsWith("-Xmx")) {
821                 _jvmargs.remove(i);
822                 break ARG;
823               }
824             }
825             addAll(maxMemHeapArg, _jvmargs);
826             log.info("Max memory set", "maxMemHeapArg", maxMemHeapArg[0]);
827             
828           }
829
830         } else if (jvmmempc != -1) {
831           log.warning("'jvmmempc' value must be in range 0 to 100 (read as '"+Integer.toString(jvmmempc)+"')");
832         }
833
834         // get the set of optimum JVM arguments
835         _optimumJvmArgs = config.getMultiValue("optimum_jvmarg");
836
837         // transfer our application arguments
838         String[] appargs = config.getMultiValue(appPrefix + "apparg");
839         addAll(appargs, _appargs);
840
841         // add the launch specific application arguments
842         _appargs.addAll(_envc.appArgs);
843         
844         // look for custom arguments
845         fillAssignmentListFromPairs("extra.txt", _txtJvmArgs);
846
847         // determine whether we want to allow offline operation (defaults to false)
848         _allowOffline = config.getBoolean("allow_offline");
849
850         // look for a debug.txt file which causes us to run in java.exe on Windows so that we can
851         // obtain a thread dump of the running JVM
852         _windebug = getLocalPath("debug.txt").exists();
853
854         // whether to cache code resources and launch from cache
855         _useCodeCache = config.getBoolean("use_code_cache");
856         _codeCacheRetentionDays = config.getInt("code_cache_retention_days", 7);
857
858         // maximum simultaneous downloads
859         _maxConcDownloads = Math.max(1, config.getInt("max_concurrent_downloads",
860                                                       SysProps.threadPoolSize()));
861
862         // extract some info used to configure our child process on macOS
863         _dockName = config.getString("ui.name");
864         _dockIconPath = config.getString("ui.mac_dock_icon", "../desktop.icns");
865
866         return config;
867     }
868
869     /**
870      * Adds strings of the form pair0=pair1 to collector for each pair parsed out of pairLocation.
871      */
872     protected void fillAssignmentListFromPairs (String pairLocation, List<String> collector)
873     {
874         File pairFile = getLocalPath(pairLocation);
875         if (pairFile.exists()) {
876             try {
877                 List<String[]> args = Config.parsePairs(pairFile, Config.createOpts(false));
878                 for (String[] pair : args) {
879                     if (pair[1].length() == 0) {
880                         collector.add(pair[0]);
881                     } else {
882                         collector.add(pair[0] + "=" + pair[1]);
883                     }
884                 }
885             } catch (Throwable t) {
886                 log.warning("Failed to parse '" + pairFile + "': " + t);
887             }
888         }
889     }
890
891     /**
892      * Returns a URL from which the specified path can be fetched. Our application base URL is
893      * properly versioned and combined with the supplied path.
894      */
895     public URL getRemoteURL (String path)
896         throws MalformedURLException
897     {
898         return new URL(_vappbase, encodePath(path));
899     }
900
901     /**
902      * Returns the local path to the specified resource.
903      */
904     public File getLocalPath (String path)
905     {
906         return getLocalPath(getAppDir(), path);
907     }
908
909     /**
910      * Returns true if we either have no version requirement, are running in a JVM that meets our
911      * version requirements or have what appears to be a version of the JVM that meets our
912      * requirements.
913      */
914     public boolean haveValidJavaVersion ()
915     {
916         // if we're doing no version checking, then yay!
917         if (_javaMinVersion == 0 && _javaMaxVersion == 0) return true;
918
919         try {
920             // parse the version out of the java.version (or custom) system property
921             long version = SysProps.parseJavaVersion(_javaVersionProp, _javaVersionRegex);
922
923             log.info("Checking Java version", "current", version,
924                      "wantMin", _javaMinVersion, "wantMax", _javaMaxVersion);
925
926             // if we have an unpacked VM, check the 'release' file for its version
927             Resource vmjar = getJavaVMResource();
928             if (vmjar != null && vmjar.isMarkedValid()) {
929                 File vmdir = new File(getAppDir(), LaunchUtil.LOCAL_JAVA_DIR);
930                 File relfile = new File(vmdir, "release");
931                 if (!relfile.exists()) {
932                     log.warning("Unpacked JVM missing 'release' file. Assuming valid version.");
933                     return true;
934                 }
935
936                 long vmvers = VersionUtil.readReleaseVersion(relfile, _javaVersionRegex);
937                 if (vmvers == 0L) {
938                     log.warning("Unable to read version from 'release' file. Assuming valid.");
939                     return true;
940                 }
941
942                 version = vmvers;
943                 log.info("Checking version of unpacked JVM [vers=" + version + "].");
944             }
945
946             if (_javaExactVersionRequired) {
947                 if (version == _javaMinVersion) return true;
948                 else {
949                     log.warning("An exact Java VM version is required.", "current", version,
950                                 "required", _javaMinVersion);
951                     return false;
952                 }
953             }
954
955             boolean minVersionOK = (_javaMinVersion == 0) || (version >= _javaMinVersion);
956             boolean maxVersionOK = (_javaMaxVersion == 0) || (version <= _javaMaxVersion);
957             return minVersionOK && maxVersionOK;
958
959         } catch (RuntimeException re) {
960             // if we can't parse the java version we're in weird land and should probably just try
961             // our luck with what we've got rather than try to download a new jvm
962             log.warning("Unable to parse VM version, hoping for the best",
963                         "error", re, "needed", _javaMinVersion);
964             return true;
965         }
966     }
967
968     /**
969      * Checks whether the app has a set of "optimum" JVM args that we wish to try first, detecting
970      * whether the launch is successful and, if necessary, trying again without the optimum
971      * arguments.
972      */
973     public boolean hasOptimumJvmArgs ()
974     {
975         return _optimumJvmArgs != null;
976     }
977
978     /**
979      * Returns true if the app should attempt to run even if we have no Internet connection.
980      */
981     public boolean allowOffline ()
982     {
983         return _allowOffline;
984     }
985
986     /**
987      * Attempts to redownload the <code>getdown.txt</code> file based on information parsed from a
988      * previous call to {@link #init}.
989      */
990     public void attemptRecovery (StatusDisplay status)
991         throws IOException
992     {
993         status.updateStatus("m.updating_metadata");
994         downloadConfigFile();
995     }
996
997     /**
998      * Downloads and replaces the <code>getdown.txt</code> and <code>digest.txt</code> files with
999      * those for the target version of our application.
1000      */
1001     public void updateMetadata ()
1002         throws IOException
1003     {
1004         try {
1005             // update our versioned application base with the target version
1006             _vappbase = createVAppBase(_targetVersion);
1007         } catch (MalformedURLException mue) {
1008             String err = MessageUtil.tcompose("m.invalid_appbase", _appbase);
1009             throw (IOException) new IOException(err).initCause(mue);
1010         }
1011
1012         try {
1013             // now re-download our control files; we download the digest first so that if it fails,
1014             // our config file will still reference the old version and re-running the updater will
1015             // start the whole process over again
1016             downloadDigestFiles();
1017             downloadConfigFile();
1018
1019         } catch (IOException ex) {
1020             // if we are allowing offline execution, we want to allow the application to run in its
1021             // current form rather than aborting the entire process; to do this, we delete the
1022             // version.txt file and "trick" Getdown into thinking that it just needs to validate
1023             // the application as is; next time the app runs when connected to the internet, it
1024             // will have to rediscover that it needs updating and reattempt to update itself
1025             if (_allowOffline) {
1026                 log.warning("Failed to update digest files.  Attempting offline operaton.", ex);
1027                 if (!FileUtil.deleteHarder(getLocalPath(VERSION_FILE))) {
1028                     log.warning("Deleting version.txt failed.  This probably isn't going to work.");
1029                 }
1030             } else {
1031                 throw ex;
1032             }
1033         }
1034     }
1035
1036     /**
1037      * Invokes the process associated with this application definition.
1038      *
1039      * @param optimum whether or not to include the set of optimum arguments (as opposed to falling
1040      * back).
1041      */
1042     public Process createProcess (boolean optimum)
1043         throws IOException
1044     {
1045         ArrayList<String> args = new ArrayList<>();
1046
1047         // reconstruct the path to the JVM
1048         args.add(LaunchUtil.getJVMPath(getAppDir(), _windebug || optimum));
1049
1050         // check whether we're using -jar mode or -classpath mode
1051         boolean dashJarMode = MANIFEST_CLASS.equals(_class);
1052
1053         // add the -classpath arguments if we're not in -jar mode
1054         ClassPath classPath = PathBuilder.buildClassPath(this);
1055         if (!dashJarMode) {
1056             args.add("-classpath");
1057             args.add(classPath.asArgumentString());
1058         }
1059
1060         // we love our Mac users, so we do nice things to preserve our application identity
1061         if (LaunchUtil.isMacOS()) {
1062             args.add("-Xdock:icon=" + getLocalPath(_dockIconPath).getAbsolutePath());
1063             args.add("-Xdock:name=" + _dockName);
1064         }
1065
1066         // pass along our proxy settings
1067         String proxyHost;
1068         if ((proxyHost = System.getProperty("http.proxyHost")) != null) {
1069             args.add("-Dhttp.proxyHost=" + proxyHost);
1070             args.add("-Dhttp.proxyPort=" + System.getProperty("http.proxyPort"));
1071             args.add("-Dhttps.proxyHost=" + proxyHost);
1072             args.add("-Dhttps.proxyPort=" + System.getProperty("http.proxyPort"));
1073         }
1074
1075         // add the marker indicating the app is running in getdown
1076         args.add("-D" + Properties.GETDOWN + "=true");
1077
1078         // set the native library path if we have native resources
1079         // @TODO optional getdown.txt parameter to set addCurrentLibraryPath to true or false?
1080         ClassPath javaLibPath = PathBuilder.buildLibsPath(this, true);
1081         if (javaLibPath != null) {
1082             args.add("-Djava.library.path=" + javaLibPath.asArgumentString());
1083         }
1084
1085         // pass along any pass-through arguments
1086         for (Map.Entry<Object, Object> entry : System.getProperties().entrySet()) {
1087             String key = (String)entry.getKey();
1088             if (key.startsWith(PROP_PASSTHROUGH_PREFIX)) {
1089                 key = key.substring(PROP_PASSTHROUGH_PREFIX.length());
1090                 args.add("-D" + key + "=" + entry.getValue());
1091             }
1092         }
1093
1094         // add the JVM arguments
1095         for (String string : _jvmargs) {
1096             args.add(processArg(string));
1097         }
1098
1099         // add the optimum arguments if requested and available
1100         if (optimum && _optimumJvmArgs != null) {
1101             for (String string : _optimumJvmArgs) {
1102                 args.add(processArg(string));
1103             }
1104         }
1105
1106         // add the arguments from extra.txt (after the optimum ones, in case they override them)
1107         for (String string : _txtJvmArgs) {
1108             args.add(processArg(string));
1109         }
1110
1111         // if we're in -jar mode add those arguments, otherwise add the app class name
1112         if (dashJarMode) {
1113             args.add("-jar");
1114             args.add(classPath.asArgumentString());
1115         } else {
1116             args.add(_class);
1117         }
1118
1119         // almost finally check the startup file arguments
1120         for (File f : _startupFiles) {
1121           _appargs.add(f.getAbsolutePath());
1122           break; // Only add one file to open
1123         }
1124         
1125         // check if one arg with recognised extension
1126         if ( _appargs.size() == 1 && _appargs.get(0) != null ) {
1127           String filename = _appargs.get(0);
1128           String ext = null;
1129           int j = filename.lastIndexOf('.');
1130           if (j > -1) {
1131             ext = filename.substring(j+1);
1132           }
1133           if (ext != null && LOCATOR_FILE_EXTENSION.equals(ext.toLowerCase())) {
1134             // this file extension should have been dealt with in Getdown class
1135           } else {
1136             _appargs.add(0, "-open");
1137           }
1138         }
1139
1140         // finally add the application arguments
1141         for (String string : _appargs) {
1142             args.add(processArg(string));
1143         }
1144         
1145         String[] envp = createEnvironment();
1146         String[] sargs = args.toArray(new String[args.size()]);
1147         log.info("Running " + StringUtil.join(sargs, "\n  "));
1148
1149         return Runtime.getRuntime().exec(sargs, envp, getAppDir());
1150     }
1151
1152     /**
1153      * If the application provided environment variables, combine those with the current
1154      * environment and return that in a style usable for {@link Runtime#exec(String, String[])}.
1155      * If the application didn't provide any environment variables, null is returned to just use
1156      * the existing environment.
1157      */
1158     protected String[] createEnvironment ()
1159     {
1160         List<String> envvar = new ArrayList<>();
1161         fillAssignmentListFromPairs("env.txt", envvar);
1162         if (envvar.isEmpty()) {
1163             log.info("Didn't find any custom environment variables, not setting any.");
1164             return null;
1165         }
1166
1167         List<String> envAssignments = new ArrayList<>();
1168         for (String assignment : envvar) {
1169             envAssignments.add(processArg(assignment));
1170         }
1171         for (Map.Entry<String, String> environmentEntry : System.getenv().entrySet()) {
1172             envAssignments.add(environmentEntry.getKey() + "=" + environmentEntry.getValue());
1173         }
1174         String[] envp = envAssignments.toArray(new String[envAssignments.size()]);
1175         log.info("Environment " + StringUtil.join(envp, "\n "));
1176         return envp;
1177     }
1178
1179     /**
1180      * Runs this application directly in the current VM.
1181      */
1182     public void invokeDirect () throws IOException
1183     {
1184         ClassPath classPath = PathBuilder.buildClassPath(this);
1185         URL[] jarUrls = classPath.asUrls();
1186
1187         // create custom class loader
1188         URLClassLoader loader = new URLClassLoader(jarUrls, ClassLoader.getSystemClassLoader()) {
1189             @Override protected PermissionCollection getPermissions (CodeSource code) {
1190                 Permissions perms = new Permissions();
1191                 perms.add(new AllPermission());
1192                 return perms;
1193             }
1194         };
1195         Thread.currentThread().setContextClassLoader(loader);
1196
1197         log.info("Configured URL class loader:");
1198         for (URL url : jarUrls) log.info("  " + url);
1199
1200         // configure any system properties that we can
1201         for (String jvmarg : _jvmargs) {
1202             if (jvmarg.startsWith("-D")) {
1203                 jvmarg = processArg(jvmarg.substring(2));
1204                 int eqidx = jvmarg.indexOf("=");
1205                 if (eqidx == -1) {
1206                     log.warning("Bogus system property: '" + jvmarg + "'?");
1207                 } else {
1208                     System.setProperty(jvmarg.substring(0, eqidx), jvmarg.substring(eqidx+1));
1209                 }
1210             }
1211         }
1212
1213         // pass along any pass-through arguments
1214         Map<String, String> passProps = new HashMap<>();
1215         for (Map.Entry<Object, Object> entry : System.getProperties().entrySet()) {
1216             String key = (String)entry.getKey();
1217             if (key.startsWith(PROP_PASSTHROUGH_PREFIX)) {
1218                 key = key.substring(PROP_PASSTHROUGH_PREFIX.length());
1219                 passProps.put(key, (String)entry.getValue());
1220             }
1221         }
1222         // we can't set these in the above loop lest we get a ConcurrentModificationException
1223         for (Map.Entry<String, String> entry : passProps.entrySet()) {
1224             System.setProperty(entry.getKey(), entry.getValue());
1225         }
1226
1227         // prepare our app arguments
1228         String[] args = new String[_appargs.size()];
1229         for (int ii = 0; ii < args.length; ii++) args[ii] = processArg(_appargs.get(ii));
1230
1231         try {
1232             log.info("Loading " + _class);
1233             Class<?> appclass = loader.loadClass(_class);
1234             Method main = appclass.getMethod("main", EMPTY_STRING_ARRAY.getClass());
1235             log.info("Invoking main({" + StringUtil.join(args, ", ") + "})");
1236             main.invoke(null, new Object[] { args });
1237         } catch (Exception e) {
1238             log.warning("Failure invoking app main", e);
1239         }
1240     }
1241
1242     /** Replaces the application directory and version in any argument. */
1243     protected String processArg (String arg)
1244     {
1245         arg = arg.replace("%APPDIR%", getAppDir().getAbsolutePath());
1246         arg = arg.replace("%VERSION%", String.valueOf(_version));
1247
1248         // if this argument contains %ENV.FOO% replace those with the associated values looked up
1249         // from the environment
1250         if (arg.contains(ENV_VAR_PREFIX)) {
1251             StringBuffer sb = new StringBuffer();
1252             Matcher matcher = ENV_VAR_PATTERN.matcher(arg);
1253             while (matcher.find()) {
1254                 String varName = matcher.group(1), varValue = System.getenv(varName);
1255                 String repValue = varValue == null ? "MISSING:"+varName : varValue;
1256                 matcher.appendReplacement(sb, Matcher.quoteReplacement(repValue));
1257             }
1258             matcher.appendTail(sb);
1259             arg = sb.toString();
1260         }
1261
1262         return arg;
1263     }
1264
1265     /**
1266      * Loads the <code>digest.txt</code> file and verifies the contents of both that file and the
1267      * <code>getdown.text</code> file. Then it loads the <code>version.txt</code> and decides
1268      * whether or not the application needs to be updated or whether we can proceed to verification
1269      * and execution.
1270      *
1271      * @return true if the application needs to be updated, false if it is up to date and can be
1272      * verified and executed.
1273      *
1274      * @exception IOException thrown if we encounter an unrecoverable error while verifying the
1275      * metadata.
1276      */
1277     public boolean verifyMetadata (StatusDisplay status)
1278         throws IOException
1279     {
1280         log.info("Verifying application: " + _vappbase);
1281         log.info("Version: " + _version);
1282         log.info("Class: " + _class);
1283
1284         // this will read in the contents of the digest file and validate itself
1285         try {
1286             _digest = new Digest(getAppDir(), _strictComments);
1287         } catch (IOException ioe) {
1288             log.info("Failed to load digest: " + ioe.getMessage() + ". Attempting recovery...");
1289         }
1290
1291         // if we have no version, then we are running in unversioned mode so we need to download
1292         // our digest.txt file on every invocation
1293         if (_version == -1) {
1294             // make a note of the old meta-digest, if this changes we need to revalidate all of our
1295             // resources as one or more of them have also changed
1296             String olddig = (_digest == null) ? "" : _digest.getMetaDigest();
1297             try {
1298                 status.updateStatus("m.checking");
1299                 downloadDigestFiles();
1300                 _digest = new Digest(getAppDir(), _strictComments);
1301                 if (!olddig.equals(_digest.getMetaDigest())) {
1302                     log.info("Unversioned digest changed. Revalidating...");
1303                     status.updateStatus("m.validating");
1304                     clearValidationMarkers();
1305                 }
1306             } catch (IOException ioe) {
1307                 log.warning("Failed to refresh non-versioned digest: " +
1308                             ioe.getMessage() + ". Proceeding...");
1309             }
1310         }
1311
1312         // regardless of whether we're versioned, if we failed to read the digest from disk, try to
1313         // redownload the digest file and give it another good college try; this time we allow
1314         // exceptions to propagate up to the caller as there is nothing else we can do
1315         if (_digest == null) {
1316             status.updateStatus("m.updating_metadata");
1317             downloadDigestFiles();
1318             _digest = new Digest(getAppDir(), _strictComments);
1319         }
1320
1321         // now verify the contents of our main config file
1322         Resource crsrc = getConfigResource();
1323         if (!_digest.validateResource(crsrc, null)) {
1324             status.updateStatus("m.updating_metadata");
1325             // attempt to redownload both of our metadata files; again we pass errors up to our
1326             // caller because there's nothing we can do to automatically recover
1327             downloadConfigFile();
1328             downloadDigestFiles();
1329             _digest = new Digest(getAppDir(), _strictComments);
1330             // revalidate everything if we end up downloading new metadata
1331             clearValidationMarkers();
1332             // if the new copy validates, reinitialize ourselves; otherwise report baffling hoseage
1333             if (_digest.validateResource(crsrc, null)) {
1334                 init(true);
1335             } else {
1336                 log.warning(CONFIG_FILE + " failed to validate even after redownloading. " +
1337                             "Blindly forging onward.");
1338             }
1339         }
1340
1341         // start by assuming we are happy with our version
1342         _targetVersion = _version;
1343
1344         // if we are a versioned application, read in the contents of the version.txt file
1345         // and/or check the latest config URL for a newer version
1346         if (_version != -1) {
1347             File vfile = getLocalPath(VERSION_FILE);
1348             long fileVersion = VersionUtil.readVersion(vfile);
1349             if (fileVersion != -1) {
1350                 _targetVersion = fileVersion;
1351             }
1352
1353             if (_latest != null) {
1354                 try (InputStream in = ConnectionUtil.open(proxy, _latest, 0, 0).getInputStream();
1355                      InputStreamReader reader = new InputStreamReader(in, UTF_8);
1356                      BufferedReader bin = new BufferedReader(reader)) {
1357                     for (String[] pair : Config.parsePairs(bin, Config.createOpts(false))) {
1358                         if (pair[0].equals("version")) {
1359                             _targetVersion = Math.max(Long.parseLong(pair[1]), _targetVersion);
1360                             if (fileVersion != -1 && _targetVersion > fileVersion) {
1361                                 // replace the file with the newest version
1362                                 try (FileOutputStream fos = new FileOutputStream(vfile);
1363                                      PrintStream out = new PrintStream(fos)) {
1364                                     out.println(_targetVersion);
1365                                 }
1366                             }
1367                             break;
1368                         }
1369                     }
1370                 } catch (Exception e) {
1371                     log.warning("Unable to retrieve version from latest config file.", e);
1372                 }
1373             }
1374         }
1375
1376         // finally let the caller know if we need an update
1377         return _version != _targetVersion;
1378     }
1379
1380     /**
1381      * Verifies the code and media resources associated with this application. A list of resources
1382      * that do not exist or fail the verification process will be returned. If all resources are
1383      * ready to go, null will be returned and the application is considered ready to run.
1384      *
1385      * @param obs a progress observer that will be notified of verification progress. NOTE: this
1386      * observer may be called from arbitrary threads, so if you update a UI based on calls to it,
1387      * you have to take care to get back to your UI thread.
1388      * @param alreadyValid if non-null a 1 element array that will have the number of "already
1389      * validated" resources filled in.
1390      * @param unpacked a set to populate with unpacked resources.
1391      * @param toInstall a list into which to add resources that need to be installed.
1392      * @param toDownload a list into which to add resources that need to be downloaded.
1393      */
1394     public void verifyResources (
1395         ProgressObserver obs, int[] alreadyValid, Set<Resource> unpacked,
1396         Set<Resource> toInstall, Set<Resource> toDownload)
1397         throws InterruptedException
1398     {
1399         // resources are verified on background threads supplied by the thread pool, and progress
1400         // is reported by posting runnable actions to the actions queue which is processed by the
1401         // main (UI) thread
1402         ExecutorService exec = Executors.newFixedThreadPool(SysProps.threadPoolSize());
1403         final BlockingQueue<Runnable> actions = new LinkedBlockingQueue<Runnable>();
1404         final int[] completed = new int[1];
1405
1406         long start = System.currentTimeMillis();
1407
1408         // obtain the sizes of the resources to validate
1409         List<Resource> rsrcs = getAllActiveResources();
1410         long[] sizes = new long[rsrcs.size()];
1411         long totalSize = 0;
1412         for (int ii = 0; ii < sizes.length; ii++) {
1413             totalSize += sizes[ii] = rsrcs.get(ii).getLocal().length();
1414         }
1415         final ProgressObserver fobs = obs;
1416         // as long as we forward aggregated progress updates to the UI thread, having multiple
1417         // threads update a progress aggregator is "mostly" thread-safe
1418         final ProgressAggregator pagg = new ProgressAggregator(new ProgressObserver() {
1419             public void progress (final int percent) {
1420                 actions.add(new Runnable() {
1421                     public void run () {
1422                         fobs.progress(percent);
1423                     }
1424                 });
1425             }
1426         }, sizes);
1427
1428         final int[] fAlreadyValid = alreadyValid;
1429         final Set<Resource> toInstallAsync = new ConcurrentSkipListSet<>(toInstall);
1430         final Set<Resource> toDownloadAsync = new ConcurrentSkipListSet<>();
1431         final Set<Resource> unpackedAsync = new ConcurrentSkipListSet<>();
1432
1433         for (int ii = 0; ii < sizes.length; ii++) {
1434             final Resource rsrc = rsrcs.get(ii);
1435             final int index = ii;
1436             exec.execute(new Runnable() {
1437                 public void run () {
1438                     verifyResource(rsrc, pagg.startElement(index), fAlreadyValid,
1439                                    unpackedAsync, toInstallAsync, toDownloadAsync);
1440                     actions.add(new Runnable() {
1441                         public void run () {
1442                             completed[0] += 1;
1443                         }
1444                     });
1445                 }
1446             });
1447         }
1448
1449         while (completed[0] < rsrcs.size()) {
1450             // we should be getting progress completion updates WAY more often than one every
1451             // minute, so if things freeze up for 60 seconds, abandon ship
1452             Runnable action = actions.poll(60, TimeUnit.SECONDS);
1453             action.run();
1454         }
1455
1456         exec.shutdown();
1457
1458         toInstall.addAll(toInstallAsync);
1459         toDownload.addAll(toDownloadAsync);
1460         unpacked.addAll(unpackedAsync);
1461
1462         long complete = System.currentTimeMillis();
1463         log.info("Verified resources", "count", rsrcs.size(), "size", (totalSize/1024) + "k",
1464                  "duration", (complete-start) + "ms");
1465     }
1466
1467     private void verifyResource (Resource rsrc, ProgressObserver obs, int[] alreadyValid,
1468                                  Set<Resource> unpacked,
1469                                  Set<Resource> toInstall, Set<Resource> toDownload) {
1470         if (rsrc.isMarkedValid()) {
1471             if (alreadyValid != null) {
1472                 alreadyValid[0]++;
1473             }
1474             obs.progress(100);
1475             return;
1476         }
1477
1478         try {
1479             if (_digest.validateResource(rsrc, obs)) {
1480                 // if the resource has a _new file, add it to to-install list
1481                 if (rsrc.getLocalNew().exists()) {
1482                     toInstall.add(rsrc);
1483                     return;
1484                 }
1485                 rsrc.applyAttrs();
1486                 unpacked.add(rsrc);
1487                 rsrc.markAsValid();
1488                 return;
1489             }
1490
1491         } catch (Exception e) {
1492             log.info("Failure verifying resource. Requesting redownload...",
1493                      "rsrc", rsrc, "error", e);
1494
1495         } finally {
1496             obs.progress(100);
1497         }
1498         toDownload.add(rsrc);
1499     }
1500
1501     /**
1502      * Unpacks the resources that require it (we know that they're valid).
1503      *
1504      * @param unpacked a set of resources to skip because they're already unpacked.
1505      */
1506     public void unpackResources (ProgressObserver obs, Set<Resource> unpacked)
1507         throws InterruptedException
1508     {
1509         List<Resource> rsrcs = getActiveResources();
1510
1511         // remove resources that we don't want to unpack
1512         for (Iterator<Resource> it = rsrcs.iterator(); it.hasNext(); ) {
1513             Resource rsrc = it.next();
1514             if (!rsrc.shouldUnpack() || unpacked.contains(rsrc)) {
1515                 it.remove();
1516             }
1517         }
1518
1519         // obtain the sizes of the resources to unpack
1520         long[] sizes = new long[rsrcs.size()];
1521         for (int ii = 0; ii < sizes.length; ii++) {
1522             sizes[ii] = rsrcs.get(ii).getLocal().length();
1523         }
1524
1525         ProgressAggregator pagg = new ProgressAggregator(obs, sizes);
1526         for (int ii = 0; ii < sizes.length; ii++) {
1527             Resource rsrc = rsrcs.get(ii);
1528             ProgressObserver pobs = pagg.startElement(ii);
1529             try {
1530                 rsrc.unpack();
1531             } catch (IOException ioe) {
1532                 log.warning("Failure unpacking resource", "rsrc", rsrc, ioe);
1533             }
1534             pobs.progress(100);
1535         }
1536     }
1537
1538     /**
1539      * Clears all validation marker files.
1540      */
1541     public void clearValidationMarkers ()
1542     {
1543         clearValidationMarkers(getAllActiveResources().iterator());
1544     }
1545
1546     /**
1547      * Returns the version number for the application.  Should only be called after successful
1548      * return of verifyMetadata.
1549      */
1550     public long getVersion ()
1551     {
1552         return _version;
1553     }
1554
1555     /**
1556      * Creates a versioned application base URL for the specified version.
1557      */
1558     protected URL createVAppBase (long version)
1559         throws MalformedURLException
1560     {
1561         String url = version < 0 ? _appbase : _appbase.replace("%VERSION%", "" + version);
1562         return HostWhitelist.verify(new URL(url));
1563     }
1564
1565     /**
1566      * Clears all validation marker files for the resources in the supplied iterator.
1567      */
1568     protected void clearValidationMarkers (Iterator<Resource> iter)
1569     {
1570         while (iter.hasNext()) {
1571             iter.next().clearMarker();
1572         }
1573     }
1574
1575     /**
1576      * Downloads a new copy of CONFIG_FILE.
1577      */
1578     protected void downloadConfigFile ()
1579         throws IOException
1580     {
1581         downloadControlFile(CONFIG_FILE, 0);
1582     }
1583
1584     /**
1585      * @return true if gettingdown.lock was unlocked, already locked by this application or if
1586      * we're not locking at all.
1587      */
1588     public synchronized boolean lockForUpdates ()
1589     {
1590         if (_lock != null && _lock.isValid()) {
1591             return true;
1592         }
1593         try {
1594             _lockChannel = new RandomAccessFile(getLocalPath("gettingdown.lock"), "rw").getChannel();
1595         } catch (FileNotFoundException e) {
1596             log.warning("Unable to create lock file", "message", e.getMessage(), e);
1597             return false;
1598         }
1599         try {
1600             _lock = _lockChannel.tryLock();
1601         } catch (IOException e) {
1602             log.warning("Unable to create lock", "message", e.getMessage(), e);
1603             return false;
1604         } catch (OverlappingFileLockException e) {
1605             log.warning("The lock is held elsewhere in this JVM", e);
1606             return false;
1607         }
1608         log.info("Able to lock for updates: " + (_lock != null));
1609         return _lock != null;
1610     }
1611
1612     /**
1613      * Release gettingdown.lock
1614      */
1615     public synchronized void releaseLock ()
1616     {
1617         if (_lock != null) {
1618             log.info("Releasing lock");
1619             try {
1620                 _lock.release();
1621             } catch (IOException e) {
1622                 log.warning("Unable to release lock", "message", e.getMessage(), e);
1623             }
1624             try {
1625                 _lockChannel.close();
1626             } catch (IOException e) {
1627                 log.warning("Unable to close lock channel", "message", e.getMessage(), e);
1628             }
1629             _lockChannel = null;
1630             _lock = null;
1631         }
1632     }
1633
1634     /**
1635      * Downloads the digest files and validates their signature.
1636      * @throws IOException
1637      */
1638     protected void downloadDigestFiles ()
1639         throws IOException
1640     {
1641         for (int version = 1; version <= Digest.VERSION; version++) {
1642             downloadControlFile(Digest.digestFile(version), version);
1643         }
1644     }
1645
1646     /**
1647      * Downloads a new copy of the specified control file, optionally validating its signature.
1648      * If the download is successful, moves it over the old file on the filesystem.
1649      *
1650      * <p> TODO: Switch to PKCS #7 or CMS.
1651      *
1652      * @param sigVersion if {@code 0} no validation will be performed, if {@code > 0} then this
1653      * should indicate the version of the digest file being validated which indicates which
1654      * algorithm to use to verify the signature. See {@link Digest#VERSION}.
1655      */
1656     protected void downloadControlFile (String path, int sigVersion)
1657         throws IOException
1658     {
1659         File target = downloadFile(path);
1660
1661         if (sigVersion > 0) {
1662             if (_envc.certs.isEmpty()) {
1663                 log.info("No signing certs, not verifying digest.txt", "path", path);
1664
1665             } else {
1666                 File signatureFile = downloadFile(path + SIGNATURE_SUFFIX);
1667                 byte[] signature = null;
1668                 try (FileInputStream signatureStream = new FileInputStream(signatureFile)) {
1669                     signature = StreamUtil.toByteArray(signatureStream);
1670                 } finally {
1671                     FileUtil.deleteHarder(signatureFile); // delete the file regardless
1672                 }
1673
1674                 byte[] buffer = new byte[8192];
1675                 int length, validated = 0;
1676                 for (Certificate cert : _envc.certs) {
1677                     try (FileInputStream dataInput = new FileInputStream(target)) {
1678                         Signature sig = Signature.getInstance(Digest.sigAlgorithm(sigVersion));
1679                         sig.initVerify(cert);
1680                         while ((length = dataInput.read(buffer)) != -1) {
1681                             sig.update(buffer, 0, length);
1682                         }
1683
1684                         if (!sig.verify(Base64.decode(signature, Base64.DEFAULT))) {
1685                             log.info("Signature does not match", "cert", cert.getPublicKey());
1686                             continue;
1687                         } else {
1688                             log.info("Signature matches", "cert", cert.getPublicKey());
1689                             validated++;
1690                         }
1691
1692                     } catch (IOException ioe) {
1693                         log.warning("Failure validating signature of " + target + ": " + ioe);
1694
1695                     } catch (GeneralSecurityException gse) {
1696                         // no problem!
1697
1698                     }
1699                 }
1700
1701                 // if we couldn't find a key that validates our digest, we are the hosed!
1702                 if (validated == 0) {
1703                     // delete the temporary digest file as we know it is invalid
1704                     FileUtil.deleteHarder(target);
1705                     throw new IOException("m.corrupt_digest_signature_error");
1706                 }
1707             }
1708         }
1709
1710         // now move the temporary file over the original
1711         File original = getLocalPath(path);
1712         if (!FileUtil.renameTo(target, original)) {
1713             throw new IOException("Failed to rename(" + target + ", " + original + ")");
1714         }
1715     }
1716
1717     /**
1718      * Download a path to a temporary file, returning a {@link File} instance with the path
1719      * contents.
1720      */
1721     protected File downloadFile (String path)
1722         throws IOException
1723     {
1724         File target = getLocalPath(path + "_new");
1725
1726         URL targetURL = null;
1727         try {
1728             targetURL = getRemoteURL(path);
1729         } catch (Exception e) {
1730             log.warning("Requested to download invalid control file",
1731                 "appbase", _vappbase, "path", path, "error", e);
1732             throw (IOException) new IOException("Invalid path '" + path + "'.").initCause(e);
1733         }
1734
1735         log.info("Attempting to refetch '" + path + "' from '" + targetURL + "'.");
1736
1737         // stream the URL into our temporary file
1738         URLConnection uconn = ConnectionUtil.open(proxy, targetURL, 0, 0);
1739         // we have to tell Java not to use caches here, otherwise it will cache any request for
1740         // same URL for the lifetime of this JVM (based on the URL string, not the URL object);
1741         // if the getdown.txt file, for example, changes in the meanwhile, we would never hear
1742         // about it; turning off caches is not a performance concern, because when Getdown asks
1743         // to download a file, it expects it to come over the wire, not from a cache
1744         uconn.setUseCaches(false);
1745         uconn.setRequestProperty("Accept-Encoding", "gzip");
1746         try (InputStream fin = uconn.getInputStream()) {
1747             String encoding = uconn.getContentEncoding();
1748             boolean gzip = "gzip".equalsIgnoreCase(encoding);
1749             try (InputStream fin2 = (gzip ? new GZIPInputStream(fin) : fin)) {
1750                 try (FileOutputStream fout = new FileOutputStream(target)) {
1751                     StreamUtil.copy(fin2, fout);
1752                 }
1753             }
1754         }
1755
1756         return target;
1757     }
1758
1759     /** Helper function for creating {@link Resource} instances. */
1760     protected Resource createResource (String path, EnumSet<Resource.Attr> attrs)
1761         throws MalformedURLException
1762     {
1763         return new Resource(path, getRemoteURL(path), getLocalPath(path), attrs);
1764     }
1765
1766     /** Helper function to add all values in {@code values} (if non-null) to {@code target}. */
1767     protected static void addAll (String[] values, List<String> target) {
1768         if (values != null) {
1769             for (String value : values) {
1770                 target.add(value);
1771             }
1772         }
1773     }
1774
1775     /**
1776      * Make an immutable List from the specified int array.
1777      */
1778     public static List<Integer> intsToList (int[] values)
1779     {
1780         List<Integer> list = new ArrayList<>(values.length);
1781         for (int val : values) {
1782             list.add(val);
1783         }
1784         return Collections.unmodifiableList(list);
1785     }
1786
1787     /**
1788      * Make an immutable List from the specified String array.
1789      */
1790     public static List<String> stringsToList (String[] values)
1791     {
1792         return values == null ? null : Collections.unmodifiableList(Arrays.asList(values));
1793     }
1794
1795     /** Used to parse resources with the specified name. */
1796     protected void parseResources (Config config, String name, EnumSet<Resource.Attr> attrs,
1797                                    List<Resource> list)
1798     {
1799         String[] rsrcs = config.getMultiValue(name);
1800         if (rsrcs == null) {
1801             return;
1802         }
1803         for (String rsrc : rsrcs) {
1804             try {
1805                 list.add(createResource(rsrc, attrs));
1806             } catch (Exception e) {
1807                 log.warning("Invalid resource '" + rsrc + "'. " + e);
1808             }
1809         }
1810     }
1811
1812     /** Possibly generates and returns a google analytics tracking cookie. */
1813     protected String getGATrackingCode ()
1814     {
1815         if (_trackingGAHash == null) {
1816             return "";
1817         }
1818         long time = System.currentTimeMillis() / 1000;
1819         if (_trackingStart == 0) {
1820             _trackingStart = time;
1821         }
1822         if (_trackingId == 0) {
1823             int low = 100000000, high = 1000000000;
1824             _trackingId = low + _rando.nextInt(high-low);
1825         }
1826         StringBuilder cookie = new StringBuilder("&utmcc=__utma%3D").append(_trackingGAHash);
1827         cookie.append(".").append(_trackingId);
1828         cookie.append(".").append(_trackingStart).append(".").append(_trackingStart);
1829         cookie.append(".").append(time).append(".1%3B%2B");
1830         cookie.append("__utmz%3D").append(_trackingGAHash).append(".");
1831         cookie.append(_trackingStart).append(".1.1.");
1832         cookie.append("utmcsr%3D(direct)%7Cutmccn%3D(direct)%7Cutmcmd%3D(none)%3B");
1833         int low = 1000000000, high = 2000000000;
1834         cookie.append("&utmn=").append(_rando.nextInt(high-low));
1835         return cookie.toString();
1836     }
1837
1838     /**
1839      * Encodes a path for use in a URL.
1840      */
1841     protected static String encodePath (String path)
1842     {
1843         try {
1844             // we want to keep slashes because we're encoding an entire path; also we need to turn
1845             // + into %20 because web servers don't like + in paths or file names, blah
1846             return URLEncoder.encode(path, "UTF-8").replace("%2F", "/").replace("+", "%20");
1847         } catch (UnsupportedEncodingException ue) {
1848             log.warning("Failed to URL encode " + path + ": " + ue);
1849             return path;
1850         }
1851     }
1852
1853     protected File getLocalPath (File appdir, String path)
1854     {
1855         return new File(appdir, path);
1856     }
1857
1858     public static void setStartupFilesFromParameterString(String p) {
1859       // multiple files *might* be passed in as space separated quoted filenames
1860       String q = "\"";
1861       if (!StringUtil.isBlank(p)) {
1862         String[] filenames;
1863         // split quoted params or treat as single string array
1864         if (p.startsWith(q) && p.endsWith(q)) {
1865           // this fails if, e.g.
1866           // p=q("stupidfilename\" " "otherfilename")
1867           // let's hope no-one ever ends a filename with '" '
1868           filenames = p.substring(q.length(),p.length()-q.length()).split(q+" "+q);
1869         } else {
1870           // single unquoted filename
1871           filenames = new String[]{p};
1872         }
1873
1874         // check for locator file.  Only allow one locator file to be double clicked (if multiple files opened, ignore locator files)
1875         String locatorFilename = filenames.length >= 1 ? filenames[0] : null;
1876         if (
1877                 !StringUtil.isBlank(locatorFilename)
1878                 && locatorFilename.toLowerCase().endsWith("."+Application.LOCATOR_FILE_EXTENSION)
1879                 ) {
1880           setLocatorFile(locatorFilename);
1881           // remove the locator filename from the filenames array
1882           String[] otherFilenames = new String[filenames.length - 1];
1883           System.arraycopy(filenames, 1, otherFilenames, 0, otherFilenames.length);
1884           filenames = otherFilenames;
1885         }
1886
1887         for (int i = 0; i < filenames.length; i++) {
1888           String filename = filenames[i];
1889           // skip any other locator files in a multiple file list
1890           if (! filename.toLowerCase().endsWith("."+Application.LOCATOR_FILE_EXTENSION)) {
1891             addStartupFile(filename);
1892           }
1893         }
1894       }
1895     }
1896     
1897     public static void setLocatorFile(String filename) {
1898       _locatorFile = new File(filename);
1899     }
1900     
1901     public static void addStartupFile(String filename) {
1902       _startupFiles.add(new File(filename));
1903     }
1904     
1905     private Config createLocatorConfig(Config.ParseOpts opts) {
1906       if (_locatorFile == null) {
1907         return null;
1908       }
1909       
1910       Config locatorConfig = null;
1911       
1912       try {
1913         Config tmpConfig = null;
1914         Map<String, Object> tmpData = new HashMap<>();
1915         if (_locatorFile.exists()) {
1916           tmpConfig = Config.parseConfig(_locatorFile,  opts);
1917           // appbase is sanitised in HostWhitelist
1918           Map<String, Object> tmpConfigData = tmpConfig.getData();
1919           if (tmpConfig != null) {
1920             for (Map.Entry<String, Object> entry : tmpConfigData.entrySet()) {
1921               String key = entry.getKey();
1922               Object value = entry.getValue();
1923               String mkey = key.indexOf('.') > -1 ? key.substring(key.indexOf('.') + 1) : key;
1924               if (Config.allowedReplaceKeys.contains(mkey) || Config.allowedMergeKeys.contains(mkey)) {
1925                 tmpData.put(key, value);
1926               }
1927             }
1928           } else {
1929             log.warning("Error occurred reading config file", "file", _locatorFile);
1930           }
1931         } else {
1932           log.warning("Given locator file does not exist", "file", _locatorFile);
1933         }
1934         
1935         locatorConfig = new Config(tmpData);
1936         
1937       } catch (Exception e) {
1938         log.warning("Failure reading locator file",  "file", _locatorFile, e);
1939       }
1940       
1941       return locatorConfig;
1942     }
1943     
1944     public String getAppbase() {
1945         return _appbase;
1946     }
1947     
1948     protected final EnvConfig _envc;
1949     protected File _config;
1950     protected File _backupConfig;
1951     protected Digest _digest;
1952
1953     protected long _version = -1;
1954     protected long _targetVersion = -1;
1955     protected String _appbase;
1956     protected URL _vappbase;
1957     protected URL _latest;
1958     protected String _class;
1959     protected String _dockName;
1960     protected String _dockIconPath;
1961     protected boolean _strictComments;
1962     protected boolean _windebug;
1963     protected boolean _allowOffline;
1964     protected int _maxConcDownloads;
1965
1966     protected String _trackingURL;
1967     protected Set<Integer> _trackingPcts;
1968     protected String _trackingCookieName;
1969     protected String _trackingCookieProperty;
1970     protected String _trackingURLSuffix;
1971     protected String _trackingGAHash;
1972     protected long _trackingStart;
1973     protected int _trackingId;
1974
1975     protected String _javaVersionProp = "java.version";
1976     protected String _javaVersionRegex = "(\\d+)(?:\\.(\\d+)(?:\\.(\\d+)(_\\d+)?)?)?";
1977     protected long _javaMinVersion, _javaMaxVersion;
1978     protected boolean _javaExactVersionRequired;
1979     protected String _javaLocation;
1980
1981     protected List<Resource> _codes = new ArrayList<>();
1982     protected List<Resource> _resources = new ArrayList<>();
1983
1984     protected boolean _useCodeCache;
1985     protected int _codeCacheRetentionDays;
1986
1987     protected Map<String,AuxGroup> _auxgroups = new HashMap<>();
1988     protected Map<String,Boolean> _auxactive = new HashMap<>();
1989
1990     protected List<String> _jvmargs = new ArrayList<>();
1991     protected List<String> _appargs = new ArrayList<>();
1992
1993     protected String[] _optimumJvmArgs;
1994
1995     protected List<String> _txtJvmArgs = new ArrayList<>();
1996
1997     /** If a warning has been issued about not being able to set modtimes. */
1998     protected boolean _warnedAboutSetLastModified;
1999
2000     /** Locks gettingdown.lock in the app dir. Held the entire time updating is going on.*/
2001     protected FileLock _lock;
2002
2003     /** Channel to the file underlying _lock.  Kept around solely so the lock doesn't close. */
2004     protected FileChannel _lockChannel;
2005
2006     protected Random _rando = new Random();
2007
2008     protected static final String[] EMPTY_STRING_ARRAY = new String[0];
2009
2010     protected static final String ENV_VAR_PREFIX = "%ENV.";
2011     protected static final Pattern ENV_VAR_PATTERN = Pattern.compile("%ENV\\.(.*?)%");
2012  
2013     protected static File _locatorFile;
2014     protected static List<File> _startupFiles = new ArrayList<>();
2015     public static final String LOCATOR_FILE_EXTENSION = "jvl";
2016 }