sing-box/adapter/experimental.go

114 lines
2.3 KiB
Go
Raw Permalink Normal View History

2022-07-19 22:16:49 +08:00
package adapter
import (
2023-12-01 13:24:12 +08:00
"bytes"
2022-07-19 22:16:49 +08:00
"context"
2023-12-01 13:24:12 +08:00
"encoding/binary"
"time"
2022-07-19 22:16:49 +08:00
2022-09-15 15:22:08 +08:00
"github.com/sagernet/sing-box/common/urltest"
"github.com/sagernet/sing-dns"
2024-06-24 09:49:15 +08:00
"github.com/sagernet/sing/common/varbin"
2022-07-19 22:16:49 +08:00
)
2022-07-20 07:12:40 +08:00
type ClashServer interface {
LifecycleService
ConnectionTracker
2022-09-10 14:09:47 +08:00
Mode() string
ModeList() []string
2022-09-15 15:22:08 +08:00
HistoryStorage() *urltest.HistoryStorage
}
type V2RayServer interface {
LifecycleService
StatsService() ConnectionTracker
2022-07-20 07:12:40 +08:00
}
2023-11-28 12:00:28 +08:00
type CacheFile interface {
LifecycleService
2023-11-28 12:00:28 +08:00
StoreFakeIP() bool
2023-12-01 13:24:12 +08:00
FakeIPStorage
2023-11-28 12:00:28 +08:00
StoreRDRC() bool
dns.RDRCStore
LoadMode() string
StoreMode(mode string) error
2022-09-10 14:40:16 +08:00
LoadSelected(group string) string
StoreSelected(group string, selected string) error
2023-08-12 19:33:43 +08:00
LoadGroupExpand(group string) (isExpand bool, loaded bool)
StoreGroupExpand(group string, expand bool) error
2023-12-01 13:24:12 +08:00
LoadRuleSet(tag string) *SavedRuleSet
SaveRuleSet(tag string, set *SavedRuleSet) error
}
type SavedRuleSet struct {
Content []byte
LastUpdated time.Time
LastEtag string
}
func (s *SavedRuleSet) MarshalBinary() ([]byte, error) {
var buffer bytes.Buffer
err := binary.Write(&buffer, binary.BigEndian, uint8(1))
if err != nil {
return nil, err
}
2024-06-24 09:49:15 +08:00
err = varbin.Write(&buffer, binary.BigEndian, s.Content)
2023-12-01 13:24:12 +08:00
if err != nil {
return nil, err
}
err = binary.Write(&buffer, binary.BigEndian, s.LastUpdated.Unix())
if err != nil {
return nil, err
}
2024-06-24 09:49:15 +08:00
err = varbin.Write(&buffer, binary.BigEndian, s.LastEtag)
2023-12-01 13:24:12 +08:00
if err != nil {
return nil, err
}
return buffer.Bytes(), nil
}
func (s *SavedRuleSet) UnmarshalBinary(data []byte) error {
reader := bytes.NewReader(data)
var version uint8
err := binary.Read(reader, binary.BigEndian, &version)
if err != nil {
return err
}
2024-06-24 09:49:15 +08:00
err = varbin.Read(reader, binary.BigEndian, &s.Content)
2023-12-01 13:24:12 +08:00
if err != nil {
return err
}
var lastUpdated int64
err = binary.Read(reader, binary.BigEndian, &lastUpdated)
if err != nil {
return err
}
s.LastUpdated = time.Unix(lastUpdated, 0)
2024-06-24 09:49:15 +08:00
err = varbin.Read(reader, binary.BigEndian, &s.LastEtag)
2023-12-01 13:24:12 +08:00
if err != nil {
return err
}
return nil
2022-09-10 14:40:16 +08:00
}
2022-07-22 13:51:08 +08:00
type OutboundGroup interface {
2023-07-02 16:45:30 +08:00
Outbound
2022-07-22 13:51:08 +08:00
Now() string
All() []string
}
2022-07-28 16:36:31 +08:00
2023-04-11 16:43:45 +08:00
type URLTestGroup interface {
OutboundGroup
2023-12-02 17:47:57 +08:00
URLTest(ctx context.Context) (map[string]uint16, error)
2023-04-11 16:43:45 +08:00
}
2022-07-28 16:36:31 +08:00
func OutboundTag(detour Outbound) string {
if group, isGroup := detour.(OutboundGroup); isGroup {
return group.Now()
}
return detour.Tag()
}