首页 > 开发 > 综合 > 正文

用Visual C#创建Windows服务程序

2024-07-21 02:26:15
字体:
来源:转载
供稿:网友
 一.windows服务介绍:

  windows服务以前被称作nt服务,是一些运行在windows nt、windows 2000和windows xp等操作系统下用户环境以外的程序。在以前,编写windows服务程序需要程序员很强的c或c++功底。然而现在在visual studio.net下,你可以运用c++或visual c#或visual basic.net很轻松的创建一个windows服务程序。同样,你还可以运用其他任何与clr相容的语言来创建windows服务程序。本文就向大家介绍如何运用visual c#来一步一步创建一个文件监视的windows服务程序,然后介绍如何安装、测试和调试该windows服务程序

  在介绍如何创建windows服务程序以前,我先向大家介绍一些有关windows服务的背景知识。一个windows服务程序是在windows操作系统下能完成特定功能的可执行的应用程序。windows服务程序虽然是可执行的,但是它不像一般的可执行文件通过双击就能开始运行了,它必须有特定的启动方式。这些启动方式包括了自动启动和手动启动两种。对于自动启动的windows服务程序,它们在windows启动或是重启之后用户登录之前就开始执行了。只要你将相应的windows服务程序注册到服务控制管理器(service control manager)中,并将其启动类别设为自动启动就行了。而对于手动启动的windows服务程序,你可以通过命令行工具的net start 命令来启动它,或是通过控制面板中管理工具下的服务一项来启动相应的windows服务程序(见图1)。同样,一个windows服务程序也不能像一般的应用程序那样被终止。因为windows服务程序一般是没有用户界面的,所以你也要通过命令行工具或是下面图中的工具来停止它,或是在系统关闭时使得windows服务程序自动停止。因为windows服务程序没有用户界面,所以基于用户界面的api函数对其是没有多大的意义。为了能使一个windows服务程序能够正常并有效的在系统环境下工作,程序员必须实现一系列的方法来完成其服务功能。windows服务程序的应用范围很广,典型的windows服务程序包含了硬件控制、应用程序监视、系统级应用、诊断、报告、web和文件系统服务等功能。

  图1



  二.创建windows服务程序

在介绍如何创建windows服务程序以前,我先向大家介绍一下.net框架下与windows服务相关的命名空间和其中的类库。.net框架大大地简化了windows服务程序的创建和控制过程,这要归功于其命名空间中的功能强大的类库。和windows服务程序相关的命名空间涉及到以下两个:system.serviceprocess和system.diagnostics。

要创建一个最基本的windows服务程序,我们只需要运用.net框架下的system.serviceprocess命名空间以及其中的四个类:servicebase、serviceinstaller、serviceprocessinstaller以及servicecontroller,其体系结构可见图2。

  图2



  其中servicebase类定义了一些可被其子类重载的函数,通过这些重载的函数,服务控制管理器就可以控制该windows服务程序了。这些函数包括:onstart()、onstop()、onpause()以及oncontinue()等四个。而且servicebase类的子类还可以重载oncustomcommand()函数来完成一些特定的操作。通过重载以上的一些函数,我们就完成了一个windows服务程序的基本框架,这些函数的重载方法如下:

protected override void onstart(string[] args){}protected override void onstop(){}protected override void onpause(){}protected override void oncontinue(){}


  servicebase类还为我们提供了一些属性,而这些属性是任何widnows服务程序所必须的。其中的servicename属性指定了windows服务的名称,通过该名称系统就可以调用windows服务了,同时其它应用程序也可以通过该名称来调用它的服务。而canpauseandcontinue和canstop属性顾名思义就是允许暂停并恢复和允许停止的意思。

  要使得一个windows服务程序能够正常运行,我们需要像创建一般应用程序那样为它创建一个程序的入口点。在windows服务程序中,我们也是在main()函数中完成这个操作的。首先我们在main()函数中创建一个windows服务的实例,该实例应该是servicebase类的某个子类的对象,然后我们调用由基类servicebase类定义的一个run()方法。然而run()方法并不就开始了windows服务程序,我们必须通过前面提到的服务控制管理器调用特定的控制功能来完成windows服务程序的启动,也就是要等到该对象的onstart()方法被调用时服务才真正开始运行。如果你想在一个windows服务程序中同时启动多个服务,那么只要在main()函数中定义多个servicebae类的子类的实例对象就可以了,方法就是创建一个servicebase类的数组对象,使得其中的每个对象对应于某个我们已预先定义好的服务。

{system.serviceprocess.servicebase[] myservices;myservices = new system.serviceprocess.servicebase[] { new service1(), new service2() };system.serviceprocess.servicebase.run(myservices);}


