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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
|
package chainwriter
import (
"Chain/pkg/block"
"Chain/pkg/blockchain/blockinfodatabase"
"Chain/pkg/pro"
"Chain/pkg/utils"
"google.golang.org/protobuf/proto"
"log"
"os"
"strconv"
)
// ChainWriter handles all I/O for the BlockChain. It stores and retrieves
// Blocks and UndoBlocks.
// See config.go for more information on its fields.
// Block files are of the format:
// "DataDirectory/BlockFileName_CurrentBlockFileNumber.FileExtension"
// Ex: "data/block_0.txt"
// UndoBlock files are of the format:
// "DataDirectory/UndoFileName_CurrentUndoFileNumber.FileExtension"
// Ex: "data/undo_0.txt"
type ChainWriter struct {
// data storage information
FileExtension string
DataDirectory string
// block information
BlockFileName string
CurrentBlockFileNumber uint32
CurrentBlockOffset uint32
MaxBlockFileSize uint32
// undo block information
UndoFileName string
CurrentUndoFileNumber uint32
CurrentUndoOffset uint32
MaxUndoFileSize uint32
}
// New returns a ChainWriter given a Config.
func New(config *Config) *ChainWriter {
if err := os.MkdirAll(config.DataDirectory, 0700); err != nil {
log.Fatalf("Could not create ChainWriter's data directory")
}
return &ChainWriter{
FileExtension: config.FileExtension,
DataDirectory: config.DataDirectory,
BlockFileName: config.BlockFileName,
CurrentBlockFileNumber: 0,
CurrentBlockOffset: 0,
MaxBlockFileSize: config.MaxBlockFileSize,
UndoFileName: config.UndoFileName,
CurrentUndoFileNumber: 0,
CurrentUndoOffset: 0,
MaxUndoFileSize: config.MaxUndoFileSize,
}
}
// StoreBlock stores a Block and its corresponding UndoBlock to Disk,
// returning a BlockRecord that contains information for later retrieval.
func (cw *ChainWriter) StoreBlock(bl *block.Block, undoBlock *UndoBlock, height uint32) *blockinfodatabase.BlockRecord {
// serialize block
b := block.EncodeBlock(bl)
serializedBlock, err := proto.Marshal(b)
if err != nil {
utils.Debug.Printf("Failed to marshal block")
}
// serialize undo block
ub := EncodeUndoBlock(undoBlock)
serializedUndoBlock, err := proto.Marshal(ub)
if err != nil {
utils.Debug.Printf("Failed to marshal undo block")
}
// write block to disk
bfi := cw.WriteBlock(serializedBlock)
// create an empty file info, which we will update if the function is passed an undo block.
ufi := &FileInfo{}
if undoBlock.Amounts != nil {
ufi = cw.WriteUndoBlock(serializedUndoBlock)
}
return &blockinfodatabase.BlockRecord{
Header: bl.Header,
Height: height,
NumberOfTransactions: uint32(len(bl.Transactions)),
BlockFile: bfi.FileName,
BlockStartOffset: bfi.StartOffset,
BlockEndOffset: bfi.EndOffset,
UndoFile: ufi.FileName,
UndoStartOffset: ufi.StartOffset,
UndoEndOffset: ufi.EndOffset,
}
}
// WriteBlock writes a serialized Block to Disk and returns
// a FileInfo for storage information.
func (cw *ChainWriter) WriteBlock(serializedBlock []byte) *FileInfo {
// need to know the length of the block
length := uint32(len(serializedBlock))
// if we don't have enough space for this block in the current file,
// we have to update our file by changing the current file number
// and resetting the start offset to zero (so we write at the beginning
// of the file again.
// (recall format from above: "data/block_0.txt")
if cw.CurrentBlockOffset+length >= cw.MaxBlockFileSize {
cw.CurrentBlockOffset = 0
cw.CurrentBlockFileNumber++
}
// create path to correct file, following format
// "DataDirectory/BlockFileName_CurrentBlockFileNumber.FileExtension"
// Ex: "data/block_0.txt"
fileName := cw.DataDirectory + "/" + cw.BlockFileName + "_" + strconv.Itoa(int(cw.CurrentBlockFileNumber)) + cw.FileExtension
// write serialized block to disk
writeToDisk(fileName, serializedBlock)
// create a file info object with the starting and ending offsets of the serialized block
fi := &FileInfo{
FileName: fileName,
StartOffset: cw.CurrentBlockOffset,
EndOffset: cw.CurrentBlockOffset + length,
}
// update offset for next write
cw.CurrentBlockOffset += length
// return the file info
return fi
}
// WriteUndoBlock writes a serialized UndoBlock to Disk and returns
// a FileInfo for storage information.
func (cw *ChainWriter) WriteUndoBlock(serializedUndoBlock []byte) *FileInfo {
// need to know the length of the block
length := uint32(len(serializedUndoBlock))
// if we don't have enough space for this undo block in the current undo file,
// we have to update our undo file by changing the current undo file number
// and resetting the start undo offset to zero (so we write at the beginning
// of the undo file again.
// (recall format from above: "data/undo_0.txt")
if cw.CurrentUndoOffset+length >= cw.MaxUndoFileSize {
cw.CurrentUndoOffset = 0
cw.CurrentUndoFileNumber++
}
// create path to correct file, following format
// "DataDirectory/BlockFileName_CurrentBlockFileNumber.FileExtension"
// Ex: "data/undo_0.txt"
fileName := cw.DataDirectory + "/" + cw.UndoFileName + "_" + strconv.Itoa(int(cw.CurrentUndoFileNumber)) + cw.FileExtension
// write serialized undo block to disk
writeToDisk(fileName, serializedUndoBlock)
// create a file info object with the starting and ending undo offsets of the serialized
// undo block
fi := &FileInfo{
FileName: fileName,
StartOffset: cw.CurrentUndoOffset,
EndOffset: cw.CurrentUndoOffset + length,
}
// update offset for next write
cw.CurrentUndoOffset += length
// return the file info
return fi
}
// ReadBlock returns a Block given a FileInfo.
func (cw *ChainWriter) ReadBlock(fi *FileInfo) *block.Block {
bytes := readFromDisk(fi)
pb := &pro.Block{}
if err := proto.Unmarshal(bytes, pb); err != nil {
utils.Debug.Printf("failed to unmarshal block from file info {%v}", fi)
}
return block.DecodeBlock(pb)
}
// ReadUndoBlock returns an UndoBlock given a FileInfo.
func (cw *ChainWriter) ReadUndoBlock(fi *FileInfo) *UndoBlock {
bytes := readFromDisk(fi)
pub := &pro.UndoBlock{}
if err := proto.Unmarshal(bytes, pub); err != nil {
utils.Debug.Printf("failed to unmarshal undo block from file info {%v}", fi)
}
return DecodeUndoBlock(pub)
}
|