aboutsummaryrefslogtreecommitdiffstats
path: root/common.go
diff options
context:
space:
mode:
authorMáximo Cuadros <mcuadros@gmail.com>2016-02-25 10:18:48 +0100
committerMáximo Cuadros <mcuadros@gmail.com>2016-02-25 10:18:48 +0100
commit5bc563727ffa798caee3b007c366eb66c3d69caa (patch)
tree6107f49405bb605793f1bcd7ef4961ceadcb11e9 /common.go
parent07ca1ac7f3058ea6d3274a01973541fb84782f5e (diff)
parent0d999e1db6cd8736ab697de8ce848fa3a5274b9f (diff)
downloadgo-git-5bc563727ffa798caee3b007c366eb66c3d69caa.tar.gz
Merge pull request #34 from scjalliance/object-reader-writer
Refactor to use core.ObjectReader and core.ObjectWriter
Diffstat (limited to 'common.go')
-rw-r--r--common.go25
1 files changed, 24 insertions, 1 deletions
diff --git a/common.go b/common.go
index 6174339..d40e1c4 100644
--- a/common.go
+++ b/common.go
@@ -1,6 +1,9 @@
package git
-import "strings"
+import (
+ "io"
+ "strings"
+)
// countLines returns the number of lines in a string à la git, this is
// The newline character is assumed to be '\n'. The empty string
@@ -18,3 +21,23 @@ func countLines(s string) int {
return nEOL + 1
}
+
+// close is used with defer to close the given io.Closer and check its
+// returned error value. If Close returns an error and the given *error
+// is not nil, *error is set to the error returned by Close.
+//
+// close is typically used with named return values like so:
+//
+// func do(obj *Object) (err error) {
+// w, err := obj.Writer()
+// if err != nil {
+// return nil
+// }
+// defer close(w, &err)
+// // work with w
+// }
+func close(c io.Closer, err *error) {
+ if cerr := c.Close(); cerr != nil && *err == nil {
+ *err = cerr
+ }
+}