rows.go 12.1 KB
Newer Older
A
ahmad 已提交
1 2 3
package excelize

import (
4
	"bytes"
A
ahmad 已提交
5
	"encoding/xml"
L
Lunny Xiao 已提交
6 7
	"fmt"
	"io"
8
	"math"
9
	"strconv"
A
ahmad 已提交
10 11 12
	"strings"
)

13 14
// GetRows return all the rows in a sheet by given worksheet name (case
// sensitive). For example:
15
//
16
//    for _, row := range xlsx.GetRows("Sheet1") {
17 18 19 20 21 22 23
//        for _, colCell := range row {
//            fmt.Print(colCell, "\t")
//        }
//        fmt.Println()
//    }
//
func (f *File) GetRows(sheet string) [][]string {
xurime's avatar
xurime 已提交
24
	xlsx := f.workSheetReader(sheet)
25
	rows := [][]string{}
26 27 28 29
	name, ok := f.sheetMap[trimSheetName(sheet)]
	if !ok {
		return rows
	}
xurime's avatar
xurime 已提交
30 31
	if xlsx != nil {
		output, _ := xml.Marshal(f.Sheet[name])
32
		f.saveFileList(name, replaceWorkSheetsRelationshipsNameSpaceBytes(output))
A
ahmad 已提交
33
	}
34
	xml.NewDecoder(bytes.NewReader(f.readXML(name)))
35
	d := f.sharedStringsReader()
36
	var inElement string
xurime's avatar
xurime 已提交
37
	var r xlsxRow
38
	var row []string
39
	tr, tc := f.getTotalRowsCols(name)
xurime's avatar
xurime 已提交
40 41 42 43 44 45 46
	for i := 0; i < tr; i++ {
		row = []string{}
		for j := 0; j <= tc; j++ {
			row = append(row, "")
		}
		rows = append(rows, row)
	}
47
	decoder := xml.NewDecoder(bytes.NewReader(f.readXML(name)))
48 49 50 51 52 53 54 55 56
	for {
		token, _ := decoder.Token()
		if token == nil {
			break
		}
		switch startElement := token.(type) {
		case xml.StartElement:
			inElement = startElement.Name.Local
			if inElement == "row" {
xurime's avatar
xurime 已提交
57
				r = xlsxRow{}
58
				_ = decoder.DecodeElement(&r, &startElement)
xurime's avatar
xurime 已提交
59
				cr := r.R - 1
60
				for _, colCell := range r.C {
61
					c := TitleToNumber(strings.Map(letterOnlyMapF, colCell.R))
62
					val, _ := colCell.getValueFrom(f, d)
xurime's avatar
xurime 已提交
63
					rows[cr][c] = val
64 65 66
				}
			}
		default:
67 68
		}
	}
69
	return rows
A
ahmad 已提交
70 71
}

L
Lunny Xiao 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
// 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{}
113
	_ = rows.decoder.DecodeElement(&r, &startElement)
L
Lunny Xiao 已提交
114
	d := rows.f.sharedStringsReader()
115
	row := make([]string, len(r.C))
L
Lunny Xiao 已提交
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
	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:
//
xurime's avatar
xurime 已提交
135
//    rows, err := xlsx.Rows("Sheet1")
L
Lunny Xiao 已提交
136 137 138 139 140 141 142 143 144 145 146 147 148 149
//    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 {
150
		output, _ := xml.Marshal(f.Sheet[name])
151
		f.saveFileList(name, replaceWorkSheetsRelationshipsNameSpaceBytes(output))
L
Lunny Xiao 已提交
152 153 154
	}
	return &Rows{
		f:       f,
155
		decoder: xml.NewDecoder(bytes.NewReader(f.readXML(name))),
L
Lunny Xiao 已提交
156 157 158
	}, nil
}

