task.go 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. package services
  2. import (
  3. ccfService "eta/eta_data_analysis/services/base_from_ccf"
  4. "eta/eta_data_analysis/utils"
  5. "fmt"
  6. "github.com/beego/beego/v2/task"
  7. "github.com/patrickmn/go-cache"
  8. "github.com/robfig/cron/v3"
  9. "io/fs"
  10. "os"
  11. "path/filepath"
  12. "strings"
  13. "syscall"
  14. "time"
  15. )
  16. func Task() {
  17. fmt.Println("task start")
  18. if utils.YongyiOpen == "1" {
  19. // 每隔两分钟检测文件是否变动,如果发生变动,则自动解析数据到库里
  20. readWatchYongyiFile := task.NewTask("ReadWatchYongyiFile", "0 */2 * * * *", ReadWatchYongyiFile)
  21. task.AddTask("监听涌溢咨询文件夹并解析Excel", readWatchYongyiFile)
  22. yongyiDownloadDaily := task.NewTask("YongyiDownloadDaily", "0 */25 13-23 * * *", YongyiDownloadDaily)
  23. task.AddTask("涌益咨询日度指标下载", yongyiDownloadDaily)
  24. yongyiDownloadWeekly := task.NewTask("YongyiDownloadWeekly", "0 */30 16-23 * * 4,5,6,0", YongyiDownloadWeekyly)
  25. task.AddTask("涌益咨询周度指标下载", yongyiDownloadWeekly)
  26. }
  27. if utils.CoalMineOpen == "1" {
  28. c := cron.New(cron.WithSeconds())
  29. //每2分钟检测一次指标文件是否更新
  30. _, err := c.AddFunc("0 */2 * * * *", ReadWatchIndexFile)
  31. if err != nil {
  32. fmt.Println("watch.ReadWatchIndexFile err" + err.Error())
  33. utils.FileLog.Info("watch.ReadWatchIndexFile err" + err.Error())
  34. }
  35. c.Start()
  36. }
  37. // 汾渭数据
  38. if utils.FenweiOpen == "1" {
  39. // 每5分钟检测一次目录是否有新文件
  40. fenWeiReadWatchIndexFile := task.NewTask("fenWeiReadWatchIndexFile", "0 */5 * * * *", FenweiReadWatchIndexFile)
  41. task.AddTask("汾渭数据指标文件检测", fenWeiReadWatchIndexFile)
  42. }
  43. if utils.MtjhOpen == "1" {
  44. c := cron.New(cron.WithSeconds())
  45. //每2分钟检测一次指标文件是否更新
  46. _, err := c.AddFunc("0 */2 * * * *", mtjhWatch)
  47. if err != nil {
  48. fmt.Println("watch.mtjhWatch err" + err.Error())
  49. utils.FileLog.Info("watch.mtjhWatch err" + err.Error())
  50. }
  51. c.Start()
  52. }
  53. if utils.CoalMailAttachmentOpen == "1" {
  54. mailAttachment := task.NewTask("MailAttachment", utils.CoalMailAttachmentTime, MailAttachment)
  55. task.AddTask("启动获取邮件附件脚本", mailAttachment)
  56. }
  57. // CCF化纤信息
  58. if utils.CCFOpen == "1" {
  59. // 原油石化早报-默认每日9:00
  60. ccfDailyTime := utils.CCFDailyTaskTime
  61. if ccfDailyTime == "" {
  62. ccfDailyTime = "0 0 9 * * *"
  63. }
  64. taskCCFOilDailyEdb := task.NewTask("taskCCFOilDailyEdb", ccfDailyTime, ccfService.TaskOilDailyEdb)
  65. task.AddTask("CCF原油石化早报", taskCCFOilDailyEdb)
  66. // 各品种周报-默认每周五17-19点每隔半小时
  67. ccfWeeklyTime := utils.CCFWeeklyTaskTime
  68. if ccfWeeklyTime == "" {
  69. ccfWeeklyTime = "0 */30 17-19 * * 5"
  70. }
  71. taskCCFWeeklyEdb := task.NewTask("taskCCFWeeklyEdb", ccfWeeklyTime, ccfService.TaskWeeklyEdb)
  72. task.AddTask("CCF周度指标", taskCCFWeeklyEdb)
  73. // 各品种装置-默认每周四15-18点每隔半小时
  74. ccfStockTime := utils.CCFStockTaskTime
  75. if ccfStockTime == "" {
  76. ccfStockTime = "0 */30 15-18 * * 4"
  77. }
  78. taskCCFStockTable := task.NewTask("taskCCFStockTable", ccfStockTime, ccfService.TaskStockTable)
  79. task.AddTask("CCF装置检修", taskCCFStockTable)
  80. }
  81. task.StartTask()
  82. fmt.Println("task end")
  83. }
  84. func ReadWatchIndexFile() {
  85. fmt.Println("ReadWatchIndexFile start")
  86. var err error
  87. defer func() {
  88. if err != nil {
  89. fmt.Println("ReadWatchIndexFile Err:" + err.Error())
  90. }
  91. }()
  92. var cacheClient *cache.Cache
  93. if cacheClient == nil {
  94. cacheClient = cache.New(365*24*time.Hour, 365*24*time.Hour)
  95. }
  96. err = filepath.Walk(utils.CoalMineFilePath, func(path string, info fs.FileInfo, err error) error {
  97. if err != nil {
  98. return err
  99. }
  100. if !info.IsDir() {
  101. fileInfo, err := os.Stat(path)
  102. if err != nil {
  103. fmt.Println("os.Stat:", err.Error())
  104. }
  105. winFileAttr := fileInfo.Sys().(*syscall.Win32FileAttributeData)
  106. modifyTimeStr := utils.SecondToTime(winFileAttr.LastWriteTime.Nanoseconds() / 1e9).Format(utils.FormatDateTime)
  107. existModifyTime, ok := cacheClient.Get(path)
  108. if ok {
  109. existModifyTimeStr := existModifyTime.(string)
  110. if existModifyTimeStr != modifyTimeStr {
  111. if strings.Contains(path, "442家晋陕蒙煤矿周度产量数据") {
  112. err = Jsm(path)
  113. } else if strings.Contains(path, "内陆17省动力煤终端用户供耗存") {
  114. err = Inland(path)
  115. } else if strings.Contains(path, "沿海八省动力煤终端用户供耗存数据更新") {
  116. err = Coastal(path)
  117. } else if strings.Contains(path, "442家晋陕蒙历史数据") {
  118. err = JsmHistory(path)
  119. } else if strings.Contains(path, "CⅢ-8-16 25省市库存和日耗情况") {
  120. err = CoastalHistory(path)
  121. time.Sleep(time.Second * 10)
  122. err = InlandHistory(path)
  123. } else if strings.Contains(path, "分企业煤炭产量旬度数据") {
  124. err = Firm(path)
  125. }
  126. }
  127. } else {
  128. if strings.Contains(path, "442家晋陕蒙煤矿周度产量数据") {
  129. err = Jsm(path)
  130. } else if strings.Contains(path, "内陆17省动力煤终端用户供耗存") {
  131. err = Inland(path)
  132. } else if strings.Contains(path, "沿海八省动力煤终端用户供耗存数据更新") {
  133. err = Coastal(path)
  134. } else if strings.Contains(path, "442家晋陕蒙历史数据") {
  135. err = JsmHistory(path)
  136. } else if strings.Contains(path, "CⅢ-8-16 25省市库存和日耗情况") {
  137. err = CoastalHistory(path)
  138. time.Sleep(time.Second * 10)
  139. err = InlandHistory(path)
  140. } else if strings.Contains(path, "分企业煤炭产量旬度数据") {
  141. err = Firm(path)
  142. }
  143. }
  144. cacheClient.Delete(path)
  145. cacheClient.Set(path, modifyTimeStr, 24*time.Hour)
  146. }
  147. return nil
  148. })
  149. }