10
10
11
11
use bitvec:: BitMatrix ;
12
12
use fx:: FxHashMap ;
13
+ use sync:: Lock ;
13
14
use rustc_serialize:: { Encodable , Encoder , Decodable , Decoder } ;
14
15
use stable_hasher:: { HashStable , StableHasher , StableHasherResult } ;
15
- use std:: cell:: RefCell ;
16
16
use std:: fmt:: Debug ;
17
17
use std:: hash:: Hash ;
18
18
use std:: mem;
19
19
20
20
21
21
#[ derive( Clone , Debug ) ]
22
- pub struct TransitiveRelation < T : Clone + Debug + Eq + Hash + Clone > {
22
+ pub struct TransitiveRelation < T : Clone + Debug + Eq + Hash > {
23
23
// List of elements. This is used to map from a T to a usize.
24
24
elements : Vec < T > ,
25
25
@@ -32,14 +32,14 @@ pub struct TransitiveRelation<T: Clone + Debug + Eq + Hash + Clone> {
32
32
33
33
// This is a cached transitive closure derived from the edges.
34
34
// Currently, we build it lazilly and just throw out any existing
35
- // copy whenever a new edge is added. (The RefCell is to permit
35
+ // copy whenever a new edge is added. (The Lock is to permit
36
36
// the lazy computation.) This is kind of silly, except for the
37
37
// fact its size is tied to `self.elements.len()`, so I wanted to
38
38
// wait before building it up to avoid reallocating as new edges
39
39
// are added with new elements. Perhaps better would be to ask the
40
40
// user for a batch of edges to minimize this effect, but I
41
41
// already wrote the code this way. :P -nmatsakis
42
- closure : RefCell < Option < BitMatrix > > ,
42
+ closure : Lock < Option < BitMatrix > > ,
43
43
}
44
44
45
45
#[ derive( Copy , Clone , PartialEq , Eq , PartialOrd , Ord , Hash , RustcEncodable , RustcDecodable , Debug ) ]
@@ -51,13 +51,13 @@ struct Edge {
51
51
target : Index ,
52
52
}
53
53
54
- impl < T : Clone + Debug + Eq + Hash + Clone > TransitiveRelation < T > {
54
+ impl < T : Clone + Debug + Eq + Hash > TransitiveRelation < T > {
55
55
pub fn new ( ) -> TransitiveRelation < T > {
56
56
TransitiveRelation {
57
57
elements : vec ! [ ] ,
58
58
map : FxHashMap ( ) ,
59
59
edges : vec ! [ ] ,
60
- closure : RefCell :: new ( None ) ,
60
+ closure : Lock :: new ( None ) ,
61
61
}
62
62
}
63
63
@@ -72,7 +72,7 @@ impl<T: Clone + Debug + Eq + Hash + Clone> TransitiveRelation<T> {
72
72
fn add_index ( & mut self , a : T ) -> Index {
73
73
let & mut TransitiveRelation {
74
74
ref mut elements,
75
- ref closure,
75
+ ref mut closure,
76
76
ref mut map,
77
77
..
78
78
} = self ;
@@ -82,7 +82,7 @@ impl<T: Clone + Debug + Eq + Hash + Clone> TransitiveRelation<T> {
82
82
elements. push ( a) ;
83
83
84
84
// if we changed the dimensions, clear the cache
85
- * closure. borrow_mut ( ) = None ;
85
+ * closure. get_mut ( ) = None ;
86
86
87
87
Index ( elements. len ( ) - 1 )
88
88
} )
@@ -122,7 +122,7 @@ impl<T: Clone + Debug + Eq + Hash + Clone> TransitiveRelation<T> {
122
122
self . edges . push ( edge) ;
123
123
124
124
// added an edge, clear the cache
125
- * self . closure . borrow_mut ( ) = None ;
125
+ * self . closure . get_mut ( ) = None ;
126
126
}
127
127
}
128
128
@@ -443,7 +443,7 @@ impl<T> Decodable for TransitiveRelation<T>
443
443
. enumerate ( )
444
444
. map ( |( index, elem) | ( elem. clone ( ) , Index ( index) ) )
445
445
. collect ( ) ;
446
- Ok ( TransitiveRelation { elements, edges, map, closure : RefCell :: new ( None ) } )
446
+ Ok ( TransitiveRelation { elements, edges, map, closure : Lock :: new ( None ) } )
447
447
} )
448
448
}
449
449
}
0 commit comments