xurime's avatar
xurime 已提交
159
// getTotalRowsCols provides a function to get total columns and rows in a
160
// worksheet.
161
func (f *File) getTotalRowsCols(name string) (int, int) {
162
	decoder := xml.NewDecoder(bytes.NewReader(f.readXML(name)))
xurime's avatar
xurime 已提交
163 164 165 166 167 168 169 170 171 172 173 174 175
	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{}
176
				_ = decoder.DecodeElement(&r, &startElement)
xurime's avatar
xurime 已提交
177 178
				tr = r.R
				for _, colCell := range r.C {
179
					col := TitleToNumber(strings.Map(letterOnlyMapF, colCell.R))
xurime's avatar
xurime 已提交
180 181 182 183 184 185 186 187 188 189 190
					if col > tc {
						tc = col
					}
				}
			}
		default:
		}
	}
	return tr, tc
}

191 192
// SetRowHeight provides a function to set the height of a single row. For
// example, set the height of the first row in Sheet1:
N
Nikolas Silva 已提交
193
//
194
//    xlsx.SetRowHeight("Sheet1", 1, 50)
N
Nikolas Silva 已提交
195
//
196
func (f *File) SetRowHeight(sheet string, row int, height float64) {
xurime's avatar
xurime 已提交
197
	xlsx := f.workSheetReader(sheet)
N
Nikolas Silva 已提交
198
	cells := 0
199 200 201 202
	rowIdx := row - 1
	completeRow(xlsx, row, cells)
	xlsx.SheetData.Row[rowIdx].Ht = height
	xlsx.SheetData.Row[rowIdx].CustomHeight = true
N
Nikolas Silva 已提交
203 204
}

xurime's avatar
xurime 已提交
205
// getRowHeight provides a function to get row height in pixels by given sheet
206 207 208 209 210 211 212 213 214 215 216 217
// 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)
}

xurime's avatar
xurime 已提交
218
// GetRowHeight provides a function to get row height by given worksheet name
219 220 221 222
// and row index. For example, get the height of the first row in Sheet1:
//
//    xlsx.GetRowHeight("Sheet1", 1)
//
223 224 225
func (f *File) GetRowHeight(sheet string, row int) float64 {
	xlsx := f.workSheetReader(sheet)
	for _, v := range xlsx.SheetData.Row {
226
		if v.R == row && v.Ht != 0 {
227 228 229 230 231 232 233
			return v.Ht
		}
	}
	// Optimisation for when the row heights haven't changed.
	return defaultRowHeightPixels
}

xurime's avatar
xurime 已提交
234
// sharedStringsReader provides a function to get the pointer to the structure
235 236 237 238
// after deserialization of xl/sharedStrings.xml.
func (f *File) sharedStringsReader() *xlsxSST {
	if f.SharedStrings == nil {
		var sharedStrings xlsxSST
239
		ss := f.readXML("xl/sharedStrings.xml")
240
		if len(ss) == 0 {
241 242
			ss = f.readXML("xl/SharedStrings.xml")
		}
243
		_ = xml.Unmarshal([]byte(ss), &sharedStrings)
244 245 246
		f.SharedStrings = &sharedStrings
	}
	return f.SharedStrings
A
ahmad 已提交
247 248
}

xurime's avatar
xurime 已提交
249 250 251
// 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.
252
func (xlsx *xlsxC) getValueFrom(f *File, d *xlsxSST) (string, error) {
253 254 255 256
	switch xlsx.T {
	case "s":
		xlsxSI := 0
		xlsxSI, _ = strconv.Atoi(xlsx.V)
xurime's avatar
xurime 已提交
257 258 259 260 261 262 263
		if len(d.SI[xlsxSI].R) > 0 {
			value := ""
			for _, v := range d.SI[xlsxSI].R {
				value += v.T
			}
			return value, nil
		}
264
		return f.formattedValue(xlsx.S, d.SI[xlsxSI].T), nil
265
	case "str":
266
		return f.formattedValue(xlsx.S, xlsx.V), nil
267 268
	case "inlineStr":
		return f.formattedValue(xlsx.S, xlsx.IS.T), nil
269
	default:
270
		return f.formattedValue(xlsx.S, xlsx.V), nil
271
	}
A
ahmad 已提交
272
}
273

