webrtc/icegatheringstate.go
Woodrow Douglass 13450332a4 Remove the "Unknown" constant
This commit replaces the Unknown constant with
separate constants for each enumeration that
uses it.

Fixes #1293
2023-09-12 13:29:05 -04:00

60 lines
1.7 KiB
Go

// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT
package webrtc
// ICEGatheringState describes the state of the candidate gathering process.
type ICEGatheringState int
const (
// ICEGatheringStateUnknown is the enum's zero-value
ICEGatheringStateUnknown ICEGatheringState = iota
// ICEGatheringStateNew indicates that any of the ICETransports are
// in the "new" gathering state and none of the transports are in the
// "gathering" state, or there are no transports.
ICEGatheringStateNew
// ICEGatheringStateGathering indicates that any of the ICETransports
// are in the "gathering" state.
ICEGatheringStateGathering
// ICEGatheringStateComplete indicates that at least one ICETransport
// exists, and all ICETransports are in the "completed" gathering state.
ICEGatheringStateComplete
)
// This is done this way because of a linter.
const (
iceGatheringStateNewStr = "new"
iceGatheringStateGatheringStr = "gathering"
iceGatheringStateCompleteStr = "complete"
)
// NewICEGatheringState takes a string and converts it to ICEGatheringState
func NewICEGatheringState(raw string) ICEGatheringState {
switch raw {
case iceGatheringStateNewStr:
return ICEGatheringStateNew
case iceGatheringStateGatheringStr:
return ICEGatheringStateGathering
case iceGatheringStateCompleteStr:
return ICEGatheringStateComplete
default:
return ICEGatheringStateUnknown
}
}
func (t ICEGatheringState) String() string {
switch t {
case ICEGatheringStateNew:
return iceGatheringStateNewStr
case ICEGatheringStateGathering:
return iceGatheringStateGatheringStr
case ICEGatheringStateComplete:
return iceGatheringStateCompleteStr
default:
return ErrUnknownType.Error()
}
}