Files
i2p.i2p/launchers/macosx/I2PLauncher/routermgmt/RouterRunner.swift
meeh 7615b9236b Adding all new code, removed a lot obsolete code and fixed import paths etc.
Mac OS X launcher:
* UI built on Swift
  * Why?
    * Apple seems to on purpose make it harder to get into Objective-C these days
    * Swift is compiled to native code, but has easiness of Javascript in programming
    * Perfect for the OS X UI, many guides & tutorials as well
* "Backend" in Objective-C++ / C++14
  * Why?
    * Originally written in Objective-C / C++14 with C++17 backports
    * Only for backend because of the time the development takes
    *

Short summary of features:

* Java
  * It can detect java from:
    * JAVA_HOME environment variable
    * "Internet Plug-Ins" Apple stuff
    * By the /usr/libexec/java_home binary helper
  * It can unpack a new version of I2P
    * Unpacks to ~/Library/I2P
    * Can check currently unpacked version in ~/Library/I2P via i2p.jar's "net.i2p.CoreVersion"

  * User Interface (a popover, see https://youtu.be/k8L3lQ5rUq0 for example of this concept)
    * Router control tab view
      * It can start the router
      * It can stop the router
      * It can detect already running router, then avoid fireing up one
      * It can show basic information about the router state & version
    * Log view tab (not yet done)
  * While left-click triggers popover, right-click draws a minimal context menu
2018-09-18 15:36:38 +00:00

70 lines
1.8 KiB
Swift

//
// RouterRunner.swift
// I2PLauncher
//
// Created by Mikal Villa on 18/09/2018.
// Copyright © 2018 The I2P Project. All rights reserved.
//
import Foundation
class RouterRunner: NSObject, I2PSubprocess {
var subprocessPath: String?
var arguments: String?
var timeWhenStarted: Date?
var currentRunningProcess: Subprocess?
var currentProcessResults: ExecutionResult?
func findJava() {
self.subprocessPath = RouterProcessStatus.knownJavaBinPath
}
let defaultStartupFlags:[String] = [
"-Xmx512M",
"-Xms128m",
"-Djava.awt.headless=true",
"-Dwrapper.logfile=/tmp/router.log",
"-Dwrapper.logfile.loglevel=DEBUG",
"-Dwrapper.java.pidfile=/tmp/routerjvm.pid",
"-Dwrapper.console.loglevel=DEBUG"
]
private func subInit(cmdPath: String?, cmdArgs: String?) {
// Use this as common init
self.subprocessPath = cmdPath
self.arguments = cmdArgs
if (self.arguments?.isEmpty)! {
self.arguments = Optional.some(defaultStartupFlags.joined(separator: " "))
};
var newArgs:[String] = ["-c ",
self.subprocessPath!,
" ",
self.arguments!,
]
self.currentRunningProcess = Optional.some(Subprocess.init(executablePath: "/bin/sh", arguments: newArgs))
}
init(cmdPath: String?, _ cmdArgs: String? = Optional.none) {
super.init()
self.subInit(cmdPath: cmdPath, cmdArgs: cmdArgs)
}
init(coder: NSCoder) {
super.init()
self.subInit(cmdPath: Optional.none, cmdArgs: Optional.none)
}
func execute() {
if (self.currentRunningProcess != Optional.none!) {
print("Already executing! Process ", self.toString())
}
self.timeWhenStarted = Date()
RouterProcessStatus.routerStartedAt = self.timeWhenStarted
self.currentProcessResults = self.currentRunningProcess?.execute(captureOutput: true)
}
}