package excelize import ( "bytes" "encoding/xml" "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 := "xl/worksheets/" + strings.ToLower(sheet) + ".xml" if xlsx != nil { output, _ := xml.Marshal(f.Sheet[name]) f.saveFileList(name, replaceWorkSheetsRelationshipsNameSpace(string(output))) } decoder := xml.NewDecoder(strings.NewReader(f.readXML(name))) d := f.sharedStringsReader() var inElement string var r xlsxRow var row []string tr, tc := f.getTotalRowsCols(sheet) for i := 0; i < tr; i++ { row = []string{} for j := 0; j <= tc; j++ { row = append(row, "") } rows = append(rows, row) } decoder = xml.NewDecoder(strings.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 } // getTotalRowsCols provides a function to get total columns and rows in a // worksheet. func (f *File) getTotalRowsCols(sheet string) (int, int) { name := "xl/worksheets/" + strings.ToLower(sheet) + ".xml" decoder := xml.NewDecoder(strings.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: // // xlsx := excelize.NewFile() // xlsx.SetRowHeight("Sheet1", 0, 50) // err := xlsx.Save() // if err != nil { // fmt.Println(err) // os.Exit(1) // } // func (f *File) SetRowHeight(sheet string, rowIndex int, height float64) { xlsx := f.workSheetReader(sheet) rows := rowIndex + 1 cells := 0 completeRow(xlsx, rows, cells) xlsx.SheetData.Row[rowIndex].Ht = height xlsx.SheetData.Row[rowIndex].CustomHeight = true } // getRowHeight provides 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 function to get row height by given worksheet name and // row index. func (f *File) GetRowHeight(sheet string, row int) float64 { xlsx := f.workSheetReader(sheet) for _, v := range xlsx.SheetData.Row { if v.R == row+1 && v.Ht != 0 { return v.Ht } } // Optimisation for when the row heights haven't changed. return defaultRowHeightPixels } // sharedStringsReader provides 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 xml.Unmarshal([]byte(f.readXML("xl/sharedStrings.xml")), &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 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 3 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 3 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 } // RemoveRow provides 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 { continue } xlsx.SheetData.Row = append(xlsx.SheetData.Row[:i], xlsx.SheetData.Row[i+1:]...) f.adjustHelper(sheet, -1, row, -1) return } } // InsertRow provides 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 function to check and fill each column element for all rows // and make that is continuous in a worksheet of XML. For example: // // // // // // // // // in this case, we should to change it to // // // // // // // // // // // // 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, v := range xlsx.SheetData.Row { lenCol := len(v.C) if lenCol < 1 { continue } endR := string(strings.Map(letterOnlyMapF, v.C[lenCol-1].R)) endRow, _ := strconv.Atoi(strings.Map(intOnlyMapF, v.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 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 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 }