summaryrefslogtreecommitdiff
path: root/tests/server-test.vala
blob: 77aceaf821e4ec1e15bd262c5001b5087d301ca2 (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
using GLib;
using GUPnP;

/*
 * TODO: 
 *  * make this example actually work ...
 *  
 *  * call setlocale
 *  * SIGTERM handler?
 */

public class Test.ServerTest : Object {
    Service content_dir;

    public static int main (string[] args) {
        Test.ServerTest test = new ServerTest ();
        return test.run (args);
    }

    private int run (string[] args) {
        Context ctxt;

        try {
            ctxt = new Context (null, null, 0);
        } catch (Error err) {
            critical (err.message);
            return 1;
        }

        print ("Running on port %u\n", ctxt.port);

        /* Create root device. Needs description.xml in working directory */
        RootDevice dev = new RootDevice (ctxt, "description.xml", ".");
        if (dev == null) {
            critical ("Creating root device failed");
            return 1;
        }

        /* Implement Browse action on ContentDirectory if available */
        content_dir =
            (Service) dev.get_service (
                    "urn:schemas-upnp-org:service:ContentDirectory");
        if (content_dir != null) {
            content_dir.action_invoked["Browse"].connect (on_browse);
            content_dir.notify_failed.connect (on_notify_failed);
            Timeout.add (5000, timeout);
        }

        dev.available = true;

        MainLoop loop = new MainLoop (null, false);
        loop.run();

        return 0;
    }

    private void on_browse (Service service, owned ServiceAction action) {
        print ("Browse action was invoked\n");

        print ("\tLocales: ");
        GLib.List<string> locales = action.get_locales ();
        foreach (string locale in locales)
            print ("%s,", locale);
        print ("\n");

        string filter;
        action.get ("Filter", typeof (string), out filter,
                    null);
        print ("\tFilter: %s\n", filter);

        action.set ("Result", typeof (string), "Hello world",
                    "NumberReturned", typeof (int), 0,
                    "TotalMatches", typeof (int), 0,
                    "UpdateID", typeof (int), 31415927,
                    null);

        action.return ();
    }

    private void on_notify_failed (Service service,
                                   List    callback_url,
                                   Error   reason) {
        print ("NOTIFY failed: %s\n", reason.message);
    }

    private bool timeout () {
        content_dir.notify ("SystemUpdateID",
                            typeof (uint),
                            27182818,
                            null);
        return false;
    }

}