-
-
Save skaarlcooper/f42e1d8bc0d7046522100bbf44ed7a51 to your computer and use it in GitHub Desktop.
io.TeeReader versus io.MultiWriter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bytes" | |
"crypto/md5" | |
"encoding/hex" | |
"fmt" | |
"io" | |
"io/ioutil" | |
"os" | |
) | |
func main() { | |
sourceFile, _ := os.Open("source/ebook.pdf") | |
process := func(sourceReader io.Reader) { | |
targetFile, _ := os.Create("target/ebook.pdf") | |
defer targetFile.Close() | |
var buf1, buf2 bytes.Buffer | |
w := io.MultiWriter(targetFile, &buf1, &buf2) | |
if _, err := io.Copy(w, sourceReader); err != nil { | |
fmt.Println(err) | |
} | |
fmt.Println(checksum(&buf1)) | |
fmt.Println(checksum(&buf2)) | |
} | |
process(sourceFile) | |
} | |
func checksum(buf *bytes.Buffer) string { | |
h := md5.New() | |
b, _ := ioutil.ReadAll(buf) | |
if _, err := h.Write(b); err != nil { | |
fmt.Println(err) | |
} | |
return hex.EncodeToString(h.Sum(nil)[:16]) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bytes" | |
"crypto/md5" | |
"encoding/hex" | |
"fmt" | |
"io" | |
"io/ioutil" | |
"os" | |
) | |
func main() { | |
sourceFile, _ := os.Open("source/ebook.pdf") | |
var buf bytes.Buffer | |
tee := io.TeeReader(sourceFile, &buf) | |
process := func(sourceReader io.Reader) { | |
targetFile, _ := os.Create("target/ebook.pdf") | |
defer targetFile.Close() | |
if _, err := io.Copy(targetFile, sourceReader); err != nil { | |
fmt.Println(err) | |
} | |
} | |
process(tee) | |
fmt.Println(checksum(&buf)) | |
} | |
func checksum(buf *bytes.Buffer) string { | |
h := md5.New() | |
b, _ := ioutil.ReadAll(buf) | |
if _, err := h.Write(b); err != nil { | |
fmt.Println(err) | |
} | |
return hex.EncodeToString(h.Sum(nil)[:16]) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment