Skip to content

Commit 60b13af

Browse files
author
li
authored
Support get current row/col and total rows/cols in the stream reader (qax-os#1054)
1 parent e64775f commit 60b13af

File tree

4 files changed

+61
-45
lines changed

4 files changed

+61
-45
lines changed

col.go

+20-10
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,22 @@ const (
3232

3333
// Cols defines an iterator to a sheet
3434
type Cols struct {
35-
err error
36-
curCol, totalCol, stashCol, totalRow int
37-
rawCellValue bool
38-
sheet string
39-
f *File
40-
sheetXML []byte
35+
err error
36+
curCol, totalCols, totalRows, stashCol int
37+
rawCellValue bool
38+
sheet string
39+
f *File
40+
sheetXML []byte
41+
}
42+
43+
// CurrentCol returns the column number that represents the current column.
44+
func (cols *Cols) CurrentCol() int {
45+
return cols.curCol
46+
}
47+
48+
// TotalCols returns the total columns count in the worksheet.
49+
func (cols *Cols) TotalCols() int {
50+
return cols.totalCols
4151
}
4252

4353
// GetCols return all the columns in a sheet by given worksheet name (case
@@ -71,7 +81,7 @@ func (f *File) GetCols(sheet string, opts ...Options) ([][]string, error) {
7181
// Next will return true if the next column is found.
7282
func (cols *Cols) Next() bool {
7383
cols.curCol++
74-
return cols.curCol <= cols.totalCol
84+
return cols.curCol <= cols.totalCols
7585
}
7686

7787
// Error will return an error when the error occurs.
@@ -159,7 +169,7 @@ func columnXMLHandler(colIterator *columnXMLIterator, xmlElement *xml.StartEleme
159169
colIterator.row = colIterator.curRow
160170
}
161171
}
162-
colIterator.cols.totalRow = colIterator.row
172+
colIterator.cols.totalRows = colIterator.row
163173
colIterator.cellCol = 0
164174
}
165175
if inElement == "c" {
@@ -171,8 +181,8 @@ func columnXMLHandler(colIterator *columnXMLIterator, xmlElement *xml.StartEleme
171181
}
172182
}
173183
}
174-
if colIterator.cellCol > colIterator.cols.totalCol {
175-
colIterator.cols.totalCol = colIterator.cellCol
184+
if colIterator.cellCol > colIterator.cols.totalCols {
185+
colIterator.cols.totalCols = colIterator.cellCol
176186
}
177187
}
178188
}

col_test.go

+12-14
Original file line numberDiff line numberDiff line change
@@ -59,39 +59,37 @@ func TestCols(t *testing.T) {
5959
}
6060

6161
func TestColumnsIterator(t *testing.T) {
62-
const (
63-
sheet2 = "Sheet2"
64-
expectedNumCol = 9
65-
)
66-
62+
sheetName, colCount, expectedNumCol := "Sheet2", 0, 9
6763
f, err := OpenFile(filepath.Join("test", "Book1.xlsx"))
6864
require.NoError(t, err)
6965

70-
cols, err := f.Cols(sheet2)
66+
cols, err := f.Cols(sheetName)
7167
require.NoError(t, err)
7268

73-
var colCount int
7469
for cols.Next() {
7570
colCount++
71+
assert.Equal(t, colCount, cols.CurrentCol())
72+
assert.Equal(t, expectedNumCol, cols.TotalCols())
7673
require.True(t, colCount <= expectedNumCol, "colCount is greater than expected")
7774
}
7875
assert.Equal(t, expectedNumCol, colCount)
7976
assert.NoError(t, f.Close())
8077

81-
f = NewFile()
78+
f, sheetName, colCount, expectedNumCol = NewFile(), "Sheet1", 0, 4
8279
cells := []string{"C2", "C3", "C4", "D2", "D3", "D4"}
8380
for _, cell := range cells {
84-
assert.NoError(t, f.SetCellValue("Sheet1", cell, 1))
81+
assert.NoError(t, f.SetCellValue(sheetName, cell, 1))
8582
}
86-
cols, err = f.Cols("Sheet1")
83+
cols, err = f.Cols(sheetName)
8784
require.NoError(t, err)
8885

89-
colCount = 0
9086
for cols.Next() {
9187
colCount++
88+
assert.Equal(t, colCount, cols.CurrentCol())
89+
assert.Equal(t, expectedNumCol, cols.TotalCols())
9290
require.True(t, colCount <= 4, "colCount is greater than expected")
9391
}
94-
assert.Equal(t, 4, colCount)
92+
assert.Equal(t, expectedNumCol, colCount)
9593
}
9694

