Skip to content

Commit bda8e7f

Browse files
committed
This closes qax-os#1061, support multi-byte language on set header footer
typo fixed and simplify code for read the data values arguments of formula functions
1 parent 7241036 commit bda8e7f

10 files changed

+140
-244
lines changed

calc.go

+111-225
Large diffs are not rendered by default.

comment.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -245,11 +245,11 @@ func (f *File) addDrawingVML(commentID int, drawingVML, cell string, lineCount,
245245
func (f *File) addComment(commentsXML, cell string, formatSet *formatComment) {
246246
a := formatSet.Author
247247
t := formatSet.Text
248-
if len(a) > 255 {
249-
a = a[0:255]
248+
if len(a) > MaxFieldLength {
249+
a = a[:MaxFieldLength]
250250
}
251251
if len(t) > 32512 {
252-
t = t[0:32512]
252+
t = t[:32512]
253253
}
254254
comments := f.commentsReader(commentsXML)
255255
authorID := 0

datavalidation.go

+1-6
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,6 @@ const (
3535
DataValidationTypeWhole
3636
)
3737

38-
const (
39-
// dataValidationFormulaStrLen 255 characters
40-
dataValidationFormulaStrLen = 255
41-
)
42-
4338
// DataValidationErrorStyle defined the style of data validation error alert.
4439
type DataValidationErrorStyle int
4540

@@ -120,7 +115,7 @@ func (dd *DataValidation) SetInput(title, msg string) {
120115
// SetDropList data validation list.
121116
func (dd *DataValidation) SetDropList(keys []string) error {
122117
formula := strings.Join(keys, ",")
123-
if dataValidationFormulaStrLen < len(utf16.Encode([]rune(formula))) {
118+
if MaxFieldLength < len(utf16.Encode([]rune(formula))) {
124119
return ErrDataValidationFormulaLenth
125120
}
126121
dd.Formula1 = fmt.Sprintf(`<formula1>"%s"</formula1>`, formulaEscaper.Replace(formula))

datavalidation_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ func TestDataValidation(t *testing.T) {
5454
dvRange.Sqref = "A5:B6"
5555
for _, listValid := range [][]string{
5656
{"1", "2", "3"},
57-
{strings.Repeat("&", 255)},
58-
{strings.Repeat("\u4E00", 255)},
57+
{strings.Repeat("&", MaxFieldLength)},
58+
{strings.Repeat("\u4E00", MaxFieldLength)},
5959
{strings.Repeat("\U0001F600", 100), strings.Repeat("\u4E01", 50), "<&>"},
6060
{`A<`, `B>`, `C"`, "D\t", `E'`, `F`},
6161
} {

errors.go

+5
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ func newInvalidStyleID(styleID int) error {
5151
return fmt.Errorf("invalid style ID %d, negative values are not supported", styleID)
5252
}
5353

54+
// newFieldLengthError defined the error message on receiving the field length overflow.
55+
func newFieldLengthError(name string) error {
56+
return fmt.Errorf("field %s must be less or equal than 255 characters", name)
57+
}
58+
5459
var (
5560
// ErrStreamSetColWidth defined the error message on set column width in
5661
// stream writing mode.

pivotTable.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -662,8 +662,8 @@ func (f *File) getPivotTableFieldsSubtotal(fields []PivotTableField) []string {
662662
func (f *File) getPivotTableFieldsName(fields []PivotTableField) []string {
663663
field := make([]string, len(fields))
664664
for idx, fld := range fields {
665-
if len(fld.Name) > 255 {
666-
field[idx] = fld.Name[0:255]
665+
if len(fld.Name) > MaxFieldLength {
666+
field[idx] = fld.Name[:MaxFieldLength]
667667
continue
668668
}
669669
field[idx] = fld.Name

sheet.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ import (
2727
"sort"
2828
"strconv"
2929
"strings"
30+
"unicode/utf16"
3031
"unicode/utf8"
3132

3233
"github.com/mohae/deepcopy"
@@ -1092,8 +1093,8 @@ func (f *File) SetHeaderFooter(sheet string, settings *FormatHeaderFooter) error
10921093
// Check 6 string type fields: OddHeader, OddFooter, EvenHeader, EvenFooter,
10931094
// FirstFooter, FirstHeader
10941095
for i := 4; i < v.NumField()-1; i++ {
1095-
if v.Field(i).Len() >= 255 {
1096-
return fmt.Errorf("field %s must be less than 255 characters", v.Type().Field(i).Name)
1096+
if len(utf16.Encode([]rune(v.Field(i).String()))) > MaxFieldLength {
1097+
return newFieldLengthError(v.Type().Field(i).Name)
10971098
}
10981099
}
10991100
ws.HeaderFooter = &xlsxHeaderFooter{

sheet_test.go

+10-2
Original file line numberDiff line numberDiff line change
@@ -217,10 +217,18 @@ func TestSetHeaderFooter(t *testing.T) {
217217
assert.EqualError(t, f.SetHeaderFooter("SheetN", nil), "sheet SheetN is not exist")
218218
// Test set header and footer with illegal setting.
219219
assert.EqualError(t, f.SetHeaderFooter("Sheet1", &FormatHeaderFooter{
220-
OddHeader: strings.Repeat("c", 256),
221-
}), "field OddHeader must be less than 255 characters")
220+
OddHeader: strings.Repeat("c", MaxFieldLength+1),
221+
}), "field OddHeader must be less or equal than 255 characters")
222222

223223
assert.NoError(t, f.SetHeaderFooter("Sheet1", nil))
224+
text := strings.Repeat("一", MaxFieldLength)
225+
assert.NoError(t, f.SetHeaderFooter("Sheet1", &FormatHeaderFooter{
226+
OddHeader: text,
227+
OddFooter: text,
228+
EvenHeader: text,
229+
EvenFooter: text,
230+
FirstHeader: text,
231+
}))
224232
assert.NoError(t, f.SetHeaderFooter("Sheet1", &FormatHeaderFooter{
225233
DifferentFirst: true,
226234
DifferentOddEven: true,

styles_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -262,10 +262,10 @@ func TestGetDefaultFont(t *testing.T) {
262262

263263
func TestSetDefaultFont(t *testing.T) {
264264
f := NewFile()
265-
f.SetDefaultFont("Ariel")
265+
f.SetDefaultFont("Arial")
266266
styles := f.stylesReader()
267267
s := f.GetDefaultFont()
268-
assert.Equal(t, s, "Ariel", "Default font should change to Ariel")
268+
assert.Equal(t, s, "Arial", "Default font should change to Arial")
269269
assert.Equal(t, *styles.CellStyles.CellStyle[0].CustomBuiltIn, true)
270270
}
271271

xmlDrawing.go

+1
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ const (
9999
MaxFontFamilyLength = 31
100100
MaxFontSize = 409
101101
MaxFileNameLength = 207
102+
MaxFieldLength = 255
102103
MaxColumnWidth = 255
103104
MaxRowHeight = 409
104105
TotalRows = 1048576

0 commit comments

Comments
 (0)