mirror of
https://github.com/xjasonlyu/tun2socks.git
synced 2025-10-06 17:26:58 +08:00
Refactor: main.go
This commit is contained in:
@@ -2,20 +2,15 @@ package engine
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"net"
|
||||
"os"
|
||||
|
||||
"github.com/xjasonlyu/tun2socks/v2/component/dialer"
|
||||
"github.com/xjasonlyu/tun2socks/v2/core/device"
|
||||
"github.com/xjasonlyu/tun2socks/v2/core/stack"
|
||||
"github.com/xjasonlyu/tun2socks/v2/internal/version"
|
||||
"github.com/xjasonlyu/tun2socks/v2/log"
|
||||
"github.com/xjasonlyu/tun2socks/v2/proxy"
|
||||
"github.com/xjasonlyu/tun2socks/v2/stats"
|
||||
"github.com/xjasonlyu/tun2socks/v2/tunnel"
|
||||
|
||||
"gopkg.in/yaml.v3"
|
||||
)
|
||||
|
||||
var _engine = &engine{}
|
||||
@@ -45,8 +40,6 @@ type Key struct {
|
||||
Device string `yaml:"device"`
|
||||
LogLevel string `yaml:"loglevel"`
|
||||
Interface string `yaml:"interface"`
|
||||
Config string `yaml:"-"`
|
||||
Version bool `yaml:"-"`
|
||||
}
|
||||
|
||||
type engine struct {
|
||||
@@ -62,22 +55,15 @@ func (e *engine) start() error {
|
||||
return errors.New("empty key")
|
||||
}
|
||||
|
||||
if e.Version {
|
||||
fmt.Println(version.String())
|
||||
fmt.Println(version.BuildString())
|
||||
os.Exit(0)
|
||||
}
|
||||
|
||||
for _, f := range []func() error{
|
||||
e.setConfig,
|
||||
e.setLogLevel,
|
||||
e.setMark,
|
||||
e.setInterface,
|
||||
e.setStats,
|
||||
e.setUDPTimeout,
|
||||
e.setProxy,
|
||||
e.setDevice,
|
||||
e.setStack,
|
||||
e.applyLogLevel,
|
||||
e.applyMark,
|
||||
e.applyInterface,
|
||||
e.applyStats,
|
||||
e.applyUDPTimeout,
|
||||
e.applyProxy,
|
||||
e.applyDevice,
|
||||
e.applyStack,
|
||||
} {
|
||||
if err := f(); err != nil {
|
||||
return err
|
||||
@@ -97,19 +83,7 @@ func (e *engine) insert(k *Key) {
|
||||
e.Key = k
|
||||
}
|
||||
|
||||
func (e *engine) setConfig() error {
|
||||
if e.Config == "" {
|
||||
return nil
|
||||
}
|
||||
|
||||
data, err := os.ReadFile(e.Config)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return yaml.Unmarshal(data, e.Key)
|
||||
}
|
||||
|
||||
func (e *engine) setLogLevel() error {
|
||||
func (e *engine) applyLogLevel() error {
|
||||
level, err := log.ParseLevel(e.LogLevel)
|
||||
if err != nil {
|
||||
return err
|
||||
@@ -118,7 +92,7 @@ func (e *engine) setLogLevel() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (e *engine) setMark() error {
|
||||
func (e *engine) applyMark() error {
|
||||
if e.Mark != 0 {
|
||||
dialer.SetMark(e.Mark)
|
||||
log.Infof("[DIALER] set fwmark: %#x", e.Mark)
|
||||
@@ -126,7 +100,7 @@ func (e *engine) setMark() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (e *engine) setInterface() error {
|
||||
func (e *engine) applyInterface() error {
|
||||
if e.Interface != "" {
|
||||
if err := dialer.BindToInterface(e.Interface); err != nil {
|
||||
return err
|
||||
@@ -136,7 +110,7 @@ func (e *engine) setInterface() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (e *engine) setStats() error {
|
||||
func (e *engine) applyStats() error {
|
||||
if e.Stats != "" {
|
||||
addr, err := net.ResolveTCPAddr("tcp", e.Stats)
|
||||
if err != nil {
|
||||
@@ -153,14 +127,14 @@ func (e *engine) setStats() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (e *engine) setUDPTimeout() error {
|
||||
func (e *engine) applyUDPTimeout() error {
|
||||
if e.UDPTimeout > 0 {
|
||||
tunnel.SetUDPTimeout(e.UDPTimeout)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (e *engine) setProxy() (err error) {
|
||||
func (e *engine) applyProxy() (err error) {
|
||||
if e.Proxy == "" {
|
||||
return errors.New("empty proxy")
|
||||
}
|
||||
@@ -170,7 +144,7 @@ func (e *engine) setProxy() (err error) {
|
||||
return
|
||||
}
|
||||
|
||||
func (e *engine) setDevice() (err error) {
|
||||
func (e *engine) applyDevice() (err error) {
|
||||
if e.Device == "" {
|
||||
return errors.New("empty device")
|
||||
}
|
||||
@@ -179,7 +153,7 @@ func (e *engine) setDevice() (err error) {
|
||||
return
|
||||
}
|
||||
|
||||
func (e *engine) setStack() (err error) {
|
||||
func (e *engine) applyStack() (err error) {
|
||||
defer func() {
|
||||
if err == nil {
|
||||
log.Infof(
|
||||
|
Reference in New Issue
Block a user