274
// SetRowVisible provides a function to set visible of a single row by given
275
// worksheet name and row index. For example, hide row 2 in Sheet1:
276
//
277
//    xlsx.SetRowVisible("Sheet1", 2, false)
278
//
279
func (f *File) SetRowVisible(sheet string, rowIndex int, visible bool) {
280 281 282 283
	xlsx := f.workSheetReader(sheet)
	rows := rowIndex + 1
	cells := 0
	completeRow(xlsx, rows, cells)
284 285 286 287
	if visible {
		xlsx.SheetData.Row[rowIndex].Hidden = false
		return
	}
288 289 290
	xlsx.SheetData.Row[rowIndex].Hidden = true
}

291
// GetRowVisible provides a function to get visible of a single row by given
292
// worksheet name and row index. For example, get visible state of row 2 in
293
// Sheet1:
294
//
295
//    xlsx.GetRowVisible("Sheet1", 2)
296
//
297
func (f *File) GetRowVisible(sheet string, rowIndex int) bool {
298 299 300 301
	xlsx := f.workSheetReader(sheet)
	rows := rowIndex + 1
	cells := 0
	completeRow(xlsx, rows, cells)
302
	return !xlsx.SheetData.Row[rowIndex].Hidden
303
}
304

305 306 307
// 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:
308 309 310 311 312 313 314 315 316 317 318
//
//    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
}

xurime's avatar
xurime 已提交
319 320 321
// 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:
322 323 324 325 326 327 328 329 330 331 332
//
//    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
}

xurime's avatar
xurime 已提交
333 334
// RemoveRow provides a function to remove single row by given worksheet name
// and row index. For example, remove row 3 in Sheet1:
335 336 337 338 339 340 341 342 343 344
//
//    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 {
xurime's avatar
xurime 已提交
345 346 347 348
		if r.R == row {
			xlsx.SheetData.Row = append(xlsx.SheetData.Row[:i], xlsx.SheetData.Row[i+1:]...)
			f.adjustHelper(sheet, -1, row, -1)
			return
349 350 351 352
		}
	}
}

xurime's avatar
xurime 已提交
353 354
// InsertRow provides a function to insert a new row before given row index.
// For example, create a new row before row 3 in Sheet1:
355 356 357 358 359 360 361 362 363 364 365
//
//    xlsx.InsertRow("Sheet1", 2)
//
func (f *File) InsertRow(sheet string, row int) {
	if row < 0 {
		return
	}
	row++
	f.adjustHelper(sheet, -1, row, 1)
}

xurime's avatar
xurime 已提交
366 367
// 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:
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
//
//    <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{}
392 393
	for k := range xlsx.SheetData.Row {
		lenCol := len(xlsx.SheetData.Row[k].C)
xurime's avatar
xurime 已提交
394
		if lenCol > 0 {
395 396
			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))
xurime's avatar
xurime 已提交
397 398 399 400 401
			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{}
402
				for i := 0; i < endCol; i++ {
xurime's avatar
xurime 已提交
403 404 405 406 407 408 409 410 411 412 413 414
					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
				}
415 416 417 418 419
			}
		}
	}
}

xurime's avatar
xurime 已提交
420
// completeRow provides a function to check and fill each column element for a
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
// 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()
			}
		}
	}
}

xurime's avatar
xurime 已提交
452 453 454
// 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.
455 456 457 458 459 460 461 462
func convertRowHeightToPixels(height float64) float64 {
	var pixels float64
	if height == 0 {
		return pixels
	}
	pixels = math.Ceil(4.0 / 3.0 * height)
	return pixels
}