Add command control via named pipe
authorTomas Wenström <tomas.wenstrom@gmail.com>
Tue, 26 Nov 2019 21:53:32 +0000 (22:53 +0100)
committerTomas Wenström <tomas.wenstrom@gmail.com>
Tue, 26 Nov 2019 21:53:32 +0000 (22:53 +0100)
src/kaka/cakelight/CakeLight.java
src/kaka/cakelight/Console.java
src/kaka/cakelight/PipeController.java [new file with mode: 0644]

index 4b37bd7..65d325c 100644 (file)
@@ -34,7 +34,8 @@ public class CakeLight {
     }
 
     public void startLoop() {
-        Console.start(this, config);
+        Console console = Console.start(this, config);
+        PipeController.start(console);
         initNativeHook();
         // TODO
 //        FrameGrabber grabber = FrameGrabber.from(config);
index cf72cce..f32ba98 100644 (file)
@@ -11,18 +11,18 @@ import java.util.Map;
 public class Console extends Thread {
     private CakeLight cakelight;
     private Configuration config;
-    private BufferedReader reader;
     private Map<String, Command> commands = new HashMap<>();
     private List<Command> commandList = new ArrayList<>();
 
-    public static void start(CakeLight cakelight, Configuration config) {
-        new Console(cakelight, config).start();
+    public static Console start(CakeLight cakelight, Configuration config) {
+       Console console = new Console(cakelight, config);
+       console.start();
+       return console;
     }
 
     private Console(CakeLight cakelight, Configuration config) {
         this.cakelight = cakelight;
        this.config = config;
-       reader = new BufferedReader(new InputStreamReader(System.in));
        register(new HelpCommand());
        register(Commands.quit());
        register(Commands.video());
@@ -70,28 +70,32 @@ public class Console extends Thread {
     @Override
     public void run() {
         while (true) {
-            System.out.print("> ");
-            try {
-                String input = reader.readLine();
-               String[] splitInput = input.split("\\s+", 2);
-               String name = splitInput[0];
-               String[] args = splitInput.length == 2
-                       ? splitInput[1].split("\\s+")
-                       : new String[]{};
-
-               Command cmd = commands.get(name);
-               if (cmd != null) {
-                   cmd.activate(this, args);
-               } else {
-                   out("no command named '" + name + "'");
-               }
-            } catch (IOException e) {
-                System.out.println("Error reading from command line");
-                break;
-            }
+           System.out.print("> ");
+           try (BufferedReader reader = new BufferedReader(new InputStreamReader(System.in))) {
+               String input = reader.readLine();
+               handleInput(input);
+           } catch (IOException e) {
+               System.out.println("Error reading from command line");
+               break;
+           }
         }
     }
 
+    void handleInput(String input) {
+       String[] splitInput = input.split("\\s+", 2);
+       String name = splitInput[0];
+       String[] args = splitInput.length == 2
+               ? splitInput[1].split("\\s+")
+               : new String[]{};
+
+       Command cmd = commands.get(name);
+       if (cmd != null) {
+           cmd.activate(this, args);
+       } else {
+           out("no command named '" + name + "'");
+       }
+    }
+
     void out(String text) {
        System.out.println("(" + text + ")");
     }
diff --git a/src/kaka/cakelight/PipeController.java b/src/kaka/cakelight/PipeController.java
new file mode 100644 (file)
index 0000000..10ed6be
--- /dev/null
@@ -0,0 +1,42 @@
+package kaka.cakelight;
+
+import java.io.BufferedReader;
+import java.io.File;
+import java.io.FileReader;
+import java.io.IOException;
+
+public class PipeController extends Thread {
+    private static final String PIPE = "cakectrl";
+    private Console console;
+
+    public static void start(Console console) {
+       new PipeController(console).start();
+    }
+
+    private PipeController(Console console) {
+        this.console = console;
+    }
+
+    @Override
+    public void run() {
+        while (true) {
+            createPipe();
+            try (BufferedReader reader = new BufferedReader(new FileReader(new File(PIPE)))) {
+                String input;
+                while ((input = reader.readLine()) != null) {
+                    console.handleInput(input);
+                }
+            } catch (IOException e) {
+                System.out.println("Error reading from pipe '" + PIPE + "'");
+            }
+        }
+    }
+
+    private void createPipe() {
+        try {
+            Runtime.getRuntime().exec("mkfifo " + PIPE);
+        } catch (IOException e) {
+            e.printStackTrace();
+        }
+    }
+}