| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- package excelize
- import (
- "archive/zip"
- "bytes"
- "io"
- "log"
- "math"
- "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) (map[string]string, 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) (map[string]string, error) {
- fileList := make(map[string]string)
- for _, v := range r.File {
- fileList[v.Name] = readFile(v)
- }
- return fileList, nil
- }
- // Read XML content as string and replace drawing property in XML namespace of sheet
- func (f *File) readXML(name string) string {
- if content, ok := f.XLSX[name]; ok {
- return strings.Replace(content, "<drawing r:id=", "<drawing rid=", -1)
- }
- return ``
- }
- // Update given file content in file list of XLSX
- func (f *File) saveFileList(name string, content string) {
- f.XLSX[name] = XMLHeader + content
- }
- // 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
- }
- // 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
- }
|