channel: simplify implementation

do not use recover() to prevent writing to a closed channel.  There is
already a lock, use it as well for Close and let Write check if the
channel is still active.

[NO TESTS NEEDED] it is a refactoring

Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
This commit is contained in:
Giuseppe Scrivano
2021-05-06 11:49:26 +02:00
parent 9b9bd9e0e7
commit 4fe9dc2fbc

View File

@ -1,7 +1,6 @@
package channel
import (
"fmt"
"io"
"sync"
@ -34,20 +33,17 @@ func (w *writeCloser) Chan() <-chan []byte {
// Write method for WriteCloser
func (w *writeCloser) Write(b []byte) (bLen int, err error) {
// https://github.com/containers/podman/issues/7896
// when podman-remote pull image, if it was killed, the server will panic: send on closed channel
// so handle it
defer func() {
if rErr := recover(); rErr != nil {
err = fmt.Errorf("%s", rErr)
}
}()
if w == nil || w.ch == nil {
if w == nil {
return 0, errors.New("use channel.NewWriter() to initialize a WriteCloser")
}
w.mux.Lock()
defer w.mux.Unlock()
if w.ch == nil {
return 0, errors.New("the channel is closed for Write")
}
buf := make([]byte, len(b))
copy(buf, b)
w.ch <- buf
@ -57,6 +53,10 @@ func (w *writeCloser) Write(b []byte) (bLen int, err error) {
// Close method for WriteCloser
func (w *writeCloser) Close() error {
w.mux.Lock()
defer w.mux.Unlock()
close(w.ch)
w.ch = nil
return nil
}