-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #291 from noborus/add-row-number-column-back
Add row number column
- Loading branch information
Showing
7 changed files
with
295 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
package trdsql | ||
|
||
import ( | ||
"strconv" | ||
) | ||
|
||
// rowNumberReader is a Reader that adds a row number column to the input. | ||
type rowNumberReader struct { | ||
reader Reader | ||
originRow []any | ||
lineCount int | ||
} | ||
|
||
// newRowNumberReader creates a new rowNumberReader. | ||
func newRowNumberReader(r Reader) *rowNumberReader { | ||
columnNum := 1 | ||
names, err := r.Names() | ||
if err == nil { | ||
columnNum = len(names) | ||
} | ||
originRow := make([]any, columnNum) | ||
return &rowNumberReader{ | ||
reader: r, | ||
originRow: originRow, | ||
lineCount: 0, | ||
} | ||
} | ||
|
||
// Names returns column names with an additional row number column. | ||
func (r *rowNumberReader) Names() ([]string, error) { | ||
number := "num" | ||
names, err := r.reader.Names() | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
for i := 0; i < len(names)+1; i++ { | ||
orig := number | ||
for _, name := range names { | ||
if number == name { | ||
number = orig + strconv.Itoa(i) | ||
i++ | ||
continue | ||
} | ||
} | ||
} | ||
|
||
return append([]string{number}, names...), nil | ||
} | ||
|
||
// Types returns column types with an additional row number column. | ||
func (r *rowNumberReader) Types() ([]string, error) { | ||
types, err := r.reader.Types() | ||
if err != nil { | ||
return nil, err | ||
} | ||
return append([]string{"int"}, types...), nil | ||
} | ||
|
||
// PreReadRow returns pre-read rows with an additional row number column. | ||
func (r *rowNumberReader) PreReadRow() [][]any { | ||
preReadRows := r.reader.PreReadRow() | ||
for i := range preReadRows { | ||
preReadRows[i] = append([]any{r.lineCount + i + 1}, preReadRows[i]...) | ||
} | ||
r.lineCount += len(preReadRows) | ||
return preReadRows | ||
} | ||
|
||
// ReadRow reads the rest of the row with an additional row number column. | ||
func (r *rowNumberReader) ReadRow(row []any) ([]any, error) { | ||
var err error | ||
r.lineCount++ | ||
r.originRow, err = r.reader.ReadRow(r.originRow) | ||
if err != nil { | ||
return nil, err | ||
} | ||
if len(r.originRow) == 0 { | ||
return nil, nil | ||
} | ||
|
||
return append([]any{r.lineCount}, r.originRow...), nil | ||
} |
Oops, something went wrong.