static void main()

  三.添加文件监视服务:

  了解了windows服务的基本体系结构和创建方法后,我们就可以试着往服务中添加一些实际的功能了。下面我将向大家介绍一个能监视本地文件系统的文件监视服务-filemonitorservice。该服务能根据预先设定的本地目录路径监视其中的文件包括子文件夹中的任何变化:文件创建、文件删除、文件改名、文件修改。同时,该服务还为每种变化创建了一个相对应的计数器,计数器的作用就是反映该种变化的频度。

  首先,我们打开visual studio.net,新建一个visual c#的windows服务的项目,如图3所示:

  图3



  在重载windows服务的onstart()函数之前,我们先给其类添加一些计数器对象,这些计数器分别对应了文件的创建、删除、改名以及修改等变化。一旦指定目录中的文件发生以上的某种变化,与其相对应的计数器就会自动加1。所有的这些计数器都是定义为performancecounter类型的变量的,该类是包含在system.diagnostics命名空间中的。

private system.diagnostics.performancecounter filecreatecounter;private system.diagnostics.performancecounter filedeletecounter;private system.diagnostics.performancecounter filerenamecounter;private system.diagnostics.performancecounter filechangecounter;


  之后我们便在类的initializecomponent()方法中创建以上定义的各个计数器对象并确定其相关属性。同时我们将该windows服务的名称设置为“filemonitorservice”,设定其即是允许暂停并恢复的又是允许停止的。

private void initializecomponent()              {                     this.components = new system.componentmodel.container();                     this.filechangecounter = new system.diagnostics.performancecounter();                     this.filedeletecounter = new system.diagnostics.performancecounter();                     this.filerenamecounter = new system.diagnostics.performancecounter();                     this.filecreatecounter = new system.diagnostics.performancecounter();                     filechangecounter.categoryname = "file monitor service";                     filedeletecounter.categoryname = "file monitor service";                     filerenamecounter.categoryname = "file monitor service";                     filecreatecounter.categoryname = "file monitor service";                     filechangecounter.countername = "files changed";                     filedeletecounter.countername = "files deleted";                     filerenamecounter.countername = "files renamed";                     filecreatecounter.countername = "files created";                     this.servicename = "filemonitorservice";                     this.canpauseandcontinue = true;                     this.canstop = true;                     servicepaused = false;              }


  接着就是重载onstart()函数和onstop()函数,onstart()函数完成了一些必要的初始化工作。在.net框架下,文件的监视功能可以由filesystemwatcher类来完成,该类是包含在system.io命名空间下的。该windows服务所要完成的功能包括了监视文件的创建、删除、改名和修改等变化,而filesystemwatcher类包含所有了对应于这些变化的处理函数。

protected override void onstart(string[] args)              {                          filesystemwatcher curwatcher = new filesystemwatcher();                     curwatcher.begininit();                     curwatcher.includesubdirectories = true;                     curwatcher.path =             system.configuration.configurationsettings.appsettings               ["filemonitordirectory"];                     curwatcher.changed += new filesystemeventhandler(onfilechanged);                     curwatcher.created += new filesystemeventhandler(onfilecreated);                     curwatcher.deleted += new filesystemeventhandler(onfiledeleted);                     curwatcher.renamed += new renamedeventhandler(onfilerenamed);                     curwatcher.enableraisingevents = true;                     curwatcher.endinit();              }


  注意其中被监视的目录是存放在一个应用程序配置文件中的,该文件是一个xml类型的文件。这种做法的好处就是我们不必重新编译并发布该windows服务而只要直接修改其配置文件就可以达到更改所要监视的目录的功能了。

  当该windows服务启动后,一旦被监视的目录中的文件发生某种变化,与其相对应的计数器的值便会相应的增加,方法很简单,只要调用计数器对象的incrementby()即可。

private void onfilechanged(object source, filesystemeventargs e)              {                     if( servicepaused == false )                     {                            filechangecounter.incrementby(1);                     }              }               private void onfilerenamed(object source, renamedeventargs e)              {                     if( servicepaused == false )                     {                            filerenamecounter.incrementby(1);                     }              }      private void onfilecreated(object source, filesystemeventargs e)              {                     if( servicepaused == false )                     {                            filecreatecounter.incrementby(1);                     }              }      private void onfiledeleted(object source, filesystemeventargs e)              {                     if( servicepaused == false )                     {                            filedeletecounter.incrementby(1);                     }              }


  onstop()函数即是停止windows服务的,在该windows服务中,服务一旦停止,所有的计数器的值都应归零,但是计数器并不提供一个reset()方法,所以我们只好将计数器中的值减去当前值来达到这个目的。

