3
3
// TODO: reduce API surface and add documentation
4
4
#![ allow( missing_docs) ]
5
5
6
- use std:: { collections:: BTreeSet , fmt:: Debug , ops:: DerefMut , sync:: Arc } ;
6
+ use std:: {
7
+ collections:: BTreeSet ,
8
+ fmt:: Debug ,
9
+ ops:: { Deref , DerefMut } ,
10
+ sync:: Arc ,
11
+ } ;
7
12
8
13
use anyhow:: { bail, Result } ;
9
14
use futures_lite:: future:: Boxed as BoxedFuture ;
@@ -17,7 +22,7 @@ use crate::{
17
22
provider:: EventSender ,
18
23
store:: GcConfig ,
19
24
util:: {
20
- local_pool:: { self , LocalPoolHandle } ,
25
+ local_pool:: { self , LocalPool , LocalPoolHandle } ,
21
26
SetTagOption ,
22
27
} ,
23
28
BlobFormat , Hash ,
@@ -41,9 +46,26 @@ impl Default for GcState {
41
46
}
42
47
}
43
48
49
+ #[ derive( Debug ) ]
50
+ enum Rt {
51
+ Handle ( LocalPoolHandle ) ,
52
+ Owned ( LocalPool ) ,
53
+ }
54
+
55
+ impl Deref for Rt {
56
+ type Target = LocalPoolHandle ;
57
+
58
+ fn deref ( & self ) -> & Self :: Target {
59
+ match self {
60
+ Self :: Handle ( ref handle) => handle,
61
+ Self :: Owned ( ref pool) => pool. handle ( ) ,
62
+ }
63
+ }
64
+ }
65
+
44
66
#[ derive( Debug ) ]
45
67
pub ( crate ) struct BlobsInner < S > {
46
- pub ( crate ) rt : LocalPoolHandle ,
68
+ rt : Rt ,
47
69
pub ( crate ) store : S ,
48
70
events : EventSender ,
49
71
pub ( crate ) downloader : Downloader ,
@@ -53,6 +75,12 @@ pub(crate) struct BlobsInner<S> {
53
75
pub ( crate ) batches : tokio:: sync:: Mutex < BlobBatches > ,
54
76
}
55
77
78
+ impl < S > BlobsInner < S > {
79
+ pub ( crate ) fn rt ( & self ) -> & LocalPoolHandle {
80
+ & self . rt
81
+ }
82
+ }
83
+
56
84
#[ derive( Debug , Clone ) ]
57
85
pub struct Blobs < S > {
58
86
pub ( crate ) inner : Arc < BlobsInner < S > > ,
@@ -119,6 +147,7 @@ impl BlobBatches {
119
147
pub struct Builder < S > {
120
148
store : S ,
121
149
events : Option < EventSender > ,
150
+ rt : Option < LocalPoolHandle > ,
122
151
}
123
152
124
153
impl < S : crate :: store:: Store > Builder < S > {
@@ -128,13 +157,23 @@ impl<S: crate::store::Store> Builder<S> {
128
157
self
129
158
}
130
159
160
+ /// Set a custom `LocalPoolHandle` to use.
161
+ pub fn local_pool ( mut self , rt : LocalPoolHandle ) -> Self {
162
+ self . rt = Some ( rt) ;
163
+ self
164
+ }
165
+
131
166
/// Build the Blobs protocol handler.
132
- /// You need to provide a local pool handle and an endpoint.
133
- pub fn build ( self , rt : & LocalPoolHandle , endpoint : & Endpoint ) -> Blobs < S > {
167
+ /// You need to provide a the endpoint.
168
+ pub fn build ( self , endpoint : & Endpoint ) -> Blobs < S > {
169
+ let rt = self
170
+ . rt
171
+ . map ( Rt :: Handle )
172
+ . unwrap_or_else ( || Rt :: Owned ( LocalPool :: default ( ) ) ) ;
134
173
let downloader = Downloader :: new ( self . store . clone ( ) , endpoint. clone ( ) , rt. clone ( ) ) ;
135
174
Blobs :: new (
136
175
self . store ,
137
- rt. clone ( ) ,
176
+ rt,
138
177
self . events . unwrap_or_default ( ) ,
139
178
downloader,
140
179
endpoint. clone ( ) ,
@@ -148,6 +187,7 @@ impl<S> Blobs<S> {
148
187
Builder {
149
188
store,
150
189
events : None ,
190
+ rt : None ,
151
191
}
152
192
}
153
193
}
@@ -169,9 +209,9 @@ impl Blobs<crate::store::fs::Store> {
169
209
}
170
210
171
211
impl < S : crate :: store:: Store > Blobs < S > {
172
- pub fn new (
212
+ fn new (
173
213
store : S ,
174
- rt : LocalPoolHandle ,
214
+ rt : Rt ,
175
215
events : EventSender ,
176
216
downloader : Downloader ,
177
217
endpoint : Endpoint ,
@@ -201,7 +241,7 @@ impl<S: crate::store::Store> Blobs<S> {
201
241
}
202
242
203
243
pub fn rt ( & self ) -> & LocalPoolHandle {
204
- & self . inner . rt
244
+ self . inner . rt ( )
205
245
}
206
246
207
247
pub fn downloader ( & self ) -> & Downloader {
0 commit comments