aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2010-06-18 20:37:03 -0700
committerRob Pike <r@golang.org>2010-06-18 20:37:03 -0700
commit3748d22672519f1126b7f18b006d970926c00d0d (patch)
tree9b31905bccd75f34c5dc373747e10d1b523012a0
parent4fd7880d81be995922f0babf26466ff6a893e483 (diff)
downloadgo-3748d22672519f1126b7f18b006d970926c00d0d.tar.gz
go-3748d22672519f1126b7f18b006d970926c00d0d.zip
fmt.Scanf: improve error message when input does not match format
R=rsc CC=golang-dev https://golang.org/cl/1693043
-rw-r--r--src/pkg/fmt/scan.go10
-rw-r--r--src/pkg/fmt/scan_test.go1
2 files changed, 7 insertions, 4 deletions
diff --git a/src/pkg/fmt/scan.go b/src/pkg/fmt/scan.go
index 883a95d34a..87076e8fc9 100644
--- a/src/pkg/fmt/scan.go
+++ b/src/pkg/fmt/scan.go
@@ -885,6 +885,7 @@ func (s *ss) doScan(a []interface{}) (numProcessed int, err os.Error) {
// either input or format behave as a single space. This routine also
// handles the %% case. If the return value is zero, either format
// starts with a % (with no following %) or the input is empty.
+// If it is negative, the input did not match the string.
func (s *ss) advance(format string) (i int) {
for i < len(format) {
fmtc, w := utf8.DecodeRuneInString(format[i:])
@@ -919,7 +920,7 @@ func (s *ss) advance(format string) (i int) {
inputc := s.mustGetRune()
if fmtc != inputc {
s.UngetRune(inputc)
- return
+ return -1
}
i += w
}
@@ -940,10 +941,11 @@ func (s *ss) doScanf(format string, a []interface{}) (numProcessed int, err os.E
}
// Either we failed to advance, we have a percent character, or we ran out of input.
if format[i] != '%' {
- // Can't advance format. Do we have arguments still to process?
- if i < len(a) {
- s.errorString("too many arguments for format")
+ // Can't advance format. Why not?
+ if w < 0 {
+ s.errorString("input does not match format")
}
+ // Otherwise at EOF; "too many operands" error handled below
break
}
i++ // % is one byte
diff --git a/src/pkg/fmt/scan_test.go b/src/pkg/fmt/scan_test.go
index d316f2e4a3..f195c0317c 100644
--- a/src/pkg/fmt/scan_test.go
+++ b/src/pkg/fmt/scan_test.go
@@ -303,6 +303,7 @@ var multiTests = []ScanfMultiTest{
ScanfMultiTest{"%d %d %d", "23 18", args(&i, &j), args(23, 18), "too few operands"},
ScanfMultiTest{"%d %d", "23 18 27", args(&i, &j, &k), args(23, 18), "too many operands"},
ScanfMultiTest{"%c", "\u0100", args(&int8Val), nil, "overflow"},
+ ScanfMultiTest{"X%d", "10X", args(&intVal), nil, "input does not match format"},
// Bad UTF-8: should see every byte.
ScanfMultiTest{"%c%c%c", "\xc2X\xc2", args(&i, &j, &k), args(utf8.RuneError, 'X', utf8.RuneError), ""},