6
6
"sync"
7
7
"time"
8
8
9
+ "github.com/metacubex/mihomo/common/utils"
9
10
"github.com/metacubex/mihomo/component/profile"
10
11
C "github.com/metacubex/mihomo/constant"
11
12
"github.com/metacubex/mihomo/log"
@@ -71,93 +72,19 @@ func (c *CacheFile) SelectedMap() map[string]string {
71
72
return mapping
72
73
}
73
74
74
- func (c * CacheFile ) PutFakeip (key , value []byte ) error {
75
- if c .DB == nil {
76
- return nil
77
- }
78
-
79
- err := c .DB .Batch (func (t * bbolt.Tx ) error {
80
- bucket , err := t .CreateBucketIfNotExists (bucketFakeip )
81
- if err != nil {
82
- return err
83
- }
84
- return bucket .Put (key , value )
85
- })
86
- if err != nil {
87
- log .Warnln ("[CacheFile] write cache to %s failed: %s" , c .DB .Path (), err .Error ())
88
- }
89
-
90
- return err
91
- }
92
-
93
- func (c * CacheFile ) DelFakeipPair (ip , host []byte ) error {
94
- if c .DB == nil {
95
- return nil
96
- }
97
-
98
- err := c .DB .Batch (func (t * bbolt.Tx ) error {
99
- bucket , err := t .CreateBucketIfNotExists (bucketFakeip )
100
- if err != nil {
101
- return err
102
- }
103
- err = bucket .Delete (ip )
104
- if len (host ) > 0 {
105
- if err := bucket .Delete (host ); err != nil {
106
- return err
107
- }
108
- }
109
- return err
110
- })
111
- if err != nil {
112
- log .Warnln ("[CacheFile] write cache to %s failed: %s" , c .DB .Path (), err .Error ())
113
- }
114
-
115
- return err
116
- }
117
-
118
- func (c * CacheFile ) GetFakeip (key []byte ) []byte {
119
- if c .DB == nil {
120
- return nil
121
- }
122
-
123
- tx , err := c .DB .Begin (false )
124
- if err != nil {
125
- return nil
126
- }
127
- defer tx .Rollback ()
128
-
129
- bucket := tx .Bucket (bucketFakeip )
130
- if bucket == nil {
131
- return nil
132
- }
133
-
134
- return bucket .Get (key )
135
- }
136
-
137
- func (c * CacheFile ) FlushFakeIP () error {
138
- err := c .DB .Batch (func (t * bbolt.Tx ) error {
139
- bucket := t .Bucket (bucketFakeip )
140
- if bucket == nil {
141
- return nil
142
- }
143
- return t .DeleteBucket (bucketFakeip )
144
- })
145
- return err
146
- }
147
-
148
- func (c * CacheFile ) SetETagWithHash (url string , hash []byte , etag string ) {
75
+ func (c * CacheFile ) SetETagWithHash (url string , hash utils.HashType , etag string ) {
149
76
if c .DB == nil {
150
77
return
151
78
}
152
79
153
- lenHash := len ( hash )
80
+ lenHash := hash . Len ( )
154
81
if lenHash > math .MaxUint8 {
155
82
return // maybe panic is better
156
83
}
157
84
158
85
data := make ([]byte , 1 , 1 + lenHash + len (etag ))
159
86
data [0 ] = uint8 (lenHash )
160
- data = append (data , hash ... )
87
+ data = append (data , hash .Bytes () . .. )
161
88
data = append (data , etag ... )
162
89
163
90
err := c .DB .Batch (func (t * bbolt.Tx ) error {
@@ -173,28 +100,27 @@ func (c *CacheFile) SetETagWithHash(url string, hash []byte, etag string) {
173
100
return
174
101
}
175
102
}
176
- func (c * CacheFile ) GetETagWithHash (key string ) (hash [] byte , etag string ) {
103
+ func (c * CacheFile ) GetETagWithHash (key string ) (hash utils. HashType , etag string ) {
177
104
if c .DB == nil {
178
105
return
179
106
}
180
- var value []byte
181
107
c .DB .View (func (t * bbolt.Tx ) error {
182
108
if bucket := t .Bucket (bucketETag ); bucket != nil {
183
109
if v := bucket .Get ([]byte (key )); v != nil {
184
- value = v
110
+ if len (v ) == 0 {
111
+ return nil
112
+ }
113
+ lenHash := int (v [0 ])
114
+ if len (v ) < 1 + lenHash {
115
+ return nil
116
+ }
117
+ hash = utils .MakeHashFromBytes (v [1 : 1 + lenHash ])
118
+ etag = string (v [1 + lenHash :])
185
119
}
186
120
}
187
121
return nil
188
122
})
189
- if len (value ) == 0 {
190
- return
191
- }
192
- lenHash := int (value [0 ])
193
- if len (value ) < 1 + lenHash {
194
- return
195
- }
196
- hash = value [1 : 1 + lenHash ]
197
- etag = string (value [1 + lenHash :])
123
+
198
124
return
199
125
}
200
126
0 commit comments