2022-08-14 21:39:53 +08:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
2022-08-14 23:36:01 +08:00
|
|
|
"bytes"
|
2022-08-14 21:39:53 +08:00
|
|
|
)
|
|
|
|
|
2022-08-14 22:57:14 +08:00
|
|
|
// ScanLines scan lines but keep the suffix \r and \n
|
2022-08-14 21:39:53 +08:00
|
|
|
func ScanLines(data []byte, atEOF bool) (advance int, token []byte, err error) {
|
|
|
|
if atEOF && len(data) == 0 {
|
|
|
|
return 0, nil, nil
|
|
|
|
}
|
2022-08-14 23:36:01 +08:00
|
|
|
if i, j := bytes.IndexByte(data, '\r'), bytes.IndexByte(data, '\n'); i >= 0 || j >= 0 {
|
|
|
|
// case 1: TOKEN\r\nTOKEN
|
|
|
|
if i >= 0 && j >= 0 {
|
|
|
|
if i+1 == j {
|
|
|
|
return i + 2, data[:i+2], nil
|
|
|
|
}
|
|
|
|
if i < j {
|
|
|
|
// case 2: TOKEN\rTOKEN\nTOKEN
|
|
|
|
return i + 1, data[:i+1], nil
|
|
|
|
} else {
|
|
|
|
// case 3: TOKEN\nTOKEN\rTOKEN
|
|
|
|
return j + 1, data[:j+1], nil
|
|
|
|
}
|
|
|
|
} else if i >= 0 {
|
|
|
|
// case 4: TOKEN\rTOKEN
|
|
|
|
return i + 1, data[:i+1], nil
|
|
|
|
} else {
|
|
|
|
// case 5: TOKEN\nTOKEN
|
|
|
|
return j + 1, data[:j+1], nil
|
2022-08-14 21:39:53 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// If we're at EOF, we have a final, non-terminated line. Return it.
|
|
|
|
if atEOF {
|
2022-08-14 22:57:14 +08:00
|
|
|
return len(data), data, nil
|
2022-08-14 21:39:53 +08:00
|
|
|
}
|
|
|
|
// Request more data.
|
|
|
|
return 0, nil, nil
|
|
|
|
}
|