EventThread.java 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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.List;
  17. @Slf4j
  18. public class EventThread extends Thread{
  19. private List<EventDTO> eventDTOList;
  20. private String eventName;
  21. @Resource
  22. private LedFactory ledFactory;
  23. @Resource
  24. private RedFactory redFactory;
  25. @Resource
  26. WeighbridgeFactory weighbridgeFactory;
  27. @Resource
  28. private WeighbridgePropertiesConfig weighbridgePropertiesConfig;
  29. @Resource
  30. private RedPropertiesConfig redPropertiesConfig;
  31. @Resource
  32. private LedPropertiesConfig ledPropertiesConfig;
  33. public EventThread() {
  34. }
  35. public EventThread(String name, String eventName) {
  36. this.setName(name+"-"+ RandomUtil.randomNumber());
  37. this.eventName=eventName;
  38. }
  39. public void setEventDTOList(List<EventDTO> eventDTOList) {
  40. this.eventDTOList = eventDTOList;
  41. }
  42. public void setEventName(String eventName) {
  43. this.eventName = eventName;
  44. }
  45. /**
  46. * 处理事件
  47. *
  48. * @param eventName 服务.事件名 比如led.ready
  49. */
  50. public void handlerEvent(String eventName) {
  51. log.info("event:{}", eventName);
  52. System.out.println(eventName);
  53. eventDTOList.stream().filter(eventDTO -> StrUtil.equals(eventName, eventDTO.getName()))
  54. .findFirst().ifPresent(eventDTO -> {
  55. System.out.println(eventDTO);
  56. List<String> actionList = eventDTO.getActionList().getAction();
  57. //依次执行动作
  58. actionList.forEach(action -> {
  59. String actionPrefix = StrUtil.subBefore(action, ".", true).toLowerCase();
  60. String actionCommand = StrUtil.subAfter(action, ".", true).toUpperCase();
  61. if (StrUtil.equals(actionPrefix, ModuleEnum.INFRARED_MODULE.getModuleEn())) {
  62. redFactory.handler(redPropertiesConfig.getBrand()).handlerAction(actionCommand);
  63. } else if (StrUtil.equals(actionPrefix, ModuleEnum.LED_MODULE.getModuleEn())) {
  64. ledFactory.handler(ledPropertiesConfig.getBrand()).handlerAction(actionCommand);
  65. } else if (StrUtil.equals(actionPrefix, ModuleEnum.WEIGHBRIDGE_MODULE.getModuleEn())) {
  66. weighbridgeFactory.handler(weighbridgePropertiesConfig.getBrand()).handlerAction(actionCommand);
  67. } else if (StrUtil.equals(actionPrefix, ModuleEnum.CENTER_MODULE.getModuleEn())) {
  68. handlerAction(actionCommand);
  69. }
  70. ThreadUtil.sleep(250);
  71. });
  72. });
  73. }
  74. /**
  75. * 调度中心命令处理
  76. *
  77. * @param action
  78. */
  79. private void handlerAction(String action) {
  80. if (StrUtil.contains(action, CenterActionCommand.SLEEP_COMMAND.getCommand())) {
  81. //休眠
  82. handlerSleep(action);
  83. }
  84. }
  85. /**
  86. * 调度中心休眠
  87. *
  88. * @param action
  89. */
  90. private void handlerSleep(String action) {
  91. String time = StrUtil.subAfter(StrUtil.subAfter(action, "(", true), ")", true);
  92. if (NumberUtil.isInteger(time)) {
  93. ThreadUtil.sleep(Long.parseLong(time));
  94. }
  95. }
  96. public void run(){
  97. System.out.println("thread开始");
  98. handlerEvent(eventName);
  99. System.out.println("thread结束");
  100. }
  101. }