You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
524 B
Go
40 lines
524 B
Go
4 years ago
|
package iox
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"io"
|
||
|
"os"
|
||
|
)
|
||
|
|
||
|
const bufSize = 32 * 1024
|
||
|
|
||
|
func CountLines(file string) (int, error) {
|
||
|
f, err := os.Open(file)
|
||
|
if err != nil {
|
||
|
return 0, err
|
||
|
}
|
||
|
defer f.Close()
|
||
|
|
||
|
var noEol bool
|
||
|
buf := make([]byte, bufSize)
|
||
|
count := 0
|
||
|
lineSep := []byte{'\n'}
|
||
|
|
||
|
for {
|
||
|
c, err := f.Read(buf)
|
||
|
count += bytes.Count(buf[:c], lineSep)
|
||
|
|
||
|
switch {
|
||
|
case err == io.EOF:
|
||
|
if noEol {
|
||
|
count++
|
||
|
}
|
||
|
return count, nil
|
||
|
case err != nil:
|
||
|
return count, err
|
||
|
}
|
||
|
|
||
|
noEol = c > 0 && buf[c-1] != '\n'
|
||
|
}
|
||
|
}
|