|
@@ -4,7 +4,6 @@ import cn.com.taiji.track.constants.WarningCodeConstants;
|
|
|
import cn.com.taiji.track.entity.ShipStatusEntity;
|
|
|
import cn.com.taiji.track.mapper.ShipStatusMapper;
|
|
|
import cn.com.taiji.track.service.IShipStatusService;
|
|
|
-import com.alibaba.druid.util.StringUtils;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -19,19 +18,13 @@ import java.util.concurrent.ConcurrentHashMap;
|
|
|
@Slf4j
|
|
|
public class ShipStatusServiceImpl extends ServiceImpl<ShipStatusMapper, ShipStatusEntity> implements IShipStatusService {
|
|
|
|
|
|
- private Vector<String> offLineDeviceIds= new Vector<>();
|
|
|
- private Vector<String> onLineDeviceIds= new Vector<>();
|
|
|
+ private Map<String, String> onlineMap= new ConcurrentHashMap<>();
|
|
|
private Map<String, String> anchorMap= new ConcurrentHashMap<>();
|
|
|
private Map<String, String> inportMap= new ConcurrentHashMap<>();
|
|
|
|
|
|
@Override
|
|
|
- public void pushOffLineDeviceId(String deviceId){
|
|
|
- offLineDeviceIds.add(deviceId);
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public void pushOnLineDeviceId(String deviceId) {
|
|
|
- onLineDeviceIds.add(deviceId);
|
|
|
+ public void pushOnLineDeviceId(String deviceId, String start) {
|
|
|
+ onlineMap.put(deviceId, start);
|
|
|
}
|
|
|
|
|
|
@Override
|
|
@@ -45,75 +38,34 @@ public class ShipStatusServiceImpl extends ServiceImpl<ShipStatusMapper, ShipSta
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void cacheToMySql() {
|
|
|
- Date begin = new Date();
|
|
|
- List<ShipStatusEntity> saveList = new ArrayList<>();
|
|
|
- if(offLineDeviceIds.size() > 0){
|
|
|
- List<String> idList = new ArrayList<>(offLineDeviceIds);
|
|
|
- offLineDeviceIds.clear();
|
|
|
- for (String id : idList) {
|
|
|
- ShipStatusEntity entity = baseMapper.selectById(id);
|
|
|
- if (entity == null) {
|
|
|
- entity = new ShipStatusEntity();
|
|
|
- entity.setDeviceId(id);
|
|
|
- entity.setIsOnline(ShipStatusEntity.OnlineStatus.OFFLINE);
|
|
|
- entity.setOnlineChangeTime(new Date());
|
|
|
- saveList.add(entity);
|
|
|
- }else if (ShipStatusEntity.OnlineStatus.ONLINE.equals(entity.getIsOnline())) {
|
|
|
- entity.setIsOnline(ShipStatusEntity.OnlineStatus.OFFLINE);
|
|
|
- entity.setOnlineChangeTime(new Date());
|
|
|
- saveList.add(entity);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- if(onLineDeviceIds.size() > 0){
|
|
|
- List<String> idList = new ArrayList<>(onLineDeviceIds);
|
|
|
- onLineDeviceIds.clear();
|
|
|
- for (String id : idList) {
|
|
|
- ShipStatusEntity entity = baseMapper.selectById(id);
|
|
|
- if (entity == null) {
|
|
|
- entity = new ShipStatusEntity();
|
|
|
- entity.setDeviceId(id);
|
|
|
- entity.setIsOnline(ShipStatusEntity.OnlineStatus.ONLINE);
|
|
|
- entity.setOnlineChangeTime(new Date());
|
|
|
- saveList.add(entity);
|
|
|
- }else if (ShipStatusEntity.OnlineStatus.OFFLINE.equals(entity.getIsOnline())) {
|
|
|
- entity.setIsOnline(ShipStatusEntity.OnlineStatus.ONLINE);
|
|
|
- entity.setOnlineChangeTime(new Date());
|
|
|
- saveList.add(entity);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- if(!saveList.isEmpty()){
|
|
|
- saveBatch(saveList);
|
|
|
- log.info("船舶状态写入数据库完成!耗时 {} 毫秒, 合计保存 {} 条记录", (new Date()).getTime() - begin.getTime(), saveList.size());
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
public void anchorCacheToMySql() {
|
|
|
Date begin = new Date();
|
|
|
List<ShipStatusEntity> saveList = new ArrayList<>();
|
|
|
if(anchorMap.size() > 0){
|
|
|
Map<String,String> map = new HashMap<>(anchorMap);
|
|
|
anchorMap.clear();
|
|
|
+ List<ShipStatusEntity> statusEntityList = baseMapper.selectBatchIds(map.keySet());
|
|
|
+ if(statusEntityList.size() > 0) {
|
|
|
+ for(ShipStatusEntity statusEntity : statusEntityList){
|
|
|
+ String start = map.get(statusEntity.getDeviceId());
|
|
|
+ ShipStatusEntity.AnchorStatus status = ShipStatusEntity.AnchorStatus.getStatus(start);
|
|
|
+ if(!status.equals(statusEntity.getIsAnchor())){
|
|
|
+ statusEntity.setIsAnchor(status);
|
|
|
+ saveList.add(statusEntity);
|
|
|
+ }
|
|
|
+ map.remove(statusEntity.getDeviceId());
|
|
|
+ }
|
|
|
+ }
|
|
|
for (String id : map.keySet()) {
|
|
|
String start = map.get(id);
|
|
|
- ShipStatusEntity entity = baseMapper.selectById(id);
|
|
|
ShipStatusEntity.AnchorStatus status = ShipStatusEntity.AnchorStatus.getStatus(start);
|
|
|
- if (entity == null) {
|
|
|
- entity = new ShipStatusEntity();
|
|
|
- entity.setDeviceId(id);
|
|
|
- entity.setIsOnline(ShipStatusEntity.OnlineStatus.ONLINE);
|
|
|
- entity.setOnlineChangeTime(new Date());
|
|
|
- entity.setIsAnchor(status);
|
|
|
- entity.setAnchorChangeTime(new Date());
|
|
|
- saveList.add(entity);
|
|
|
- }else if (!status.equals(entity.getIsAnchor())) {
|
|
|
- entity.setIsAnchor(status);
|
|
|
- entity.setAnchorChangeTime(new Date());
|
|
|
- saveList.add(entity);
|
|
|
- }
|
|
|
+ ShipStatusEntity entity = new ShipStatusEntity();
|
|
|
+ entity.setDeviceId(id);
|
|
|
+ entity.setIsOnline(ShipStatusEntity.OnlineStatus.ONLINE);
|
|
|
+ entity.setOnlineChangeTime(new Date());
|
|
|
+ entity.setIsAnchor(status);
|
|
|
+ entity.setAnchorChangeTime(new Date());
|
|
|
+ saveList.add(entity);
|
|
|
}
|
|
|
}
|
|
|
if(!saveList.isEmpty()){
|
|
@@ -128,48 +80,68 @@ public class ShipStatusServiceImpl extends ServiceImpl<ShipStatusMapper, ShipSta
|
|
|
if (inportMap.size() > 0) {
|
|
|
Map<String, String> map = new HashMap<>(inportMap);
|
|
|
inportMap.clear();
|
|
|
- for (String deviceId : map.keySet()) {
|
|
|
- String inportCode = map.get(deviceId);
|
|
|
- ShipStatusEntity entity = baseMapper.selectById(deviceId);
|
|
|
- switch (inportCode) {
|
|
|
- case WarningCodeConstants.INPORT_WARNING:
|
|
|
- if (entity == null) {
|
|
|
- entity = new ShipStatusEntity();
|
|
|
- entity.setDeviceId(deviceId);
|
|
|
- entity.setIsOnline(ShipStatusEntity.OnlineStatus.ONLINE);
|
|
|
- entity.setOnlineChangeTime(new Date());
|
|
|
- entity.setIsInport(ShipStatusEntity.InportStatus.TRUE);
|
|
|
- entity.setInportChangeTime(new Date());
|
|
|
- saveList.add(entity);
|
|
|
- } else {
|
|
|
- entity.setIsInport(ShipStatusEntity.InportStatus.TRUE);
|
|
|
- entity.setInportChangeTime(new Date());
|
|
|
- saveList.add(entity);
|
|
|
- }
|
|
|
- break;
|
|
|
- case WarningCodeConstants.OUTPROT_WARNING:
|
|
|
- if (entity == null) {
|
|
|
- entity = new ShipStatusEntity();
|
|
|
- entity.setDeviceId(deviceId);
|
|
|
- entity.setIsOnline(ShipStatusEntity.OnlineStatus.ONLINE);
|
|
|
- entity.setOnlineChangeTime(new Date());
|
|
|
- entity.setIsInport(ShipStatusEntity.InportStatus.FALSE);
|
|
|
- entity.setInportChangeTime(new Date());
|
|
|
- saveList.add(entity);
|
|
|
- } else {
|
|
|
- entity.setIsInport(ShipStatusEntity.InportStatus.FALSE);
|
|
|
- entity.setInportChangeTime(new Date());
|
|
|
- saveList.add(entity);
|
|
|
- }
|
|
|
- break;
|
|
|
- default:
|
|
|
- break;
|
|
|
+ List<ShipStatusEntity> statusEntityList = baseMapper.selectBatchIds(map.keySet());
|
|
|
+ if(statusEntityList.size() > 0) {
|
|
|
+ for(ShipStatusEntity statusEntity : statusEntityList){
|
|
|
+ String inportCode = map.get(statusEntity.getDeviceId());
|
|
|
+ ShipStatusEntity.InportStatus status = ShipStatusEntity.InportStatus.getStatus(inportCode);
|
|
|
+ if(!status.equals(statusEntity.getIsAnchor())){
|
|
|
+ statusEntity.setIsInport(status);
|
|
|
+ saveList.add(statusEntity);
|
|
|
+ }
|
|
|
+ map.remove(statusEntity.getDeviceId());
|
|
|
}
|
|
|
}
|
|
|
+ for (String id : map.keySet()) {
|
|
|
+ String inportCode = map.get(id);
|
|
|
+ ShipStatusEntity.InportStatus status = ShipStatusEntity.InportStatus.getStatus(inportCode);
|
|
|
+ ShipStatusEntity entity = new ShipStatusEntity();
|
|
|
+ entity.setDeviceId(id);
|
|
|
+ entity.setIsOnline(ShipStatusEntity.OnlineStatus.ONLINE);
|
|
|
+ entity.setOnlineChangeTime(new Date());
|
|
|
+ entity.setIsInport(status);
|
|
|
+ entity.setInportChangeTime(new Date());
|
|
|
+ saveList.add(entity);
|
|
|
+ }
|
|
|
if (!saveList.isEmpty()) {
|
|
|
saveBatch(saveList);
|
|
|
log.info("进出港状态写入数据库完成!耗时 {} 毫秒, 合计保存 {} 条记录", (new Date()).getTime() - begin.getTime(), saveList.size());
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void onlineCacheToMySql() {
|
|
|
+ Date begin = new Date();
|
|
|
+ List<ShipStatusEntity> saveList = new ArrayList<>();
|
|
|
+ if(onlineMap.size() > 0) {
|
|
|
+ Map<String, String> map = new HashMap<>(onlineMap);
|
|
|
+ onlineMap.clear();
|
|
|
+ List<ShipStatusEntity> statusEntityList = baseMapper.selectBatchIds(map.keySet());
|
|
|
+ if(statusEntityList.size() > 0){
|
|
|
+ for(ShipStatusEntity statusEntity : statusEntityList){
|
|
|
+ String start = map.get(statusEntity.getDeviceId());
|
|
|
+ ShipStatusEntity.OnlineStatus status = ShipStatusEntity.OnlineStatus.getStatus(start);
|
|
|
+ if(!status.equals(statusEntity.getIsOnline())){
|
|
|
+ statusEntity.setIsOnline(status);
|
|
|
+ saveList.add(statusEntity);
|
|
|
+ }
|
|
|
+ map.remove(statusEntity.getDeviceId());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ for (String id : map.keySet()) {
|
|
|
+ String start = map.get(id);
|
|
|
+ ShipStatusEntity.OnlineStatus status = ShipStatusEntity.OnlineStatus.getStatus(start);
|
|
|
+ ShipStatusEntity entity = new ShipStatusEntity();
|
|
|
+ entity.setDeviceId(id);
|
|
|
+ entity.setIsOnline(status);
|
|
|
+ entity.setOnlineChangeTime(new Date());
|
|
|
+ saveList.add(entity);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(!saveList.isEmpty()){
|
|
|
+ saveBatch(saveList);
|
|
|
+ log.info("船舶状态写入数据库完成!耗时 {} 毫秒, 合计保存 {} 条记录", (new Date()).getTime() - begin.getTime(), saveList.size());
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|