2023-01-02 11:47:31 +08:00
|
|
|
// Copyright 2016 - 2023 The excelize Authors. All rights reserved. Use of
|
2019-03-20 15:13:41 +08:00
|
|
|
// this source code is governed by a BSD-style license that can be found in
|
|
|
|
// the LICENSE file.
|
|
|
|
//
|
2022-02-17 00:09:11 +08:00
|
|
|
// 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
|
2023-01-02 11:47:31 +08:00
|
|
|
// data. This library needs Go version 1.16 or later.
|
2019-03-20 15:13:41 +08:00
|
|
|
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
package excelize
|
|
|
|
|
2022-07-16 12:50:13 +08:00
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/xml"
|
|
|
|
"io"
|
2023-10-29 13:40:21 +08:00
|
|
|
"strconv"
|
2022-07-16 12:50:13 +08:00
|
|
|
"strings"
|
2023-11-01 00:52:18 +08:00
|
|
|
"unicode"
|
2023-10-24 00:05:52 +08:00
|
|
|
|
|
|
|
"github.com/xuri/efp"
|
2022-07-16 12:50:13 +08:00
|
|
|
)
|
|
|
|
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
type adjustDirection bool
|
|
|
|
|
|
|
|
const (
|
|
|
|
columns adjustDirection = false
|
|
|
|
rows adjustDirection = true
|
|
|
|
)
|
|
|
|
|
|
|
|
// adjustHelper provides a function to adjust rows and columns dimensions,
|
|
|
|
// hyperlinks, merged cells and auto filter when inserting or deleting rows or
|
|
|
|
// columns.
|
|
|
|
//
|
|
|
|
// sheet: Worksheet name that we're editing
|
|
|
|
// column: Index number of the column we're inserting/deleting before
|
|
|
|
// row: Index number of the row we're inserting/deleting before
|
|
|
|
// offset: Number of rows/column to insert/delete negative values indicate deletion
|
|
|
|
//
|
2023-11-02 00:15:41 +08:00
|
|
|
// TODO: adjustComments, adjustDataValidations, adjustDrawings, adjustPageBreaks, adjustProtectedCells
|
2019-03-23 20:08:06 +08:00
|
|
|
func (f *File) adjustHelper(sheet string, dir adjustDirection, num, offset int) error {
|
2020-11-10 23:48:09 +08:00
|
|
|
ws, err := f.workSheetReader(sheet)
|
2019-04-15 11:22:57 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-02-02 22:23:16 +08:00
|
|
|
sheetID := f.getSheetID(sheet)
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
if dir == rows {
|
2023-10-24 00:05:52 +08:00
|
|
|
err = f.adjustRowDimensions(sheet, ws, num, offset)
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
} else {
|
2023-10-24 00:05:52 +08:00
|
|
|
err = f.adjustColDimensions(sheet, ws, num, offset)
|
2022-08-31 00:02:48 +08:00
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return err
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
2020-11-10 23:48:09 +08:00
|
|
|
f.adjustHyperlinks(ws, sheet, dir, num, offset)
|
2023-10-31 00:01:57 +08:00
|
|
|
ws.checkSheet()
|
|
|
|
_ = ws.checkRow()
|
2022-07-16 12:50:13 +08:00
|
|
|
f.adjustTable(ws, sheet, dir, num, offset)
|
2020-11-10 23:48:09 +08:00
|
|
|
if err = f.adjustMergeCells(ws, dir, num, offset); err != nil {
|
2019-03-23 20:08:06 +08:00
|
|
|
return err
|
|
|
|
}
|
2020-11-10 23:48:09 +08:00
|
|
|
if err = f.adjustAutoFilter(ws, dir, num, offset); err != nil {
|
2019-03-23 20:08:06 +08:00
|
|
|
return err
|
|
|
|
}
|
2021-02-02 22:23:16 +08:00
|
|
|
if err = f.adjustCalcChain(dir, num, offset, sheetID); err != nil {
|
2019-06-08 00:00:55 +08:00
|
|
|
return err
|
|
|
|
}
|
2023-11-02 00:15:41 +08:00
|
|
|
if err = f.adjustVolatileDeps(dir, num, offset, sheetID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-11-10 23:48:09 +08:00
|
|
|
if ws.MergeCells != nil && len(ws.MergeCells.Cells) == 0 {
|
|
|
|
ws.MergeCells = nil
|
2019-08-03 23:10:01 +08:00
|
|
|
}
|
|
|
|
|
2019-03-23 20:08:06 +08:00
|
|
|
return nil
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
|
|
|
|
2022-11-11 01:50:07 +08:00
|
|
|
// adjustCols provides a function to update column style when inserting or
|
|
|
|
// deleting columns.
|
|
|
|
func (f *File) adjustCols(ws *xlsxWorksheet, col, offset int) error {
|
|
|
|
if ws.Cols == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
for i := 0; i < len(ws.Cols.Col); i++ {
|
|
|
|
if offset > 0 {
|
|
|
|
if ws.Cols.Col[i].Max+1 == col {
|
|
|
|
ws.Cols.Col[i].Max += offset
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if ws.Cols.Col[i].Min >= col {
|
|
|
|
ws.Cols.Col[i].Min += offset
|
|
|
|
ws.Cols.Col[i].Max += offset
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if ws.Cols.Col[i].Min < col && ws.Cols.Col[i].Max >= col {
|
|
|
|
ws.Cols.Col[i].Max += offset
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if offset < 0 {
|
|
|
|
if ws.Cols.Col[i].Min == col && ws.Cols.Col[i].Max == col {
|
|
|
|
if len(ws.Cols.Col) > 1 {
|
|
|
|
ws.Cols.Col = append(ws.Cols.Col[:i], ws.Cols.Col[i+1:]...)
|
|
|
|
} else {
|
|
|
|
ws.Cols.Col = nil
|
|
|
|
}
|
|
|
|
i--
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if ws.Cols.Col[i].Min > col {
|
|
|
|
ws.Cols.Col[i].Min += offset
|
|
|
|
ws.Cols.Col[i].Max += offset
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if ws.Cols.Col[i].Min <= col && ws.Cols.Col[i].Max >= col {
|
|
|
|
ws.Cols.Col[i].Max += offset
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
// adjustColDimensions provides a function to update column dimensions when
|
|
|
|
// inserting or deleting rows or columns.
|
2023-10-24 00:05:52 +08:00
|
|
|
func (f *File) adjustColDimensions(sheet string, ws *xlsxWorksheet, col, offset int) error {
|
2022-09-07 00:18:16 +08:00
|
|
|
for rowIdx := range ws.SheetData.Row {
|
|
|
|
for _, v := range ws.SheetData.Row[rowIdx].C {
|
|
|
|
if cellCol, _, _ := CellNameToCoordinates(v.R); col <= cellCol {
|
|
|
|
if newCol := cellCol + offset; newCol > 0 && newCol > MaxColumns {
|
|
|
|
return ErrColumnNumber
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-11-01 00:52:18 +08:00
|
|
|
for _, sheetN := range f.GetSheetList() {
|
|
|
|
worksheet, err := f.workSheetReader(sheetN)
|
|
|
|
if err != nil {
|
|
|
|
if err.Error() == newNotWorksheetError(sheetN).Error() {
|
|
|
|
continue
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
2023-11-01 00:52:18 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
for rowIdx := range worksheet.SheetData.Row {
|
|
|
|
for colIdx, v := range worksheet.SheetData.Row[rowIdx].C {
|
|
|
|
if cellCol, cellRow, _ := CellNameToCoordinates(v.R); sheetN == sheet && col <= cellCol {
|
|
|
|
if newCol := cellCol + offset; newCol > 0 {
|
|
|
|
worksheet.SheetData.Row[rowIdx].C[colIdx].R, _ = CoordinatesToCellName(newCol, cellRow)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err := f.adjustFormula(sheet, sheetN, worksheet.SheetData.Row[rowIdx].C[colIdx].F, columns, col, offset, false); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-10-24 00:05:52 +08:00
|
|
|
}
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
|
|
|
}
|
2022-11-11 01:50:07 +08:00
|
|
|
return f.adjustCols(ws, col, offset)
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// adjustRowDimensions provides a function to update row dimensions when
|
|
|
|
// inserting or deleting rows or columns.
|
2023-10-24 00:05:52 +08:00
|
|
|
func (f *File) adjustRowDimensions(sheet string, ws *xlsxWorksheet, row, offset int) error {
|
2023-11-01 00:52:18 +08:00
|
|
|
for _, sheetN := range f.GetSheetList() {
|
|
|
|
if sheetN == sheet {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
worksheet, err := f.workSheetReader(sheetN)
|
|
|
|
if err != nil {
|
|
|
|
if err.Error() == newNotWorksheetError(sheetN).Error() {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
numOfRows := len(worksheet.SheetData.Row)
|
|
|
|
for i := 0; i < numOfRows; i++ {
|
|
|
|
r := &worksheet.SheetData.Row[i]
|
|
|
|
if err = f.adjustSingleRowFormulas(sheet, sheetN, r, row, offset, false); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-07 00:18:16 +08:00
|
|
|
totalRows := len(ws.SheetData.Row)
|
|
|
|
if totalRows == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
lastRow := &ws.SheetData.Row[totalRows-1]
|
2023-10-24 00:05:52 +08:00
|
|
|
if newRow := lastRow.R + offset; lastRow.R >= row && newRow > 0 && newRow > TotalRows {
|
2022-09-07 00:18:16 +08:00
|
|
|
return ErrMaxRows
|
|
|
|
}
|
2023-10-29 13:40:21 +08:00
|
|
|
numOfRows := len(ws.SheetData.Row)
|
|
|
|
for i := 0; i < numOfRows; i++ {
|
2020-11-10 23:48:09 +08:00
|
|
|
r := &ws.SheetData.Row[i]
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
if newRow := r.R + offset; r.R >= row && newRow > 0 {
|
2023-10-29 13:40:21 +08:00
|
|
|
r.adjustSingleRowDimensions(offset)
|
|
|
|
}
|
2023-11-01 00:52:18 +08:00
|
|
|
if err := f.adjustSingleRowFormulas(sheet, sheet, r, row, offset, false); err != nil {
|
2023-10-29 13:40:21 +08:00
|
|
|
return err
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
|
|
|
}
|
2022-08-31 00:02:48 +08:00
|
|
|
return nil
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
|
|
|
|
2022-01-09 00:20:42 +08:00
|
|
|
// adjustSingleRowDimensions provides a function to adjust single row dimensions.
|
2023-10-29 13:40:21 +08:00
|
|
|
func (r *xlsxRow) adjustSingleRowDimensions(offset int) {
|
2023-10-24 00:05:52 +08:00
|
|
|
r.R += offset
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
for i, col := range r.C {
|
|
|
|
colName, _, _ := SplitCellName(col.R)
|
2023-10-24 00:05:52 +08:00
|
|
|
r.C[i].R, _ = JoinCellName(colName, r.R)
|
2023-10-29 13:40:21 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// adjustSingleRowFormulas provides a function to adjust single row formulas.
|
2023-11-01 00:52:18 +08:00
|
|
|
func (f *File) adjustSingleRowFormulas(sheet, sheetN string, r *xlsxRow, num, offset int, si bool) error {
|
2023-10-29 13:40:21 +08:00
|
|
|
for _, col := range r.C {
|
2023-11-01 00:52:18 +08:00
|
|
|
if err := f.adjustFormula(sheet, sheetN, col.F, rows, num, offset, si); err != nil {
|
2023-10-24 00:05:52 +08:00
|
|
|
return err
|
|
|
|
}
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
2023-10-24 00:05:52 +08:00
|
|
|
return nil
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
|
|
|
|
2023-10-29 13:40:21 +08:00
|
|
|
// adjustCellRef provides a function to adjust cell reference.
|
|
|
|
func (f *File) adjustCellRef(ref string, dir adjustDirection, num, offset int) (string, error) {
|
|
|
|
if !strings.Contains(ref, ":") {
|
|
|
|
ref += ":" + ref
|
2023-10-24 00:05:52 +08:00
|
|
|
}
|
2023-10-29 13:40:21 +08:00
|
|
|
coordinates, err := rangeRefToCoordinates(ref)
|
|
|
|
if err != nil {
|
|
|
|
return ref, err
|
|
|
|
}
|
|
|
|
if dir == columns {
|
|
|
|
if coordinates[0] >= num {
|
2023-07-04 00:06:37 +08:00
|
|
|
coordinates[0] += offset
|
2023-10-29 13:40:21 +08:00
|
|
|
}
|
|
|
|
if coordinates[2] >= num {
|
2023-07-04 00:06:37 +08:00
|
|
|
coordinates[2] += offset
|
2023-10-29 13:40:21 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if coordinates[1] >= num {
|
2023-07-04 00:06:37 +08:00
|
|
|
coordinates[1] += offset
|
2023-10-29 13:40:21 +08:00
|
|
|
}
|
|
|
|
if coordinates[3] >= num {
|
2023-07-04 00:06:37 +08:00
|
|
|
coordinates[3] += offset
|
|
|
|
}
|
2023-10-29 13:40:21 +08:00
|
|
|
}
|
|
|
|
return f.coordinatesToRangeRef(coordinates)
|
|
|
|
}
|
|
|
|
|
|
|
|
// adjustFormula provides a function to adjust formula reference and shared
|
|
|
|
// formula reference.
|
2023-11-01 00:52:18 +08:00
|
|
|
func (f *File) adjustFormula(sheet, sheetN string, formula *xlsxF, dir adjustDirection, num, offset int, si bool) error {
|
2023-10-29 13:40:21 +08:00
|
|
|
if formula == nil {
|
|
|
|
return nil
|
2023-10-24 00:05:52 +08:00
|
|
|
}
|
|
|
|
var err error
|
2023-11-01 00:52:18 +08:00
|
|
|
if formula.Ref != "" && sheet == sheetN {
|
2023-10-29 13:40:21 +08:00
|
|
|
if formula.Ref, err = f.adjustCellRef(formula.Ref, dir, num, offset); err != nil {
|
2023-07-04 00:06:37 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if si && formula.Si != nil {
|
|
|
|
formula.Si = intPtr(*formula.Si + 1)
|
|
|
|
}
|
|
|
|
}
|
2023-10-29 13:40:21 +08:00
|
|
|
if formula.Content != "" {
|
2023-11-01 00:52:18 +08:00
|
|
|
if formula.Content, err = f.adjustFormulaRef(sheet, sheetN, formula.Content, dir, num, offset); err != nil {
|
2023-10-24 00:05:52 +08:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2023-07-04 00:06:37 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-10-29 13:40:21 +08:00
|
|
|
// isFunctionStop provides a function to check if token is a function stop.
|
|
|
|
func isFunctionStop(token efp.Token) bool {
|
|
|
|
return token.TType == efp.TokenTypeFunction && token.TSubType == efp.TokenSubTypeStop
|
|
|
|
}
|
|
|
|
|
|
|
|
// isFunctionStart provides a function to check if token is a function start.
|
|
|
|
func isFunctionStart(token efp.Token) bool {
|
|
|
|
return token.TType == efp.TokenTypeFunction && token.TSubType == efp.TokenSubTypeStart
|
|
|
|
}
|
|
|
|
|
2023-11-01 00:52:18 +08:00
|
|
|
// escapeSheetName enclose sheet name in single quotation marks if the giving
|
|
|
|
// worksheet name includes spaces or non-alphabetical characters.
|
|
|
|
func escapeSheetName(name string) string {
|
|
|
|
if strings.IndexFunc(name, func(r rune) bool {
|
|
|
|
return !unicode.IsLetter(r) && !unicode.IsNumber(r)
|
|
|
|
}) != -1 {
|
|
|
|
return string(efp.QuoteSingle) + name + string(efp.QuoteSingle)
|
|
|
|
}
|
|
|
|
return name
|
|
|
|
}
|
|
|
|
|
2023-10-29 13:40:21 +08:00
|
|
|
// adjustFormulaColumnName adjust column name in the formula reference.
|
|
|
|
func adjustFormulaColumnName(name string, dir adjustDirection, num, offset int) (string, error) {
|
|
|
|
col, err := ColumnNameToNumber(name)
|
|
|
|
if err != nil {
|
|
|
|
return name, err
|
|
|
|
}
|
|
|
|
if dir == columns && col >= num {
|
|
|
|
col += offset
|
|
|
|
return ColumnNumberToName(col)
|
|
|
|
}
|
|
|
|
return name, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// adjustFormulaRowNumber adjust row number in the formula reference.
|
|
|
|
func adjustFormulaRowNumber(name string, dir adjustDirection, num, offset int) (string, error) {
|
|
|
|
row, _ := strconv.Atoi(name)
|
|
|
|
if dir == rows && row >= num {
|
|
|
|
row += offset
|
|
|
|
if row > TotalRows {
|
|
|
|
return name, ErrMaxRows
|
|
|
|
}
|
|
|
|
return strconv.Itoa(row), nil
|
|
|
|
}
|
|
|
|
return name, nil
|
|
|
|
}
|
|
|
|
|
2023-10-31 00:01:57 +08:00
|
|
|
// adjustFormulaOperandRef adjust cell reference in the operand tokens for the formula.
|
|
|
|
func adjustFormulaOperandRef(row, col, operand string, dir adjustDirection, num int, offset int) (string, string, string, error) {
|
|
|
|
if col != "" {
|
|
|
|
name, err := adjustFormulaColumnName(col, dir, num, offset)
|
|
|
|
if err != nil {
|
|
|
|
return row, col, operand, err
|
|
|
|
}
|
|
|
|
operand += name
|
|
|
|
col = ""
|
|
|
|
}
|
|
|
|
if row != "" {
|
|
|
|
name, err := adjustFormulaRowNumber(row, dir, num, offset)
|
|
|
|
if err != nil {
|
|
|
|
return row, col, operand, err
|
|
|
|
}
|
|
|
|
operand += name
|
|
|
|
row = ""
|
|
|
|
}
|
|
|
|
return row, col, operand, nil
|
|
|
|
}
|
|
|
|
|
2023-10-29 13:40:21 +08:00
|
|
|
// adjustFormulaOperand adjust range operand tokens for the formula.
|
2023-11-01 00:52:18 +08:00
|
|
|
func (f *File) adjustFormulaOperand(sheet, sheetN string, token efp.Token, dir adjustDirection, num int, offset int) (string, error) {
|
2023-10-31 00:01:57 +08:00
|
|
|
var (
|
2023-11-01 00:52:18 +08:00
|
|
|
err error
|
|
|
|
sheetName, col, row, operand string
|
|
|
|
cell = token.TValue
|
|
|
|
tokens = strings.Split(token.TValue, "!")
|
2023-10-31 00:01:57 +08:00
|
|
|
)
|
|
|
|
if len(tokens) == 2 { // have a worksheet
|
2023-11-01 00:52:18 +08:00
|
|
|
sheetName, cell = tokens[0], tokens[1]
|
|
|
|
operand = escapeSheetName(sheetName) + "!"
|
|
|
|
}
|
|
|
|
if sheet != sheetN && sheet != sheetName {
|
|
|
|
return operand + cell, err
|
2023-10-31 00:01:57 +08:00
|
|
|
}
|
|
|
|
for _, r := range cell {
|
2023-10-29 13:40:21 +08:00
|
|
|
if ('A' <= r && r <= 'Z') || ('a' <= r && r <= 'z') {
|
|
|
|
col += string(r)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if '0' <= r && r <= '9' {
|
|
|
|
row += string(r)
|
|
|
|
if col != "" {
|
|
|
|
name, err := adjustFormulaColumnName(col, dir, num, offset)
|
|
|
|
if err != nil {
|
|
|
|
return operand, err
|
|
|
|
}
|
|
|
|
operand += name
|
|
|
|
col = ""
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
2023-10-31 00:01:57 +08:00
|
|
|
if row, col, operand, err = adjustFormulaOperandRef(row, col, operand, dir, num, offset); err != nil {
|
|
|
|
return operand, err
|
2023-10-29 13:40:21 +08:00
|
|
|
}
|
|
|
|
operand += string(r)
|
|
|
|
}
|
2023-11-01 00:52:18 +08:00
|
|
|
_, _, operand, err = adjustFormulaOperandRef(row, col, operand, dir, num, offset)
|
2023-10-29 13:40:21 +08:00
|
|
|
return operand, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// adjustFormulaRef returns adjusted formula by giving adjusting direction and
|
|
|
|
// the base number of column or row, and offset.
|
2023-11-01 00:52:18 +08:00
|
|
|
func (f *File) adjustFormulaRef(sheet, sheetN, formula string, dir adjustDirection, num, offset int) (string, error) {
|
2023-10-24 00:05:52 +08:00
|
|
|
var (
|
2023-10-29 13:40:21 +08:00
|
|
|
val string
|
2023-10-24 00:05:52 +08:00
|
|
|
definedNames []string
|
|
|
|
ps = efp.ExcelParser()
|
|
|
|
)
|
|
|
|
for _, definedName := range f.GetDefinedName() {
|
|
|
|
if definedName.Scope == "Workbook" || definedName.Scope == sheet {
|
|
|
|
definedNames = append(definedNames, definedName.Name)
|
|
|
|
}
|
|
|
|
}
|
2023-10-29 13:40:21 +08:00
|
|
|
for _, token := range ps.Parse(formula) {
|
2023-10-24 00:05:52 +08:00
|
|
|
if token.TType == efp.TokenTypeOperand && token.TSubType == efp.TokenSubTypeRange {
|
|
|
|
if inStrSlice(definedNames, token.TValue, true) != -1 {
|
2023-10-29 13:40:21 +08:00
|
|
|
val += token.TValue
|
2023-10-24 00:05:52 +08:00
|
|
|
continue
|
|
|
|
}
|
2023-10-29 13:40:21 +08:00
|
|
|
if strings.ContainsAny(token.TValue, "[]") {
|
|
|
|
val += token.TValue
|
|
|
|
continue
|
2023-10-24 00:05:52 +08:00
|
|
|
}
|
2023-11-01 00:52:18 +08:00
|
|
|
operand, err := f.adjustFormulaOperand(sheet, sheetN, token, dir, num, offset)
|
2023-10-24 00:05:52 +08:00
|
|
|
if err != nil {
|
2023-10-29 13:40:21 +08:00
|
|
|
return val, err
|
2023-10-24 00:05:52 +08:00
|
|
|
}
|
2023-10-29 13:40:21 +08:00
|
|
|
val += operand
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if isFunctionStart(token) {
|
|
|
|
val += token.TValue + string(efp.ParenOpen)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if isFunctionStop(token) {
|
|
|
|
val += token.TValue + string(efp.ParenClose)
|
2023-10-24 00:05:52 +08:00
|
|
|
continue
|
|
|
|
}
|
2023-10-31 00:01:57 +08:00
|
|
|
if token.TType == efp.TokenTypeOperand && token.TSubType == efp.TokenSubTypeText {
|
2023-11-01 00:52:18 +08:00
|
|
|
val += string(efp.QuoteDouble) + strings.ReplaceAll(token.TValue, "\"", "\"\"") + string(efp.QuoteDouble)
|
2023-10-31 00:01:57 +08:00
|
|
|
continue
|
|
|
|
}
|
2023-10-29 13:40:21 +08:00
|
|
|
val += token.TValue
|
2023-10-24 00:05:52 +08:00
|
|
|
}
|
2023-10-29 13:40:21 +08:00
|
|
|
return val, nil
|
2023-10-24 00:05:52 +08:00
|
|
|
}
|
|
|
|
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
// adjustHyperlinks provides a function to update hyperlinks when inserting or
|
|
|
|
// deleting rows or columns.
|
2020-11-10 23:48:09 +08:00
|
|
|
func (f *File) adjustHyperlinks(ws *xlsxWorksheet, sheet string, dir adjustDirection, num, offset int) {
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
// short path
|
2020-11-10 23:48:09 +08:00
|
|
|
if ws.Hyperlinks == nil || len(ws.Hyperlinks.Hyperlink) == 0 {
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// order is important
|
|
|
|
if offset < 0 {
|
2020-11-10 23:48:09 +08:00
|
|
|
for i := len(ws.Hyperlinks.Hyperlink) - 1; i >= 0; i-- {
|
|
|
|
linkData := ws.Hyperlinks.Hyperlink[i]
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
colNum, rowNum, _ := CellNameToCoordinates(linkData.Ref)
|
|
|
|
|
|
|
|
if (dir == rows && num == rowNum) || (dir == columns && num == colNum) {
|
|
|
|
f.deleteSheetRelationships(sheet, linkData.RID)
|
2020-11-10 23:48:09 +08:00
|
|
|
if len(ws.Hyperlinks.Hyperlink) > 1 {
|
|
|
|
ws.Hyperlinks.Hyperlink = append(ws.Hyperlinks.Hyperlink[:i],
|
|
|
|
ws.Hyperlinks.Hyperlink[i+1:]...)
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
} else {
|
2020-11-10 23:48:09 +08:00
|
|
|
ws.Hyperlinks = nil
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-10 23:48:09 +08:00
|
|
|
if ws.Hyperlinks == nil {
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
return
|
|
|
|
}
|
2020-11-10 23:48:09 +08:00
|
|
|
for i := range ws.Hyperlinks.Hyperlink {
|
|
|
|
link := &ws.Hyperlinks.Hyperlink[i] // get reference
|
2023-11-01 00:52:18 +08:00
|
|
|
link.Ref, _ = f.adjustFormulaRef(sheet, sheet, link.Ref, dir, num, offset)
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-16 12:50:13 +08:00
|
|
|
// adjustTable provides a function to update the table when inserting or
|
|
|
|
// deleting rows or columns.
|
|
|
|
func (f *File) adjustTable(ws *xlsxWorksheet, sheet string, dir adjustDirection, num, offset int) {
|
|
|
|
if ws.TableParts == nil || len(ws.TableParts.TableParts) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for idx := 0; idx < len(ws.TableParts.TableParts); idx++ {
|
|
|
|
tbl := ws.TableParts.TableParts[idx]
|
|
|
|
target := f.getSheetRelationshipsTargetByID(sheet, tbl.RID)
|
|
|
|
tableXML := strings.ReplaceAll(target, "..", "xl")
|
|
|
|
content, ok := f.Pkg.Load(tableXML)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
t := xlsxTable{}
|
|
|
|
if err := f.xmlNewDecoder(bytes.NewReader(namespaceStrictToTransitional(content.([]byte)))).
|
|
|
|
Decode(&t); err != nil && err != io.EOF {
|
|
|
|
return
|
|
|
|
}
|
2022-09-28 00:04:17 +08:00
|
|
|
coordinates, err := rangeRefToCoordinates(t.Ref)
|
2022-07-16 12:50:13 +08:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Remove the table when deleting the header row of the table
|
2023-10-24 00:05:52 +08:00
|
|
|
if dir == rows && num == coordinates[0] && offset == -1 {
|
2022-07-16 12:50:13 +08:00
|
|
|
ws.TableParts.TableParts = append(ws.TableParts.TableParts[:idx], ws.TableParts.TableParts[idx+1:]...)
|
|
|
|
ws.TableParts.Count = len(ws.TableParts.TableParts)
|
|
|
|
idx--
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
coordinates = f.adjustAutoFilterHelper(dir, coordinates, num, offset)
|
|
|
|
x1, y1, x2, y2 := coordinates[0], coordinates[1], coordinates[2], coordinates[3]
|
2023-05-23 00:18:55 +08:00
|
|
|
if y2-y1 < 1 || x2-x1 < 0 {
|
2022-07-16 12:50:13 +08:00
|
|
|
ws.TableParts.TableParts = append(ws.TableParts.TableParts[:idx], ws.TableParts.TableParts[idx+1:]...)
|
|
|
|
ws.TableParts.Count = len(ws.TableParts.TableParts)
|
|
|
|
idx--
|
|
|
|
continue
|
|
|
|
}
|
2022-09-28 00:04:17 +08:00
|
|
|
t.Ref, _ = f.coordinatesToRangeRef([]int{x1, y1, x2, y2})
|
2022-07-16 12:50:13 +08:00
|
|
|
if t.AutoFilter != nil {
|
|
|
|
t.AutoFilter.Ref = t.Ref
|
|
|
|
}
|
2023-10-31 00:01:57 +08:00
|
|
|
_ = f.setTableColumns(sheet, true, x1, y1, x2, &t)
|
2023-11-02 00:15:41 +08:00
|
|
|
// Currently doesn't support query table
|
|
|
|
t.TableType, t.TotalsRowCount, t.ConnectionID = "", 0, 0
|
2022-07-16 12:50:13 +08:00
|
|
|
table, _ := xml.Marshal(t)
|
|
|
|
f.saveFileList(tableXML, table)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
// adjustAutoFilter provides a function to update the auto filter when
|
|
|
|
// inserting or deleting rows or columns.
|
2020-11-10 23:48:09 +08:00
|
|
|
func (f *File) adjustAutoFilter(ws *xlsxWorksheet, dir adjustDirection, num, offset int) error {
|
|
|
|
if ws.AutoFilter == nil {
|
2019-03-23 20:08:06 +08:00
|
|
|
return nil
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
|
|
|
|
2022-09-28 00:04:17 +08:00
|
|
|
coordinates, err := rangeRefToCoordinates(ws.AutoFilter.Ref)
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
if err != nil {
|
2019-03-23 20:08:06 +08:00
|
|
|
return err
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
2019-06-12 08:10:33 +08:00
|
|
|
x1, y1, x2, y2 := coordinates[0], coordinates[1], coordinates[2], coordinates[3]
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
|
2019-06-12 08:10:33 +08:00
|
|
|
if (dir == rows && y1 == num && offset < 0) || (dir == columns && x1 == num && x2 == num) {
|
2020-11-10 23:48:09 +08:00
|
|
|
ws.AutoFilter = nil
|
|
|
|
for rowIdx := range ws.SheetData.Row {
|
|
|
|
rowData := &ws.SheetData.Row[rowIdx]
|
2019-06-12 08:10:33 +08:00
|
|
|
if rowData.R > y1 && rowData.R <= y2 {
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
rowData.Hidden = false
|
|
|
|
}
|
|
|
|
}
|
2022-11-15 22:08:37 +08:00
|
|
|
return err
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
|
|
|
|
2019-06-12 08:10:33 +08:00
|
|
|
coordinates = f.adjustAutoFilterHelper(dir, coordinates, num, offset)
|
|
|
|
x1, y1, x2, y2 = coordinates[0], coordinates[1], coordinates[2], coordinates[3]
|
|
|
|
|
2022-11-15 22:08:37 +08:00
|
|
|
ws.AutoFilter.Ref, err = f.coordinatesToRangeRef([]int{x1, y1, x2, y2})
|
|
|
|
return err
|
2019-06-12 08:10:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// adjustAutoFilterHelper provides a function for adjusting auto filter to
|
2023-10-24 00:05:52 +08:00
|
|
|
// compare and calculate cell reference by the giving adjusting direction,
|
|
|
|
// operation reference and offset.
|
2019-06-12 08:10:33 +08:00
|
|
|
func (f *File) adjustAutoFilterHelper(dir adjustDirection, coordinates []int, num, offset int) []int {
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
if dir == rows {
|
2019-06-12 08:10:33 +08:00
|
|
|
if coordinates[1] >= num {
|
|
|
|
coordinates[1] += offset
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
2019-06-12 08:10:33 +08:00
|
|
|
if coordinates[3] >= num {
|
|
|
|
coordinates[3] += offset
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
2022-07-16 12:50:13 +08:00
|
|
|
return coordinates
|
|
|
|
}
|
|
|
|
if coordinates[0] >= num {
|
|
|
|
coordinates[0] += offset
|
|
|
|
}
|
|
|
|
if coordinates[2] >= num {
|
|
|
|
coordinates[2] += offset
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
2019-06-12 08:10:33 +08:00
|
|
|
return coordinates
|
|
|
|
}
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
|
|
|
|
// adjustMergeCells provides a function to update merged cells when inserting
|
|
|
|
// or deleting rows or columns.
|
2020-11-10 23:48:09 +08:00
|
|
|
func (f *File) adjustMergeCells(ws *xlsxWorksheet, dir adjustDirection, num, offset int) error {
|
|
|
|
if ws.MergeCells == nil {
|
2019-03-23 20:08:06 +08:00
|
|
|
return nil
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
|
|
|
|
2020-11-10 23:48:09 +08:00
|
|
|
for i := 0; i < len(ws.MergeCells.Cells); i++ {
|
2022-09-28 00:04:17 +08:00
|
|
|
mergedCells := ws.MergeCells.Cells[i]
|
2022-10-26 00:04:23 +08:00
|
|
|
mergedCellsRef := mergedCells.Ref
|
|
|
|
if !strings.Contains(mergedCellsRef, ":") {
|
|
|
|
mergedCellsRef += ":" + mergedCellsRef
|
|
|
|
}
|
|
|
|
coordinates, err := rangeRefToCoordinates(mergedCellsRef)
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
if err != nil {
|
2019-03-23 20:08:06 +08:00
|
|
|
return err
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
2019-06-12 08:10:33 +08:00
|
|
|
x1, y1, x2, y2 := coordinates[0], coordinates[1], coordinates[2], coordinates[3]
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
if dir == rows {
|
2019-06-12 08:10:33 +08:00
|
|
|
if y1 == num && y2 == num && offset < 0 {
|
2020-11-10 23:48:09 +08:00
|
|
|
f.deleteMergeCell(ws, i)
|
2021-12-06 22:37:25 +08:00
|
|
|
continue
|
2019-06-12 08:10:33 +08:00
|
|
|
}
|
2021-12-06 22:37:25 +08:00
|
|
|
|
|
|
|
y1, y2 = f.adjustMergeCellsHelper(y1, y2, num, offset)
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
} else {
|
2019-06-12 08:10:33 +08:00
|
|
|
if x1 == num && x2 == num && offset < 0 {
|
2020-11-10 23:48:09 +08:00
|
|
|
f.deleteMergeCell(ws, i)
|
2021-12-06 22:37:25 +08:00
|
|
|
continue
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
2021-12-06 22:37:25 +08:00
|
|
|
|
|
|
|
x1, x2 = f.adjustMergeCellsHelper(x1, x2, num, offset)
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
2021-12-06 22:37:25 +08:00
|
|
|
if x1 == x2 && y1 == y2 {
|
2020-11-10 23:48:09 +08:00
|
|
|
f.deleteMergeCell(ws, i)
|
2019-07-20 19:24:57 +08:00
|
|
|
i--
|
2021-12-06 22:37:25 +08:00
|
|
|
continue
|
2019-06-12 08:10:33 +08:00
|
|
|
}
|
2022-09-28 00:04:17 +08:00
|
|
|
mergedCells.rect = []int{x1, y1, x2, y2}
|
|
|
|
if mergedCells.Ref, err = f.coordinatesToRangeRef([]int{x1, y1, x2, y2}); err != nil {
|
2019-03-23 20:08:06 +08:00
|
|
|
return err
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
2019-06-12 08:10:33 +08:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
|
2019-06-12 08:10:33 +08:00
|
|
|
// adjustMergeCellsHelper provides a function for adjusting merge cells to
|
2022-09-18 00:07:15 +08:00
|
|
|
// compare and calculate cell reference by the given pivot, operation reference and
|
2019-06-12 08:10:33 +08:00
|
|
|
// offset.
|
2021-12-06 22:37:25 +08:00
|
|
|
func (f *File) adjustMergeCellsHelper(p1, p2, num, offset int) (int, int) {
|
|
|
|
if p2 < p1 {
|
|
|
|
p1, p2 = p2, p1
|
|
|
|
}
|
|
|
|
|
|
|
|
if offset >= 0 {
|
|
|
|
if num <= p1 {
|
|
|
|
p1 += offset
|
|
|
|
p2 += offset
|
|
|
|
} else if num <= p2 {
|
|
|
|
p2 += offset
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
2021-12-06 22:37:25 +08:00
|
|
|
return p1, p2
|
|
|
|
}
|
|
|
|
if num < p1 || (num == p1 && num == p2) {
|
|
|
|
p1 += offset
|
|
|
|
p2 += offset
|
|
|
|
} else if num <= p2 {
|
|
|
|
p2 += offset
|
2019-06-12 08:10:33 +08:00
|
|
|
}
|
2021-12-06 22:37:25 +08:00
|
|
|
return p1, p2
|
2019-06-12 08:10:33 +08:00
|
|
|
}
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
|
2019-06-12 08:10:33 +08:00
|
|
|
// deleteMergeCell provides a function to delete merged cell by given index.
|
2020-11-10 23:48:09 +08:00
|
|
|
func (f *File) deleteMergeCell(ws *xlsxWorksheet, idx int) {
|
2021-12-06 22:37:25 +08:00
|
|
|
if idx < 0 {
|
|
|
|
return
|
|
|
|
}
|
2020-11-10 23:48:09 +08:00
|
|
|
if len(ws.MergeCells.Cells) > idx {
|
|
|
|
ws.MergeCells.Cells = append(ws.MergeCells.Cells[:idx], ws.MergeCells.Cells[idx+1:]...)
|
|
|
|
ws.MergeCells.Count = len(ws.MergeCells.Cells)
|
Huge refactorig for consistent col/row numbering (#356)
* Huge refactorig for consistent col/row numbering
Started from simply changing ToALphaString()/TitleToNumber() logic and related fixes.
But have to go deeper, do fixes, after do related fixes and again and again.
Major improvements:
1. Tests made stronger again (But still be weak).
2. "Empty" returns for incorrect input replaces with panic.
3. Check for correct col/row/cell naming & addressing by default.
4. Removed huge amount of duplicated code.
5. Removed ToALphaString(), TitleToNumber() and it helpers functions at all,
and replaced with SplitCellName(), JoinCellName(), ColumnNameToNumber(), ColumnNumberToName(), CellNameToCoordinates(), CoordinatesToCellName().
6. Minor fixes for internal variable naming for code readability (ex. col, row for input params, colIdx, rowIdx for slice indexes etc).
* Formatting fixes
2019-03-20 00:14:41 +08:00
|
|
|
}
|
|
|
|
}
|
2019-06-08 00:00:55 +08:00
|
|
|
|
2023-11-02 00:15:41 +08:00
|
|
|
// adjustCellName returns updated cell name by giving column/row number and
|
|
|
|
// offset on inserting or deleting rows or columns.
|
|
|
|
func adjustCellName(cell string, dir adjustDirection, c, r, offset int) (string, error) {
|
2023-10-24 00:05:52 +08:00
|
|
|
if dir == rows {
|
|
|
|
if rn := r + offset; rn > 0 {
|
2023-11-02 00:15:41 +08:00
|
|
|
return CoordinatesToCellName(c, rn)
|
2023-10-24 00:05:52 +08:00
|
|
|
}
|
|
|
|
}
|
2023-11-02 00:15:41 +08:00
|
|
|
return CoordinatesToCellName(c+offset, r)
|
2023-10-24 00:05:52 +08:00
|
|
|
}
|
|
|
|
|
2019-06-08 00:00:55 +08:00
|
|
|
// adjustCalcChain provides a function to update the calculation chain when
|
|
|
|
// inserting or deleting rows or columns.
|
2021-02-02 22:23:16 +08:00
|
|
|
func (f *File) adjustCalcChain(dir adjustDirection, num, offset, sheetID int) error {
|
2019-06-08 00:00:55 +08:00
|
|
|
if f.CalcChain == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2023-10-24 00:05:52 +08:00
|
|
|
// If sheet ID is omitted, it is assumed to be the same as the i value of
|
|
|
|
// the previous cell.
|
|
|
|
var prevSheetID int
|
2023-11-02 00:15:41 +08:00
|
|
|
for i := 0; i < len(f.CalcChain.C); i++ {
|
|
|
|
c := f.CalcChain.C[i]
|
2023-10-24 00:05:52 +08:00
|
|
|
if c.I == 0 {
|
|
|
|
c.I = prevSheetID
|
|
|
|
}
|
|
|
|
prevSheetID = c.I
|
2021-02-02 22:23:16 +08:00
|
|
|
if c.I != sheetID {
|
|
|
|
continue
|
|
|
|
}
|
2019-06-08 00:00:55 +08:00
|
|
|
colNum, rowNum, err := CellNameToCoordinates(c.R)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if dir == rows && num <= rowNum {
|
2023-10-24 00:05:52 +08:00
|
|
|
if num == rowNum && offset == -1 {
|
|
|
|
_ = f.deleteCalcChain(c.I, c.R)
|
2023-11-02 00:15:41 +08:00
|
|
|
i--
|
2023-10-24 00:05:52 +08:00
|
|
|
continue
|
2019-06-08 00:00:55 +08:00
|
|
|
}
|
2023-11-02 00:15:41 +08:00
|
|
|
f.CalcChain.C[i].R, _ = adjustCellName(c.R, dir, colNum, rowNum, offset)
|
2019-06-08 00:00:55 +08:00
|
|
|
}
|
|
|
|
if dir == columns && num <= colNum {
|
2023-10-24 00:05:52 +08:00
|
|
|
if num == colNum && offset == -1 {
|
|
|
|
_ = f.deleteCalcChain(c.I, c.R)
|
2023-11-02 00:15:41 +08:00
|
|
|
i--
|
2023-10-24 00:05:52 +08:00
|
|
|
continue
|
2019-06-08 00:00:55 +08:00
|
|
|
}
|
2023-11-02 00:15:41 +08:00
|
|
|
f.CalcChain.C[i].R, _ = adjustCellName(c.R, dir, colNum, rowNum, offset)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// adjustVolatileDepsTopic updates the volatile dependencies topic when
|
|
|
|
// inserting or deleting rows or columns.
|
|
|
|
func (vt *xlsxVolTypes) adjustVolatileDepsTopic(cell string, dir adjustDirection, indexes []int) (int, error) {
|
|
|
|
num, offset, i1, i2, i3, i4 := indexes[0], indexes[1], indexes[2], indexes[3], indexes[4], indexes[5]
|
|
|
|
colNum, rowNum, err := CellNameToCoordinates(cell)
|
|
|
|
if err != nil {
|
|
|
|
return i4, err
|
|
|
|
}
|
|
|
|
if dir == rows && num <= rowNum {
|
|
|
|
if num == rowNum && offset == -1 {
|
|
|
|
vt.deleteVolTopicRef(i1, i2, i3, i4)
|
|
|
|
i4--
|
|
|
|
return i4, err
|
|
|
|
}
|
|
|
|
vt.VolType[i1].Main[i2].Tp[i3].Tr[i4].R, _ = adjustCellName(cell, dir, colNum, rowNum, offset)
|
|
|
|
}
|
|
|
|
if dir == columns && num <= colNum {
|
|
|
|
if num == colNum && offset == -1 {
|
|
|
|
vt.deleteVolTopicRef(i1, i2, i3, i4)
|
|
|
|
i4--
|
|
|
|
return i4, err
|
|
|
|
}
|
|
|
|
if name, _ := adjustCellName(cell, dir, colNum, rowNum, offset); name != "" {
|
|
|
|
vt.VolType[i1].Main[i2].Tp[i3].Tr[i4].R, _ = adjustCellName(cell, dir, colNum, rowNum, offset)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return i4, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// adjustVolatileDeps updates the volatile dependencies when inserting or
|
|
|
|
// deleting rows or columns.
|
|
|
|
func (f *File) adjustVolatileDeps(dir adjustDirection, num, offset, sheetID int) error {
|
|
|
|
volTypes, err := f.volatileDepsReader()
|
|
|
|
if err != nil || volTypes == nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for i1 := 0; i1 < len(volTypes.VolType); i1++ {
|
|
|
|
for i2 := 0; i2 < len(volTypes.VolType[i1].Main); i2++ {
|
|
|
|
for i3 := 0; i3 < len(volTypes.VolType[i1].Main[i2].Tp); i3++ {
|
|
|
|
for i4 := 0; i4 < len(volTypes.VolType[i1].Main[i2].Tp[i3].Tr); i4++ {
|
|
|
|
ref := volTypes.VolType[i1].Main[i2].Tp[i3].Tr[i4]
|
|
|
|
if ref.S != sheetID {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if i4, err = volTypes.adjustVolatileDepsTopic(ref.R, dir, []int{num, offset, i1, i2, i3, i4}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-08 00:00:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|