forked from kata-containers/kata-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hexbytes.go
105 lines (83 loc) · 1.73 KB
/
hexbytes.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
//
// Copyright (c) 2017-2018 Intel Corporation
//
// SPDX-License-Identifier: Apache-2.0
//
package main
import (
"errors"
"io"
"os"
"strings"
)
// HexByteReader is an I/O Reader type.
type HexByteReader struct {
file string
f *os.File
data []byte
// total length of "data"
len int
// how much of "data" has been sent back to the caller
offset int
}
// NewHexByteReader returns a new hex byte reader that escapes all
// hex-encoded characters.
func NewHexByteReader(file string) *HexByteReader {
var f *os.File
// treat dash as an alias for standard input
if file == stdinFile {
f = os.Stdin
}
return &HexByteReader{
file: file,
f: f,
}
}
// Read is a Reader that converts "\x" to "\\x"
func (r *HexByteReader) Read(p []byte) (n int, err error) {
size := len(p)
if r.data == nil {
if r.f == nil {
r.f, err = os.Open(r.file)
if err != nil {
return 0, err
}
}
// read the entire file
bytes, err := io.ReadAll(r.f)
if err != nil {
return 0, err
}
// although logfmt is happy to parse an empty file, this is
// surprising to users, so make it an error.
if len(bytes) == 0 {
return 0, errors.New("file is empty")
}
// perform the conversion
s := string(bytes)
result := strings.Replace(s, `\x`, `\\x`, -1)
// store the data
r.data = []byte(result)
r.len = len(r.data)
r.offset = 0
}
// calculate how much data is left to copy
remaining := r.len - r.offset
if remaining == 0 {
return 0, io.EOF
}
// see how much data can be copied on this call
limit := size
if remaining < limit {
limit = remaining
}
for i := 0; i < limit; i++ {
// index into the stored data
src := r.offset
// copy
p[i] = r.data[src]
// update
r.offset++
}
return limit, nil
}