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

FileChangesMonitor.cs « System.Web.Utils « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d288ca051541533bbc66579988f944c2917e5a8 (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
/**
 * 
 * Namespace: System.Web.Utils
 * Class:     FileChangesMonitor
 * 
 * Author:  Gaurav Vaish
 * Maintainer: gvaish@iitk.ac.in
 * Contact: <my_scripts2001@yahoo.com>, <gvaish@iitk.ac.in>
 * Implementation: yes
 * Status:  ??%
 *
 * 
 * (C) Gaurav Vaish (2001)
 */

using System;
using System.IO;
using System.Web;
using System.Runtime.InteropServices;
using System.Collections;
using System.Threading;

namespace System.Web.Utils
{
	internal class FileChangesMonitor
	{
		private static string BIN    = "bin";
		private static string BINDIR = "bin/";
		private static int MAXLEN = 260;
		
		private FileChangeEventHandler       cbRename;
		private NativeFileChangeEventHandler cbSubDirs;
		
		private int       monitoredSubdirs;
		private string    rootDir;
		private Hashtable allDirs;
		private GCHandle  rootcbSubDirs;
		
		private ReaderWriterLock rwLock;
		
		public FileChangesMonitor()
		{
			allDirs = new Hashtable(WebHashCodeProvider.Default, WebEqualComparer.Default);
			rwLock  = new ReaderWriterLock();
		}
		
		/// <param name="file">Name of the file</param>
		/// <param name="mTime">Last modification date</param>
		/// <param name="length">Legnth of the file</param>
		[MonoTODO]
		public void GetFileAttributes(string file, out DateTime mTime, long length)
		{
			if(!Path.IsPathRooted(file))
			{
				throw new HttpException(HttpRuntime.FormatResourceString("Path_must_be_rooted"));
			}
			// TODO: finish this
			mTime = DateTime.Now;
			throw new NotImplementedException();
		}
	}
}