aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaZderMind <git@mazdermind.de>2015-08-15 13:22:34 +0200
committerMaZderMind <git@mazdermind.de>2015-08-31 20:01:18 +0200
commit5c243f1cac5cc489f3bbb821ab5064d9edf7d449 (patch)
treef93aecc72a95a45ad6f936f562d5b3fdaf422877
parenta004948051e182edb3a7e40f1f7f2e14bebb0e0e (diff)
basic connection
-rw-r--r--voctogui/default-config.ini3
-rw-r--r--voctogui/lib/config.py8
-rw-r--r--voctogui/lib/connection.py15
-rwxr-xr-xvoctogui/voctogui.py10
4 files changed, 36 insertions, 0 deletions
diff --git a/voctogui/default-config.ini b/voctogui/default-config.ini
index 28ffc0c..03b0300 100644
--- a/voctogui/default-config.ini
+++ b/voctogui/default-config.ini
@@ -1,3 +1,6 @@
+[server]
+host=localhost
+
[previews]
width=320
#height=180
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..37851f0
--- /dev/null
+++ b/voctogui/lib/connection.py
@@ -0,0 +1,15 @@
+#!/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/')
+
+def ask(command):
+ print("would send command talk to server now and read back the response")
diff --git a/voctogui/voctogui.py b/voctogui/voctogui.py
index 52bc3c0..932b8f9 100755
--- a/voctogui/voctogui.py
+++ b/voctogui/voctogui.py
@@ -24,8 +24,11 @@ Gst.init([])
# import local classes
from lib.args import Args
+from lib.config import Config
from lib.ui import Ui
+import lib.connection as Connection
+
# main class
class Voctogui(object):
def __init__(self):
@@ -100,6 +103,13 @@ def main():
logging.info('Python Version: %s', sys.version_info)
logging.info('GStreamer Version: %s', Gst.version())
+ # connect to server
+ Connection.establish(
+ Config.get('server', 'host'))
+
+ # fetch serverconfig from server
+ Config.fetchRemoteConfig()
+
# init main-class and main-loop
logging.debug('initializing Voctogui')
voctogui = Voctogui()