Merge pull request #1857 from slluis/fix-assembly-resolver
[mono.git] / mcs / class / System / System.IO / KeventWatcher.cs
1 // 
2 // System.IO.KeventWatcher.cs: interface with osx kevent
3 //
4 // Authors:
5 //      Geoff Norton (gnorton@customerdna.com)
6 //      Cody Russell (cody@xamarin.com)
7 //      Alexis Christoforides (lexas@xamarin.com)
8 //
9 // (c) 2004 Geoff Norton
10 // Copyright 2014 Xamarin Inc
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31
32 using System;
33 using System.Collections;
34 using System.Collections.Generic;
35 using System.ComponentModel;
36 using System.Runtime.CompilerServices;
37 using System.Runtime.InteropServices;
38 using System.Text;
39 using System.Threading;
40 using System.Reflection;
41
42 namespace System.IO {
43
44         [Flags]
45         enum EventFlags : ushort {
46                 Add         = 0x0001,
47                 Delete      = 0x0002,
48                 Enable      = 0x0004,
49                 Disable     = 0x0008,
50                 OneShot     = 0x0010,
51                 Clear       = 0x0020,
52                 Receipt     = 0x0040,
53                 Dispatch    = 0x0080,
54
55                 Flag0       = 0x1000,
56                 Flag1       = 0x2000,
57                 SystemFlags = unchecked (0xf000),
58                         
59                 // Return values.
60                 EOF         = 0x8000,
61                 Error       = 0x4000,
62         }
63         
64         enum EventFilter : short {
65                 Read = -1,
66                 Write = -2,
67                 Aio = -3,
68                 Vnode = -4,
69                 Proc = -5,
70                 Signal = -6,
71                 Timer = -7,
72                 MachPort = -8,
73                 FS = -9,
74                 User = -10,
75                 VM = -11
76         }
77
78         [Flags]
79         enum FilterFlags : uint {
80                 ReadPoll          = EventFlags.Flag0,
81                 ReadOutOfBand     = EventFlags.Flag1,
82                 ReadLowWaterMark  = 0x00000001,
83
84                 WriteLowWaterMark = ReadLowWaterMark,
85
86                 NoteTrigger       = 0x01000000,
87                 NoteFFNop         = 0x00000000,
88                 NoteFFAnd         = 0x40000000,
89                 NoteFFOr          = 0x80000000,
90                 NoteFFCopy        = 0xc0000000,
91                 NoteFFCtrlMask    = 0xc0000000,
92                 NoteFFlagsMask    = 0x00ffffff,
93                                   
94                 VNodeDelete       = 0x00000001,
95                 VNodeWrite        = 0x00000002,
96                 VNodeExtend       = 0x00000004,
97                 VNodeAttrib       = 0x00000008,
98                 VNodeLink         = 0x00000010,
99                 VNodeRename       = 0x00000020,
100                 VNodeRevoke       = 0x00000040,
101                 VNodeNone         = 0x00000080,
102                                   
103                 ProcExit          = 0x80000000,
104                 ProcFork          = 0x40000000,
105                 ProcExec          = 0x20000000,
106                 ProcReap          = 0x10000000,
107                 ProcSignal        = 0x08000000,
108                 ProcExitStatus    = 0x04000000,
109                 ProcResourceEnd   = 0x02000000,
110
111                 // iOS only
112                 ProcAppactive     = 0x00800000,
113                 ProcAppBackground = 0x00400000,
114                 ProcAppNonUI      = 0x00200000,
115                 ProcAppInactive   = 0x00100000,
116                 ProcAppAllStates  = 0x00f00000,
117
118                 // Masks
119                 ProcPDataMask     = 0x000fffff,
120                 ProcControlMask   = 0xfff00000,
121
122                 VMPressure        = 0x80000000,
123                 VMPressureTerminate = 0x40000000,
124                 VMPressureSuddenTerminate = 0x20000000,
125                 VMError           = 0x10000000,
126                 TimerSeconds      =    0x00000001,
127                 TimerMicroSeconds =   0x00000002,
128                 TimerNanoSeconds  =   0x00000004,
129                 TimerAbsolute     =   0x00000008,
130         }
131
132         [StructLayout(LayoutKind.Sequential)]
133         struct kevent : IDisposable {
134                 public UIntPtr ident;
135                 public EventFilter filter;
136                 public EventFlags flags;
137                 public FilterFlags fflags;
138                 public IntPtr data;
139                 public IntPtr udata;
140
141                 public void Dispose ()
142                 {
143                         if (udata != IntPtr.Zero)
144                                 Marshal.FreeHGlobal (udata);
145                 }
146
147
148         }
149
150         [StructLayout(LayoutKind.Sequential)]
151         struct timespec {
152                 public IntPtr tv_sec;
153                 public IntPtr tv_usec;
154         }
155
156         class PathData
157         {
158                 public string Path;
159                 public bool IsDirectory;
160                 public int Fd;
161         }
162
163         class KqueueMonitor : IDisposable
164         {
165                 public int Connection
166                 {
167                         get { return conn; }
168                 }
169
170                 public KqueueMonitor (FileSystemWatcher fsw)
171                 {
172                         this.fsw = fsw;
173                         this.conn = -1;
174                 }
175
176                 public void Dispose ()
177                 {
178                         CleanUp ();
179                 }
180
181                 public void Start ()
182                 {
183                         lock (stateLock) {
184                                 if (started)
185                                         return;
186
187                                 conn = kqueue ();
188
189                                 if (conn == -1)
190                                         throw new IOException (String.Format (
191                                                 "kqueue() error at init, error code = '{0}'", Marshal.GetLastWin32Error ()));
192                                         
193                                 thread = new Thread (() => DoMonitor ());
194                                 thread.IsBackground = true;
195                                 thread.Start ();
196
197                                 startedEvent.WaitOne ();
198
199                                 if (exc != null) {
200                                         thread.Join ();
201                                         CleanUp ();
202                                         throw exc;
203                                 }
204  
205                                 started = true;
206                         }
207                 }
208
209                 public void Stop ()
210                 {
211                         lock (stateLock) {
212                                 if (!started)
213                                         return;
214                                         
215                                 requestStop = true;
216
217                                 if (inDispatch)
218                                         return;
219                                 // This will break the wait in Monitor ()
220                                 lock (connLock) {
221                                         if (conn != -1)
222                                                 close (conn);
223                                         conn = -1;
224                                 }
225
226                                 if (!thread.Join (2000))
227                                         thread.Abort ();
228
229                                 requestStop = false;
230                                 started = false;
231
232                                 if (exc != null)
233                                         throw exc;
234                         }
235                 }
236
237                 void CleanUp ()
238                 {
239                         lock (connLock) {
240                                 if (conn != -1)
241                                         close (conn);
242                                 conn = -1;
243                         }
244
245                         foreach (int fd in fdsDict.Keys)
246                                 close (fd); 
247
248                         fdsDict.Clear ();
249                         pathsDict.Clear ();
250                 }
251
252                 void DoMonitor ()
253                 {                       
254                         try {
255                                 Setup ();
256                         } catch (Exception e) {
257                                 exc = e;
258                         } finally {
259                                 startedEvent.Set ();
260                         }
261
262                         if (exc != null) {
263                                 fsw.DispatchErrorEvents (new ErrorEventArgs (exc));
264                                 return;
265                         }
266
267                         try {
268                                 Monitor ();
269                         } catch (Exception e) {
270                                 exc = e;
271                         } finally {
272                                 CleanUp ();
273                                 if (!requestStop) { // failure
274                                         started = false;
275                                         inDispatch = false;
276                                         fsw.EnableRaisingEvents = false;
277                                 }
278                                 if (exc != null)
279                                         fsw.DispatchErrorEvents (new ErrorEventArgs (exc));
280                                 requestStop = false;
281                         }
282                 }
283
284                 void Setup ()
285                 {       
286                         var initialFds = new List<int> ();
287
288                         // fsw.FullPath may end in '/', see https://bugzilla.xamarin.com/show_bug.cgi?id=5747
289                         if (fsw.FullPath != "/" && fsw.FullPath.EndsWith ("/", StringComparison.Ordinal))
290                                 fullPathNoLastSlash = fsw.FullPath.Substring (0, fsw.FullPath.Length - 1);
291                         else
292                                 fullPathNoLastSlash = fsw.FullPath;
293                                 
294                         // GetFilenameFromFd() returns the *realpath* which can be different than fsw.FullPath because symlinks.
295                         // If so, introduce a fixup step.
296                         int fd = open (fullPathNoLastSlash, O_EVTONLY, 0);
297                         var resolvedFullPath = GetFilenameFromFd (fd);
298                         close (fd);
299
300                         if (resolvedFullPath != fullPathNoLastSlash)
301                                 fixupPath = resolvedFullPath;
302                         else
303                                 fixupPath = null;
304
305                         Scan (fullPathNoLastSlash, false, ref initialFds);
306
307                         var immediate_timeout = new timespec { tv_sec = (IntPtr)0, tv_usec = (IntPtr)0 };
308                         var eventBuffer = new kevent[0]; // we don't want to take any events from the queue at this point
309                         var changes = CreateChangeList (ref initialFds);
310
311                         int numEvents = kevent (conn, changes, changes.Length, eventBuffer, eventBuffer.Length, ref immediate_timeout);
312
313                         if (numEvents == -1) {
314                                 var errMsg = String.Format ("kevent() error at initial event registration, error code = '{0}'", Marshal.GetLastWin32Error ());
315                                 throw new IOException (errMsg);
316                         }
317                 }
318
319                 kevent[] CreateChangeList (ref List<int> FdList)
320                 {
321                         if (FdList.Count == 0)
322                                 return emptyEventList;
323
324                         var changes = new List<kevent> ();
325                         foreach (int fd in FdList) {
326                                 var change = new kevent {
327
328                                         ident = (UIntPtr)fd,
329                                         filter = EventFilter.Vnode,
330                                         flags = EventFlags.Add | EventFlags.Enable | EventFlags.Clear,
331                                         fflags = FilterFlags.VNodeDelete | FilterFlags.VNodeExtend |
332                                                 FilterFlags.VNodeRename | FilterFlags.VNodeAttrib |
333                                                 FilterFlags.VNodeLink | FilterFlags.VNodeRevoke |
334                                                 FilterFlags.VNodeWrite,
335                                         data = IntPtr.Zero,
336                                         udata = IntPtr.Zero
337                                 };
338
339                                 changes.Add (change);
340                         }
341                         FdList.Clear ();
342
343                         return changes.ToArray ();
344                 }
345
346                 void Monitor ()
347                 {
348                         var eventBuffer = new kevent[32];
349                         var newFds = new List<int> ();
350                         List<PathData> removeQueue = new List<PathData> ();
351                         List<string> rescanQueue = new List<string> ();
352
353                         int retries = 0; 
354
355                         while (!requestStop) {
356                                 var changes = CreateChangeList (ref newFds);
357
358                                 int numEvents = kevent_notimeout (conn, changes, changes.Length, eventBuffer, eventBuffer.Length, IntPtr.Zero);
359
360                                 if (numEvents == -1) {
361                                         // Stop () signals us to stop by closing the connection
362                                         if (requestStop)
363                                                 break;
364                                         if (++retries == 3)
365                                                 throw new IOException (String.Format (
366                                                         "persistent kevent() error, error code = '{0}'", Marshal.GetLastWin32Error ()));
367
368                                         continue;
369                                 }
370
371                                 retries = 0;
372
373                                 for (var i = 0; i < numEvents; i++) {
374                                         var kevt = eventBuffer [i];
375
376                                         if (!fdsDict.ContainsKey ((int)kevt.ident))
377                                                 // The event is for a file that was removed
378                                                 continue;
379
380                                         var pathData = fdsDict [(int)kevt.ident];
381
382                                         if ((kevt.flags & EventFlags.Error) == EventFlags.Error) {
383                                                 var errMsg = String.Format ("kevent() error watching path '{0}', error code = '{1}'", pathData.Path, kevt.data);
384                                                 fsw.DispatchErrorEvents (new ErrorEventArgs (new IOException (errMsg)));
385                                                 continue;
386                                         }
387                                                 
388                                         if ((kevt.fflags & FilterFlags.VNodeDelete) == FilterFlags.VNodeDelete || (kevt.fflags & FilterFlags.VNodeRevoke) == FilterFlags.VNodeRevoke) {
389                                                 if (pathData.Path == fullPathNoLastSlash)
390                                                         // The root path is deleted; exit silently
391                                                         return;
392                                                                 
393                                                 removeQueue.Add (pathData);
394                                                 continue;
395                                         }
396
397                                         if ((kevt.fflags & FilterFlags.VNodeRename) == FilterFlags.VNodeRename) {
398                                                         UpdatePath (pathData);
399                                         } 
400
401                                         if ((kevt.fflags & FilterFlags.VNodeWrite) == FilterFlags.VNodeWrite) {
402                                                 if (pathData.IsDirectory) //TODO: Check if dirs trigger Changed events on .NET
403                                                         rescanQueue.Add (pathData.Path);
404                                                 else
405                                                         PostEvent (FileAction.Modified, pathData.Path);
406                                         }
407                                                 
408                                         if ((kevt.fflags & FilterFlags.VNodeAttrib) == FilterFlags.VNodeAttrib || (kevt.fflags & FilterFlags.VNodeExtend) == FilterFlags.VNodeExtend)
409                                                 PostEvent (FileAction.Modified, pathData.Path);
410                                 }
411
412                                 removeQueue.ForEach (Remove);
413                                 removeQueue.Clear ();
414
415                                 rescanQueue.ForEach (path => {
416                                         Scan (path, true, ref newFds);
417                                 });
418                                 rescanQueue.Clear ();
419                         }
420                 }
421
422                 PathData Add (string path, bool postEvents, ref List<int> fds)
423                 {
424                         PathData pathData;
425                         pathsDict.TryGetValue (path, out pathData);
426
427                         if (pathData != null)
428                                 return pathData;
429
430                         if (fdsDict.Count >= maxFds)
431                                 throw new IOException ("kqueue() FileSystemWatcher has reached the maximum number of files to watch."); 
432
433                         var fd = open (path, O_EVTONLY, 0);
434
435                         if (fd == -1) {
436                                 fsw.DispatchErrorEvents (new ErrorEventArgs (new IOException (String.Format (
437                                         "open() error while attempting to process path '{0}', error code = '{1}'", path, Marshal.GetLastWin32Error ()))));
438                                 return null;
439                         }
440
441                         try {
442                                 fds.Add (fd);
443
444                                 var attrs = File.GetAttributes (path);
445
446                                 pathData = new PathData {
447                                         Path = path,
448                                         Fd = fd,
449                                         IsDirectory = (attrs & FileAttributes.Directory) == FileAttributes.Directory
450                                 };
451                                 
452                                 pathsDict.Add (path, pathData);
453                                 fdsDict.Add (fd, pathData);
454
455                                 if (postEvents)
456                                         PostEvent (FileAction.Added, path);
457
458                                 return pathData;
459                         } catch (Exception e) {
460                                 close (fd);
461                                 fsw.DispatchErrorEvents (new ErrorEventArgs (e));
462                                 return null;
463                         }
464
465                 }
466
467                 void Remove (PathData pathData)
468                 {
469                         fdsDict.Remove (pathData.Fd);
470                         pathsDict.Remove (pathData.Path);
471                         close (pathData.Fd);
472                         PostEvent (FileAction.Removed, pathData.Path);
473                 }
474
475                 void RemoveTree (PathData pathData)
476                 {
477                         var toRemove = new List<PathData> ();
478
479                         toRemove.Add (pathData);
480
481                         if (pathData.IsDirectory) {
482                                 var prefix = pathData.Path + Path.DirectorySeparatorChar;
483                                 foreach (var path in pathsDict.Keys)
484                                         if (path.StartsWith (prefix)) {
485                                                 toRemove.Add (pathsDict [path]);
486                                         }
487                         }
488                         toRemove.ForEach (Remove);
489                 }
490
491                 void UpdatePath (PathData pathData)
492                 {
493                         var newRoot = GetFilenameFromFd (pathData.Fd);
494                         if (!newRoot.StartsWith (fullPathNoLastSlash)) { // moved outside of our watched path (so stop observing it)
495                                 RemoveTree (pathData);
496                                 return;
497                         }
498                                 
499                         var toRename = new List<PathData> ();
500                         var oldRoot = pathData.Path;
501
502                         toRename.Add (pathData);
503                                                                                                                         
504                         if (pathData.IsDirectory) { // anything under the directory must have their paths updated
505                                 var prefix = oldRoot + Path.DirectorySeparatorChar;
506                                 foreach (var path in pathsDict.Keys)
507                                         if (path.StartsWith (prefix))
508                                                 toRename.Add (pathsDict [path]);
509                         }
510                 
511                         foreach (var renaming in toRename) {
512                                 var oldPath = renaming.Path;
513                                 var newPath = newRoot + oldPath.Substring (oldRoot.Length);
514
515                                 renaming.Path = newPath;
516                                 pathsDict.Remove (oldPath);
517
518                                 // destination may exist in our records from a Created event, take care of it
519                                 if (pathsDict.ContainsKey (newPath)) {
520                                         var conflict = pathsDict [newPath];
521                                         if (GetFilenameFromFd (renaming.Fd) == GetFilenameFromFd (conflict.Fd))
522                                                 Remove (conflict);
523                                         else
524                                                 UpdatePath (conflict);
525                                 }
526                                         
527                                 pathsDict.Add (newPath, renaming);
528                         }
529                         
530                         PostEvent (FileAction.RenamedNewName, oldRoot, newRoot);
531                 }
532
533                 void Scan (string path, bool postEvents, ref List<int> fds)
534                 {
535                         if (requestStop)
536                                 return;
537                                 
538                         var pathData = Add (path, postEvents, ref fds);
539
540                         if (pathData == null)
541                                 return;
542                                 
543                         if (!pathData.IsDirectory)
544                                 return;
545
546                         var dirsToProcess = new List<string> ();
547                         dirsToProcess.Add (path);
548
549                         while (dirsToProcess.Count > 0) {
550                                 var tmp = dirsToProcess [0];
551                                 dirsToProcess.RemoveAt (0);
552
553                                 var info = new DirectoryInfo (tmp);
554                                 FileSystemInfo[] fsInfos = null;
555                                 try {
556                                         fsInfos = info.GetFileSystemInfos ();
557                                                 
558                                 } catch (IOException) {
559                                         // this can happen if the directory has been deleted already.
560                                         // that's okay, just keep processing the other dirs.
561                                         fsInfos = new FileSystemInfo[0];
562                                 }
563
564                                 foreach (var fsi in fsInfos) {
565                                         if ((fsi.Attributes & FileAttributes.Directory) == FileAttributes.Directory && !fsw.IncludeSubdirectories)
566                                                 continue;
567
568                                         if ((fsi.Attributes & FileAttributes.Directory) != FileAttributes.Directory && !fsw.Pattern.IsMatch (fsi.FullName))
569                                                 continue;
570
571                                         var currentPathData = Add (fsi.FullName, postEvents, ref fds);
572
573                                         if (currentPathData != null && currentPathData.IsDirectory)
574                                                 dirsToProcess.Add (fsi.FullName);
575                                 }
576                         }
577                 }
578                         
579                 void PostEvent (FileAction action, string path, string newPath = null)
580                 {
581                         RenamedEventArgs renamed = null;
582
583                         if (requestStop || action == 0)
584                                 return;
585
586                         // e.Name
587                         string name = path.Substring (fullPathNoLastSlash.Length + 1); 
588
589                         // only post events that match filter pattern. check both old and new paths for renames
590                         if (!fsw.Pattern.IsMatch (path) && (newPath == null || !fsw.Pattern.IsMatch (newPath)))
591                                 return;
592                                 
593                         if (action == FileAction.RenamedNewName) {
594                                 string newName = newPath.Substring (fullPathNoLastSlash.Length + 1);
595                                 renamed = new RenamedEventArgs (WatcherChangeTypes.Renamed, fsw.Path, newName, name);
596                         }
597                                 
598                         fsw.DispatchEvents (action, name, ref renamed);
599
600                         if (fsw.Waiting) {
601                                 lock (fsw) {
602                                         fsw.Waiting = false;
603                                         System.Threading.Monitor.PulseAll (fsw);
604                                 }
605                         }
606                 }
607
608                 private string GetFilenameFromFd (int fd)
609                 {
610                         var sb = new StringBuilder (__DARWIN_MAXPATHLEN);
611
612                         if (fcntl (fd, F_GETPATH, sb) != -1) {
613                                 if (fixupPath != null) 
614                                         sb.Replace (fixupPath, fullPathNoLastSlash, 0, fixupPath.Length); // see Setup()
615
616                                 return sb.ToString ();
617                         } else {
618                                 fsw.DispatchErrorEvents (new ErrorEventArgs (new IOException (String.Format (
619                                         "fcntl() error while attempting to get path for fd '{0}', error code = '{1}'", fd, Marshal.GetLastWin32Error ()))));
620                                 return String.Empty;
621                         }
622                 }
623
624                 const int O_EVTONLY = 0x8000;
625                 const int F_GETPATH = 50;
626                 const int __DARWIN_MAXPATHLEN = 1024;
627                 static readonly kevent[] emptyEventList = new System.IO.kevent[0];
628                 const int maxFds = 200;
629
630                 FileSystemWatcher fsw;
631                 int conn;
632                 Thread thread;
633                 volatile bool requestStop = false;
634                 AutoResetEvent startedEvent = new AutoResetEvent (false);
635                 bool started = false;
636                 bool inDispatch = false;
637                 Exception exc = null;
638                 object stateLock = new object ();
639                 object connLock = new object ();
640
641                 readonly Dictionary<string, PathData> pathsDict = new Dictionary<string, PathData> ();
642                 readonly Dictionary<int, PathData> fdsDict = new Dictionary<int, PathData> ();
643                 string fixupPath = null;
644                 string fullPathNoLastSlash = null;
645
646                 [DllImport ("libc", EntryPoint="fcntl", CharSet=CharSet.Auto, SetLastError=true)]
647                 static extern int fcntl (int file_names_by_descriptor, int cmd, StringBuilder sb);
648
649                 [DllImport ("libc")]
650                 extern static int open (string path, int flags, int mode_t);
651
652                 [DllImport ("libc")]
653                 extern static int close (int fd);
654
655                 [DllImport ("libc")]
656                 extern static int kqueue ();
657
658                 [DllImport ("libc")]
659                 extern static int kevent (int kq, [In]kevent[] ev, int nchanges, [Out]kevent[] evtlist, int nevents, [In] ref timespec time);
660
661                 [DllImport ("libc", EntryPoint="kevent")]
662                 extern static int kevent_notimeout (int kq, [In]kevent[] ev, int nchanges, [Out]kevent[] evtlist, int nevents, IntPtr ptr);
663         }
664
665         class KeventWatcher : IFileWatcher
666         {
667                 static bool failed;
668                 static KeventWatcher instance;
669                 static Hashtable watches;  // <FileSystemWatcher, KqueueMonitor>
670
671                 private KeventWatcher ()
672                 {
673                 }
674
675                 // Locked by caller
676                 public static bool GetInstance (out IFileWatcher watcher)
677                 {
678                         if (failed == true) {
679                                 watcher = null;
680                                 return false;
681                         }
682
683                         if (instance != null) {
684                                 watcher = instance;
685                                 return true;
686                         }
687
688                         watches = Hashtable.Synchronized (new Hashtable ());
689                         var conn = kqueue();
690                         if (conn == -1) {
691                                 failed = true;
692                                 watcher = null;
693                                 return false;
694                         }
695                         close (conn);
696
697                         instance = new KeventWatcher ();
698                         watcher = instance;
699                         return true;
700                 }
701
702                 public void StartDispatching (FileSystemWatcher fsw)
703                 {
704                         KqueueMonitor monitor;
705
706                         if (watches.ContainsKey (fsw)) {
707                                 monitor = (KqueueMonitor)watches [fsw];
708                         } else {
709                                 monitor = new KqueueMonitor (fsw);
710                                 watches.Add (fsw, monitor);
711                         }
712                                 
713                         monitor.Start ();
714                 }
715
716                 public void StopDispatching (FileSystemWatcher fsw)
717                 {
718                         KqueueMonitor monitor = (KqueueMonitor)watches [fsw];
719                         if (monitor == null)
720                                 return;
721
722                         monitor.Stop ();
723                 }
724                         
725                 [DllImport ("libc")]
726                 extern static int close (int fd);
727
728                 [DllImport ("libc")]
729                 extern static int kqueue ();
730         }
731 }
732