summaryrefslogtreecommitdiff
path: root/examples/client/python/stream-tube-offerer.py
blob: b88f18042e126608dca4bb71b356a6bd16451bb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#!/usr/bin/env python

from __future__ import print_function
import sys
import os

import gi
from gi.repository import GObject, Gio
gi.require_version('TelepathyGLib', '0.12')
from gi.repository import TelepathyGLib as Tp

def usage():
    print("%s ACCOUNT CONTACT" % sys.argv[0])
    print("ACCOUNT is a Telepathy account name, use 'mc-tool list' to list all your accounts")
    print("CONTACT is a contact id such as badger@nyan.cat")

    sys.exit(1)

def offer_channel_cb(tube, result, loop):
    try:
        tube.offer_finish(result)
        print("tube offered")

    except GObject.GError as e:
        print("Failed to offer tube: %s" % e)
        sys.exit(1)

def tube_conn_closed(tube, error):
    print("Tube connection has been closed", error.message)

def channel_close_cb(tube, result, loop):
    try:
        tube.close_finish(result)
        print("tube channel closed")

    except GObject.GError as e:
        print("Failed to close tube channel: %s" % e)
        sys.exit(1)

def tube_incoming_cb(tube, tube_conn, loop):
    tube_conn.connect('closed', tube_conn_closed)

    contact = tube_conn.get_contact();

    print("Got IOStream from", contact.get_identifier())

    conn = tube_conn.get_socket_connection();

    # g_input_stream_read() can't be used from Python so we use the more
    # binding friendly GDataInputStream
    in_stream = Gio.DataInputStream (base_stream=conn.get_input_stream())
    out_stream = conn.get_output_stream()

    buf, len = in_stream.read_line_utf8(None)
    print("Received:", buf)

    print("Sending: Pong")
    out_stream.write("Pong\n", None)

    tube.close_async(channel_close_cb, contact)

def tube_invalidated_cb(tube, domain, code, message, loop):
    print("tube has been invalidated:", message)
    loop.quit()

def create_channel_cb(request, result, loop):
    try:
        (chan, context) = request.create_and_handle_channel_finish(result)

        chan.connect('incoming', tube_incoming_cb, loop)
        chan.connect('invalidated', tube_invalidated_cb, loop)

        chan.offer_async({}, offer_channel_cb, loop)

    except GObject.GError as e:
        print("Failed to create channel: %s" % e)
        sys.exit(1)

if __name__ == '__main__':
    Tp.debug_set_flags(os.getenv('EXAMPLE_DEBUG', ''))

    if len(sys.argv) != 3:
        usage()

    _, account_id, contact_id = sys.argv

    account_manager = Tp.AccountManager.dup()
    account = account_manager.ensure_account("%s%s" %
        (Tp.ACCOUNT_OBJECT_PATH_BASE, account_id))

    request_dict = {
        Tp.PROP_CHANNEL_CHANNEL_TYPE:
            Tp.IFACE_CHANNEL_TYPE_STREAM_TUBE,
        Tp.PROP_CHANNEL_TARGET_HANDLE_TYPE:
            int(Tp.HandleType.CONTACT),
        Tp.PROP_CHANNEL_TARGET_ID:
            contact_id,

        Tp.PROP_CHANNEL_TYPE_STREAM_TUBE_SERVICE: "ExampleService",
        }

    request = Tp.AccountChannelRequest.new(account, request_dict, 0)

    loop = GObject.MainLoop()
    request.create_and_handle_channel_async(None, create_channel_cb, loop)

    loop.run()