使用 TopShelf 创建服务实例时,我希望能够访问服务实例名称(在作为服务安装期间可能已在命令行上设置;这意味着我无法直接访问它)能够将其用作 Log4Net 中日志文件名的属性。
在下面的示例代码中,我们设置了可用于在全局上下文中记录的各种属性。我也希望能够在这里设置服务实例名称;但似乎无法在主机初始化期间访问它。
关于如何在运行时使用 Topshelf 访问服务实例名称值的任何建议。
下面的示例是我们所有服务用来使用 Topshelf 启动服务的通用功能的一部分。
public static TopshelfExitCode Run(Func<IConsumerController> controllerFactory,
string serviceName,
string serviceDescription)
{
// Initialise the Global log4net properties so we can use them for log file names and logging when required.
log4net.GlobalContext.Properties["custom-assembly"] = System.IO.Path.GetFileNameWithoutExtension(System.Reflection.Assembly.GetEntryAssembly().Location);
log4net.GlobalContext.Properties["custom-processname"] = System.Diagnostics.Process.GetCurrentProcess().ProcessName;
log4net.GlobalContext.Properties["custom-process-id"] = System.Diagnostics.Process.GetCurrentProcess().Id;
// WOULD LIKE ACCESS TO THE SERVICE INSTANCE NAME HERE
var logFileInfo = new System.IO.FileInfo(".\\Log.config");
log4net.Config.XmlConfigurator.Configure(logFileInfo);
var host = HostFactory.New(r =>
{
var controller = controllerFactory();
r.Service<ConsumerService>( () => new ConsumerService(controller));
r.SetServiceName(serviceName);
r.SetDescription(serviceDescription + " © XYZ Ltd. 2012");
r.SetDisplayName(serviceDescription + " © XYZ Ltd. 2012");
r.StartAutomatically();
r.EnablePauseAndContinue();
r.RunAsLocalSystem();
});
return host.Run();
}