1 /*
   2  * Copyright (c) 2014, 2015, Oracle and/or its affiliates.
   3  * All rights reserved. Use is subject to license terms.
   4  *
   5  * This file is available and licensed under the following license:
   6  *
   7  * Redistribution and use in source and binary forms, with or without
   8  * modification, are permitted provided that the following conditions
   9  * are met:
  10  *
  11  *  - Redistributions of source code must retain the above copyright
  12  *    notice, this list of conditions and the following disclaimer.
  13  *  - Redistributions in binary form must reproduce the above copyright
  14  *    notice, this list of conditions and the following disclaimer in
  15  *    the documentation and/or other materials provided with the distribution.
  16  *  - Neither the name of Oracle Corporation nor the names of its
  17  *    contributors may be used to endorse or promote products derived
  18  *    from this software without specific prior written permission.
  19  *
  20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31  */
  32 
  33 
  34 #ifndef PACKAGE_H
  35 #define PACKAGE_H
  36 
  37 
  38 #include "Platform.h"
  39 #include "PlatformString.h"
  40 #include "FilePath.h"
  41 #include "PropertyFile.h"
  42 
  43 #include <map>
  44 #include <list>
  45 
  46 class PackageBootFields {
  47 public:
  48     enum MemoryState {msManual, msAuto};
  49 
  50 public:
  51     OrderedMap<TString, TString> FJVMArgs;
  52     std::list<TString> FArgs;
  53 
  54     TString FPackageRootDirectory;
  55     TString FPackageAppDirectory;
  56     TString FPackageLauncherDirectory;
  57     TString FAppDataDirectory;
  58     TString FAppID;
  59     TString FPackageAppDataDirectory;
  60     TString FClassPath;
  61     TString FModulePath;
  62     TString FMainJar;
  63     TString FMainClassName;
  64     bool FIsRuntimeBundled;
  65     TString FJVMRuntimeDirectory;
  66     TString FJVMLibraryFileName;
  67     TString FSplashScreenFileName;
  68     bool FUseJavaPreferences;
  69     TString FCommandName;
  70 
  71     TString FAppCDSCacheFileName;
  72 
  73     TPlatformNumber FMemorySize;
  74     MemoryState FMemoryState;
  75 };
  76 
  77 
  78 class Package {
  79 private:
  80     Package(Package const&); // Don't Implement.
  81     void operator=(Package const&); // Don't implement
  82 
  83 private:
  84     bool FInitialized;
  85     PackageBootFields* FBootFields;
  86     TString FJVMUserArgsConfigFileName;
  87     TString FAppCDSCacheDirectory;
  88 
  89     DebugState FDebugging;
  90 
  91     OrderedMap<TString, TString> FJVMUserArgsOverrides;
  92     OrderedMap<TString, TString> FDefaultJVMUserArgs; // Contains JVM user defaults
  93     OrderedMap<TString, TString> FJVMUserArgs; // Contains a merge of JVM defaults and user overrides
  94 
  95 
  96     Package(void);
  97 
  98     //void Initialize();
  99     void MergeJVMDefaultsWithOverrides();
 100     TString GetMainJar();
 101     void SaveJVMUserArgOverrides(OrderedMap<TString, TString> Data);
 102     void ReadJVMArgs(ISectionalPropertyContainer* Config);
 103     void PromoteAppCDSState(ISectionalPropertyContainer* Config);
 104 
 105 public:
 106     static Package& GetInstance();
 107     ~Package(void);
 108 
 109     void Initialize();
 110     void Clear();
 111     void FreeBootFields();
 112 
 113     void SetCommandLineArguments(int argc, TCHAR* argv[]);
 114 
 115     OrderedMap<TString, TString> GetJVMArgs();
 116     OrderedMap<TString, TString> GetDefaultJVMUserArgs();
 117     OrderedMap<TString, TString> GetJVMUserArgOverrides();
 118     void SetJVMUserArgOverrides(OrderedMap<TString, TString> Value);
 119     OrderedMap<TString, TString> GetJVMUserArgs();
 120 
 121     std::list<TString> GetArgs();
 122 
 123     TString GetPackageRootDirectory();
 124     TString GetPackageAppDirectory();
 125     TString GetPackageLauncherDirectory();
 126     TString GetAppDataDirectory();
 127 
 128     TString GetJVMUserArgsConfigFileName();
 129     TString GetAppCDSCacheDirectory();
 130     TString GetAppCDSCacheFileName();
 131 
 132     TString GetAppID();
 133     TString GetPackageAppDataDirectory();
 134     TString GetClassPath();
 135     TString GetModulePath();
 136     TString GetMainClassName();
 137     bool IsRuntimeBundled();
 138     TString GetJVMLibraryFileName();
 139     TString GetJVMRuntimeDirectory();
 140     TString GetSplashScreenFileName();
 141     bool HasSplashScreen();
 142     TString GetCommandName();
 143 
 144     TPlatformNumber GetMemorySize();
 145     PackageBootFields::MemoryState GetMemoryState();
 146 
 147     DebugState Debugging();
 148 };
 149 
 150 #endif //PACKAGE_H