EventThread.java 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. package com.gzlh.event;
  2. import cn.hutool.core.thread.ThreadUtil;
  3. import cn.hutool.core.util.NumberUtil;
  4. import cn.hutool.core.util.RandomUtil;
  5. import cn.hutool.core.util.StrUtil;
  6. import com.gzlh.config.ModuleEnum;
  7. import com.gzlh.dto.EventDTO;
  8. import com.gzlh.infrared.config.RedPropertiesConfig;
  9. import com.gzlh.infrared.factory.RedFactory;
  10. import com.gzlh.led.factory.LedFactory;
  11. import com.gzlh.led.properties.LedPropertiesConfig;
  12. import com.gzlh.weighbridge.config.WeighbridgePropertiesConfig;
  13. import com.gzlh.weighbridge.factory.WeighbridgeFactory;
  14. import lombok.extern.slf4j.Slf4j;
  15. import javax.annotation.Resource;
  16. import java.util.Date;
  17. import java.util.List;
  18. @Slf4j
  19. public class EventThread implements Runnable{
  20. private List<EventDTO> eventDTOList;
  21. private String eventName;
  22. private final LedFactory ledFactory=SpringUtil.getBean(LedFactory.class);
  23. private final RedFactory redFactory=SpringUtil.getBean(RedFactory.class);
  24. private final WeighbridgeFactory weighbridgeFactory=SpringUtil.getBean(WeighbridgeFactory.class);
  25. private final WeighbridgePropertiesConfig weighbridgePropertiesConfig=SpringUtil.getBean(WeighbridgePropertiesConfig.class);
  26. private final RedPropertiesConfig redPropertiesConfig=SpringUtil.getBean(RedPropertiesConfig.class);
  27. private final LedPropertiesConfig ledPropertiesConfig=SpringUtil.getBean(LedPropertiesConfig.class);
  28. public EventThread(String eventName) {
  29. this.eventName=eventName;
  30. }
  31. public void setEventDTOList(List<EventDTO> eventDTOList) {
  32. this.eventDTOList = eventDTOList;
  33. }
  34. public void setEventName(String eventName) {
  35. this.eventName = eventName;
  36. }
  37. /**
  38. * 处理事件
  39. *
  40. * @param eventName 服务.事件名 比如led.ready
  41. */
  42. public void handlerEvent(String eventName) {
  43. log.info("event:{}", eventName);
  44. eventDTOList.stream().filter(eventDTO -> StrUtil.equals(eventName, eventDTO.getName()))
  45. .findFirst().ifPresent(eventDTO -> {
  46. List<String> actionList = eventDTO.getActionList().getAction();
  47. //依次执行动作
  48. actionList.forEach(action -> {
  49. String module = StrUtil.subBefore(action, ".", true);
  50. String command = StrUtil.subAfter(action, ".", true);
  51. if (StrUtil.equals(module, ModuleEnum.INFRARED_MODULE.getModuleEn())) {
  52. //动作属于红外
  53. redFactory.handler(redPropertiesConfig.getBrand()).handlerAction(command);
  54. } else if (StrUtil.equals(module, ModuleEnum.LED_MODULE.getModuleEn())) {
  55. //动作属于led
  56. ledFactory.handler(ledPropertiesConfig.getBrand()).handlerAction(command);
  57. } else if (StrUtil.equals(module, ModuleEnum.WEIGHBRIDGE_MODULE.getModuleEn())) {
  58. //动作属于地磅
  59. weighbridgeFactory.handler(weighbridgePropertiesConfig.getBrand()).handlerAction(command);
  60. } else if (StrUtil.equals(module, ModuleEnum.CENTER_MODULE.getModuleEn())) {
  61. //动作属于中心总线
  62. handlerAction(command);
  63. }
  64. ThreadUtil.sleep(250);
  65. });
  66. });
  67. }
  68. /**
  69. * 调度中心命令处理
  70. *
  71. * @param action
  72. */
  73. private void handlerAction(String action) {
  74. if (StrUtil.contains(action, CenterActionCommand.SLEEP_COMMAND.getCommand())) {
  75. //休眠
  76. handlerSleep(action);
  77. }
  78. }
  79. /**
  80. * 调度中心休眠
  81. *
  82. * @param action
  83. */
  84. private void handlerSleep(String action) {
  85. String time = StrUtil.subBefore(StrUtil.subAfter(action, "(", true), ")", true);
  86. if (NumberUtil.isInteger(time)) {
  87. ThreadUtil.sleep(Long.parseLong(time));
  88. }
  89. }
  90. @Override
  91. public void run(){
  92. handlerEvent(eventName);
  93. }
  94. }