Skip to content

Commit 330a767

Browse files
BoYanZhxhofe
andauthored
feat: build index & search with bleve (close #1740 pr #2386)
* feat: build index & search with bleve (#1740) * delete unused struct Co-authored-by: Noah Hsu <i@nn.ci>
1 parent 2b902de commit 330a767

File tree

11 files changed

+346
-0
lines changed

11 files changed

+346
-0
lines changed

cmd/common.go

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ func Init() {
1515
bootstrap.InitConfig()
1616
bootstrap.Log()
1717
bootstrap.InitDB()
18+
bootstrap.InitIndex()
1819
data.InitData()
1920
}
2021

go.mod

+23
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ require (
66
github.com/SheltonZhu/115driver v1.0.12
77
github.com/Xhofe/go-cache v0.0.0-20220723083548-714439c8af9a
88
github.com/aws/aws-sdk-go v1.44.142
9+
github.com/blevesearch/bleve/v2 v2.3.5
910
github.com/caarlos0/env/v6 v6.10.1
1011
github.com/disintegration/imaging v1.6.2
1112
github.com/gin-contrib/cors v1.4.0
@@ -35,9 +36,26 @@ require (
3536
)
3637

3738
require (
39+
github.com/RoaringBitmap/roaring v0.9.4 // indirect
3840
github.com/aead/ecdh v0.2.0 // indirect
3941
github.com/aliyun/aliyun-oss-go-sdk v2.2.5+incompatible // indirect
4042
github.com/andreburgaud/crypt2go v1.1.0 // indirect
43+
github.com/bits-and-blooms/bitset v1.2.0 // indirect
44+
github.com/blevesearch/bleve_index_api v1.0.4 // indirect
45+
github.com/blevesearch/geo v0.1.15 // indirect
46+
github.com/blevesearch/go-porterstemmer v1.0.3 // indirect
47+
github.com/blevesearch/gtreap v0.1.1 // indirect
48+
github.com/blevesearch/mmap-go v1.0.4 // indirect
49+
github.com/blevesearch/scorch_segment_api/v2 v2.1.3 // indirect
50+
github.com/blevesearch/segment v0.9.0 // indirect
51+
github.com/blevesearch/snowballstem v0.9.0 // indirect
52+
github.com/blevesearch/upsidedown_store_api v1.0.1 // indirect
53+
github.com/blevesearch/vellum v1.0.9 // indirect
54+
github.com/blevesearch/zapx/v11 v11.3.6 // indirect
55+
github.com/blevesearch/zapx/v12 v12.3.6 // indirect
56+
github.com/blevesearch/zapx/v13 v13.3.6 // indirect
57+
github.com/blevesearch/zapx/v14 v14.3.6 // indirect
58+
github.com/blevesearch/zapx/v15 v15.3.6 // indirect
4159
github.com/bluele/gcache v0.0.2 // indirect
4260
github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc // indirect
4361
github.com/gaoyb7/115drive-webdav v0.1.8 // indirect
@@ -48,6 +66,9 @@ require (
4866
github.com/go-playground/validator/v10 v10.11.0 // indirect
4967
github.com/go-sql-driver/mysql v1.6.0 // indirect
5068
github.com/goccy/go-json v0.9.7 // indirect
69+
github.com/golang/geo v0.0.0-20210211234256-740aa86cb551 // indirect
70+
github.com/golang/protobuf v1.5.0 // indirect
71+
github.com/golang/snappy v0.0.1 // indirect
5172
github.com/hashicorp/errwrap v1.1.0 // indirect
5273
github.com/hashicorp/go-multierror v1.1.1 // indirect
5374
github.com/inconshreveable/mousetrap v1.0.1 // indirect
@@ -68,12 +89,14 @@ require (
6889
github.com/mattn/go-sqlite3 v1.14.15 // indirect
6990
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
7091
github.com/modern-go/reflect2 v1.0.2 // indirect
92+
github.com/mschoch/smat v0.2.0 // indirect
7193
github.com/orzogc/fake115uploader v0.3.3-0.20221009101310-08b764073b77 // indirect
7294
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
7395
github.com/pierrec/lz4/v4 v4.1.17 // indirect
7496
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e // indirect
7597
github.com/spf13/pflag v1.0.5 // indirect
7698
github.com/ugorji/go/codec v1.2.7 // indirect
99+
go.etcd.io/bbolt v1.3.5 // indirect
77100
golang.org/x/image v0.0.0-20220722155232-062f8c9fd539 // indirect
78101
golang.org/x/sys v0.2.0 // indirect
79102
golang.org/x/text v0.4.0 // indirect

go.sum

+49
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ
22
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
33
github.com/Masterminds/semver/v3 v3.1.1 h1:hLg3sBzpNErnxhQtUy/mmLR2I9foDujNK030IGemrRc=
44
github.com/Masterminds/semver/v3 v3.1.1/go.mod h1:VPu/7SZ7ePZ3QOrcuXROw5FAcLl4a0cBrbBpGY/8hQs=
5+
github.com/RoaringBitmap/roaring v0.9.4 h1:ckvZSX5gwCRaJYBNe7syNawCU5oruY9gQmjXlp4riwo=
6+
github.com/RoaringBitmap/roaring v0.9.4/go.mod h1:icnadbWcNyfEHlYdr+tDlOTih1Bf/h+rzPpv4sbomAA=
57
github.com/SheltonZhu/115driver v1.0.12 h1:+GlIM5h8tzuec6MzK0wFwb7bY77nav7JhY8lTljzls4=
68
github.com/SheltonZhu/115driver v1.0.12/go.mod h1:00ixivHH5HqDj4S7kAWbkuUrjtsJTxc7cGv5RMw3RVs=
79
github.com/Xhofe/go-cache v0.0.0-20220723083548-714439c8af9a h1:RenIAa2q4H8UcS/cqmwdT1WCWIAH5aumP8m8RpbqVsE=
@@ -14,6 +16,41 @@ github.com/andreburgaud/crypt2go v1.1.0 h1:eitZxTPY1krUsxinsng3Qvt/Ud7q/aQmmYRh8
1416
github.com/andreburgaud/crypt2go v1.1.0/go.mod h1:4qhZPzarj1dCIRmCkpdgCklwp+hBq9yEt0zPe9Ayuhc=
1517
github.com/aws/aws-sdk-go v1.44.142 h1:KZ1/FDwCSft1DuNllFaBtWpcG0CW2NgQjvOrE1TdlXE=
1618
github.com/aws/aws-sdk-go v1.44.142/go.mod h1:aVsgQcEevwlmQ7qHE9I3h+dtQgpqhFB+i8Phjh7fkwI=
19+
github.com/bits-and-blooms/bitset v1.2.0 h1:Kn4yilvwNtMACtf1eYDlG8H77R07mZSPbMjLyS07ChA=
20+
github.com/bits-and-blooms/bitset v1.2.0/go.mod h1:gIdJ4wp64HaoK2YrL1Q5/N7Y16edYb8uY+O0FJTyyDA=
21+
github.com/blevesearch/bleve/v2 v2.3.5 h1:1wuR7eB8Fk9UaCaBUfnQt5V7zIpi4VDok9ExN7Rl+/8=
22+
github.com/blevesearch/bleve/v2 v2.3.5/go.mod h1:FneKGHMRrCLrp4X9+iy3wlBqgM2ALucg7bp8jUuAi/s=
23+
github.com/blevesearch/bleve_index_api v1.0.3/go.mod h1:fiwKS0xLEm+gBRgv5mumf0dhgFr2mDgZah1pqv1c1M4=
24+
github.com/blevesearch/bleve_index_api v1.0.4 h1:mtlzsyJjMIlDngqqB1mq8kPryUMIuEVVbRbJHOWEexU=
25+
github.com/blevesearch/bleve_index_api v1.0.4/go.mod h1:YXMDwaXFFXwncRS8UobWs7nvo0DmusriM1nztTlj1ms=
26+
github.com/blevesearch/geo v0.1.15 h1:0NybEduqE5fduFRYiUKF0uqybAIFKXYjkBdXKYn7oA4=
27+
github.com/blevesearch/geo v0.1.15/go.mod h1:cRIvqCdk3cgMhGeHNNe6yPzb+w56otxbfo1FBJfR2Pc=
28+
github.com/blevesearch/go-porterstemmer v1.0.3 h1:GtmsqID0aZdCSNiY8SkuPJ12pD4jI+DdXTAn4YRcHCo=
29+
github.com/blevesearch/go-porterstemmer v1.0.3/go.mod h1:angGc5Ht+k2xhJdZi511LtmxuEf0OVpvUUNrwmM1P7M=
30+
github.com/blevesearch/gtreap v0.1.1 h1:2JWigFrzDMR+42WGIN/V2p0cUvn4UP3C4Q5nmaZGW8Y=
31+
github.com/blevesearch/gtreap v0.1.1/go.mod h1:QaQyDRAT51sotthUWAH4Sj08awFSSWzgYICSZ3w0tYk=
32+
github.com/blevesearch/mmap-go v1.0.4 h1:OVhDhT5B/M1HNPpYPBKIEJaD0F3Si+CrEKULGCDPWmc=
33+
github.com/blevesearch/mmap-go v1.0.4/go.mod h1:EWmEAOmdAS9z/pi/+Toxu99DnsbhG1TIxUoRmJw/pSs=
34+
github.com/blevesearch/scorch_segment_api/v2 v2.1.3 h1:2UzpR2dR5DvSZk8tVJkcQ7D5xhoK/UBelYw8ttBHrRQ=
35+
github.com/blevesearch/scorch_segment_api/v2 v2.1.3/go.mod h1:eZrfp1y+lUh+DzFjUcTBUSnKGuunyFIpBIvqYVzJfvc=
36+
github.com/blevesearch/segment v0.9.0 h1:5lG7yBCx98or7gK2cHMKPukPZ/31Kag7nONpoBt22Ac=
37+
github.com/blevesearch/segment v0.9.0/go.mod h1:9PfHYUdQCgHktBgvtUOF4x+pc4/l8rdH0u5spnW85UQ=
38+
github.com/blevesearch/snowballstem v0.9.0 h1:lMQ189YspGP6sXvZQ4WZ+MLawfV8wOmPoD/iWeNXm8s=
39+
github.com/blevesearch/snowballstem v0.9.0/go.mod h1:PivSj3JMc8WuaFkTSRDW2SlrulNWPl4ABg1tC/hlgLs=
40+
github.com/blevesearch/upsidedown_store_api v1.0.1 h1:1SYRwyoFLwG3sj0ed89RLtM15amfX2pXlYbFOnF8zNU=
41+
github.com/blevesearch/upsidedown_store_api v1.0.1/go.mod h1:MQDVGpHZrpe3Uy26zJBf/a8h0FZY6xJbthIMm8myH2Q=
42+
github.com/blevesearch/vellum v1.0.9 h1:PL+NWVk3dDGPCV0hoDu9XLLJgqU4E5s/dOeEJByQ2uQ=
43+
github.com/blevesearch/vellum v1.0.9/go.mod h1:ul1oT0FhSMDIExNjIxHqJoGpVrBpKCdgDQNxfqgJt7k=
44+
github.com/blevesearch/zapx/v11 v11.3.6 h1:50jET4HUJ6eCqGxdhUt+mjybMvEX2MWyqLGtCx3yUgc=
45+
github.com/blevesearch/zapx/v11 v11.3.6/go.mod h1:B0CzJRj/pS7hJIroflRtFsa9mRHpMSucSgre0FVINns=
46+
github.com/blevesearch/zapx/v12 v12.3.6 h1:G304NHBLgQeZ+IHK/XRCM0nhHqAts8MEvHI6LhoDNM4=
47+
github.com/blevesearch/zapx/v12 v12.3.6/go.mod h1:iYi7tIKpauwU5os5wTxJITixr5Km21Hl365otMwdaP0=
48+
github.com/blevesearch/zapx/v13 v13.3.6 h1:vavltQHNdjQezhLZs5nIakf+w/uOa1oqZxB58Jy/3Ig=
49+
github.com/blevesearch/zapx/v13 v13.3.6/go.mod h1:X+FsTwCU8qOHtK0d/ArvbOH7qiIgViSQ1GQvcR6LSkI=
50+
github.com/blevesearch/zapx/v14 v14.3.6 h1:b9lub7TvcwUyJxK/cQtnN79abngKxsI7zMZnICU0WhE=
51+
github.com/blevesearch/zapx/v14 v14.3.6/go.mod h1:9X8W3XoikagU0rwcTqwZho7p9cC7m7zhPZO94S4wUvM=
52+
github.com/blevesearch/zapx/v15 v15.3.6 h1:VSswg/ysDxHgitcNkpUNtaTYS4j3uItpXWLAASphl6k=
53+
github.com/blevesearch/zapx/v15 v15.3.6/go.mod h1:5DbhhDTGtuQSns1tS2aJxJLPc91boXCvjOMeCLD1saM=
1754
github.com/bluele/gcache v0.0.2 h1:WcbfdXICg7G/DGBh1PFfcirkWOQV+v077yF1pSy3DGw=
1855
github.com/bluele/gcache v0.0.2/go.mod h1:m15KV+ECjptwSPxKhOhQoAFQVtUFjTVkc3H8o0t/fp0=
1956
github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc h1:biVzkmvwrH8WK8raXaxBx6fRVTlJILwEwQGL1I/ByEI=
@@ -64,10 +101,16 @@ github.com/gofrs/uuid v4.0.0+incompatible h1:1SD/1F5pU8p29ybwgQSwpQk+mwdRrXCYuPh
64101
github.com/gofrs/uuid v4.0.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM=
65102
github.com/golang-jwt/jwt/v4 v4.4.2 h1:rcc4lwaZgFMCZ5jxF9ABolDcIHdBytAFgqFPbSJQAYs=
66103
github.com/golang-jwt/jwt/v4 v4.4.2/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0=
104+
github.com/golang/geo v0.0.0-20210211234256-740aa86cb551 h1:gtexQ/VGyN+VVFRXSFiguSNcXmS6rkKT+X7FdIrTtfo=
105+
github.com/golang/geo v0.0.0-20210211234256-740aa86cb551/go.mod h1:QZ0nwyI2jOfgRAoBvP+ab5aRr7c9x7lhGEJrKvBwjWI=
106+
github.com/golang/protobuf v1.5.0 h1:LUVKkCeviFUMKqHa4tXIIij/lbhnMbP7Fn5wKdKkRh4=
67107
github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
108+
github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4=
109+
github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
68110
github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU=
69111
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
70112
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
113+
github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
71114
github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=
72115
github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
73116
github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
@@ -140,6 +183,7 @@ github.com/jmespath/go-jmespath v0.4.0 h1:BEgLn5cpjn8UN1mAw4NjwDrS35OdebyEtFe+9Y
140183
github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHWvzYPziyZiYoo=
141184
github.com/jmespath/go-jmespath/internal/testify v1.5.1 h1:shLQSRRSCCPj3f2gpwzGwWFoC7ycTf1rcQZHOlsJ6N8=
142185
github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U=
186+
github.com/json-iterator/go v0.0.0-20171115153421-f7279a603ede/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU=
143187
github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
144188
github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
145189
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
@@ -178,6 +222,8 @@ github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w
178222
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
179223
github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=
180224
github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
225+
github.com/mschoch/smat v0.2.0 h1:8imxQsjDm8yFEAVBe7azKmKSgzSkZXDuKkSq9374khM=
226+
github.com/mschoch/smat v0.2.0/go.mod h1:kc9mz7DoBKqDyiRL7VZN8KvXQMWeTaVnttLRXOlotKw=
181227
github.com/natefinch/lumberjack v2.0.0+incompatible h1:4QJd3OLAMgj7ph+yZTuX13Ld4UpgHp07nNdFX7mqFfM=
182228
github.com/natefinch/lumberjack v2.0.0+incompatible/go.mod h1:Wi9p2TTF5DG5oU+6YfsmYQpsTIOm0B1VNzQg9Mw6nPk=
183229
github.com/orzogc/fake115uploader v0.3.3-0.20221009101310-08b764073b77 h1:dg/EaaJLPIg4xn2kaZil7Ax3wfoxcFXaBwyOTlcz5AI=
@@ -245,6 +291,8 @@ github.com/winfsp/cgofuse v1.5.0 h1:MsBP7Mi/LiJf/7/F3O/7HjjR009ds6KCdqXzKpZSWxI=
245291
github.com/winfsp/cgofuse v1.5.0/go.mod h1:h3awhoUOcn2VYVKCwDaYxSLlZwnyK+A8KaDoLUp2lbU=
246292
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
247293
github.com/zenazn/goji v0.9.0/go.mod h1:7S9M489iMyHBNxwZnk9/EHS098H4/F6TATF2mIxtB1Q=
294+
go.etcd.io/bbolt v1.3.5 h1:XAzx9gjCb0Rxj7EoqcClPD1d5ZBxZJk0jbuoPHenBt0=
295+
go.etcd.io/bbolt v1.3.5/go.mod h1:G5EMThwa9y8QZGBClrRx5EY+Yw9kAhnjy3bSjsnlVTQ=
248296
go.uber.org/atomic v1.3.2/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
249297
go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE=
250298
go.uber.org/atomic v1.5.0/go.mod h1:sABNBOSYdrvTF6hTgEIbc7YasKWGhgEQZyfxyTvoXHQ=
@@ -303,6 +351,7 @@ golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7w
303351
golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
304352
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
305353
golang.org/x/sys v0.0.0-20200116001909-b77594299b42/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
354+
golang.org/x/sys v0.0.0-20200202164722-d101bd2416d5/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
306355
golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
307356
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
308357
golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=

internal/bootstrap/index.go

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package bootstrap
2+
3+
import (
4+
"github.com/alist-org/alist/v3/internal/conf"
5+
"github.com/alist-org/alist/v3/internal/index"
6+
)
7+
8+
func InitIndex() {
9+
index.Init(&conf.Conf.IndexDir)
10+
}

internal/conf/config.go

+3
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,13 @@ type Config struct {
4545
Database Database `json:"database"`
4646
Scheme Scheme `json:"scheme"`
4747
TempDir string `json:"temp_dir" env:"TEMP_DIR"`
48+
IndexDir string `json:"index_dir" env:"INDEX_DIR"`
4849
Log LogConfig `json:"log"`
4950
}
5051

5152
func DefaultConfig() *Config {
5253
tempDir := filepath.Join(flags.DataDir, "temp")
54+
indexDir := filepath.Join(flags.DataDir, "index")
5355
logPath := filepath.Join(flags.DataDir, "log/log.log")
5456
dbPath := filepath.Join(flags.DataDir, "data.db")
5557
return &Config{
@@ -64,6 +66,7 @@ func DefaultConfig() *Config {
6466
TablePrefix: "x_",
6567
DBFile: dbPath,
6668
},
69+
IndexDir: indexDir,
6770
Log: LogConfig{
6871
Enable: true,
6972
Name: logPath,

internal/index/build.go

+106
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
package index
2+
3+
import (
4+
"context"
5+
"path"
6+
"path/filepath"
7+
"time"
8+
9+
"github.com/alist-org/alist/v3/internal/db"
10+
"github.com/alist-org/alist/v3/internal/fs"
11+
"github.com/alist-org/alist/v3/internal/model"
12+
"github.com/blevesearch/bleve/v2"
13+
"github.com/google/uuid"
14+
)
15+
16+
// walkFS traverses filesystem fs starting at name up to depth levels.
17+
//
18+
// walkFS will stop when current depth > `depth`. For each visited node,
19+
// walkFS calls walkFn. If a visited file system node is a directory and
20+
// walkFn returns path.SkipDir, walkFS will skip traversal of this node.
21+
func walkFS(ctx context.Context, depth int, name string, info model.Obj, walkFn func(reqPath string, info model.Obj, err error) error) error {
22+
// This implementation is based on Walk's code in the standard path/path package.
23+
walkFnErr := walkFn(name, info, nil)
24+
if walkFnErr != nil {
25+
if info.IsDir() && walkFnErr == filepath.SkipDir {
26+
return nil
27+
}
28+
return walkFnErr
29+
}
30+
if !info.IsDir() || depth == 0 {
31+
return nil
32+
}
33+
meta, _ := db.GetNearestMeta(name)
34+
// Read directory names.
35+
objs, err := fs.List(context.WithValue(ctx, "meta", meta), name)
36+
if err != nil {
37+
return walkFnErr
38+
}
39+
for _, fileInfo := range objs {
40+
filename := path.Join(name, fileInfo.GetName())
41+
if err := walkFS(ctx, depth-1, filename, fileInfo, walkFn); err != nil {
42+
if err == filepath.SkipDir {
43+
break
44+
}
45+
return err
46+
}
47+
}
48+
return nil
49+
}
50+
51+
type Data struct {
52+
Path string
53+
}
54+
55+
func BuildIndex(ctx context.Context, indexPaths, ignorePaths []string, maxDepth int) {
56+
WriteProgress(&Progress{
57+
FileCount: 0,
58+
IsDone: false,
59+
LastDoneTime: nil,
60+
})
61+
var batchs []*bleve.Batch
62+
var fileCount uint64 = 0
63+
for _, indexPath := range indexPaths {
64+
batch := func() *bleve.Batch {
65+
batch := index.NewBatch()
66+
// TODO: cache unchanged part
67+
// TODO: store current progress
68+
walkFn := func(indexPath string, info model.Obj, err error) error {
69+
for _, avoidPath := range ignorePaths {
70+
if indexPath == avoidPath {
71+
return filepath.SkipDir
72+
}
73+
}
74+
if !info.IsDir() {
75+
batch.Index(uuid.NewString(), Data{Path: indexPath})
76+
fileCount += 1
77+
if fileCount%100 == 0 {
78+
WriteProgress(&Progress{
79+
FileCount: fileCount,
80+
IsDone: false,
81+
LastDoneTime: nil,
82+
})
83+
}
84+
}
85+
return nil
86+
}
87+
fi, err := fs.Get(ctx, indexPath)
88+
if err != nil {
89+
return batch
90+
}
91+
// TODO: run walkFS concurrently
92+
walkFS(ctx, maxDepth, indexPath, fi, walkFn)
93+
return batch
94+
}()
95+
batchs = append(batchs, batch)
96+
}
97+
for _, batch := range batchs {
98+
index.Batch(batch)
99+
}
100+
now := time.Now()
101+
WriteProgress(&Progress{
102+
FileCount: fileCount,
103+
IsDone: true,
104+
LastDoneTime: &now,
105+
})
106+
}

internal/index/index.go

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
package index
2+
3+
import (
4+
"github.com/blevesearch/bleve/v2"
5+
log "github.com/sirupsen/logrus"
6+
)
7+
8+
var index bleve.Index
9+
10+
func Init(indexPath *string) {
11+
fileIndex, err := bleve.Open(*indexPath)
12+
if err == bleve.ErrorIndexPathDoesNotExist {
13+
log.Infof("Creating new index...")
14+
indexMapping := bleve.NewIndexMapping()
15+
fileIndex, err = bleve.New(*indexPath, indexMapping)
16+
if err != nil {
17+
log.Fatal(err)
18+
}
19+
}
20+
index = fileIndex
21+
progress := ReadProgress()
22+
if !progress.IsDone {
23+
log.Warnf("Last index build does not succeed!")
24+
WriteProgress(&Progress{
25+
FileCount: progress.FileCount,
26+
IsDone: false,
27+
LastDoneTime: nil,
28+
})
29+
}
30+
}

internal/index/search.go

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package index
2+
3+
import (
4+
"github.com/blevesearch/bleve/v2"
5+
log "github.com/sirupsen/logrus"
6+
)
7+
8+
func Search(queryString string, size int) (*bleve.SearchResult, error) {
9+
query := bleve.NewMatchQuery(queryString)
10+
search := bleve.NewSearchRequest(query)
11+
search.Size = size
12+
search.Fields = []string{"Path"}
13+
searchResults, err := index.Search(search)
14+
if err != nil {
15+
log.Errorf("search error: %+v", err)
16+
return nil, err
17+
}
18+
return searchResults, nil
19+
}

0 commit comments

Comments
 (0)