|
@@ -29,7 +29,6 @@ import java.util.concurrent.Executors;
|
|
|
@Singleton
|
|
|
public class Cryptomator {
|
|
|
|
|
|
- private static final Environment ENV = Environment.getInstance();
|
|
|
private static final long STARTUP_TIME = System.currentTimeMillis();
|
|
|
// DaggerCryptomatorComponent gets generated by Dagger.
|
|
|
// Run Maven and include target/generated-sources/annotations in your IDE.
|
|
@@ -38,13 +37,15 @@ public class Cryptomator {
|
|
|
|
|
|
private final DebugMode debugMode;
|
|
|
private final SupportedLanguages supportedLanguages;
|
|
|
+ private final Environment env;
|
|
|
private final Lazy<IpcMessageHandler> ipcMessageHandler;
|
|
|
private final ShutdownHook shutdownHook;
|
|
|
|
|
|
@Inject
|
|
|
- Cryptomator(DebugMode debugMode, SupportedLanguages supportedLanguages, Lazy<IpcMessageHandler> ipcMessageHandler, ShutdownHook shutdownHook) {
|
|
|
+ Cryptomator(DebugMode debugMode, SupportedLanguages supportedLanguages, Environment env, Lazy<IpcMessageHandler> ipcMessageHandler, ShutdownHook shutdownHook) {
|
|
|
this.debugMode = debugMode;
|
|
|
this.supportedLanguages = supportedLanguages;
|
|
|
+ this.env = env;
|
|
|
this.ipcMessageHandler = ipcMessageHandler;
|
|
|
this.shutdownHook = shutdownHook;
|
|
|
}
|
|
@@ -63,6 +64,7 @@ public class Cryptomator {
|
|
|
System.out.printf("Cryptomator version %s (build %s)%n", appVer, buildNumber);
|
|
|
return;
|
|
|
}
|
|
|
+ PropertiesPreprocessor.run();
|
|
|
int exitCode = CRYPTOMATOR_COMPONENT.application().run(args);
|
|
|
LOG.info("Exit {}", exitCode);
|
|
|
System.exit(exitCode); // end remaining non-daemon threads.
|
|
@@ -75,9 +77,9 @@ public class Cryptomator {
|
|
|
* @return Nonzero exit code in case of an error.
|
|
|
*/
|
|
|
private int run(String[] args) {
|
|
|
- ENV.log();
|
|
|
+ env.log();
|
|
|
LOG.debug("Dagger graph initialized after {}ms", System.currentTimeMillis() - STARTUP_TIME);
|
|
|
- LOG.info("Starting Cryptomator {} on {} {} ({})", ENV.getAppVersion(), SystemUtils.OS_NAME, SystemUtils.OS_VERSION, SystemUtils.OS_ARCH);
|
|
|
+ LOG.info("Starting Cryptomator {} on {} {} ({})", env.getAppVersion(), SystemUtils.OS_NAME, SystemUtils.OS_VERSION, SystemUtils.OS_ARCH);
|
|
|
debugMode.initialize();
|
|
|
supportedLanguages.applyPreferred();
|
|
|
|
|
@@ -85,7 +87,7 @@ public class Cryptomator {
|
|
|
* Attempts to create an IPC connection to a running Cryptomator instance and sends it the given args.
|
|
|
* If no external process could be reached, the args will be handled by the loopback IPC endpoint.
|
|
|
*/
|
|
|
- try (var communicator = IpcCommunicator.create(ENV.ipcSocketPath().toList())) {
|
|
|
+ try (var communicator = IpcCommunicator.create(env.ipcSocketPath().toList())) {
|
|
|
if (communicator.isClient()) {
|
|
|
communicator.sendHandleLaunchargs(List.of(args));
|
|
|
communicator.sendRevealRunningApp();
|