summaryrefslogtreecommitdiffstats
path: root/avahi-sharp/Client.cs
blob: b3815b32cb5d3120bacf2b83bad89c82ae5819bf (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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
/***
  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.Threading;
using System.Collections;
using System.Runtime.InteropServices;
using Mono.Unix;
using Mono.Unix.Native;

using Stdlib = Mono.Unix.Native.Stdlib;

namespace Avahi
{
    internal enum ResolverEvent {
        Found,
        Failure
    }

    internal enum BrowserEvent {
        Added,
        Removed,
        CacheExhausted,
        AllForNow,
        Failure
    }

    internal delegate int PollCallback (IntPtr ufds, uint nfds, int timeout);
    internal delegate void ClientCallback (IntPtr client, ClientState state, IntPtr userData);

    public delegate void ClientStateHandler (object o, ClientStateArgs state);

    public class ClientStateArgs : EventArgs
    {
        private ClientState state;
        private ErrorCode error;

        public ClientState State
        {
            get { return state; }
        }

        public ErrorCode Error
        {
            get { return error; }
        }

        public ClientStateArgs (ClientState state, ErrorCode error)
        {
            this.state = state;
            this.error = error;
        }
    }

    public enum Protocol {
        Unspecified = -1,
        IPv4 = 0,
        IPv6 = 1
    }

    internal enum ServerState {
        Invalid,
        Registering,
        Running,
        Collision
    }

    public enum ClientState {
        Registering = ServerState.Registering,
        Running = ServerState.Running,
        Collision = ServerState.Collision,
        Failure = 100,
        Connecting = 101
    }

    [Flags]
    public enum LookupFlags {
        None = 0,
        UseWideArea = 1,
        UseMulticast = 2,
	NoTxt = 4,
        NoAddress = 8
    }

    [Flags]
    public enum LookupResultFlags {
        None = 0,
        Cached = 1,
        WideArea = 2,
        Multicast = 4,
        Local = 8,
        OurOwn = 16,
    }

    [Flags]
    public enum ClientFlags {
        None = 0,
        IgnoreUserConfig = 1,
        NoFail = 2
    }

    public class Client : IDisposable
    {
        private IntPtr handle;
        private ClientCallback cb;
        private PollCallback pollcb;
        private IntPtr spoll;

        private Thread thread;

        [DllImport ("avahi-client")]
        private static extern IntPtr avahi_client_new (IntPtr poll, ClientFlags flags, ClientCallback handler,
                                                       IntPtr userData, out int error);

        [DllImport ("avahi-client")]
        private static extern void avahi_client_free (IntPtr handle);

        [DllImport ("avahi-client")]
        private static extern IntPtr avahi_client_get_version_string (IntPtr handle);

        [DllImport ("avahi-client")]
        private static extern IntPtr avahi_client_get_host_name (IntPtr handle);

        [DllImport ("avahi-client")]
        private static extern IntPtr avahi_client_get_domain_name (IntPtr handle);

        [DllImport ("avahi-client")]
        private static extern IntPtr avahi_client_get_host_name_fqdn (IntPtr handle);

        [DllImport ("avahi-client")]
        private static extern ClientState avahi_client_get_state (IntPtr handle);

        [DllImport ("avahi-client")]
        private static extern int avahi_client_errno (IntPtr handle);

        [DllImport ("avahi-common")]
        private static extern IntPtr avahi_simple_poll_new ();

        [DllImport ("avahi-common")]
        private static extern IntPtr avahi_simple_poll_get (IntPtr spoll);

        [DllImport ("avahi-common")]
        private static extern void avahi_simple_poll_free (IntPtr spoll);

        [DllImport ("avahi-common")]
        private static extern int avahi_simple_poll_loop (IntPtr spoll);

        [DllImport ("avahi-common")]
        private static extern void avahi_simple_poll_set_func (IntPtr spoll, PollCallback cb);

        [DllImport ("avahi-common")]
        private static extern void avahi_simple_poll_quit (IntPtr spoll);

        [DllImport ("avahi-client")]
        private static extern uint avahi_client_get_local_service_cookie (IntPtr client);

        [DllImport ("avahi-common")]
        private static extern int avahi_service_name_join (IntPtr buf, int len, byte[] name, byte[] type,
                                                           byte[] domain);

        [DllImport ("avahi-common")]
        private static extern int avahi_service_name_split (byte[] service, IntPtr name, int name_len,
                                                            IntPtr type, int type_len,
                                                            IntPtr domain, int domain_len);


        [DllImport ("libc")]
        private static extern int poll(IntPtr ufds, uint nfds, int timeout);

        public event ClientStateHandler StateChanged;

        internal IntPtr Handle
        {
            get { return handle; }
        }

        public string Version
        {
            get {
                lock (this) {
                    return Utility.PtrToString (avahi_client_get_version_string (handle));
                }
            }
        }

        public string HostName
        {
            get {
                lock (this) {
                    return Utility.PtrToString (avahi_client_get_host_name (handle));
                }
            }
        }

        public string DomainName
        {
            get {
                lock (this) {
                    return Utility.PtrToString (avahi_client_get_domain_name (handle));
                }
            }
        }

        public string HostNameFqdn
        {
            get {
                lock (this) {
                    return Utility.PtrToString (avahi_client_get_host_name_fqdn (handle));
                }
            }
        }

        public ClientState State
        {
            get {
                lock (this) {
                    return (ClientState) avahi_client_get_state (handle);
                }
            }
        }

        public uint LocalServiceCookie
        {
            get {
                lock (this) {
                    return avahi_client_get_local_service_cookie (handle);
                }
            }
        }

        internal ErrorCode LastError
        {
            get {
                lock (this) {
                    return (ErrorCode) avahi_client_errno (handle);
                }
            }
        }

        public Client (ClientFlags flags)
        {
            spoll = avahi_simple_poll_new ();

            pollcb = OnPollCallback;
            avahi_simple_poll_set_func (spoll, pollcb);
            IntPtr poll = avahi_simple_poll_get (spoll);
            cb = OnClientCallback;

            int error;
            handle = avahi_client_new (poll, flags, cb, IntPtr.Zero, out error);
            if (error != 0)
                throw new ClientException (error);

            thread = new Thread (PollLoop);
            thread.IsBackground = true;
            thread.Start ();
        }

        public Client () : this (ClientFlags.None) {
        }

        ~Client ()
        {
            Dispose ();
        }

        public void Dispose ()
        {
            if (handle != IntPtr.Zero) {
                lock (this) {
                    avahi_client_free (handle);
                    handle = IntPtr.Zero;

                    avahi_simple_poll_quit (spoll);
                    Monitor.Wait (this);

                    avahi_simple_poll_free (spoll);
                }
            }
        }

        public static string JoinServiceName (string name, string type, string domain)
        {
            int len = 4 * (name.Length + type.Length + domain.Length) + 4;
            IntPtr buf = Stdlib.malloc ((ulong) len);

            int ret = avahi_service_name_join (buf, len,
                                               Utility.StringToBytes (name),
                                               Utility.StringToBytes (type),
                                               Utility.StringToBytes (domain));

            if (ret < 0) {
                Utility.Free (buf);
                return null; // FIXME, should throw exception
            }

            string service = Utility.PtrToString (buf);
            Utility.Free (buf);

            return service;
        }

        public static void SplitServiceName (string service, out string name, out string type, out string domain)
        {
            int len = 1024;

            IntPtr namePtr = Stdlib.malloc ((ulong) len);
            IntPtr typePtr = Stdlib.malloc ((ulong) len);
            IntPtr domainPtr = Stdlib.malloc ((ulong) len);

            int ret = avahi_service_name_split (Utility.StringToBytes (service), namePtr, len, typePtr, len,
                                                domainPtr, len);

            if (ret < 0) {
                Utility.Free (namePtr);
                Utility.Free (typePtr);
                Utility.Free (domainPtr);

                name = null;
                type = null;
                domain = null;
                return;
            }

            name = Utility.PtrToString (namePtr);
            type = Utility.PtrToString (typePtr);
            domain = Utility.PtrToString (domainPtr);

            Utility.Free (namePtr);
            Utility.Free (typePtr);
            Utility.Free (domainPtr);
        }

        internal void ThrowError ()
        {
            ErrorCode error = LastError;

            if (error != ErrorCode.Ok)
                throw new ClientException (error);
        }

        private void OnClientCallback (IntPtr client, ClientState state, IntPtr userData)
        {
            if (StateChanged != null)
                StateChanged (this, new ClientStateArgs (state, LastError));
        }

        private int OnPollCallback (IntPtr ufds, uint nfds, int timeout) {
            Monitor.Exit (this);
            int result = poll (ufds, nfds, timeout);
            Monitor.Enter (this);
            return result;
        }

        private void PollLoop () {
            try {
                lock (this) {
                    avahi_simple_poll_loop (spoll);
                    Monitor.Pulse (this);
                }
            } catch (Exception e) {
                Console.Error.WriteLine ("Error in avahi-sharp event loop: " + e);
            }
        }
    }
}