9795
func TestColsError(t *testing.T) {
@@ -130,8 +128,8 @@ func TestGetColsError(t *testing.T) {
130128
f = NewFile()
131129
cols, err := f.Cols("Sheet1")
132130
assert.NoError(t, err)
133-
cols.totalRow = 2
134-
cols.totalCol = 2
131+
cols.totalRows = 2
132+
cols.totalCols = 2
135133
cols.curCol = 1
136134
cols.sheetXML = []byte(`<worksheet><sheetData><row r="1"><c r="A" t="str"><v>A</v></c></row></sheetData></worksheet>`)
137135
_, err = cols.Rows()

rows.go

+19-9
Original file line numberDiff line numberDiff line change
@@ -67,19 +67,29 @@ func (f *File) GetRows(sheet string, opts ...Options) ([][]string, error) {
6767

6868
// Rows defines an iterator to a sheet.
6969
type Rows struct {
70-
err error
71-
curRow, totalRow, stashRow int
72-
rawCellValue bool
73-
sheet string
74-
f *File
75-
tempFile *os.File
76-
decoder *xml.Decoder
70+
err error
71+
curRow, totalRows, stashRow int
72+
rawCellValue bool
73+
sheet string
74+
f *File
75+
tempFile *os.File
76+
decoder *xml.Decoder
77+
}
78+
79+
// CurrentRow returns the row number that represents the current row.
80+
func (rows *Rows) CurrentRow() int {
81+
return rows.curRow
82+
}
83+
84+
// TotalRows returns the total rows count in the worksheet.
85+
func (rows *Rows) TotalRows() int {
86+
return rows.totalRows
7787
}
7888

7989
// Next will return true if find the next row element.
8090
func (rows *Rows) Next() bool {
8191
rows.curRow++
82-
return rows.curRow <= rows.totalRow
92+
return rows.curRow <= rows.totalRows
8393
}
8494

8595
// Error will return the error when the error occurs.
@@ -255,7 +265,7 @@ func (f *File) Rows(sheet string) (*Rows, error) {
255265
}
256266
}
257267
}
258-
rows.totalRow = row
268+
rows.totalRows = row
259269
}
260270
case xml.EndElement:
261271
if xmlElement.Name.Local == "sheetData" {

rows_test.go

+10-12
Original file line numberDiff line numberDiff line change
@@ -65,38 +65,36 @@ func TestRows(t *testing.T) {
6565
}
6666

6767
func TestRowsIterator(t *testing.T) {
68-
const (
69-
sheet2 = "Sheet2"
70-
expectedNumRow = 11
71-
)
68+
sheetName, rowCount, expectedNumRow := "Sheet2", 0, 11
7269
f, err := OpenFile(filepath.Join("test", "Book1.xlsx"))
7370
require.NoError(t, err)
7471

75-
rows, err := f.Rows(sheet2)
72+
rows, err := f.Rows(sheetName)
7673
require.NoError(t, err)
77-
var rowCount int
74+
7875
for rows.Next() {
7976
rowCount++
77+
assert.Equal(t, rowCount, rows.CurrentRow())
78+
assert.Equal(t, expectedNumRow, rows.TotalRows())
8079
require.True(t, rowCount <= expectedNumRow, "rowCount is greater than expected")
8180
}
8281
assert.Equal(t, expectedNumRow, rowCount)
8382
assert.NoError(t, rows.Close())
8483
assert.NoError(t, f.Close())
8584

8685
// Valued cell sparse distribution test
87-
f = NewFile()
86+
f, sheetName, rowCount, expectedNumRow = NewFile(), "Sheet1", 0, 3
8887
cells := []string{"C1", "E1", "A3", "B3", "C3", "D3", "E3"}
8988
for _, cell := range cells {
90-
assert.NoError(t, f.SetCellValue("Sheet1", cell, 1))
89+
assert.NoError(t, f.SetCellValue(sheetName, cell, 1))
9190
}
92-
rows, err = f.Rows("Sheet1")
91+
rows, err = f.Rows(sheetName)
9392
require.NoError(t, err)
94-
rowCount = 0
9593
for rows.Next() {
9694
rowCount++
97-
require.True(t, rowCount <= 3, "rowCount is greater than expected")
95+
require.True(t, rowCount <= expectedNumRow, "rowCount is greater than expected")
9896
}
99-
assert.Equal(t, 3, rowCount)
97+
assert.Equal(t, expectedNumRow, rowCount)
10098
}
10199

102100
func TestRowsError(t *testing.T) {

0 commit comments

Comments
 (0)