2022-02-17 00:09:11 +08:00
|
|
|
// Copyright 2016 - 2022 The excelize Authors. All rights reserved. Use of
|
|
|
|
// this source code is governed by a BSD-style license that can be found in
|
|
|
|
// the LICENSE file.
|
|
|
|
//
|
|
|
|
// Package excelize providing a set of functions that allow you to write to and
|
|
|
|
// read from XLAM / XLSM / XLSX / XLTM / XLTX files. Supports reading and
|
|
|
|
// writing spreadsheet documents generated by Microsoft Excel™ 2007 and later.
|
|
|
|
// Supports complex components by high compatibility, and provided streaming
|
|
|
|
// API for generating or reading data from a worksheet with huge amounts of
|
|
|
|
// data. This library needs Go version 1.15 or later.
|
|
|
|
|
|
|
|
package excelize
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/xml"
|
|
|
|
"io"
|
|
|
|
"log"
|
|
|
|
"path/filepath"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
This closes #1358, made a refactor with breaking changes, see details:
This made a refactor with breaking changes:
Motivation and Context
When I decided to add set horizontal centered support for this library to resolve #1358, the reason I made this huge breaking change was:
- There are too many exported types for set sheet view, properties, and format properties, although a function using the functional options pattern can be optimized by returning an anonymous function, these types or property set or get function has no binding categorization, so I change these functions like `SetAppProps` to accept a pointer of options structure.
- Users can not easily find out which properties should be in the `SetSheetPrOptions` or `SetSheetFormatPr` categories
- Nested properties cannot proceed modify easily
Introduce 5 new export data types:
`HeaderFooterOptions`, `PageLayoutMarginsOptions`, `PageLayoutOptions`, `SheetPropsOptions`, and `ViewOptions`
Rename 4 exported data types:
- Rename `PivotTableOption` to `PivotTableOptions`
- Rename `FormatHeaderFooter` to `HeaderFooterOptions`
- Rename `FormatSheetProtection` to `SheetProtectionOptions`
- Rename `SparklineOption` to `SparklineOptions`
Remove 54 exported types:
`AutoPageBreaks`, `BaseColWidth`, `BlackAndWhite`, `CodeName`, `CustomHeight`, `Date1904`, `DefaultColWidth`, `DefaultGridColor`, `DefaultRowHeight`, `EnableFormatConditionsCalculation`, `FilterPrivacy`, `FirstPageNumber`, `FitToHeight`, `FitToPage`, `FitToWidth`, `OutlineSummaryBelow`, `PageLayoutOption`, `PageLayoutOptionPtr`, `PageLayoutOrientation`, `PageLayoutPaperSize`, `PageLayoutScale`, `PageMarginBottom`, `PageMarginFooter`, `PageMarginHeader`, `PageMarginLeft`, `PageMarginRight`, `PageMarginsOptions`, `PageMarginsOptionsPtr`, `PageMarginTop`, `Published`, `RightToLeft`, `SheetFormatPrOptions`, `SheetFormatPrOptionsPtr`, `SheetPrOption`, `SheetPrOptionPtr`, `SheetViewOption`, `SheetViewOptionPtr`, `ShowFormulas`, `ShowGridLines`, `ShowRowColHeaders`, `ShowRuler`, `ShowZeros`, `TabColorIndexed`, `TabColorRGB`, `TabColorTheme`, `TabColorTint`, `ThickBottom`, `ThickTop`, `TopLeftCell`, `View`, `WorkbookPrOption`, `WorkbookPrOptionPtr`, `ZeroHeight` and `ZoomScale`
Remove 2 exported constants:
`OrientationPortrait` and `OrientationLandscape`
Change 8 functions:
- Change the `func (f *File) SetPageLayout(sheet string, opts ...PageLayoutOption) error` to `func (f *File) SetPageLayout(sheet string, opts *PageLayoutOptions) error`
- Change the `func (f *File) GetPageLayout(sheet string, opts ...PageLayoutOptionPtr) error` to `func (f *File) GetPageLayout(sheet string) (PageLayoutOptions, error)`
- Change the `func (f *File) SetPageMargins(sheet string, opts ...PageMarginsOptions) error` to `func (f *File) SetPageMargins(sheet string, opts *PageLayoutMarginsOptions) error`
- Change the `func (f *File) GetPageMargins(sheet string, opts ...PageMarginsOptionsPtr) error` to `func (f *File) GetPageMargins(sheet string) (PageLayoutMarginsOptions, error)`
- Change the `func (f *File) SetSheetViewOptions(sheet string, viewIndex int, opts ...SheetViewOption) error` to `func (f *File) SetSheetView(sheet string, viewIndex int, opts *ViewOptions) error`
- Change the `func (f *File) GetSheetViewOptions(sheet string, viewIndex int, opts ...SheetViewOptionPtr) error` to `func (f *File) GetSheetView(sheet string, viewIndex int) (ViewOptions, error)`
- Change the `func (f *File) SetWorkbookPrOptions(opts ...WorkbookPrOption) error` to `func (f *File) SetWorkbookProps(opts *WorkbookPropsOptions) error`
- Change the `func (f *File) GetWorkbookPrOptions(opts ...WorkbookPrOptionPtr) error` to `func (f *File) GetWorkbookProps() (WorkbookPropsOptions, error)`
Introduce new function to instead of existing functions:
- New function `func (f *File) SetSheetProps(sheet string, opts *SheetPropsOptions) error` instead of `func (f *File) SetSheetPrOptions(sheet string, opts ...SheetPrOption) error` and `func (f *File) SetSheetFormatPr(sheet string, opts ...SheetFormatPrOption
2022-09-29 22:00:21 +08:00
|
|
|
// SetWorkbookProps provides a function to sets workbook properties.
|
|
|
|
func (f *File) SetWorkbookProps(opts *WorkbookPropsOptions) error {
|
|
|
|
wb := f.workbookReader()
|
|
|
|
if wb.WorkbookPr == nil {
|
|
|
|
wb.WorkbookPr = new(xlsxWorkbookPr)
|
|
|
|
}
|
|
|
|
if opts == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if opts.Date1904 != nil {
|
|
|
|
wb.WorkbookPr.Date1904 = *opts.Date1904
|
|
|
|
}
|
|
|
|
if opts.FilterPrivacy != nil {
|
|
|
|
wb.WorkbookPr.FilterPrivacy = *opts.FilterPrivacy
|
|
|
|
}
|
|
|
|
if opts.CodeName != nil {
|
|
|
|
wb.WorkbookPr.CodeName = *opts.CodeName
|
|
|
|
}
|
|
|
|
return nil
|
2022-02-17 00:09:11 +08:00
|
|
|
}
|
|
|
|
|
This closes #1358, made a refactor with breaking changes, see details:
This made a refactor with breaking changes:
Motivation and Context
When I decided to add set horizontal centered support for this library to resolve #1358, the reason I made this huge breaking change was:
- There are too many exported types for set sheet view, properties, and format properties, although a function using the functional options pattern can be optimized by returning an anonymous function, these types or property set or get function has no binding categorization, so I change these functions like `SetAppProps` to accept a pointer of options structure.
- Users can not easily find out which properties should be in the `SetSheetPrOptions` or `SetSheetFormatPr` categories
- Nested properties cannot proceed modify easily
Introduce 5 new export data types:
`HeaderFooterOptions`, `PageLayoutMarginsOptions`, `PageLayoutOptions`, `SheetPropsOptions`, and `ViewOptions`
Rename 4 exported data types:
- Rename `PivotTableOption` to `PivotTableOptions`
- Rename `FormatHeaderFooter` to `HeaderFooterOptions`
- Rename `FormatSheetProtection` to `SheetProtectionOptions`
- Rename `SparklineOption` to `SparklineOptions`
Remove 54 exported types:
`AutoPageBreaks`, `BaseColWidth`, `BlackAndWhite`, `CodeName`, `CustomHeight`, `Date1904`, `DefaultColWidth`, `DefaultGridColor`, `DefaultRowHeight`, `EnableFormatConditionsCalculation`, `FilterPrivacy`, `FirstPageNumber`, `FitToHeight`, `FitToPage`, `FitToWidth`, `OutlineSummaryBelow`, `PageLayoutOption`, `PageLayoutOptionPtr`, `PageLayoutOrientation`, `PageLayoutPaperSize`, `PageLayoutScale`, `PageMarginBottom`, `PageMarginFooter`, `PageMarginHeader`, `PageMarginLeft`, `PageMarginRight`, `PageMarginsOptions`, `PageMarginsOptionsPtr`, `PageMarginTop`, `Published`, `RightToLeft`, `SheetFormatPrOptions`, `SheetFormatPrOptionsPtr`, `SheetPrOption`, `SheetPrOptionPtr`, `SheetViewOption`, `SheetViewOptionPtr`, `ShowFormulas`, `ShowGridLines`, `ShowRowColHeaders`, `ShowRuler`, `ShowZeros`, `TabColorIndexed`, `TabColorRGB`, `TabColorTheme`, `TabColorTint`, `ThickBottom`, `ThickTop`, `TopLeftCell`, `View`, `WorkbookPrOption`, `WorkbookPrOptionPtr`, `ZeroHeight` and `ZoomScale`
Remove 2 exported constants:
`OrientationPortrait` and `OrientationLandscape`
Change 8 functions:
- Change the `func (f *File) SetPageLayout(sheet string, opts ...PageLayoutOption) error` to `func (f *File) SetPageLayout(sheet string, opts *PageLayoutOptions) error`
- Change the `func (f *File) GetPageLayout(sheet string, opts ...PageLayoutOptionPtr) error` to `func (f *File) GetPageLayout(sheet string) (PageLayoutOptions, error)`
- Change the `func (f *File) SetPageMargins(sheet string, opts ...PageMarginsOptions) error` to `func (f *File) SetPageMargins(sheet string, opts *PageLayoutMarginsOptions) error`
- Change the `func (f *File) GetPageMargins(sheet string, opts ...PageMarginsOptionsPtr) error` to `func (f *File) GetPageMargins(sheet string) (PageLayoutMarginsOptions, error)`
- Change the `func (f *File) SetSheetViewOptions(sheet string, viewIndex int, opts ...SheetViewOption) error` to `func (f *File) SetSheetView(sheet string, viewIndex int, opts *ViewOptions) error`
- Change the `func (f *File) GetSheetViewOptions(sheet string, viewIndex int, opts ...SheetViewOptionPtr) error` to `func (f *File) GetSheetView(sheet string, viewIndex int) (ViewOptions, error)`
- Change the `func (f *File) SetWorkbookPrOptions(opts ...WorkbookPrOption) error` to `func (f *File) SetWorkbookProps(opts *WorkbookPropsOptions) error`
- Change the `func (f *File) GetWorkbookPrOptions(opts ...WorkbookPrOptionPtr) error` to `func (f *File) GetWorkbookProps() (WorkbookPropsOptions, error)`
Introduce new function to instead of existing functions:
- New function `func (f *File) SetSheetProps(sheet string, opts *SheetPropsOptions) error` instead of `func (f *File) SetSheetPrOptions(sheet string, opts ...SheetPrOption) error` and `func (f *File) SetSheetFormatPr(sheet string, opts ...SheetFormatPrOption
2022-09-29 22:00:21 +08:00
|
|
|
// GetWorkbookProps provides a function to gets workbook properties.
|
|
|
|
func (f *File) GetWorkbookProps() (WorkbookPropsOptions, error) {
|
|
|
|
wb, opts := f.workbookReader(), WorkbookPropsOptions{}
|
|
|
|
if wb.WorkbookPr != nil {
|
|
|
|
opts.Date1904 = boolPtr(wb.WorkbookPr.Date1904)
|
|
|
|
opts.FilterPrivacy = boolPtr(wb.WorkbookPr.FilterPrivacy)
|
|
|
|
opts.CodeName = stringPtr(wb.WorkbookPr.CodeName)
|
|
|
|
}
|
|
|
|
return opts, nil
|
2022-02-17 00:09:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// setWorkbook update workbook property of the spreadsheet. Maximum 31
|
|
|
|
// characters are allowed in sheet title.
|
|
|
|
func (f *File) setWorkbook(name string, sheetID, rid int) {
|
|
|
|
content := f.workbookReader()
|
|
|
|
content.Sheets.Sheet = append(content.Sheets.Sheet, xlsxSheet{
|
|
|
|
Name: trimSheetName(name),
|
|
|
|
SheetID: sheetID,
|
|
|
|
ID: "rId" + strconv.Itoa(rid),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// getWorkbookPath provides a function to get the path of the workbook.xml in
|
|
|
|
// the spreadsheet.
|
|
|
|
func (f *File) getWorkbookPath() (path string) {
|
|
|
|
if rels := f.relsReader("_rels/.rels"); rels != nil {
|
|
|
|
rels.Lock()
|
|
|
|
defer rels.Unlock()
|
|
|
|
for _, rel := range rels.Relationships {
|
|
|
|
if rel.Type == SourceRelationshipOfficeDocument {
|
|
|
|
path = strings.TrimPrefix(rel.Target, "/")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// getWorkbookRelsPath provides a function to get the path of the workbook.xml.rels
|
|
|
|
// in the spreadsheet.
|
|
|
|
func (f *File) getWorkbookRelsPath() (path string) {
|
|
|
|
wbPath := f.getWorkbookPath()
|
|
|
|
wbDir := filepath.Dir(wbPath)
|
|
|
|
if wbDir == "." {
|
|
|
|
path = "_rels/" + filepath.Base(wbPath) + ".rels"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
path = strings.TrimPrefix(filepath.Dir(wbPath)+"/_rels/"+filepath.Base(wbPath)+".rels", "/")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// workbookReader provides a function to get the pointer to the workbook.xml
|
|
|
|
// structure after deserialization.
|
|
|
|
func (f *File) workbookReader() *xlsxWorkbook {
|
|
|
|
var err error
|
|
|
|
if f.WorkBook == nil {
|
|
|
|
wbPath := f.getWorkbookPath()
|
|
|
|
f.WorkBook = new(xlsxWorkbook)
|
|
|
|
if _, ok := f.xmlAttr[wbPath]; !ok {
|
|
|
|
d := f.xmlNewDecoder(bytes.NewReader(namespaceStrictToTransitional(f.readXML(wbPath))))
|
|
|
|
f.xmlAttr[wbPath] = append(f.xmlAttr[wbPath], getRootElement(d)...)
|
|
|
|
f.addNameSpaces(wbPath, SourceRelationship)
|
|
|
|
}
|
|
|
|
if err = f.xmlNewDecoder(bytes.NewReader(namespaceStrictToTransitional(f.readXML(wbPath)))).
|
|
|
|
Decode(f.WorkBook); err != nil && err != io.EOF {
|
|
|
|
log.Printf("xml decode error: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return f.WorkBook
|
|
|
|
}
|
|
|
|
|
|
|
|
// workBookWriter provides a function to save workbook.xml after serialize
|
|
|
|
// structure.
|
|
|
|
func (f *File) workBookWriter() {
|
|
|
|
if f.WorkBook != nil {
|
2022-03-05 14:48:34 +08:00
|
|
|
if f.WorkBook.DecodeAlternateContent != nil {
|
|
|
|
f.WorkBook.AlternateContent = &xlsxAlternateContent{
|
|
|
|
Content: f.WorkBook.DecodeAlternateContent.Content,
|
|
|
|
XMLNSMC: SourceRelationshipCompatibility.Value,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
f.WorkBook.DecodeAlternateContent = nil
|
2022-02-17 00:09:11 +08:00
|
|
|
output, _ := xml.Marshal(f.WorkBook)
|
|
|
|
f.saveFileList(f.getWorkbookPath(), replaceRelationshipsBytes(f.replaceNameSpaceBytes(f.getWorkbookPath(), output)))
|
|
|
|
}
|
|
|
|
}
|