mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 11:42:43 +08:00
chore: better TunnelStatus define
This commit is contained in:
parent
8dda9fdb70
commit
53928eb895
|
@ -1,9 +0,0 @@
|
||||||
package constant
|
|
||||||
|
|
||||||
type TunnelStatus uint8
|
|
||||||
|
|
||||||
const (
|
|
||||||
TunnelSuspend TunnelStatus = iota
|
|
||||||
TunnelInner
|
|
||||||
TunnelRunning
|
|
||||||
)
|
|
92
tunnel/status.go
Normal file
92
tunnel/status.go
Normal file
|
@ -0,0 +1,92 @@
|
||||||
|
package tunnel
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
|
"strings"
|
||||||
|
"sync/atomic"
|
||||||
|
)
|
||||||
|
|
||||||
|
type TunnelStatus int
|
||||||
|
|
||||||
|
// StatusMapping is a mapping for Status enum
|
||||||
|
var StatusMapping = map[string]TunnelStatus{
|
||||||
|
Suspend.String(): Suspend,
|
||||||
|
Inner.String(): Inner,
|
||||||
|
Running.String(): Running,
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
Suspend TunnelStatus = iota
|
||||||
|
Inner
|
||||||
|
Running
|
||||||
|
)
|
||||||
|
|
||||||
|
// UnmarshalJSON unserialize Status
|
||||||
|
func (s *TunnelStatus) UnmarshalJSON(data []byte) error {
|
||||||
|
var tp string
|
||||||
|
json.Unmarshal(data, &tp)
|
||||||
|
status, exist := StatusMapping[strings.ToLower(tp)]
|
||||||
|
if !exist {
|
||||||
|
return errors.New("invalid mode")
|
||||||
|
}
|
||||||
|
*s = status
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// UnmarshalYAML unserialize Status with yaml
|
||||||
|
func (s *TunnelStatus) UnmarshalYAML(unmarshal func(any) error) error {
|
||||||
|
var tp string
|
||||||
|
unmarshal(&tp)
|
||||||
|
status, exist := StatusMapping[strings.ToLower(tp)]
|
||||||
|
if !exist {
|
||||||
|
return errors.New("invalid status")
|
||||||
|
}
|
||||||
|
*s = status
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// MarshalJSON serialize Status
|
||||||
|
func (s TunnelStatus) MarshalJSON() ([]byte, error) {
|
||||||
|
return json.Marshal(s.String())
|
||||||
|
}
|
||||||
|
|
||||||
|
// MarshalYAML serialize TunnelMode with yaml
|
||||||
|
func (s TunnelStatus) MarshalYAML() (any, error) {
|
||||||
|
return s.String(), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s TunnelStatus) String() string {
|
||||||
|
switch s {
|
||||||
|
case Suspend:
|
||||||
|
return "suspend"
|
||||||
|
case Inner:
|
||||||
|
return "inner"
|
||||||
|
case Running:
|
||||||
|
return "running"
|
||||||
|
default:
|
||||||
|
return "Unknown"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
type AtomicStatus struct {
|
||||||
|
value atomic.Int32
|
||||||
|
}
|
||||||
|
|
||||||
|
func (a *AtomicStatus) Store(s TunnelStatus) {
|
||||||
|
a.value.Store(int32(s))
|
||||||
|
}
|
||||||
|
|
||||||
|
func (a *AtomicStatus) Load() TunnelStatus {
|
||||||
|
return TunnelStatus(a.value.Load())
|
||||||
|
}
|
||||||
|
|
||||||
|
func (a *AtomicStatus) String() string {
|
||||||
|
return a.Load().String()
|
||||||
|
}
|
||||||
|
|
||||||
|
func newAtomicStatus(s TunnelStatus) *AtomicStatus {
|
||||||
|
a := &AtomicStatus{}
|
||||||
|
a.Store(s)
|
||||||
|
return a
|
||||||
|
}
|
|
@ -12,7 +12,6 @@ import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/jpillora/backoff"
|
"github.com/jpillora/backoff"
|
||||||
"go.uber.org/atomic"
|
|
||||||
|
|
||||||
N "github.com/Dreamacro/clash/common/net"
|
N "github.com/Dreamacro/clash/common/net"
|
||||||
"github.com/Dreamacro/clash/component/nat"
|
"github.com/Dreamacro/clash/component/nat"
|
||||||
|
@ -27,7 +26,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
status = atomic.NewInt32(int32(C.TunnelSuspend))
|
status = newAtomicStatus(Suspend)
|
||||||
tcpQueue = make(chan C.ConnContext, 200)
|
tcpQueue = make(chan C.ConnContext, 200)
|
||||||
udpQueue = make(chan C.PacketAdapter, 200)
|
udpQueue = make(chan C.PacketAdapter, 200)
|
||||||
natTable = nat.New()
|
natTable = nat.New()
|
||||||
|
@ -52,18 +51,22 @@ var (
|
||||||
)
|
)
|
||||||
|
|
||||||
func OnSuspend() {
|
func OnSuspend() {
|
||||||
status.Store(int32(C.TunnelSuspend))
|
status.Store(Suspend)
|
||||||
for _, c := range statistic.DefaultManager.Snapshot().Connections {
|
for _, c := range statistic.DefaultManager.Snapshot().Connections {
|
||||||
_ = c.Close()
|
_ = c.Close()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func OnInnerLoading() {
|
func OnInnerLoading() {
|
||||||
status.Store(int32(C.TunnelInner))
|
status.Store(Inner)
|
||||||
}
|
}
|
||||||
|
|
||||||
func OnRunning() {
|
func OnRunning() {
|
||||||
status.Store(int32(C.TunnelRunning))
|
status.Store(Running)
|
||||||
|
}
|
||||||
|
|
||||||
|
func Status() TunnelStatus {
|
||||||
|
return status.Load()
|
||||||
}
|
}
|
||||||
|
|
||||||
func SetFakeIPRange(p netip.Prefix) {
|
func SetFakeIPRange(p netip.Prefix) {
|
||||||
|
@ -176,8 +179,8 @@ func SetFindProcessMode(mode P.FindProcessMode) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func isHandle(t C.Type) bool {
|
func isHandle(t C.Type) bool {
|
||||||
status := C.TunnelStatus(status.Load())
|
status := status.Load()
|
||||||
return status == C.TunnelRunning || (status == C.TunnelInner && t == C.INNER)
|
return status == Running || (status == Inner && t == C.INNER)
|
||||||
}
|
}
|
||||||
|
|
||||||
// processUDP starts a loop to handle udp packet
|
// processUDP starts a loop to handle udp packet
|
||||||
|
|
Loading…
Reference in New Issue
Block a user