Welcome to mirror list, hosted at ThFree Co, Russian Federation.

KeventWatcher.cs « System.IO « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b96de344040d978b619c85325c675b32259d703 (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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
// 
// System.IO.KeventWatcher.cs: interface with osx kevent
//
// Authors:
//	Geoff Norton (gnorton@customerdna.com)
//	Cody Russell (cody@xamarin.com)
//
// (c) 2004 Geoff Norton
// Copyright 2014 Xamarin Inc
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
// 
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//

using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading;

namespace System.IO {

        [Flags]
        enum EventFlags : ushort {
                Add         = 0x0001,
                Delete      = 0x0002,
                Enable      = 0x0004,
                Disable     = 0x0008,
                OneShot     = 0x0010,
                Clear       = 0x0020,
                Receipt     = 0x0040,
                Dispatch    = 0x0080,

                Flag0       = 0x1000,
                Flag1       = 0x2000,
                SystemFlags = unchecked (0xf000),
                        
                // Return values.
                EOF         = 0x8000,
                Error       = 0x4000,
        }
        
        enum EventFilter : short {
                Read = -1,
                Write = -2,
                Aio = -3,
                Vnode = -4,
                Proc = -5,
                Signal = -6,
                Timer = -7,
                MachPort = -8,
                FS = -9,
                User = -10,
                VM = -11
        }

	enum FilterFlags : uint {
                ReadPoll          = EventFlags.Flag0,
                ReadOutOfBand     = EventFlags.Flag1,
                ReadLowWaterMark  = 0x00000001,

                WriteLowWaterMark = ReadLowWaterMark,

                NoteTrigger       = 0x01000000,
                NoteFFNop         = 0x00000000,
                NoteFFAnd         = 0x40000000,
                NoteFFOr          = 0x80000000,
                NoteFFCopy        = 0xc0000000,
                NoteFFCtrlMask    = 0xc0000000,
                NoteFFlagsMask    = 0x00ffffff,
                                  
                VNodeDelete       = 0x00000001,
                VNodeWrite        = 0x00000002,
                VNodeExtend       = 0x00000004,
                VNodeAttrib       = 0x00000008,
                VNodeLink         = 0x00000010,
                VNodeRename       = 0x00000020,
                VNodeRevoke       = 0x00000040,
                VNodeNone         = 0x00000080,
                                  
                ProcExit          = 0x80000000,
                ProcFork          = 0x40000000,
                ProcExec          = 0x20000000,
                ProcReap          = 0x10000000,
                ProcSignal        = 0x08000000,
                ProcExitStatus    = 0x04000000,
                ProcResourceEnd   = 0x02000000,

                // iOS only
                ProcAppactive     = 0x00800000,
                ProcAppBackground = 0x00400000,
                ProcAppNonUI      = 0x00200000,
                ProcAppInactive   = 0x00100000,
                ProcAppAllStates  = 0x00f00000,

                // Masks
                ProcPDataMask     = 0x000fffff,
                ProcControlMask   = 0xfff00000,

                VMPressure        = 0x80000000,
                VMPressureTerminate = 0x40000000,
                VMPressureSuddenTerminate = 0x20000000,
                VMError           = 0x10000000,
                TimerSeconds      =    0x00000001,
                TimerMicroSeconds =   0x00000002,
                TimerNanoSeconds  =   0x00000004,
                TimerAbsolute     =   0x00000008,
        }

	[StructLayout(LayoutKind.Sequential)]
	struct kevent : IDisposable {
		public int ident;
		public EventFilter filter;
		public EventFlags flags;
		public FilterFlags fflags;
		public IntPtr data;
		public IntPtr udata;

		public void Dispose ()
		{
			if (udata != IntPtr.Zero)
				Marshal.FreeHGlobal (udata);
		}
	}

	struct timespec {
		public int tv_sec;
		public int tv_usec;
	}

	class PathData
	{
		public string Path;
		public bool IsDirectory;
	}

	class KqueueMonitor : IDisposable
	{
		public int Connection
		{
			get { return conn; }
		}

		public KqueueMonitor (FileSystemWatcher fsw)
		{
			this.fsw = fsw;
			this.conn = -1;
		}

		public void Dispose ()
		{
			Stop ();
		}

		public void Start ()
		{
			conn = kqueue ();

			if (thread == null) {
				thread = new Thread (new ThreadStart (Monitor));
				thread.IsBackground = true;
				thread.Start ();
			}

			var pathData = Add (fsw.FullPath);

			Scan (pathData);
		}

		public void Stop ()
		{
			stop = true;

			if (thread != null)
				thread.Interrupt ();

			if (conn != -1)
				close (conn);

			conn = -1;
		}

		private PathData FindPath (string path)
		{
			foreach (KeyValuePair<PathData, int> kv in paths) {
				if (kv.Key.Path == path)
					return kv.Key;
			}

			return null;
		}

		private PathData FindPath (int fd)
		{
			foreach (KeyValuePair<PathData, int> kv in paths) {
				if (kv.Value == fd)
					return kv.Key;
			}

			return null;
		}

		private void Monitor ()
		{
			bool firstRun = true;

			while (!stop) {
				removeQueue.ForEach (Remove);

				var changes = new List<kevent> ();
				var outEvents = new List<kevent> ();

				rescanQueue.ForEach (fd => {
					var path = FindPath (fd);
					Scan (path, !firstRun);
				});
				rescanQueue.Clear ();

				foreach (KeyValuePair<PathData, int> kv in paths) {
					var change = new kevent {
						ident  = kv.Value,
						filter = EventFilter.Vnode,
						flags  = EventFlags.Add | EventFlags.Enable | EventFlags.Clear,
						fflags = FilterFlags.VNodeDelete | FilterFlags.VNodeExtend |
						         FilterFlags.VNodeRename | FilterFlags.VNodeAttrib |
						         FilterFlags.VNodeLink | FilterFlags.VNodeRevoke |
						         FilterFlags.VNodeWrite,
						data   = IntPtr.Zero,
						udata  = IntPtr.Zero
					};

					changes.Add (change);
					outEvents.Add (new kevent ());
				}

				if (changes.Count > 0) {
					var outArray = outEvents.ToArray ();
					var changesArray = changes.ToArray ();
					int numEvents = kevent (conn, changesArray, changesArray.Length, outArray, outArray.Length, IntPtr.Zero);

					for (var i = 0; i < numEvents; i++) {
						var kevt = outArray [i];
						var pathData = FindPath (kevt.ident);

						if ((kevt.fflags & FilterFlags.VNodeDelete) != 0) {
							removeQueue.Add (kevt.ident);
							PostEvent (FileAction.Removed, pathData.Path);
						} else if (((kevt.fflags & FilterFlags.VNodeRename) != 0) || ((kevt.fflags & FilterFlags.VNodeRevoke) != 0) || ((kevt.fflags & FilterFlags.VNodeWrite) != 0)) {
							if (pathData.IsDirectory && Directory.Exists (pathData.Path))
								rescanQueue.Add (kevt.ident);

							if ((kevt.fflags & FilterFlags.VNodeRename) != 0) {
								var fd = paths [pathData];
								var newFilename = GetFilenameFromFd (fd);
								var oldFilename = pathData.Path;

								Remove (pathData);
								PostEvent (FileAction.RenamedNewName, oldFilename, newFilename);

								Add (newFilename, false);
							}
						} else if ((kevt.fflags & FilterFlags.VNodeAttrib) != 0) {
							PostEvent (FileAction.Modified, pathData.Path);
						}
					}
				} else {
					Thread.Sleep (500);
				}

				firstRun = false;
			}
		}

		private PathData Add (string path, bool postEvents = false)
		{
			var fd = open (path, O_EVTONLY, 0);

			if (fd == -1)
				return null;

			var attrs = File.GetAttributes (path);
			bool isDir = false;
			if ((attrs & FileAttributes.Directory) == FileAttributes.Directory)
				isDir = true;

			var pathData = new PathData {
				Path = path,
				IsDirectory = isDir
			};

			if (FindPath (path) == null) {
				paths.Add (pathData, fd);

				if (postEvents)
					PostEvent (FileAction.Added, path);
			}

			return pathData;
		}

		private void Remove (int fd)
		{
			var path = FindPath (fd);
			paths.Remove (path);
			removeQueue.Remove (fd);

			close (fd);
		}

		private void Remove (PathData pathData)
		{
			var fd = paths [pathData];
			paths.Remove (pathData);
			removeQueue.Remove (fd);

			close (fd);
		}

		private void Scan (PathData pathData, bool postEvents = false)
		{
			var path = pathData.Path;

			Add (path, postEvents);

			if (!fsw.IncludeSubdirectories)
				return;

			var attrs = File.GetAttributes (path);
			if ((attrs & FileAttributes.Directory) == FileAttributes.Directory) {
				var dirsToProcess = new List<string> ();
				dirsToProcess.Add (path);

				while (dirsToProcess.Count > 0) {
					var tmp = dirsToProcess [0];
					dirsToProcess.RemoveAt (0);

					var info = new DirectoryInfo (tmp);
					foreach (var fsi in info.GetFileSystemInfos ()) {
						if (Add (fsi.FullName, postEvents) == null)
							continue;

						var childAttrs = File.GetAttributes (fsi.FullName);
						if ((childAttrs & FileAttributes.Directory) == FileAttributes.Directory)
							dirsToProcess.Add (fsi.FullName);
					}
				}
			}
		}

		private void PostEvent (FileAction action, string path, string newPath = null)
		{
			RenamedEventArgs renamed = null;

			if (action == 0)
				return;

			if (action == FileAction.RenamedNewName)
				renamed = new RenamedEventArgs (WatcherChangeTypes.Renamed, "", newPath, path);

			lock (fsw) {
				fsw.DispatchEvents (action, path, ref renamed);

				if (fsw.Waiting) {
					fsw.Waiting = false;
					System.Threading.Monitor.PulseAll (fsw);
				}
			}
		}

		private string GetFilenameFromFd (int fd)
		{
			var sb = new StringBuilder (1024);

			if (fcntl (fd, F_GETPATH, sb) != -1)
				return sb.ToString ();
			else
				return String.Empty;
		}

		private const int O_EVTONLY = 0x8000;
		private const int F_GETPATH = 50;
		private FileSystemWatcher fsw;
		private int conn;
		private Thread thread;
		private bool stop;
		private readonly List<int> removeQueue = new List<int> ();
		private readonly List<int> rescanQueue = new List<int> ();
		private readonly Dictionary<PathData, int> paths = new Dictionary<PathData, int> ();

		[DllImport ("libc", EntryPoint="fcntl", CharSet=CharSet.Auto, SetLastError=true)]
		static extern int fcntl (int file_names_by_descriptor, int cmd, StringBuilder sb);

		[DllImport ("libc")]
		extern static int open (string path, int flags, int mode_t);

		[DllImport ("libc")]
		extern static int close (int fd);

		[DllImport ("libc")]
		extern static int kqueue ();

		[DllImport ("libc")]
		extern static int kevent(int kq, [In]kevent[] ev, int nchanges, [Out]kevent[] evtlist, int nevents, IntPtr time);
	}

	class KeventWatcher : IFileWatcher
	{
		static bool failed;
		static KeventWatcher instance;
		static Hashtable watches;  // <FileSystemWatcher, KqueueMonitor>

		private KeventWatcher ()
		{
		}

		// Locked by caller
		public static bool GetInstance (out IFileWatcher watcher)
		{
			if (failed == true) {
				watcher = null;
				return false;
			}

			if (instance != null) {
				watcher = instance;
				return true;
			}

			watches = Hashtable.Synchronized (new Hashtable ());
			var conn = kqueue();
			if (conn == -1) {
				failed = true;
				watcher = null;
				return false;
			}
			close (conn);

			instance = new KeventWatcher ();
			watcher = instance;
			return true;
		}

		public void StartDispatching (FileSystemWatcher fsw)
		{
			KqueueMonitor monitor;

			if (watches.ContainsKey (fsw)) {
				monitor = (KqueueMonitor)watches [fsw];
			} else {
				monitor = new KqueueMonitor (fsw);
			}

			watches.Add (fsw, monitor);

			monitor.Start ();
		}

		public void StopDispatching (FileSystemWatcher fsw)
		{
			KqueueMonitor monitor = (KqueueMonitor)watches [fsw];
			if (monitor == null)
				return;

			monitor.Stop ();
		}


		[DllImport ("libc")]
		extern static int close (int fd);

		[DllImport ("libc")]
		extern static int kqueue ();
	}
}