4 This file is part of avahi.
6 avahi is free software; you can redistribute it and/or modify it
7 under the terms of the GNU Lesser General Public License as
8 published by the Free Software Foundation; either version 2.1 of the
9 License, or (at your option) any later version.
11 avahi is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
14 Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with avahi; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23 using System.Collections;
25 using System.Runtime.InteropServices;
31 internal delegate void AddressResolverCallback (IntPtr resolver, int iface, Protocol proto,
32 ResolverEvent revent, Protocol aproto, IntPtr address,
33 IntPtr hostname, LookupResultFlags flags, IntPtr userdata);
35 public delegate void HostAddressHandler (object o, string host, IPAddress address);
37 public class AddressResolver : ResolverBase, IDisposable
39 private IntPtr handle;
40 private Client client;
42 private Protocol proto;
43 private IPAddress address;
44 private LookupFlags flags;
45 private AddressResolverCallback cb;
47 private IPAddress currentAddress;
48 private string currentHost;
50 private ArrayList foundListeners = new ArrayList ();
51 private ArrayList timeoutListeners = new ArrayList ();
53 [DllImport ("avahi-client")]
54 private static extern IntPtr avahi_address_resolver_new (IntPtr client, int iface, Protocol proto,
55 IntPtr address, LookupFlags flags,
56 AddressResolverCallback cb,
59 [DllImport ("avahi-client")]
60 private static extern void avahi_address_resolver_free (IntPtr handle);
62 public event HostAddressHandler Found
65 foundListeners.Add (value);
69 foundListeners.Remove (value);
74 public event EventHandler Timeout
77 timeoutListeners.Add (value);
81 timeoutListeners.Remove (value);
86 public IPAddress Address
88 get { return currentAddress; }
91 public string HostName
93 get { return currentHost; }
96 public AddressResolver (Client client, IPAddress address) : this (client, -1, Protocol.Unspecified,
97 address, LookupFlags.None)
101 public AddressResolver (Client client, int iface, Protocol proto, IPAddress address, LookupFlags flags)
103 this.client = client;
106 this.address = address;
108 cb = OnAddressResolverCallback;
116 public void Dispose ()
121 private void Start ()
123 if (client.Handle == IntPtr.Zero || handle != IntPtr.Zero ||
124 (foundListeners.Count == 0 && timeoutListeners.Count == 0))
127 IntPtr addrPtr = Utility.StringToPtr (address.ToString ());
130 handle = avahi_address_resolver_new (client.Handle, iface, proto, addrPtr, flags,
134 Utility.Free (addrPtr);
137 private void Stop (bool force)
139 if (client.Handle != IntPtr.Zero && handle != IntPtr.Zero &&
140 (force || (foundListeners.Count == 0 && timeoutListeners.Count == 0))) {
143 avahi_address_resolver_free (handle);
144 handle = IntPtr.Zero;
149 private void OnAddressResolverCallback (IntPtr resolver, int iface, Protocol proto,
150 ResolverEvent revent, Protocol aproto, IntPtr address,
151 IntPtr hostname, LookupResultFlags flags, IntPtr userdata)
154 case ResolverEvent.Found:
155 currentAddress = Utility.PtrToAddress (address);
156 currentHost = Utility.PtrToString (hostname);
158 foreach (HostAddressHandler handler in foundListeners)
159 handler (this, currentHost, currentAddress);
161 case ResolverEvent.Timeout:
162 currentAddress = null;
165 foreach (EventHandler handler in timeoutListeners)
166 handler (this, new EventArgs ());
169 EmitResolverEvent (revent);