-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogentry.go
118 lines (98 loc) · 2.73 KB
/
logentry.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
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
115
116
117
118
package trustdidweb
import (
"fmt"
"time"
"github.com/go-json-experiment/json"
"github.com/go-json-experiment/json/jsontext"
"github.com/multiformats/go-multicodec"
)
type LogEntry struct {
VersionId versionId `json:"versionId"`
VersionTime time.Time `json:"versionTime,format:RFC3339"`
Params LogParams `json:"params"`
DocState docState `json:"docState,omitempty"`
Proof []Proof `json:"proof,omitempty"`
}
// logLine is an intermidiate representation of a log entry for JSON marshalling
type logLine []interface{}
func (l *logLine) ToLogEntry() (LogEntry, error) {
type logLineStruct struct {
VersionID interface{} `json:"versionId"`
VersionTime interface{} `json:"versionTime"`
Params interface{} `json:"params"`
DocState interface{} `json:"docState"`
Proof interface{} `json:"proof"`
}
lls := logLineStruct{
VersionID: (*l)[0],
VersionTime: (*l)[1],
Params: (*l)[2],
DocState: (*l)[3],
// Proof: (*l)[4],
}
if len(*l) == 5 {
lls.Proof = (*l)[4]
} else {
lls.Proof = nil
}
lBytes, err := json.Marshal(lls)
if err != nil {
return LogEntry{}, err
}
entry := LogEntry{}
err = json.Unmarshal(lBytes, &entry)
if err != nil {
return LogEntry{}, err
}
return entry, nil
}
// copy returns a deep copy of the log entry
func (l LogEntry) copy() LogEntry {
newEntry := LogEntry{}
entryBytes, _ := json.Marshal(l)
_ = json.Unmarshal(entryBytes, &newEntry)
return newEntry
}
func (l *LogEntry) UnmarshalJSONL(b []byte) error {
line := logLine{}
// line := []interface{}{}
if err := json.Unmarshal(b, &line); err != nil {
return err
}
entry, err := line.ToLogEntry()
if err != nil {
return err
}
*l = entry
return nil
}
// MarshalJSONL returns the JSON-line representation of the log entry
func (l LogEntry) MarshalJSONL() ([]byte, error) {
line := []interface{}{l.VersionId, l.VersionTime.Format(time.RFC3339), l.Params, l.DocState}
if len(l.Proof) > 0 {
line = append(line, l.Proof)
}
b, err := json.Marshal(line)
if err != nil {
return nil, err
}
(*jsontext.Value)(&b).Canonicalize()
return b, nil
}
// calculateEntryHash calculates the hash of the log entry.
// Since during calculation of the entryHash the hash of the previous entry is used, this version must be provided.
func (entry LogEntry) calculateEntryHash(prevVersionId versionId) (entryHash, error) {
// a hash is calulated over the entry without proof
entry.Proof = nil
// Canonicalized version of the first log entry
entry.VersionId = prevVersionId
b, err := entry.MarshalJSONL()
if err != nil {
return "", err
}
entryHash := newEntryHash(b, uint64(multicodec.Sha2_256))
if entryHash == "" {
return "", fmt.Errorf("failed to calculate entry hash")
}
return entryHash, nil
}