blob: 54cc7664cf8597152d28cc40825d20332d7da41d [file] [log] [blame]
/*=============================================================================#
# Copyright (c) 2005, 2019 Stephan Wahlbrink and others.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# Stephan Wahlbrink <sw@wahlbrink.eu> - initial API and implementation
#=============================================================================*/
using System;
using System.Collections;
namespace RGWConnector {
/// <summary>
/// Controller for Controller methods.
/// </summary>
class Connector {
/// <summary>
/// Der Haupteintrittspunkt f�r die Anwendung.
/// </summary>
[STAThread]
static void Main(string[] args) {
if (args.Length == 0) {
return;
}
try {
string cmd = args[0];
RHandler handler = new RHandler();
if (cmd == "donothing") {
handler.connect();
}
else if (cmd == "submitinput") {
string[] text = readInput();
handler.connect();
handler.submit(text);
}
else if (cmd == "pasteclipboard") {
handler.connect();
handler.sendPasteClipboard();
}
}
catch (Exception e) {
Console.Error.WriteLine(e.Message);
Environment.ExitCode = 100;
}
finally { }
}
private static string[] readInput() {
ArrayList text = new ArrayList();
string line;
while ((line = Console.ReadLine()) != null) {
text.Add(line);
}
string[] array = (string[]) text.ToArray("".GetType());
if (array == null) {
return new string[0];
}
return array;
}
}
}