houzhongjian
2024-12-05 a709abfd8ffec1524cefff30c3581f4425695433
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
package com.iailab.module.model.mcs.pre.service.impl;
 
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.iailab.module.model.mcs.pre.dao.MmPredictModelDao;
import com.iailab.module.model.mcs.pre.entity.MmPredictModelEntity;
import com.iailab.module.model.mcs.pre.service.MmPredictModelService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.util.CollectionUtils;
import org.springframework.util.ObjectUtils;
 
import java.math.BigDecimal;
import java.util.List;
import java.util.Map;
import java.util.UUID;
import java.util.concurrent.ConcurrentHashMap;
 
/**
 * @author PanZhibao
 * @date 2021年04月27日 11:30
 */
@Service
public class MmPredictModelServiceImpl extends ServiceImpl<MmPredictModelDao, MmPredictModelEntity> implements MmPredictModelService {
 
    @Autowired
    private MmPredictModelDao mmPredictModelDao;
 
    private static Map<String, MmPredictModelEntity> modelEntityMap = new ConcurrentHashMap<>();
 
    private static Map<String, MmPredictModelEntity> activeModelMap = new ConcurrentHashMap<>();
 
    @Override
    public void savePredictModel(MmPredictModelEntity predictModel) {
        predictModel.setId(UUID.randomUUID().toString());
        mmPredictModelDao.insert(predictModel);
        clearCache();
    }
 
    @Override
    public void update(MmPredictModelEntity predictModel) {
        this.updateById(predictModel);
        clearCache();
    }
 
    @Override
    public MmPredictModelEntity getInfoFromCatch(String id) {
        if (!modelEntityMap.containsKey(id)) {
            MmPredictModelEntity modelEntity = getInfo(id);
            if (modelEntity != null) {
                modelEntityMap.put(id, modelEntity);
            }
        }
        return modelEntityMap.get(id);
    }
 
    @Override
    public void clearCache() {
        modelEntityMap.clear();
        activeModelMap.clear();
    }
 
    @Override
    public MmPredictModelEntity getInfo(String id) {
        return mmPredictModelDao.selectById(id);
    }
 
    @Override
    public BigDecimal getSampleLength(String id) {
        BigDecimal result = BigDecimal.ZERO;
        MmPredictModelEntity entity = mmPredictModelDao.getSampleLength(id);
        if (ObjectUtils.isEmpty(entity)) {
            return result;
        }
        result = entity.getPredictsamplength();
 
        return result;
    }
 
    public void deleteBatch(String[] itemIds) {
        QueryWrapper<MmPredictModelEntity> queryWrapper = new QueryWrapper<>();
        queryWrapper.in("itemid", itemIds);
        mmPredictModelDao.delete(queryWrapper);
        clearCache();
    }
 
    public MmPredictModelEntity getByItemid(String itemid) {
        QueryWrapper<MmPredictModelEntity> queryWrapper = new QueryWrapper<>();
        queryWrapper.eq("itemid", itemid);
        List<MmPredictModelEntity> list = mmPredictModelDao.selectList(queryWrapper);
        if (CollectionUtils.isEmpty(list)) {
            return new MmPredictModelEntity();
        }
        return list.get(0);
    }
 
    @Override
    public List<MmPredictModelEntity> getNoSettingmapPredictModel(Map<String, Object> params) {
        return mmPredictModelDao.getNoSettingmapPredictModel(params);
    }
 
    @Override
    public MmPredictModelEntity getActiveModelByItemId(String itemId) {
        if (activeModelMap.containsKey(itemId)) {
            return activeModelMap.get(itemId);
        }
        List<MmPredictModelEntity> list = mmPredictModelDao.getActiveModelByItemId(itemId);
        if (CollectionUtils.isEmpty(list)) {
            return null;
        }
        activeModelMap.put(itemId, list.get(0));
        return activeModelMap.get(itemId);
    }
}