mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-21 16:03:32 +01:00
58 lines
1.5 KiB
Go
58 lines
1.5 KiB
Go
package rpc
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/zrepl/zrepl/internal/rpc/transportmux"
|
|
"github.com/zrepl/zrepl/internal/transport"
|
|
"github.com/zrepl/zrepl/internal/util/envconst"
|
|
)
|
|
|
|
type demuxedListener struct {
|
|
control, data transport.AuthenticatedListener
|
|
}
|
|
|
|
const (
|
|
transportmuxLabelControl string = "zrepl_control"
|
|
transportmuxLabelData string = "zrepl_data"
|
|
)
|
|
|
|
func demux(serveCtx context.Context, listener transport.AuthenticatedListener) demuxedListener {
|
|
listeners, err := transportmux.Demux(
|
|
serveCtx, listener,
|
|
[]string{transportmuxLabelControl, transportmuxLabelData},
|
|
envconst.Duration("ZREPL_TRANSPORT_DEMUX_TIMEOUT", 10*time.Second),
|
|
)
|
|
if err != nil {
|
|
// transportmux API guarantees that the returned error can only be due
|
|
// to invalid API usage (i.e. labels too long)
|
|
panic(err)
|
|
}
|
|
return demuxedListener{
|
|
control: listeners[transportmuxLabelControl],
|
|
data: listeners[transportmuxLabelData],
|
|
}
|
|
}
|
|
|
|
type muxedConnecter struct {
|
|
control, data transport.Connecter
|
|
}
|
|
|
|
func mux(rawConnecter transport.Connecter) muxedConnecter {
|
|
muxedConnecters, err := transportmux.MuxConnecter(
|
|
rawConnecter,
|
|
[]string{transportmuxLabelControl, transportmuxLabelData},
|
|
envconst.Duration("ZREPL_TRANSPORT_MUX_TIMEOUT", 10*time.Second),
|
|
)
|
|
if err != nil {
|
|
// transportmux API guarantees that the returned error can only be due
|
|
// to invalid API usage (i.e. labels too long)
|
|
panic(err)
|
|
}
|
|
return muxedConnecter{
|
|
control: muxedConnecters[transportmuxLabelControl],
|
|
data: muxedConnecters[transportmuxLabelData],
|
|
}
|
|
}
|