aboutsummaryrefslogtreecommitdiff
path: root/pyapd/ctl_client.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyapd/ctl_client.py')
-rw-r--r--pyapd/ctl_client.py28
1 files changed, 28 insertions, 0 deletions
diff --git a/pyapd/ctl_client.py b/pyapd/ctl_client.py
new file mode 100644
index 0000000..8c692f9
--- /dev/null
+++ b/pyapd/ctl_client.py
@@ -0,0 +1,28 @@
+import json
+import socket
+
+import guacamole
+
+
+class ClientCommand(guacamole.Command):
+ def send_command(self, cmd):
+ print("Sending command", cmd)
+ s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
+ s.connect(self.config.ctl_socket)
+ s.send(json.dumps(cmd).encode())
+
+
+class Ping(ClientCommand):
+ def get_command(self):
+ return {"command": "ping"}
+
+ def invoked(self, ctx):
+ print(self.get_command)
+
+
+class AddObject(ClientCommand):
+ def get_command(self, obj: str):
+ return {
+ "command": "add_object",
+ "obj": obj,
+ }