houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
package com.iailab.module.data.point.collection.utils;
 
import com.iailab.module.data.common.enums.DataTypeEnum;
import com.iailab.module.data.point.dto.DaPointDTO;
import com.iailab.module.data.influxdb.pojo.*;
 
/**
 * @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();
        }
    }
}