WeighbridgeHandlerKeLi.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. package com.gzlh.device.weighbridge.handler.impl;
  2. import cn.hutool.core.util.StrUtil;
  3. import com.gzlh.device.weighbridge.action.WeighbridgeCommonAction;
  4. import com.gzlh.device.weighbridge.brand.WeighbridgeBrandType;
  5. import com.gzlh.device.weighbridge.config.WeighbridgePropertiesConfig;
  6. import com.gzlh.device.weighbridge.handler.IWeighbridgeHandler;
  7. import lombok.extern.slf4j.Slf4j;
  8. import org.springframework.stereotype.Service;
  9. import javax.annotation.Resource;
  10. import java.util.Arrays;
  11. /**
  12. * 宁波柯力地磅处理器
  13. */
  14. @Service
  15. @Slf4j
  16. public class WeighbridgeHandlerKeLi implements IWeighbridgeHandler {
  17. @Resource
  18. private WeighbridgePropertiesConfig weighbridgePropertiesConfig;
  19. @Override
  20. public WeighbridgeBrandType brandType() {
  21. return WeighbridgeBrandType.NINGBO_KELI;
  22. }
  23. @Override
  24. public void handlerMsg(String msg) {
  25. log.info(WeighbridgeBrandType.NINGBO_KELI.getBrand() + "地磅:{}", msg);
  26. // log.info("客户端收到消息:" + msg);
  27. msg = StrUtil.replace(msg, "\u0003", "").replace("\u0002", "");
  28. // log.info("转换后消息:" + msg);
  29. // 去掉开头和结尾的特殊字符
  30. msg = msg.substring(1, msg.length() - 1);
  31. // 将字符串转换成字节数组类型
  32. byte[] bytes = msg.getBytes();
  33. // 取出有效数据
  34. byte[] validData = Arrays.copyOfRange(bytes, 1, bytes.length - 1);
  35. // 将有效数据转换成实际重量值
  36. int weight = Integer.parseInt(new String(validData)) / 10;
  37. CommonWeighbridgeHandler.cacheWeight(weight);
  38. }
  39. @Override
  40. public void handlerAction(String actionCommand) {
  41. actionCommand = actionCommand.toUpperCase();
  42. if (StrUtil.equals(actionCommand, WeighbridgeCommonAction.START_READ)) {
  43. //开始读取地磅数据
  44. CommonWeighbridgeHandler.startToRead();
  45. }
  46. }
  47. }