@@ -114,10 +114,17 @@ outer:
114
114
}
115
115
}
116
116
str , err := fmtCid (fmtStr , base , cid )
117
- if err != nil {
117
+ switch err .(type ) {
118
+ case FormatStringError :
118
119
fmt .Fprintf (os .Stderr , "Error: %v\n " , err )
119
- // An error here means a bad format string, no point in continuing
120
120
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
121
128
}
122
129
fmt .Fprintf (os .Stdout , "%s\n " , str )
123
130
}
@@ -159,13 +166,26 @@ func decode(v string) (mb.Encoding, *c.Cid, error) {
159
166
160
167
const ERR_STR = "!ERROR!"
161
168
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
+
162
182
func fmtCid (fmtStr string , base mb.Encoding , cid * c.Cid ) (string , error ) {
163
183
p := cid .Prefix ()
164
184
out := new (bytes.Buffer )
165
185
var err error
166
186
encoder , err := mb .NewEncoder (base )
167
187
if err != nil {
168
- return ERR_STR , err
188
+ return "" , err
169
189
}
170
190
for i := 0 ; i < len (fmtStr ); i ++ {
171
191
if fmtStr [i ] != '%' {
@@ -174,7 +194,7 @@ func fmtCid(fmtStr string, base mb.Encoding, cid *c.Cid) (string, error) {
174
194
}
175
195
i ++
176
196
if i >= len (fmtStr ) {
177
- return "" , fmt . Errorf ( "premature end of format string" )
197
+ return "" , FormatStringError { "premature end of format string" , "" }
178
198
}
179
199
switch fmtStr [i ] {
180
200
case '%' :
@@ -202,17 +222,13 @@ func fmtCid(fmtStr string, base mb.Encoding, cid *c.Cid) (string, error) {
202
222
case 'd' , 'D' : // hash digest encoded in base %b
203
223
dec , err := mh .Decode (cid .Hash ())
204
224
if err != nil {
205
- out .WriteString (ERR_STR )
206
- errorMsg ("%v" , err )
207
- continue
225
+ return "" , err
208
226
}
209
227
out .WriteString (encode (encoder , dec .Digest , fmtStr [i ] == 'D' ))
210
228
case 's' : // cid string encoded in base %b
211
229
str , err := cid .StringOfBase (base )
212
230
if err != nil {
213
- out .WriteString (ERR_STR )
214
- errorMsg ("%v" , err )
215
- continue
231
+ return "" , err
216
232
}
217
233
out .WriteString (str )
218
234
case 'S' : // cid string without base prefix
@@ -225,7 +241,7 @@ func fmtCid(fmtStr string, base mb.Encoding, cid *c.Cid) (string, error) {
225
241
p .MhLength ,
226
242
)
227
243
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 ]}
229
245
}
230
246
231
247
}
0 commit comments