123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462 |
- package excelize
- import (
- "bytes"
- "encoding/xml"
- "fmt"
- "io"
- "math"
- "strconv"
- "strings"
- )
- // GetRows return all the rows in a sheet by given worksheet name (case
- // sensitive). For example:
- //
- // for _, row := range xlsx.GetRows("Sheet1") {
- // for _, colCell := range row {
- // fmt.Print(colCell, "\t")
- // }
- // fmt.Println()
- // }
- //
- func (f *File) GetRows(sheet string) [][]string {
- xlsx := f.workSheetReader(sheet)
- rows := [][]string{}
- name, ok := f.sheetMap[trimSheetName(sheet)]
- if !ok {
- return rows
- }
- if xlsx != nil {
- output, _ := xml.Marshal(f.Sheet[name])
- f.saveFileList(name, replaceWorkSheetsRelationshipsNameSpaceBytes(output))
- }
- xml.NewDecoder(bytes.NewReader(f.readXML(name)))
- d := f.sharedStringsReader()
- var inElement string
- var r xlsxRow
- var row []string
- tr, tc := f.getTotalRowsCols(name)
- for i := 0; i < tr; i++ {
- row = []string{}
- for j := 0; j <= tc; j++ {
- row = append(row, "")
- }
- rows = append(rows, row)
- }
- decoder := xml.NewDecoder(bytes.NewReader(f.readXML(name)))
- for {
- token, _ := decoder.Token()
- if token == nil {
- break
- }
- switch startElement := token.(type) {
- case xml.StartElement:
- inElement = startElement.Name.Local
- if inElement == "row" {
- r = xlsxRow{}
- _ = decoder.DecodeElement(&r, &startElement)
- cr := r.R - 1
- for _, colCell := range r.C {
- c := TitleToNumber(strings.Map(letterOnlyMapF, colCell.R))
- val, _ := colCell.getValueFrom(f, d)
- rows[cr][c] = val
- }
- }
- default:
- }
- }
- return rows
- }
- // Rows defines an iterator to a sheet
- type Rows struct {
- decoder *xml.Decoder
- token xml.Token
- err error
- f *File
- }
- // Next will return true if find the next row element.
- func (rows *Rows) Next() bool {
- for {
- rows.token, rows.err = rows.decoder.Token()
- if rows.err == io.EOF {
- rows.err = nil
- }
- if rows.token == nil {
- return false
- }
- switch startElement := rows.token.(type) {
- case xml.StartElement:
- inElement := startElement.Name.Local
- if inElement == "row" {
- return true
- }
- }
- }
- }
- // Error will return the error when the find next row element
- func (rows *Rows) Error() error {
- return rows.err
- }
- // Columns return the current row's column values
- func (rows *Rows) Columns() []string {
- if rows.token == nil {
- return []string{}
- }
- startElement := rows.token.(xml.StartElement)
- r := xlsxRow{}
- _ = rows.decoder.DecodeElement(&r, &startElement)
- d := rows.f.sharedStringsReader()
- row := make([]string, len(r.C))
- for _, colCell := range r.C {
- c := TitleToNumber(strings.Map(letterOnlyMapF, colCell.R))
- val, _ := colCell.getValueFrom(rows.f, d)
- row[c] = val
- }
- return row
- }
- // ErrSheetNotExist defines an error of sheet is not exist
- type ErrSheetNotExist struct {
- SheetName string
- }
- func (err ErrSheetNotExist) Error() string {
- return fmt.Sprintf("Sheet %s is not exist", string(err.SheetName))
- }
- // Rows return a rows iterator. For example:
- //
- // rows, err := xlsx.Rows("Sheet1")
- // for rows.Next() {
- // for _, colCell := range rows.Columns() {
- // fmt.Print(colCell, "\t")
- // }
- // fmt.Println()
- // }
- //
- func (f *File) Rows(sheet string) (*Rows, error) {
- xlsx := f.workSheetReader(sheet)
- name, ok := f.sheetMap[trimSheetName(sheet)]
- if !ok {
- return nil, ErrSheetNotExist{sheet}
- }
- if xlsx != nil {
- output, _ := xml.Marshal(f.Sheet[name])
- f.saveFileList(name, replaceWorkSheetsRelationshipsNameSpaceBytes(output))
- }
- return &Rows{
- f: f,
- decoder: xml.NewDecoder(bytes.NewReader(f.readXML(name))),
- }, nil
- }
- // getTotalRowsCols provides a function to get total columns and rows in a
- // worksheet.
- func (f *File) getTotalRowsCols(name string) (int, int) {
- decoder := xml.NewDecoder(bytes.NewReader(f.readXML(name)))
- var inElement string
- var r xlsxRow
- var tr, tc int
- for {
- token, _ := decoder.Token()
- if token == nil {
- break
- }
- switch startElement := token.(type) {
- case xml.StartElement:
- inElement = startElement.Name.Local
- if inElement == "row" {
- r = xlsxRow{}
- _ = decoder.DecodeElement(&r, &startElement)
- tr = r.R
- for _, colCell := range r.C {
- col := TitleToNumber(strings.Map(letterOnlyMapF, colCell.R))
- if col > tc {
- tc = col
- }
- }
- }
- default:
- }
- }
- return tr, tc
- }
- // SetRowHeight provides a function to set the height of a single row. For
- // example, set the height of the first row in Sheet1:
- //
- // xlsx.SetRowHeight("Sheet1", 1, 50)
- //
- func (f *File) SetRowHeight(sheet string, row int, height float64) {
- xlsx := f.workSheetReader(sheet)
- cells := 0
- rowIdx := row - 1
- completeRow(xlsx, row, cells)
- xlsx.SheetData.Row[rowIdx].Ht = height
- xlsx.SheetData.Row[rowIdx].CustomHeight = true
- }
- // getRowHeight provides a function to get row height in pixels by given sheet
- // name and row index.
- func (f *File) getRowHeight(sheet string, row int) int {
- xlsx := f.workSheetReader(sheet)
- for _, v := range xlsx.SheetData.Row {
- if v.R == row+1 && v.Ht != 0 {
- return int(convertRowHeightToPixels(v.Ht))
- }
- }
- // Optimisation for when the row heights haven't changed.
- return int(defaultRowHeightPixels)
- }
- // GetRowHeight provides a function to get row height by given worksheet name
- // and row index. For example, get the height of the first row in Sheet1:
- //
- // xlsx.GetRowHeight("Sheet1", 1)
- //
- func (f *File) GetRowHeight(sheet string, row int) float64 {
- xlsx := f.workSheetReader(sheet)
- for _, v := range xlsx.SheetData.Row {
- if v.R == row && v.Ht != 0 {
- return v.Ht
- }
- }
- // Optimisation for when the row heights haven't changed.
- return defaultRowHeightPixels
- }
- // sharedStringsReader provides a function to get the pointer to the structure
- // after deserialization of xl/sharedStrings.xml.
- func (f *File) sharedStringsReader() *xlsxSST {
- if f.SharedStrings == nil {
- var sharedStrings xlsxSST
- ss := f.readXML("xl/sharedStrings.xml")
- if len(ss) == 0 {
- ss = f.readXML("xl/SharedStrings.xml")
- }
- _ = xml.Unmarshal([]byte(ss), &sharedStrings)
- f.SharedStrings = &sharedStrings
- }
- return f.SharedStrings
- }
- // getValueFrom return a value from a column/row cell, this function is
- // inteded to be used with for range on rows an argument with the xlsx opened
- // file.
- func (xlsx *xlsxC) getValueFrom(f *File, d *xlsxSST) (string, error) {
- switch xlsx.T {
- case "s":
- xlsxSI := 0
- xlsxSI, _ = strconv.Atoi(xlsx.V)
- if len(d.SI[xlsxSI].R) > 0 {
- value := ""
- for _, v := range d.SI[xlsxSI].R {
- value += v.T
- }
- return value, nil
- }
- return f.formattedValue(xlsx.S, d.SI[xlsxSI].T), nil
- case "str":
- return f.formattedValue(xlsx.S, xlsx.V), nil
- case "inlineStr":
- return f.formattedValue(xlsx.S, xlsx.IS.T), nil
- default:
- return f.formattedValue(xlsx.S, xlsx.V), nil
- }
- }
- // SetRowVisible provides a function to set visible of a single row by given
- // worksheet name and row index. For example, hide row 2 in Sheet1:
- //
- // xlsx.SetRowVisible("Sheet1", 2, false)
- //
- func (f *File) SetRowVisible(sheet string, rowIndex int, visible bool) {
- xlsx := f.workSheetReader(sheet)
- rows := rowIndex + 1
- cells := 0
- completeRow(xlsx, rows, cells)
- if visible {
- xlsx.SheetData.Row[rowIndex].Hidden = false
- return
- }
- xlsx.SheetData.Row[rowIndex].Hidden = true
- }
- // GetRowVisible provides a function to get visible of a single row by given
- // worksheet name and row index. For example, get visible state of row 2 in
- // Sheet1:
- //
- // xlsx.GetRowVisible("Sheet1", 2)
- //
- func (f *File) GetRowVisible(sheet string, rowIndex int) bool {
- xlsx := f.workSheetReader(sheet)
- rows := rowIndex + 1
- cells := 0
- completeRow(xlsx, rows, cells)
- return !xlsx.SheetData.Row[rowIndex].Hidden
- }
- // SetRowOutlineLevel provides a function to set outline level number of a
- // single row by given worksheet name and row index. For example, outline row
- // 2 in Sheet1 to level 1:
- //
- // xlsx.SetRowOutlineLevel("Sheet1", 2, 1)
- //
- func (f *File) SetRowOutlineLevel(sheet string, rowIndex int, level uint8) {
- xlsx := f.workSheetReader(sheet)
- rows := rowIndex + 1
- cells := 0
- completeRow(xlsx, rows, cells)
- xlsx.SheetData.Row[rowIndex].OutlineLevel = level
- }
- // GetRowOutlineLevel provides a function to get outline level number of a
- // single row by given worksheet name and row index. For example, get outline
- // number of row 2 in Sheet1:
- //
- // xlsx.GetRowOutlineLevel("Sheet1", 2)
- //
- func (f *File) GetRowOutlineLevel(sheet string, rowIndex int) uint8 {
- xlsx := f.workSheetReader(sheet)
- rows := rowIndex + 1
- cells := 0
- completeRow(xlsx, rows, cells)
- return xlsx.SheetData.Row[rowIndex].OutlineLevel
- }
- // RemoveRow provides a function to remove single row by given worksheet name
- // and row index. For example, remove row 3 in Sheet1:
- //
- // xlsx.RemoveRow("Sheet1", 2)
- //
- func (f *File) RemoveRow(sheet string, row int) {
- if row < 0 {
- return
- }
- xlsx := f.workSheetReader(sheet)
- row++
- for i, r := range xlsx.SheetData.Row {
- if r.R == row {
- xlsx.SheetData.Row = append(xlsx.SheetData.Row[:i], xlsx.SheetData.Row[i+1:]...)
- f.adjustHelper(sheet, -1, row, -1)
- return
- }
- }
- }
- // InsertRow provides a function to insert a new row before given row index.
- // For example, create a new row before row 3 in Sheet1:
- //
- // xlsx.InsertRow("Sheet1", 2)
- //
- func (f *File) InsertRow(sheet string, row int) {
- if row < 0 {
- return
- }
- row++
- f.adjustHelper(sheet, -1, row, 1)
- }
- // checkRow provides a function to check and fill each column element for all
- // rows and make that is continuous in a worksheet of XML. For example:
- //
- // <row r="15" spans="1:22" x14ac:dyDescent="0.2">
- // <c r="A15" s="2" />
- // <c r="B15" s="2" />
- // <c r="F15" s="1" />
- // <c r="G15" s="1" />
- // </row>
- //
- // in this case, we should to change it to
- //
- // <row r="15" spans="1:22" x14ac:dyDescent="0.2">
- // <c r="A15" s="2" />
- // <c r="B15" s="2" />
- // <c r="C15" s="2" />
- // <c r="D15" s="2" />
- // <c r="E15" s="2" />
- // <c r="F15" s="1" />
- // <c r="G15" s="1" />
- // </row>
- //
- // Noteice: this method could be very slow for large spreadsheets (more than
- // 3000 rows one sheet).
- func checkRow(xlsx *xlsxWorksheet) {
- buffer := bytes.Buffer{}
- for k := range xlsx.SheetData.Row {
- lenCol := len(xlsx.SheetData.Row[k].C)
- if lenCol > 0 {
- endR := string(strings.Map(letterOnlyMapF, xlsx.SheetData.Row[k].C[lenCol-1].R))
- endRow, _ := strconv.Atoi(strings.Map(intOnlyMapF, xlsx.SheetData.Row[k].C[lenCol-1].R))
- endCol := TitleToNumber(endR) + 1
- if lenCol < endCol {
- oldRow := xlsx.SheetData.Row[k].C
- xlsx.SheetData.Row[k].C = xlsx.SheetData.Row[k].C[:0]
- tmp := []xlsxC{}
- for i := 0; i < endCol; i++ {
- buffer.WriteString(ToAlphaString(i))
- buffer.WriteString(strconv.Itoa(endRow))
- tmp = append(tmp, xlsxC{
- R: buffer.String(),
- })
- buffer.Reset()
- }
- xlsx.SheetData.Row[k].C = tmp
- for _, y := range oldRow {
- colAxis := TitleToNumber(string(strings.Map(letterOnlyMapF, y.R)))
- xlsx.SheetData.Row[k].C[colAxis] = y
- }
- }
- }
- }
- }
- // completeRow provides a function to check and fill each column element for a
- // single row and make that is continuous in a worksheet of XML by given row
- // index and axis.
- func completeRow(xlsx *xlsxWorksheet, row, cell int) {
- currentRows := len(xlsx.SheetData.Row)
- if currentRows > 1 {
- lastRow := xlsx.SheetData.Row[currentRows-1].R
- if lastRow >= row {
- row = lastRow
- }
- }
- for i := currentRows; i < row; i++ {
- xlsx.SheetData.Row = append(xlsx.SheetData.Row, xlsxRow{
- R: i + 1,
- })
- }
- buffer := bytes.Buffer{}
- for ii := currentRows; ii < row; ii++ {
- start := len(xlsx.SheetData.Row[ii].C)
- if start == 0 {
- for iii := start; iii < cell; iii++ {
- buffer.WriteString(ToAlphaString(iii))
- buffer.WriteString(strconv.Itoa(ii + 1))
- xlsx.SheetData.Row[ii].C = append(xlsx.SheetData.Row[ii].C, xlsxC{
- R: buffer.String(),
- })
- buffer.Reset()
- }
- }
- }
- }
- // convertRowHeightToPixels provides a function to convert the height of a
- // cell from user's units to pixels. If the height hasn't been set by the user
- // we use the default value. If the row is hidden it has a value of zero.
- func convertRowHeightToPixels(height float64) float64 {
- var pixels float64
- if height == 0 {
- return pixels
- }
- pixels = math.Ceil(4.0 / 3.0 * height)
- return pixels
- }
|