|
@@ -3,15 +3,12 @@ package cn.com.taiji.service.impl;
|
|
|
import cn.com.taiji.enetity.HlxAis;
|
|
|
import cn.com.taiji.mapper.HlxAisMapper;
|
|
|
import cn.com.taiji.model.HlxAisPackage;
|
|
|
-import cn.com.taiji.model.HlxHead;
|
|
|
-import cn.com.taiji.model.HlxRadarPackage;
|
|
|
import cn.com.taiji.service.HlxAisService;
|
|
|
import cn.com.taiji.utils.ByteArrayUtils;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
-import java.text.SimpleDateFormat;
|
|
|
import java.util.*;
|
|
|
|
|
|
/**
|
|
@@ -21,7 +18,21 @@ import java.util.*;
|
|
|
@Slf4j
|
|
|
public class HlxAisServiceImpl extends ServiceImpl<HlxAisMapper, HlxAis> implements HlxAisService {
|
|
|
private Vector<HlxAisPackage> targetAis = new Vector<>();
|
|
|
- private Vector<HlxRadarPackage> targetRadar = new Vector<>();
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void saveRadarList() {
|
|
|
+ List<HlxAisPackage> result = new ArrayList<> (targetAis);
|
|
|
+ List<HlxAis> saveList = new ArrayList<> ();
|
|
|
+ targetAis = new Vector<>();
|
|
|
+ for (HlxAisPackage p : result) {
|
|
|
+ HlxAis ais = new HlxAis();
|
|
|
+ ais.setHeader(p.getHead());
|
|
|
+ ais.setValue(p.getAisList());
|
|
|
+ ais.setCreateTime(new Date());
|
|
|
+ saveList.add(ais);
|
|
|
+ }
|
|
|
+ saveBatch(saveList);
|
|
|
+ }
|
|
|
|
|
|
@Override
|
|
|
public void putAisList(HlxAisPackage p) {
|
|
@@ -35,43 +46,6 @@ public class HlxAisServiceImpl extends ServiceImpl<HlxAisMapper, HlxAis> impleme
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
- @Override
|
|
|
- public void putRadarList(HlxRadarPackage p) {
|
|
|
- targetRadar.add(p);
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public List<HlxRadarPackage> getRadarList() {
|
|
|
- List<HlxRadarPackage> result = new ArrayList<> (targetRadar);
|
|
|
- targetRadar.clear();
|
|
|
- return result;
|
|
|
- }
|
|
|
-
|
|
|
- @Override
|
|
|
- public HlxHead getHeadFromByte(byte[] head) {
|
|
|
- HlxHead hlxHead = new HlxHead();
|
|
|
- if(head.length == 21){
|
|
|
- byte[] num = new byte[8];
|
|
|
- System.arraycopy(head,0,num,0,8);
|
|
|
- hlxHead.setNum(ByteArrayUtils.byteArray2Long_Little_Endian(num));
|
|
|
- byte[] timestamp = new byte[8];
|
|
|
- System.arraycopy(head,8,timestamp,0,8);
|
|
|
- Long stamp = ByteArrayUtils.byteArray2Long_Little_Endian(timestamp);
|
|
|
- Date time = new Date();
|
|
|
- time.setTime(stamp);
|
|
|
- hlxHead.setTimestamp(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss")
|
|
|
- .format(time));
|
|
|
- byte[] type = new byte[1];
|
|
|
- System.arraycopy(head,16,type,0,1);
|
|
|
- int t = type[0]&255;
|
|
|
- hlxHead.setType(t);
|
|
|
- byte[] length = new byte[4];
|
|
|
- System.arraycopy(head,17,length,0,4);
|
|
|
- hlxHead.setLength(ByteArrayUtils.byteArray2Int_Little_Endian(length));
|
|
|
- }
|
|
|
- return hlxHead;
|
|
|
- }
|
|
|
-
|
|
|
public static void main(String[] args) {
|
|
|
|
|
|
byte[] result = new byte[21];
|