summaryrefslogtreecommitdiff
path: root/voctogui/lib
diff options
context:
space:
mode:
Diffstat (limited to 'voctogui/lib')
-rw-r--r--voctogui/lib/config.py8
-rw-r--r--voctogui/lib/connection.py46
2 files changed, 54 insertions, 0 deletions
diff --git a/voctogui/lib/config.py b/voctogui/lib/config.py
index b06075c..b18acfb 100644
--- a/voctogui/lib/config.py
+++ b/voctogui/lib/config.py
@@ -1,14 +1,22 @@
#!/usr/bin/python3
+import logging
import os.path
from configparser import SafeConfigParser
from lib.args import Args
+import lib.connection as Connection
__all__ = ['Config']
def getlist(self, section, option):
return [x.strip() for x in self.get(section, option).split(',')]
+def fetchRemoteConfig(self):
+ log = logging.getLogger('Config')
+ log.info("reading server-config %s", Connection)
+ Connection.ask('config')
+
SafeConfigParser.getlist = getlist
+SafeConfigParser.fetchRemoteConfig = fetchRemoteConfig
files = [
os.path.join(os.path.dirname(os.path.realpath(__file__)), '../default-config.ini'),
diff --git a/voctogui/lib/connection.py b/voctogui/lib/connection.py
new file mode 100644
index 0000000..ac7243d
--- /dev/null
+++ b/voctogui/lib/connection.py
@@ -0,0 +1,46 @@
+#!/usr/bin/python3
+import logging
+import socket
+
+log = logging.getLogger('Connection')
+sock = None
+port = 9999
+
+def establish(host):
+ log.info('establishing Connection to %s', host)
+ sock = socket.create_connection( (host, port) )
+ log.debug('Connection successful \o/')
+ # TODO: register IO callback here
+
+
+def send(command):
+ print("would send command talk to server now and read back the response")
+ filelike = sock.makefile('rw')
+ filelike.write(command + "\n")
+ filelike.flush()
+
+
+def on_data(args*):
+ filelike = sock.makefile()
+ line = ''
+ try:
+ line = filelike.readline()
+ except Exception as e:
+ log.warn("Can't read from socket: %s", e)
+
+ if len(line) == 0:
+ close_connection()
+ return False
+
+ line = line.strip()
+
+ process_line(line)
+
+
+def process_line(line):
+ msg_type = line.split()[0]
+
+
+def close_connection():
+ pass
+