Create and Control Windows Services--Add File-Monitoring Functionality[等級:進階]

來源:互聯網
上載者:User
services|window|進階 Now that all the necessary architecture is in place, you can add some functionality to the service. As an example, I'll show you how to build a file-monitoring service that monitors the local file system and notes important activity by presenting the data with a custom performance counter.

The ServiceBase class provides a couple properties all services should implement. ServiceName is the name your service uses to identify itself to the system and to applications that want to start it programmatically. For this example, the ServiceName property is "File Monitor Service." Another property is CanPauseAndContinue—set this to true so your service can support pause and continue functionality.

The OnStart() function performs the necessary initialization to start file monitoring as well as create the custom performance counters on the local system if they haven't been created already. The .NET Framework monitors local file system changes by implementing the FileSystemWatcher class, defined in the System.IO namespace, which allows you to specify handlers for file change notification events. In this case, you're interested in files that are created, changed, deleted, or renamed. Because you want to monitor file changes only on the local file system, you must enumerate all the defined drives and create a FileSystemWatcher object only on fixed drives. But the .NET Framework (as of this writing) doesn't contain any special functions to do this. So you must invoke the GetDriveType() API call defined in kernel32.dll on each drive in the array created from the call to GetLogicalDrives(). You can create a small class called PlatformInvokeKernel32 to wrap the API and call GetDriveType() easily:

public class PlatformInvokeKernel32
{    
    [sysimport(dll="kernel32", charset=System.Runtime.InteropServices.CharSet.Auto)]
            
    public static extern int
GetDriveType (string lpRootPathName);
}
This code simply forwards all calls using PlatformInvokeKernel32.GetDriveType() to the associated function in kernel32.dll. To get the drive type for each drive in the array, check the value returned from the call to the enumerated type win from the Microsoft.Win32.Interop namespace:

string[] drives = Environment.GetLogicalDrives();

// create filesystem watchers for
// local fixed drives
foreach (string curDrive in drives )
{
        if (
PlatformInvokeKernel32.GetDriveType
    (curDrive) == win.DRIVE_FIXED)
    {
        // create a FileSystemWatcher
    }
}
Now that you've created the FileSystemWatcher objects, you must implement the event handlers for the four file notification events: creating, changing, deleting, and renaming files. You'll create performance counters that convey information to the user visually—one for each event. For more information on file notification event handlers and creating performance counters, download the code that accompanies this article. To create a performance counter, use the PerformanceCounter class specified in the System.Diagnostics namespace. When you call the file change event handler, it simply increments the proper performance counter by 1:

private void OnFileChanged(Object source, FileSystemEventArgs e)
{
fileChangeCounter.IncrementBy(1);
}
The ServiceBase class also enables the service designer to create custom commands that the Service Control Manager can send to the service. This is an overridden but optional function named OnCustomCommand(), which I mentioned earlier. It contains a single parameter, an integer, that signifies the custom command to run. One thing you need to keep in mind: The command integer must be a value between 128 and 256; all other values are reserved by the system. For the file-monitoring service you're building, you create four custom commands to reset the counter data for each of the performance counters back to zero. The PerformanceCounter class doesn't support a "Reset" function specifically, but you can accomplish this easily by decrementing the counter by its current value (see Listing 1).



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.