潘志宝
3 天以前 c7ec0ceff9cf30cabbd8d071c1ef75d20d04548f
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
package com.iailab.module.data.point.collection.utils;
 
import com.iailab.module.data.common.enums.DataTypeEnum;
import com.iailab.module.data.enums.DataPointFreqEnum;
import com.iailab.module.data.point.dto.DaPointDTO;
import com.iailab.module.data.influxdb.pojo.*;
 
import java.time.Instant;
import java.util.Calendar;
import java.util.Date;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2023年05月08日 13:34:00
 */
public class GenInfluxPointValueUtils {
 
    public static InfluxPointValuePOJO getByPoint(DaPointDTO dto){
        if (DataTypeEnum.FLOAT.getCode().equals(dto.getDataType())) {
            InfluxPointValuePOJO pojo = new InfluxPointValueSimPOJO();
            pojo.setPoint(dto.getPointNo());
            if (dto.getDefaultValue() != null) {
                ((InfluxPointValueSimPOJO) pojo).setValue(dto.getDefaultValue().doubleValue());
            }
            return pojo;
        } else if (DataTypeEnum.INT.getCode().equals(dto.getDataType())) {
            InfluxPointValuePOJO pojo = new InfluxPointValueDigPOJO();
            pojo.setPoint(dto.getPointNo());
            if (dto.getDefaultValue() != null) {
                ((InfluxPointValueDigPOJO) pojo).setValue(dto.getDefaultValue().intValue());
            }
            return pojo;
        } else if (DataTypeEnum.BOOLEAN.getCode().equals(dto.getDataType())) {
            return new InfluxPointValueDigPOJO();
        } else {
            return new InfluxPointValueStrPOJO();
        }
    }
 
    public static InfluxPointValuePOJO getByPoint(DaPointDTO dto, Object value){
        if (DataTypeEnum.FLOAT.getCode().equals(dto.getDataType())) {
            InfluxPointValuePOJO pojo = new InfluxPointValueSimPOJO();
            pojo.setPoint(dto.getPointNo());
            if (dto.getDefaultValue() != null) {
                ((InfluxPointValueSimPOJO) pojo).setValue(dto.getDefaultValue().doubleValue());
            }
            if (value != null) {
                ((InfluxPointValueSimPOJO) pojo).setValue(Double.parseDouble(value.toString()));
            }
            return pojo;
        } else if (DataTypeEnum.INT.getCode().equals(dto.getDataType())) {
            InfluxPointValuePOJO pojo = new InfluxPointValueDigPOJO();
            pojo.setPoint(dto.getPointNo());
            if (dto.getDefaultValue() != null) {
                ((InfluxPointValueDigPOJO) pojo).setValue(dto.getDefaultValue().intValue());
            }
            if (value != null) {
                ((InfluxPointValueDigPOJO) pojo).setValue(Integer.parseInt(value.toString()));
            }
            return pojo;
        } else if (DataTypeEnum.BOOLEAN.getCode().equals(dto.getDataType().trim())) {
            InfluxPointValuePOJO pojo = new InfluxPointValueBoolPOJO();
            pojo.setPoint(dto.getPointNo());
            if (value != null) {
                ((InfluxPointValueBoolPOJO) pojo).setValue(Boolean.parseBoolean(value.toString()));
            }
            return pojo;
        } else {
            InfluxPointValuePOJO pojo = new InfluxPointValueStrPOJO();
            if (value != null) {
                ((InfluxPointValueStrPOJO) pojo).setValue(value.toString());
            }
            return new InfluxPointValueStrPOJO();
        }
    }
 
    public static Instant getByMin(Date collectTime, DataPointFreqEnum freqEnum) {
        Calendar cal = Calendar.getInstance();
        cal.setTime(collectTime);
        switch (freqEnum) {
            case NET_1MIN:
                cal.set(Calendar.SECOND, 0);
                break;
            case NET_1H:
                cal.set(Calendar.SECOND, 0);
                cal.set(Calendar.MINUTE, 0);
                break;
            case NET_Day:
                cal.set(Calendar.SECOND, 0);
                cal.set(Calendar.MINUTE, 0);
                cal.set(Calendar.HOUR_OF_DAY, 0);
                break;
            default:
                break;
        }
        return cal.getTime().toInstant();
    }
}