-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathlib.go
132 lines (121 loc) · 2.83 KB
/
lib.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
package excelize
import (
"archive/zip"
"bytes"
"io"
"log"
"math"
"os"
"regexp"
"strconv"
"strings"
)
// ReadZip() takes a pointer to a zip.ReadCloser and returns a
// xlsx.File struct populated with its contents. In most cases
// ReadZip is not used directly, but is called internally by OpenFile.
func ReadZip(f *zip.ReadCloser) ([]FileList, error) {
defer f.Close()
return ReadZipReader(&f.Reader)
}
// ReadZipReader() can be used to read an XLSX in memory without
// touching the filesystem.
func ReadZipReader(r *zip.Reader) ([]FileList, error) {
var fileList []FileList
for _, v := range r.File {
singleFile := FileList{
Key: v.Name,
Value: readFile(v),
}
fileList = append(fileList, singleFile)
}
return fileList, nil
}
// Read XML content as string and replace drawing property in XML namespace of sheet
func readXml(files []FileList, name string) string {
for _, file := range files {
if file.Key == name {
return strings.Replace(file.Value, "<drawing r:id=", "<drawing rid=", -1)
}
}
return ``
}
// Update given file content in file list of XLSX
func saveFileList(files []FileList, name string, content string) []FileList {
for k, v := range files {
if v.Key == name {
files = files[:k+copy(files[k:], files[k+1:])]
files = append(files, FileList{
Key: name,
Value: XMLHeader + content,
})
return files
}
}
files = append(files, FileList{
Key: name,
Value: XMLHeader + content,
})
return files
}
// Read file content as string in a archive file
func readFile(file *zip.File) string {
rc, err := file.Open()
if err != nil {
log.Fatal(err)
}
buff := bytes.NewBuffer(nil)
io.Copy(buff, rc)
rc.Close()
return string(buff.Bytes())
}
// Convert integer to Excel sheet column title
func toAlphaString(value int) string {
if value < 0 {
return ``
}
var ans string
i := value
for i > 0 {
ans = string((i-1)%26+65) + ans
i = (i - 1) / 26
}
return ans
}
// Convert Excel sheet column title to int
func titleToNumber(s string) int {
weight := 0.0
sum := 0
for i := len(s) - 1; i >= 0; i-- {
sum = sum + (int(s[i])-int('A')+1)*int(math.Pow(26, weight))
weight++
}
return sum - 1
}
// Check the file exists
func pathExist(_path string) bool {
_, err := os.Stat(_path)
if err != nil && os.IsNotExist(err) {
return false
}
return true
}
// Split Excel sheet column title to string and integer, return XAxis
func getColIndex(axis string) string {
r, err := regexp.Compile(`[^\D]`)
if err != nil {
log.Fatal(err)
}
return string(r.ReplaceAll([]byte(axis), []byte("")))
}
// Split Excel sheet column title to string and integer, return YAxis
func getRowIndex(axis string) int {
r, err := regexp.Compile(`[\D]`)
if err != nil {
log.Fatal(err)
}
row, err := strconv.Atoi(string(r.ReplaceAll([]byte(axis), []byte(""))))
if err != nil {
log.Fatal(err)
}
return row
}