Skip to content

Commit

Permalink
add limits for total columns, row and filename length
Browse files Browse the repository at this point in the history
  • Loading branch information
xuri committed May 28, 2020
1 parent c168233 commit 2ae6313
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 7 deletions.
10 changes: 5 additions & 5 deletions cell.go
Expand Up @@ -281,8 +281,8 @@ func (f *File) SetCellStr(sheet, axis, value string) error {
// setCellString provides a function to set string type to shared string
// table.
func (f *File) setCellString(value string) (t string, v string, ns xml.Attr) {
if len(value) > 32767 {
value = value[0:32767]
if len(value) > TotalCellChars {
value = value[0:TotalCellChars]
}
// Leading and ending space(s) character detection.
if len(value) > 0 && (value[0] == 32 || value[len(value)-1] == 32) {
Expand Down Expand Up @@ -311,8 +311,8 @@ func (f *File) setSharedString(val string) int {

// setCellStr provides a function to set string type to cell.
func setCellStr(value string) (t string, v string, ns xml.Attr) {
if len(value) > 32767 {
value = value[0:32767]
if len(value) > TotalCellChars {
value = value[0:TotalCellChars]
}
// Leading and ending space(s) character detection.
if len(value) > 0 && (value[0] == 32 || value[len(value)-1] == 32) {
Expand Down Expand Up @@ -476,7 +476,7 @@ func (f *File) SetCellHyperLink(sheet, axis, link, linkType string) error {
xlsx.Hyperlinks = new(xlsxHyperlinks)
}

if len(xlsx.Hyperlinks.Hyperlink) > 65529 {
if len(xlsx.Hyperlinks.Hyperlink) > TotalSheetHyperlinks {
return errors.New("over maximum limit hyperlinks in a worksheet")
}

Expand Down
1 change: 1 addition & 0 deletions excelize_test.go
Expand Up @@ -166,6 +166,7 @@ func TestOpenFile(t *testing.T) {
assert.NoError(t, f.SetCellStr("Sheet2", "c"+strconv.Itoa(i), strconv.Itoa(i)))
}
assert.NoError(t, f.SaveAs(filepath.Join("test", "TestOpenFile.xlsx")))
assert.EqualError(t, f.SaveAs(filepath.Join("test", strings.Repeat("c", 199), ".xlsx")), "file name length exceeds maximum limit")
}

func TestSaveFile(t *testing.T) {
Expand Down
4 changes: 4 additions & 0 deletions file.go
Expand Up @@ -12,6 +12,7 @@ package excelize
import (
"archive/zip"
"bytes"
"errors"
"fmt"
"io"
"os"
Expand Down Expand Up @@ -62,6 +63,9 @@ func (f *File) Save() error {
// SaveAs provides a function to create or update to an xlsx file at the
// provided path.
func (f *File) SaveAs(name string) error {
if len(name) > FileNameLength {
return errors.New("file name length exceeds maximum limit")
}
file, err := os.OpenFile(name, os.O_WRONLY|os.O_TRUNC|os.O_CREATE, 0666)
if err != nil {
return err
Expand Down
7 changes: 6 additions & 1 deletion lib.go
Expand Up @@ -135,6 +135,9 @@ func ColumnNameToNumber(name string) (int, error) {
}
multi *= 26
}
if col > TotalColumns {
return -1, fmt.Errorf("column number exceeds maximum limit")
}
return col, nil
}

Expand Down Expand Up @@ -172,7 +175,9 @@ func CellNameToCoordinates(cell string) (int, int, error) {
if err != nil {
return -1, -1, fmt.Errorf(msg, cell, err)
}

if row > TotalRows {
return -1, -1, fmt.Errorf("row number exceeds maximum limit")
}
col, err := ColumnNameToNumber(colname)
return col, row, err
}
Expand Down
5 changes: 4 additions & 1 deletion lib_test.go
Expand Up @@ -23,7 +23,6 @@ var validColumns = []struct {
{Name: "AZ", Num: 26 + 26},
{Name: "ZZ", Num: 26 + 26*26},
{Name: "AAA", Num: 26 + 26*26 + 1},
{Name: "ZZZ", Num: 26 + 26*26 + 26*26*26},
}

var invalidColumns = []struct {
Expand Down Expand Up @@ -72,6 +71,8 @@ func TestColumnNameToNumber_Error(t *testing.T) {
assert.Equalf(t, col.Num, out, msg, col.Name)
}
}
_, err := ColumnNameToNumber("XFE")
assert.EqualError(t, err, "column number exceeds maximum limit")
}

func TestColumnNumberToName_OK(t *testing.T) {
Expand Down Expand Up @@ -172,6 +173,8 @@ func TestCellNameToCoordinates_Error(t *testing.T) {
assert.Equalf(t, -1, r, msg, cell)
}
}
_, _, err := CellNameToCoordinates("A1048577")
assert.EqualError(t, err, "row number exceeds maximum limit")
}

func TestCoordinatesToCellName_OK(t *testing.T) {
Expand Down
9 changes: 9 additions & 0 deletions xmlDrawing.go
Expand Up @@ -80,6 +80,15 @@ const (
ExtURIMacExcelMX = "{64002731-A6B0-56B0-2670-7721B7C09600}"
)

// Excel specifications and limits
const (
FileNameLength = 207
TotalRows = 1048576
TotalColumns = 16384
TotalSheetHyperlinks = 65529
TotalCellChars = 32767
)

var supportImageTypes = map[string]string{".gif": ".gif", ".jpg": ".jpeg", ".jpeg": ".jpeg", ".png": ".png", ".tif": ".tiff", ".tiff": ".tiff"}

// xlsxCNvPr directly maps the cNvPr (Non-Visual Drawing Properties). This
Expand Down

0 comments on commit 2ae6313

Please sign in to comment.