Skip to content

Commit 1cbb05d

Browse files
committed
GetCols support the row element without r attribute in the worksheet
1 parent 48f19f6 commit 1cbb05d

File tree

3 files changed

+46
-32
lines changed

3 files changed

+46
-32
lines changed

cell_test.go

+3
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@ func TestGetCellValue(t *testing.T) {
110110
assert.Equal(t, cell, value)
111111
assert.NoError(t, err)
112112
}
113+
cols, err := f.GetCols("Sheet1")
114+
assert.Equal(t, [][]string{{"", "", "A3", "A4", "", "", "A7", "A8"}, {"", "", "", "B4", "", "", "B7", "B8"}}, cols)
115+
assert.NoError(t, err)
113116
}
114117

115118
func TestGetCellFormula(t *testing.T) {

col.go

+35-20
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ type Cols struct {
4848
// return
4949
// }
5050
// for _, col := range cols {
51-
// for _, colCell := range col {
52-
// fmt.Println(colCell, "\t")
51+
// for _, rowCell := range col {
52+
// fmt.Print(rowCell, "\t")
5353
// }
5454
// fmt.Println()
5555
// }
@@ -99,24 +99,34 @@ func (cols *Cols) Rows() ([]string, error) {
9999
switch startElement := token.(type) {
100100
case xml.StartElement:
101101
inElement = startElement.Name.Local
102+
if inElement == "row" {
103+
cellCol = 0
104+
cellRow++
105+
for _, attr := range startElement.Attr {
106+
if attr.Name.Local == "r" {
107+
cellRow, _ = strconv.Atoi(attr.Value)
108+
}
109+
}
110+
}
102111
if inElement == "c" {
112+
cellCol++
103113
for _, attr := range startElement.Attr {
104114
if attr.Name.Local == "r" {
105115
if cellCol, cellRow, err = CellNameToCoordinates(attr.Value); err != nil {
106116
return rows, err
107117
}
108-
blank := cellRow - len(rows)
109-
for i := 1; i < blank; i++ {
110-
rows = append(rows, "")
111-
}
112-
if cellCol == cols.curCol {
113-
colCell := xlsxC{}
114-
_ = decoder.DecodeElement(&colCell, &startElement)
115-
val, _ := colCell.getValueFrom(cols.f, d)
116-
rows = append(rows, val)
117-
}
118118
}
119119
}
120+
blank := cellRow - len(rows)
121+
for i := 1; i < blank; i++ {
122+
rows = append(rows, "")
123+
}
124+
if cellCol == cols.curCol {
125+
colCell := xlsxC{}
126+
_ = decoder.DecodeElement(&colCell, &startElement)
127+
val, _ := colCell.getValueFrom(cols.f, d)
128+
rows = append(rows, val)
129+
}
120130
}
121131
}
122132
}
@@ -152,10 +162,10 @@ func (f *File) Cols(sheet string) (*Cols, error) {
152162
f.saveFileList(name, replaceRelationshipsNameSpaceBytes(output))
153163
}
154164
var (
155-
inElement string
156-
cols Cols
157-
cellCol int
158-
err error
165+
inElement string
166+
cols Cols
167+
cellCol, curRow, row int
168+
err error
159169
)
160170
cols.sheetXML = f.readXML(name)
161171
decoder := f.xmlNewDecoder(bytes.NewReader(cols.sheetXML))
@@ -168,25 +178,30 @@ func (f *File) Cols(sheet string) (*Cols, error) {
168178
case xml.StartElement:
169179
inElement = startElement.Name.Local
170180
if inElement == "row" {
181+
row++
171182
for _, attr := range startElement.Attr {
172183
if attr.Name.Local == "r" {
173-
if cols.totalRow, err = strconv.Atoi(attr.Value); err != nil {
184+
if curRow, err = strconv.Atoi(attr.Value); err != nil {
174185
return &cols, err
175186
}
187+
row = curRow
176188
}
177189
}
190+
cols.totalRow = row
191+
cellCol = 0
178192
}
179193
if inElement == "c" {
194+
cellCol++
180195
for _, attr := range startElement.Attr {
181196
if attr.Name.Local == "r" {
182197
if cellCol, _, err = CellNameToCoordinates(attr.Value); err != nil {
183198
return &cols, err
184199
}
185-
if cellCol > cols.totalCol {
186-
cols.totalCol = cellCol
187-
}
188200
}
189201
}
202+
if cellCol > cols.totalCol {
203+
cols.totalCol = cellCol
204+
}
190205
}
191206
}
192207
}

rows.go

+8-12
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import (
3232
// }
3333
// for _, row := range rows {
3434
// for _, colCell := range row {
35-
// fmt.Println(colCell, "\t")
35+
// fmt.Print(colCell, "\t")
3636
// }
3737
// fmt.Println()
3838
// }
@@ -111,15 +111,14 @@ func (rows *Rows) Columns() ([]string, error) {
111111
}
112112
}
113113
if inElement == "c" {
114+
cellCol++
114115
colCell := xlsxC{}
115116
_ = rows.decoder.DecodeElement(&colCell, &startElement)
116117
if colCell.R != "" {
117118
cellCol, _, err = CellNameToCoordinates(colCell.R)
118119
if err != nil {
119120
return columns, err
120121
}
121-
} else {
122-
cellCol++
123122
}
124123
blank := cellCol - len(columns)
125124
for i := 1; i < blank; i++ {
@@ -177,10 +176,10 @@ func (f *File) Rows(sheet string) (*Rows, error) {
177176
f.saveFileList(name, replaceRelationshipsNameSpaceBytes(output))
178177
}
179178
var (
180-
err error
181-
inElement string
182-
row, curRow int
183-
rows Rows
179+
err error
180+
inElement string
181+
row int
182+
rows Rows
184183
)
185184
decoder := f.xmlNewDecoder(bytes.NewReader(f.readXML(name)))
186185
for {
@@ -192,18 +191,15 @@ func (f *File) Rows(sheet string) (*Rows, error) {
192191
case xml.StartElement:
193192
inElement = startElement.Name.Local
194193
if inElement == "row" {
194+
row++
195195
for _, attr := range startElement.Attr {
196196
if attr.Name.Local == "r" {
197-
curRow, err = strconv.Atoi(attr.Value)
197+
row, err = strconv.Atoi(attr.Value)
198198
if err != nil {
199199
return &rows, err
200200
}
201-
row = curRow
202201
}
203202
}
204-
if len(startElement.Attr) == 0 {
205-
row++
206-
}
207203
rows.totalRow = row
208204
}
209205
default:

0 commit comments

Comments
 (0)