Skip to content

Commit 36bab48

Browse files
committed
Clean up cid-fmt util code.
1 parent 056eac1 commit 36bab48

File tree

1 file changed

+27
-11
lines changed

1 file changed

+27
-11
lines changed

cid-fmt/main.go

+27-11
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,17 @@ outer:
114114
}
115115
}
116116
str, err := fmtCid(fmtStr, base, cid)
117-
if err != nil {
117+
switch err.(type) {
118+
case FormatStringError:
118119
fmt.Fprintf(os.Stderr, "Error: %v\n", err)
119-
// An error here means a bad format string, no point in continuing
120120
os.Exit(2)
121+
default:
122+
fmt.Fprintf(os.Stdout, "!ERROR!\n")
123+
errorMsg("%s: %v", cidStr, err)
124+
// Don't abort on cid specific errors
125+
continue
126+
case nil:
127+
// no error
121128
}
122129
fmt.Fprintf(os.Stdout, "%s\n", str)
123130
}
@@ -159,13 +166,26 @@ func decode(v string) (mb.Encoding, *c.Cid, error) {
159166

160167
const ERR_STR = "!ERROR!"
161168

169+
type FormatStringError struct {
170+
Message string
171+
Specifier string
172+
}
173+
174+
func (e FormatStringError) Error() string {
175+
if e.Specifier == "" {
176+
return e.Message
177+
} else {
178+
return fmt.Sprintf("%s: %s", e.Message, e.Specifier)
179+
}
180+
}
181+
162182
func fmtCid(fmtStr string, base mb.Encoding, cid *c.Cid) (string, error) {
163183
p := cid.Prefix()
164184
out := new(bytes.Buffer)
165185
var err error
166186
encoder, err := mb.NewEncoder(base)
167187
if err != nil {
168-
return ERR_STR, err
188+
return "", err
169189
}
170190
for i := 0; i < len(fmtStr); i++ {
171191
if fmtStr[i] != '%' {
@@ -174,7 +194,7 @@ func fmtCid(fmtStr string, base mb.Encoding, cid *c.Cid) (string, error) {
174194
}
175195
i++
176196
if i >= len(fmtStr) {
177-
return "", fmt.Errorf("premature end of format string")
197+
return "", FormatStringError{"premature end of format string", ""}
178198
}
179199
switch fmtStr[i] {
180200
case '%':
@@ -202,17 +222,13 @@ func fmtCid(fmtStr string, base mb.Encoding, cid *c.Cid) (string, error) {
202222
case 'd', 'D': // hash digest encoded in base %b
203223
dec, err := mh.Decode(cid.Hash())
204224
if err != nil {
205-
out.WriteString(ERR_STR)
206-
errorMsg("%v", err)
207-
continue
225+
return "", err
208226
}
209227
out.WriteString(encode(encoder, dec.Digest, fmtStr[i] == 'D'))
210228
case 's': // cid string encoded in base %b
211229
str, err := cid.StringOfBase(base)
212230
if err != nil {
213-
out.WriteString(ERR_STR)
214-
errorMsg("%v", err)
215-
continue
231+
return "", err
216232
}
217233
out.WriteString(str)
218234
case 'S': // cid string without base prefix
@@ -225,7 +241,7 @@ func fmtCid(fmtStr string, base mb.Encoding, cid *c.Cid) (string, error) {
225241
p.MhLength,
226242
)
227243
default:
228-
return "", fmt.Errorf("unrecognized specifier in format string: %c", fmtStr[i])
244+
return "", FormatStringError{"unrecognized specifier in format string", fmtStr[i-1 : i+1]}
229245
}
230246

231247
}

0 commit comments

Comments
 (0)