forked from I2P_Developers/i2p.i2p

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
82 lines
1.8 KiB
Objective-C
82 lines
1.8 KiB
Objective-C
#pragma once
|
|
|
|
#include <dispatch/dispatch.h>
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <Cocoa/Cocoa.h>
|
|
#import <AppKit/AppKit.h>
|
|
|
|
#include "optional.hpp"
|
|
#include "subprocess.hpp"
|
|
|
|
|
|
@class RTaskOptions;
|
|
@interface RTaskOptions : NSObject
|
|
@property (strong) NSString* binPath;
|
|
@property (strong) NSArray<NSString *>* arguments;
|
|
@property (strong) NSString* i2pBaseDir;
|
|
@end
|
|
|
|
@class I2PRouterTask;
|
|
@interface I2PRouterTask : NSObject
|
|
@property (strong) NSTask* routerTask;
|
|
@property (strong) NSUserDefaults *userPreferences;
|
|
@property (strong) NSFileHandle *readLogHandle;
|
|
@property (strong) NSMutableData *totalLogData;
|
|
@property (strong) NSPipe *processPipe;
|
|
@property (strong) NSFileHandle *input;
|
|
@property (atomic) BOOL isRouterRunning;
|
|
@property (atomic) BOOL userRequestedRestart;
|
|
- (instancetype) initWithOptions : (RTaskOptions*) options;
|
|
- (int) execute;
|
|
- (void) requestShutdown;
|
|
- (void) requestRestart;
|
|
- (BOOL) isRunning;
|
|
- (int) getPID;
|
|
- (void)routerStdoutData:(NSNotification *)notification;
|
|
@end
|
|
|
|
|
|
|
|
using namespace subprocess;
|
|
|
|
class JavaRunner;
|
|
|
|
typedef std::function<void(void)> fp_t;
|
|
typedef std::function<void(JavaRunner *ptr)> fp_proc_t;
|
|
|
|
|
|
|
|
/**
|
|
*
|
|
* class JavaRunner
|
|
*
|
|
**/
|
|
class JavaRunner
|
|
{
|
|
public:
|
|
// copy fn
|
|
JavaRunner(std::string& javaBin, std::string& arguments, std::string& i2pBaseDir, const fp_proc_t& executingFn, const fp_t& cb);
|
|
~JavaRunner() = default;
|
|
|
|
static const std::vector<NSString*> defaultStartupFlags;
|
|
static const std::vector<std::string> defaultFlagsForExtractorJob;
|
|
|
|
void requestRouterShutdown();
|
|
|
|
std::experimental::optional<std::future<int> > execute();
|
|
std::shared_ptr<Popen> javaProcess;
|
|
std::string javaBinaryPath;
|
|
std::string javaRouterArgs;
|
|
std::string execLine;
|
|
std::string _i2pBaseDir;
|
|
private:
|
|
const fp_proc_t& executingFn;
|
|
const fp_t& exitCallbackFn;
|
|
};
|
|
|
|
|