diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-05-14 04:02:00 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-05-14 04:02:00 +0200 |
commit | 1277312b41c4c4645f862e203ed88ac491d9ae2d (patch) | |
tree | da09163dbc23511a9230bacf27be144794826f31 /test.d | |
parent | add fix export of variable (diff) | |
download | mds-1277312b41c4c4645f862e203ed88ac491d9ae2d.tar.gz mds-1277312b41c4c4645f862e203ed88ac491d9ae2d.tar.bz2 mds-1277312b41c4c4645f862e203ed88ac491d9ae2d.tar.xz |
m + add test client
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'test.d')
-rwxr-xr-x | test.d/dumb-client | 59 | ||||
-rwxr-xr-x | test.d/mdsinitrc | 19 |
2 files changed, 77 insertions, 1 deletions
diff --git a/test.d/dumb-client b/test.d/dumb-client new file mode 100755 index 0000000..4868813 --- /dev/null +++ b/test.d/dumb-client @@ -0,0 +1,59 @@ +#!/usr/bin/env python3 +# -*- python -*- + +# mds — A micro-display server +# Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +import os +import sys +import socket +import threading + + +display = os.environ['MDS_DISPLAY'] if 'MDS_DISPLAY' in os.environ else None +if (display is None) or (':' not in display): + print('MDS_DISPLAY has not set.') + sys.exit(1) +if not display.startswith(':'): + print('Remote mds sessions are not supported.') + sys.exit(1) + +socket_path = '/run/mds/%s.socket' % display.split(':')[-1] +socket = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM) +socket.connect(socket_path) + +def read_loop(): + data = socket.recv(1); + if not data: + return + sys.stdout.buffer.write(b'\033[34m'); + sys.stdout.buffer.write(data); + sys.stdout.buffer.write(b'\033[00m'); + sys.stdout.buffer.flush(); + +thread = threading.Thread(target = read_loop) +thread.setDaemon(True) +thread.start() + +while True: + try: + data = input().encode('utf-8') + except: + break + socket.send(data); + +socket.close() + diff --git a/test.d/mdsinitrc b/test.d/mdsinitrc index ca28224..c27cdc0 100755 --- a/test.d/mdsinitrc +++ b/test.d/mdsinitrc @@ -1,8 +1,25 @@ #!/bin/bash -echo "Successfully spawned mdsinitrc. " +# mds — A micro-display server +# Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +echo "Successfully spawned mdsinitrc. " +cd test.d export XDG_CONFIG_HOME="${OLD_XDG_CONFIG_HOME}" unset OLD_XDG_CONFIG_HOME if [ -z "${XDG_CONFIG_HOME}" ]; then |