Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Excelize
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Operations
Operations
Metrics
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
Globars Forks
Excelize
Commits
2ae63137
Unverified
Commit
2ae63137
authored
May 29, 2020
by
xuri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add limits for total columns, row and filename length
parent
c168233e
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
29 additions
and
7 deletions
+29
-7
cell.go
cell.go
+5
-5
excelize_test.go
excelize_test.go
+1
-0
file.go
file.go
+4
-0
lib.go
lib.go
+6
-1
lib_test.go
lib_test.go
+4
-1
xmlDrawing.go
xmlDrawing.go
+9
-0
No files found.
cell.go
View file @
2ae63137
...
...
@@ -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
)
{
...
...
@@ -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
)
{
...
...
@@ -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"
)
}
...
...
excelize_test.go
View file @
2ae63137
...
...
@@ -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
)
{
...
...
file.go
View file @
2ae63137
...
...
@@ -12,6 +12,7 @@ package excelize
import
(
"archive/zip"
"bytes"
"errors"
"fmt"
"io"
"os"
...
...
@@ -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
...
...
lib.go
View file @
2ae63137
...
...
@@ -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
}
...
...
@@ -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
}
...
...
lib_test.go
View file @
2ae63137
...
...
@@ -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
{
...
...
@@ -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
)
{
...
...
@@ -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
)
{
...
...
xmlDrawing.go
View file @
2ae63137
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment