mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-01-11 02:19:41 +00:00
92 lines
1.8 KiB
Go
92 lines
1.8 KiB
Go
package libbox
|
|
|
|
import (
|
|
"os"
|
|
"os/user"
|
|
"runtime/debug"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/sagernet/sing-box/common/humanize"
|
|
C "github.com/sagernet/sing-box/constant"
|
|
"github.com/sagernet/sing-box/experimental/locale"
|
|
"github.com/sagernet/sing-box/log"
|
|
)
|
|
|
|
var (
|
|
sBasePath string
|
|
sWorkingPath string
|
|
sTempPath string
|
|
sUserID int
|
|
sGroupID int
|
|
sTVOS bool
|
|
sFixAndroidStack bool
|
|
)
|
|
|
|
func init() {
|
|
debug.SetPanicOnFault(true)
|
|
}
|
|
|
|
type SetupOptions struct {
|
|
BasePath string
|
|
WorkingPath string
|
|
TempPath string
|
|
Username string
|
|
IsTVOS bool
|
|
FixAndroidStack bool
|
|
}
|
|
|
|
func Setup(options *SetupOptions) error {
|
|
sBasePath = options.BasePath
|
|
sWorkingPath = options.WorkingPath
|
|
sTempPath = options.TempPath
|
|
if options.Username != "" {
|
|
sUser, err := user.Lookup(options.Username)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
sUserID, _ = strconv.Atoi(sUser.Uid)
|
|
sGroupID, _ = strconv.Atoi(sUser.Gid)
|
|
} else {
|
|
sUserID = os.Getuid()
|
|
sGroupID = os.Getgid()
|
|
}
|
|
sTVOS = options.IsTVOS
|
|
|
|
// TODO: remove after fixed
|
|
// https://github.com/golang/go/issues/68760
|
|
sFixAndroidStack = options.FixAndroidStack
|
|
|
|
os.MkdirAll(sWorkingPath, 0o777)
|
|
os.MkdirAll(sTempPath, 0o777)
|
|
if options.Username != "" {
|
|
os.Chown(sWorkingPath, sUserID, sGroupID)
|
|
os.Chown(sTempPath, sUserID, sGroupID)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func SetLocale(localeId string) {
|
|
locale.Set(localeId)
|
|
}
|
|
|
|
func Version() string {
|
|
return C.Version
|
|
}
|
|
|
|
func FormatBytes(length int64) string {
|
|
return humanize.Bytes(uint64(length))
|
|
}
|
|
|
|
func FormatMemoryBytes(length int64) string {
|
|
return humanize.MemoryBytes(uint64(length))
|
|
}
|
|
|
|
func FormatDuration(duration int64) string {
|
|
return log.FormatDuration(time.Duration(duration) * time.Millisecond)
|
|
}
|
|
|
|
func ProxyDisplayType(proxyType string) string {
|
|
return C.ProxyDisplayName(proxyType)
|
|
}
|