wangzhibo
4 天以前 ae6f40460dcd56af6c5f60ba52c883854c3bac55
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 nodomain.freeyourgadget.gadgetbridge.devices.huawei.packets;
 
import nodomain.freeyourgadget.gadgetbridge.devices.huawei.HuaweiPacket;
import nodomain.freeyourgadget.gadgetbridge.devices.huawei.HuaweiTLV;
 
public class Ephemeris {
    public static final int id = 0x1f;
 
    public static class OperatorData {
        public static final int id = 0x01;
 
        public static class OperatorIncomingRequest extends HuaweiPacket {
            public byte operationInfo;
            public int operationTime;
 
            public OperatorIncomingRequest(ParamsProvider paramsProvider) {
                super(paramsProvider);
            }
 
            @Override
            public void parseTlv() throws ParseException {
 
                //TODO: can contain many elements.
                //List<HuaweiTLV> subContainers = container.getObjects(0x81);
                HuaweiTLV subTlv = this.tlv.getObject(0x81);
 
                this.operationInfo = subTlv.getByte(0x02);
                this.operationTime = subTlv.getInteger(0x03);
            }
        }
 
        public static class OperatorResponse extends HuaweiPacket {
 
            public OperatorResponse(ParamsProvider paramsProvider, int responseCode) {
                super(paramsProvider);
 
                this.serviceId = Ephemeris.id;
                this.commandId = id;
 
                this.tlv = new HuaweiTLV().put(0x7f, responseCode);
 
                this.complete = true;
            }
        }
    }
 
    public static class ParameterConsult {
        public static final byte id = 0x02;
 
        public static class Request extends HuaweiPacket {
 
 
            public Request(ParamsProvider paramsProvider) {
                super(paramsProvider);
                this.serviceId = Ephemeris.id;
                this.commandId = id;
                this.tlv = new HuaweiTLV().put(0x81);
            }
        }
 
        public static class Response extends HuaweiPacket {
            public int consultDeviceTime;
            public byte downloadVersion;
            public String downloadTag;
 
            public Response (ParamsProvider paramsProvider) {
                super(paramsProvider);
            }
 
            @Override
            public void parseTlv() throws HuaweiPacket.ParseException {
 
                //TODO: can contain many elements.
                //List<HuaweiTLV> subContainers = container.getObjects(0x81);
                HuaweiTLV subTlv = this.tlv.getObject(0x81);
 
                this.consultDeviceTime = subTlv.getByte(0x04) * 1000;
                this.downloadVersion = subTlv.getByte(0x05);
                this.downloadTag = subTlv.getString(0x06);
            }
 
        }
    }
 
    public static class FileStatus {
        public static final byte id = 0x03;
 
        public static class Request extends HuaweiPacket {
 
 
            public Request(ParamsProvider paramsProvider, byte status) {
                super(paramsProvider);
                this.serviceId = Ephemeris.id;
                this.commandId = id;
                this.tlv = new HuaweiTLV().put(0x1, status);
            }
        }
 
        public static class Response extends HuaweiPacket {
            public int responseCode;
 
            public Response (ParamsProvider paramsProvider) {
                super(paramsProvider);
            }
 
            @Override
            public void parseTlv() throws HuaweiPacket.ParseException {
                this.responseCode = this.tlv.getInteger(0x7f);
            }
 
        }
    }
 
}