40 lines
913 B
Go
40 lines
913 B
Go
// Copyright © 2018 Inanc Gumus
|
|
// Learn Go Programming Course
|
|
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
|
//
|
|
// For more tutorials : https://learngoprogramming.com
|
|
// In-person training : https://www.linkedin.com/in/inancgumus/
|
|
// Follow me on twitter: https://twitter.com/inancgumus
|
|
|
|
package pipe
|
|
|
|
import "fmt"
|
|
|
|
// logCount counts the yielded records.
|
|
type logCount struct {
|
|
Iterator
|
|
n int
|
|
}
|
|
|
|
// Each yields to the inner iterator while counting the records.
|
|
// Reports the record number on an error.
|
|
func (lc *logCount) Each(yield func(Record) error) error {
|
|
count := func(r Record) error {
|
|
lc.n++
|
|
return yield(r)
|
|
}
|
|
|
|
err := lc.Iterator.Each(count)
|
|
|
|
if err != nil {
|
|
// lc.n+1: iterator.each won't call yield on err
|
|
return fmt.Errorf("record %d: %v", lc.n+1, err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// count returns the last read record number.
|
|
func (lc *logCount) count() int {
|
|
return lc.n
|
|
}
|