mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
rename the logging.CloseReason to TimeoutReason
This commit is contained in:
parent
53856bda60
commit
7d6ce4ea45
10 changed files with 31 additions and 24 deletions
|
@ -64,7 +64,7 @@ func (mr *MockConnectionTracerMockRecorder) Close() *gomock.Call {
|
||||||
}
|
}
|
||||||
|
|
||||||
// ClosedConnection mocks base method
|
// ClosedConnection mocks base method
|
||||||
func (m *MockConnectionTracer) ClosedConnection(arg0 logging.CloseReason) {
|
func (m *MockConnectionTracer) ClosedConnection(arg0 logging.TimeoutReason) {
|
||||||
m.ctrl.T.Helper()
|
m.ctrl.T.Helper()
|
||||||
m.ctrl.Call(m, "ClosedConnection", arg0)
|
m.ctrl.Call(m, "ClosedConnection", arg0)
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,7 @@ import (
|
||||||
|
|
||||||
"github.com/lucas-clemente/quic-go/internal/congestion"
|
"github.com/lucas-clemente/quic-go/internal/congestion"
|
||||||
"github.com/lucas-clemente/quic-go/internal/protocol"
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
||||||
|
"github.com/lucas-clemente/quic-go/internal/qerr"
|
||||||
"github.com/lucas-clemente/quic-go/internal/wire"
|
"github.com/lucas-clemente/quic-go/internal/wire"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -32,6 +33,7 @@ type (
|
||||||
StreamType = protocol.StreamType
|
StreamType = protocol.StreamType
|
||||||
// The VersionNumber is the QUIC version.
|
// The VersionNumber is the QUIC version.
|
||||||
VersionNumber = protocol.VersionNumber
|
VersionNumber = protocol.VersionNumber
|
||||||
|
|
||||||
// The Header is the QUIC packet header, before removing header protection.
|
// The Header is the QUIC packet header, before removing header protection.
|
||||||
Header = wire.Header
|
Header = wire.Header
|
||||||
// The ExtendedHeader is the QUIC packet header, after removing header protection.
|
// The ExtendedHeader is the QUIC packet header, after removing header protection.
|
||||||
|
@ -39,6 +41,11 @@ type (
|
||||||
// The TransportParameters are QUIC transport parameters.
|
// The TransportParameters are QUIC transport parameters.
|
||||||
TransportParameters = wire.TransportParameters
|
TransportParameters = wire.TransportParameters
|
||||||
|
|
||||||
|
// A TransportError is a transport-level error code.
|
||||||
|
TransportError = qerr.ErrorCode
|
||||||
|
// An ApplicationError is an application-defined error code.
|
||||||
|
ApplicationError = qerr.ErrorCode
|
||||||
|
|
||||||
// The RTTStats contain statistics used by the congestion controller.
|
// The RTTStats contain statistics used by the congestion controller.
|
||||||
RTTStats = congestion.RTTStats
|
RTTStats = congestion.RTTStats
|
||||||
)
|
)
|
||||||
|
@ -77,7 +84,7 @@ type Tracer interface {
|
||||||
// A ConnectionTracer records events.
|
// A ConnectionTracer records events.
|
||||||
type ConnectionTracer interface {
|
type ConnectionTracer interface {
|
||||||
StartedConnection(local, remote net.Addr, version VersionNumber, srcConnID, destConnID ConnectionID)
|
StartedConnection(local, remote net.Addr, version VersionNumber, srcConnID, destConnID ConnectionID)
|
||||||
ClosedConnection(CloseReason)
|
ClosedConnection(TimeoutReason)
|
||||||
SentTransportParameters(*TransportParameters)
|
SentTransportParameters(*TransportParameters)
|
||||||
ReceivedTransportParameters(*TransportParameters)
|
ReceivedTransportParameters(*TransportParameters)
|
||||||
SentPacket(hdr *ExtendedHeader, packetSize ByteCount, ack *AckFrame, frames []Frame)
|
SentPacket(hdr *ExtendedHeader, packetSize ByteCount, ack *AckFrame, frames []Frame)
|
||||||
|
|
|
@ -70,14 +70,14 @@ const (
|
||||||
TimerTypePTO
|
TimerTypePTO
|
||||||
)
|
)
|
||||||
|
|
||||||
// CloseReason is the reason why a session is closed
|
// TimeoutReason is the reason why a session is closed
|
||||||
type CloseReason uint8
|
type TimeoutReason uint8
|
||||||
|
|
||||||
const (
|
const (
|
||||||
// CloseReasonHandshakeTimeout is used when the session is closed due to a handshake timeout
|
// TimeoutReasonHandshake is used when the session is closed due to a handshake timeout
|
||||||
// This reason is not defined in the qlog draft, but very useful for debugging.
|
// This reason is not defined in the qlog draft, but very useful for debugging.
|
||||||
CloseReasonHandshakeTimeout CloseReason = iota
|
TimeoutReasonHandshake TimeoutReason = iota
|
||||||
// CloseReasonIdleTimeout is used when the session is closed due to an idle timeout
|
// TimeoutReasonIdle is used when the session is closed due to an idle timeout
|
||||||
// This reason is not defined in the qlog draft, but very useful for debugging.
|
// This reason is not defined in the qlog draft, but very useful for debugging.
|
||||||
CloseReasonIdleTimeout
|
TimeoutReasonIdle
|
||||||
)
|
)
|
||||||
|
|
|
@ -94,7 +94,7 @@ func (e eventConnectionStarted) MarshalJSONObject(enc *gojay.Encoder) {
|
||||||
}
|
}
|
||||||
|
|
||||||
type eventConnectionClosed struct {
|
type eventConnectionClosed struct {
|
||||||
Reason closeReason
|
Reason timeoutReason
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e eventConnectionClosed) Category() category { return categoryTransport }
|
func (e eventConnectionClosed) Category() category { return categoryTransport }
|
||||||
|
|
|
@ -163,9 +163,9 @@ func (t *connectionTracer) StartedConnection(local, remote net.Addr, version pro
|
||||||
t.mutex.Unlock()
|
t.mutex.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *connectionTracer) ClosedConnection(r logging.CloseReason) {
|
func (t *connectionTracer) ClosedConnection(r logging.TimeoutReason) {
|
||||||
t.mutex.Lock()
|
t.mutex.Lock()
|
||||||
t.recordEvent(time.Now(), &eventConnectionClosed{Reason: closeReason(r)})
|
t.recordEvent(time.Now(), &eventConnectionClosed{Reason: timeoutReason(r)})
|
||||||
t.mutex.Unlock()
|
t.mutex.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -172,7 +172,7 @@ var _ = Describe("Tracing", func() {
|
||||||
})
|
})
|
||||||
|
|
||||||
It("records connection closes", func() {
|
It("records connection closes", func() {
|
||||||
tracer.ClosedConnection(logging.CloseReasonIdleTimeout)
|
tracer.ClosedConnection(logging.TimeoutReasonIdle)
|
||||||
entry := exportAndParseSingle()
|
entry := exportAndParseSingle()
|
||||||
Expect(entry.Time).To(BeTemporally("~", time.Now(), scaleDuration(10*time.Millisecond)))
|
Expect(entry.Time).To(BeTemporally("~", time.Now(), scaleDuration(10*time.Millisecond)))
|
||||||
Expect(entry.Category).To(Equal("transport"))
|
Expect(entry.Category).To(Equal("transport"))
|
||||||
|
|
|
@ -296,13 +296,13 @@ func (t timerType) String() string {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
type closeReason logging.CloseReason
|
type timeoutReason logging.TimeoutReason
|
||||||
|
|
||||||
func (r closeReason) String() string {
|
func (r timeoutReason) String() string {
|
||||||
switch logging.CloseReason(r) {
|
switch logging.TimeoutReason(r) {
|
||||||
case logging.CloseReasonHandshakeTimeout:
|
case logging.TimeoutReasonHandshake:
|
||||||
return "handshake_timeout"
|
return "handshake_timeout"
|
||||||
case logging.CloseReasonIdleTimeout:
|
case logging.TimeoutReasonIdle:
|
||||||
return "idle_timeout"
|
return "idle_timeout"
|
||||||
default:
|
default:
|
||||||
panic("unknown close reason")
|
panic("unknown close reason")
|
||||||
|
|
|
@ -59,8 +59,8 @@ var _ = Describe("Types", func() {
|
||||||
})
|
})
|
||||||
|
|
||||||
It("has a string representation for the close reason", func() {
|
It("has a string representation for the close reason", func() {
|
||||||
Expect(closeReason(logging.CloseReasonHandshakeTimeout).String()).To(Equal("handshake_timeout"))
|
Expect(timeoutReason(logging.TimeoutReasonHandshake).String()).To(Equal("handshake_timeout"))
|
||||||
Expect(closeReason(logging.CloseReasonIdleTimeout).String()).To(Equal("idle_timeout"))
|
Expect(timeoutReason(logging.TimeoutReasonIdle).String()).To(Equal("idle_timeout"))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("has a string representation for the key type", func() {
|
It("has a string representation for the key type", func() {
|
||||||
|
|
|
@ -593,13 +593,13 @@ runLoop:
|
||||||
s.keepAlivePingSent = true
|
s.keepAlivePingSent = true
|
||||||
} else if !s.handshakeComplete && now.Sub(s.sessionCreationTime) >= s.config.HandshakeTimeout {
|
} else if !s.handshakeComplete && now.Sub(s.sessionCreationTime) >= s.config.HandshakeTimeout {
|
||||||
if s.tracer != nil {
|
if s.tracer != nil {
|
||||||
s.tracer.ClosedConnection(logging.CloseReasonHandshakeTimeout)
|
s.tracer.ClosedConnection(logging.TimeoutReasonHandshake)
|
||||||
}
|
}
|
||||||
s.destroyImpl(qerr.NewTimeoutError("Handshake did not complete in time"))
|
s.destroyImpl(qerr.NewTimeoutError("Handshake did not complete in time"))
|
||||||
continue
|
continue
|
||||||
} else if s.handshakeComplete && now.Sub(s.idleTimeoutStartTime()) >= s.idleTimeout {
|
} else if s.handshakeComplete && now.Sub(s.idleTimeoutStartTime()) >= s.idleTimeout {
|
||||||
if s.tracer != nil {
|
if s.tracer != nil {
|
||||||
s.tracer.ClosedConnection(logging.CloseReasonIdleTimeout)
|
s.tracer.ClosedConnection(logging.TimeoutReasonIdle)
|
||||||
}
|
}
|
||||||
s.destroyImpl(qerr.NewTimeoutError("No recent network activity"))
|
s.destroyImpl(qerr.NewTimeoutError("No recent network activity"))
|
||||||
continue
|
continue
|
||||||
|
|
|
@ -1817,7 +1817,7 @@ var _ = Describe("Session", func() {
|
||||||
done := make(chan struct{})
|
done := make(chan struct{})
|
||||||
cryptoSetup.EXPECT().Close()
|
cryptoSetup.EXPECT().Close()
|
||||||
gomock.InOrder(
|
gomock.InOrder(
|
||||||
tracer.EXPECT().ClosedConnection(logging.CloseReasonIdleTimeout),
|
tracer.EXPECT().ClosedConnection(logging.TimeoutReasonIdle),
|
||||||
tracer.EXPECT().Close(),
|
tracer.EXPECT().Close(),
|
||||||
)
|
)
|
||||||
go func() {
|
go func() {
|
||||||
|
@ -1839,7 +1839,7 @@ var _ = Describe("Session", func() {
|
||||||
sessionRunner.EXPECT().Remove(gomock.Any()).Times(2)
|
sessionRunner.EXPECT().Remove(gomock.Any()).Times(2)
|
||||||
cryptoSetup.EXPECT().Close()
|
cryptoSetup.EXPECT().Close()
|
||||||
gomock.InOrder(
|
gomock.InOrder(
|
||||||
tracer.EXPECT().ClosedConnection(logging.CloseReasonHandshakeTimeout),
|
tracer.EXPECT().ClosedConnection(logging.TimeoutReasonHandshake),
|
||||||
tracer.EXPECT().Close(),
|
tracer.EXPECT().Close(),
|
||||||
)
|
)
|
||||||
done := make(chan struct{})
|
done := make(chan struct{})
|
||||||
|
@ -1889,7 +1889,7 @@ var _ = Describe("Session", func() {
|
||||||
)
|
)
|
||||||
cryptoSetup.EXPECT().Close()
|
cryptoSetup.EXPECT().Close()
|
||||||
gomock.InOrder(
|
gomock.InOrder(
|
||||||
tracer.EXPECT().ClosedConnection(logging.CloseReasonIdleTimeout),
|
tracer.EXPECT().ClosedConnection(logging.TimeoutReasonIdle),
|
||||||
tracer.EXPECT().Close(),
|
tracer.EXPECT().Close(),
|
||||||
)
|
)
|
||||||
sess.idleTimeout = 0
|
sess.idleTimeout = 0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue