-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutils.go
66 lines (57 loc) · 1.83 KB
/
utils.go
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
package main
import (
nfc_pb "github.com/nk521/nfcgate-server-go/nfcgate_proto"
"google.golang.org/protobuf/proto"
)
type UnmarshalledStruct struct {
ServerData *nfc_pb.ServerData
NfcData *nfc_pb.NFCData
}
func unmarshallServer(marshalledBytes []byte) *nfc_pb.ServerData {
server := nfc_pb.ServerData{}
proto.Unmarshal(marshalledBytes, &server)
return &server
}
func unmarshallNFCData(marshalledBytes []byte) *nfc_pb.NFCData {
nfcData := nfc_pb.NFCData{}
proto.Unmarshal(marshalledBytes, &nfcData)
return &nfcData
}
func unmarshallServerAndNFCData(marshalledBytes []byte) *nfc_pb.NFCData {
server := *unmarshallServer(marshalledBytes)
nfcData := *unmarshallNFCData(server.GetData())
return &nfcData
}
func unmarshallServerAndNFCDataStruct(marshalledBytes []byte) UnmarshalledStruct {
server := *unmarshallServer(marshalledBytes)
nfcData := *unmarshallNFCData(server.GetData())
return UnmarshalledStruct{
ServerData: &server,
NfcData: &nfcData,
}
}
func marshallServer(opcode nfc_pb.ServerData_Opcode, data []byte) []byte {
server := nfc_pb.ServerData{
Opcode: opcode,
Data: data,
}
marshalled_data, err := proto.Marshal(&server)
checkError(err)
return marshalled_data
}
func marshallNFCData(data_source nfc_pb.NFCData_DataSource, data_type nfc_pb.NFCData_DataType, timestamp int64, data []byte) []byte {
nfcData := nfc_pb.NFCData{
DataSource: data_source,
DataType: data_type,
Timestamp: timestamp,
Data: data,
}
marshalled_data, err := proto.Marshal(&nfcData)
checkError(err)
return marshalled_data
}
func marshallNFCDataAndServer(opcode nfc_pb.ServerData_Opcode, data_source nfc_pb.NFCData_DataSource, data_type nfc_pb.NFCData_DataType, timestamp int64, data []byte) []byte {
server := marshallNFCData(data_source, data_type, timestamp, data)
nfcData := marshallServer(opcode, server)
return nfcData
}