Program.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. using FlowAlert.Model;
  2. using Quartz;
  3. using Quartz.Impl;
  4. using RDIFramework.Utilities;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Configuration;
  8. using System.Data;
  9. using System.IO;
  10. using System.Linq;
  11. using System.Text;
  12. using Topshelf;
  13. namespace TimedUpload
  14. {
  15. class Program
  16. {
  17. private static string programName = ConfigurationManager.AppSettings["serverName"];
  18. static void Main(string[] args)
  19. {
  20. log4net.Config.XmlConfigurator.ConfigureAndWatch(new FileInfo(AppDomain.CurrentDomain.BaseDirectory + "log4net.config"));
  21. try
  22. {
  23. HostFactory.Run(x =>
  24. {
  25. x.UseLog4Net();
  26. x.Service<ServiceRunner>();
  27. x.SetDescription(programName);
  28. x.SetDisplayName(programName);
  29. x.SetServiceName(programName);
  30. x.EnablePauseAndContinue();
  31. });
  32. }
  33. catch (Exception ex)
  34. {
  35. Console.Write(ex.Message);
  36. }
  37. }
  38. }
  39. public class DataUploadService
  40. {
  41. private readonly IScheduler scheduler;
  42. public DataUploadService()
  43. {
  44. scheduler = StdSchedulerFactory.GetDefaultScheduler();
  45. }
  46. public bool Start()
  47. {
  48. scheduler.Start();
  49. return true;
  50. }
  51. public bool Stop()
  52. {
  53. scheduler.Shutdown(false);
  54. return true;
  55. }
  56. public bool Continue()
  57. {
  58. scheduler.ResumeAll();
  59. return true;
  60. }
  61. public bool Pause()
  62. {
  63. scheduler.PauseAll();
  64. return true;
  65. }
  66. public bool AddJobTrigger(IJobDetail jobDetail, ITrigger trigger)
  67. {
  68. if (scheduler != null)
  69. {
  70. scheduler.ScheduleJob(jobDetail, trigger);
  71. }
  72. return true;
  73. }
  74. }
  75. }