protected override void onstop()              {                     if( filechangecounter.rawvalue != 0 )                     {                            filechangecounter.incrementby(-filechangecounter.rawvalue);                     }                     if( filedeletecounter.rawvalue != 0 )                     {                            filedeletecounter.incrementby(-filedeletecounter.rawvalue);                     }                     if( filerenamecounter.rawvalue != 0 )                     {                            filerenamecounter.incrementby(-filerenamecounter.rawvalue);                           }                     if( filecreatecounter.rawvalue != 0 )                     {                            filecreatecounter.incrementby(-filecreatecounter.rawvalue);                     }              }


  同时,因为我们的windows服务是允许暂停并恢复的,所以我们还得重载onpause()函数和oncontinue()函数,方法很简单,只要设定前面定义的布尔值servicepaused即可。

protected override void onpause()              {                     servicepaused = true;              }             protected override void oncontinue()              {                     servicepaused = false;             }


  这样,该windows服务的主体部分已经完成了,不过它并不有用,我们还必须为其添加安装文件。安装文件为windows服务的正确安装做好了工作,它包括了一个windows服务的安装类,该类是重system.configuration.install.installer继承过来的。安装类中包括了windows服务运行所需的帐号信息,用户名、密码信息以及windows服务的名称,启动方式等信息。

[runinstaller(true)]       public class installer1 : system.configuration.install.installer       {              /// <summary>              /// 必需的设计器变量。              /// </summary>              private system.componentmodel.container components = null;              private system.serviceprocess.serviceprocessinstaller spinstaller;              private system.serviceprocess.serviceinstaller sinstaller;              public installer1()              {                     // 该调用是设计器所必需的。                     initializecomponent();                    // todo: 在 initcomponent 调用后添加任何初始化              }              #region component designer generated code              /// <summary>              /// 设计器支持所需的方法 - 不要使用代码编辑器修改              /// 此方法的内容。              /// </summary>             private void initializecomponent()              {                     components = new system.componentmodel.container();                     // 创建serviceprocessinstaller对象和serviceinstaller对象                     this.spinstaller =               new system.serviceprocess.serviceprocessinstaller();                     this.sinstaller = new system.serviceprocess.serviceinstaller();                     // 设定serviceprocessinstaller对象的帐号、用户名和密码等信息                     this.spinstaller.account =               system.serviceprocess.serviceaccount.localsystem;                     this.spinstaller.username = null;                     this.spinstaller.password = null;     // 设定服务名称                     this.sinstaller.servicename = "filemonitorservice";     // 设定服务的启动方式                     this.sinstaller.starttype =               system.serviceprocess.servicestartmode.automatic;                     this.installers.addrange(              new system.configuration.install.installer[]                 {this.spinstaller, this.sinstaller });              }              #endregion       }


  同样,因为该windows服务中运用到了计数器对象,我们也要为其添加相应的安装文件,安装文件的内容和作用与前面的类似。限于篇幅,这里就不给出相应的代码了,有兴趣的读者可以参考文后附带的源代码文件。

  到此为止,整个windows服务已经构建完毕,不过windows服务程序和一般的应用程序不同,它不能直接调试运行。如果你直接在ide下试图调试运行之,就会报出如图4所示提示。

  图4



  根据其中提示,我们知道安装windows服务需要用到一个名为installutil.exe的命令行工具。而运用该工具安装windows服务的方法是非常简单的,安装该windows服务的命令如下:

installutil filemonitorservice.exe


  而要卸载该windows服务,你只要输入如下的命令即可:

installutil /u filemonitorservice.exe


  windows服务安装成功后,它便会出现在服务控制管理器中,如图5所示。

  图5



  这样,该文件监视的windows服务就完成了,一旦我们对被监视的目录中的文件进行操作,相应的计数器就会运作,起到监视文件变化的作用。不过这个功能对于一般的用户而言没多大意义,然而你可以在此基础上添加新的功能,比如构建一个后台的文件处理系统,一旦被监视的目录中的文件发生某种变化,windows服务便对其进行特定的操作,而最终用户就不必去关心后台处理程序是如何实现的了。

  四.总结:

  本文向大家介绍了windows服务的一些基本概念和构建一般的windows服务所需的方法,同时还向大家展示了一个具有文件监视功能的windows服务程序。通过本文,读者应该能体会到构建windows服务并不是想象中的那么复杂,这主要还得归功于.net框架为我们所作的大量努力。同时,希望大家能在本文给出的实例的基础上构建更加完善和更加强大的windows服务程序。最后希望本文对大家能有不少帮助。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表