-
Notifications
You must be signed in to change notification settings - Fork 0
/
file.go
69 lines (53 loc) · 988 Bytes
/
file.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
package blogc
import (
"io/ioutil"
"os"
)
type File interface {
Path() string
Close() error
IsTempFile() bool
}
type FilePath string
func (f FilePath) Path() string {
return string(f)
}
func (f FilePath) Close() error {
return nil
}
func (f FilePath) IsTempFile() bool {
return false
}
type FileBytes struct {
path string
}
func NewFileBytes(in []byte) (*FileBytes, error) {
f, err := ioutil.TempFile("", "blogc_")
if err != nil {
return nil, err
}
filename := f.Name()
if c := len(in); c > 0 {
if _, err := f.Write(in); err != nil {
os.Remove(filename)
return nil, err
}
}
if err := f.Close(); err != nil {
os.Remove(filename)
return nil, err
}
return &FileBytes{path: filename}, nil
}
func (f *FileBytes) Path() string {
return f.path
}
func (f *FileBytes) Read() ([]byte, error) {
return ioutil.ReadFile(f.path)
}
func (f *FileBytes) Close() error {
return os.Remove(f.path)
}
func (f *FileBytes) IsTempFile() bool {
return true
}