summaryrefslogtreecommitdiffstats
path: root/avahi-sharp/AvahiTest.cs
blob: df95b906c6406ddea36e76649cadb6974cc135fa (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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/* $Id$ */

/***
    This file is part of avahi.

    avahi is free software; you can redistribute it and/or modify it
    under the terms of the GNU Lesser General Public License as
    published by the Free Software Foundation; either version 2.1 of the
    License, or (at your option) any later version.

    avahi 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 Lesser General
    Public License for more details.

    You should have received a copy of the GNU Lesser General Public
    License along with avahi; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
    USA.
***/

using System;
using System.Collections;
using System.Text;
using System.Net;
using Avahi;

public class AvahiTest {
    private static Client client;
    private static ArrayList objects = new ArrayList ();

    public static void Main () {
        client = new Client ();

	Console.WriteLine ("joined service name: " + EntryGroup.JoinServiceName ("FooBar", "_foo", "local"));

        EntryGroup eg = new EntryGroup (client);
        eg.StateChanged += OnEntryGroupChanged;
        eg.AddService ("foobar2", "_daap._tcp", client.DomainName,
                       444, new string[] { "foo", "bar", "baz" });
        eg.Commit ();
        Console.WriteLine ("Press enter to quit");
        Console.ReadLine ();
    }

    private static void OnEntryGroupChanged (object o, EntryGroupStateArgs args)
    {
        Console.WriteLine ("Entry group status: " + args.State);
        if (args.State == EntryGroupState.Established) {
            DomainBrowser browser = new DomainBrowser (client);
            objects.Add (browser);
            
            browser.DomainAdded += OnDomainAdded;
        }
    }

    private static void OnDomainAdded (object o, DomainInfoArgs args)
    {
        Console.WriteLine ("Got domain added: " + args.Domain.Domain);
        BrowseServiceTypes (args.Domain.Domain);
    }

    private static void BrowseServiceTypes (string domain)
    {
        ServiceTypeBrowser stb = new ServiceTypeBrowser (client, domain);
        objects.Add (stb);
        
        stb.CacheExhausted += OnCacheExhausted;
        stb.ServiceTypeAdded += OnServiceTypeAdded;
    }

    private static void OnCacheExhausted (object o, EventArgs args)
    {
        Console.WriteLine ("Cache is exhausted");
    }

    private static void OnServiceTypeAdded (object o, ServiceTypeInfoArgs args)
    {
        Console.WriteLine ("Got service type: " + args.ServiceType.ServiceType);
        ServiceBrowser sb = new ServiceBrowser (client, args.ServiceType.ServiceType, args.ServiceType.Domain);
        objects.Add (sb);
        
        sb.ServiceAdded += OnServiceAdded;
    }

    private static void OnServiceAdded (object o, ServiceInfoArgs args)
    {
        // Console.WriteLine ("Got service: " + info.Name);
        ServiceResolver resolver = new ServiceResolver (client, args.Service);
        objects.Add (resolver);
        resolver.Found += OnServiceResolved;
    }

    private static void OnServiceResolved (object o, ServiceInfoArgs args)
    {
        objects.Remove (o);
        
        Console.WriteLine ("Service '{0}' at {1}:{2}", args.Service.Name, args.Service.HostName, args.Service.Port);
        foreach (byte[] bytes in args.Service.Text) {
            Console.WriteLine ("Text: " + Encoding.UTF8.GetString (bytes));
        }
        AddressResolver ar = new AddressResolver (client, args.Service.Address);
        objects.Add (ar);
        
        ar.Found += OnAddressResolved;
    }

    private static void OnAddressResolved (object o, HostAddressArgs args)
    {
        objects.Remove (o);
        
        Console.WriteLine ("Resolved {0} to {1}", args.Address, args.Host);
        HostNameResolver hr = new HostNameResolver (client, args.Host);
        objects.Add (hr);
        
        hr.Found += OnHostNameResolved;
    }

    private static void OnHostNameResolved (object o, HostAddressArgs args)
    {
        objects.Remove (o);
        Console.WriteLine ("Resolved {0} to {1}", args.Host, args.Address);
    }
}