Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Arti
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jill
Arti
Commits
7ab84078
Commit
7ab84078
authored
3 years ago
by
yuan
Browse files
Options
Downloads
Patches
Plain Diff
Replace as_mut with deref impl for MutCircEnt
parent
cc7023fb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
crates/tor-proto/src/channel/circmap.rs
+24
-16
24 additions, 16 deletions
crates/tor-proto/src/channel/circmap.rs
crates/tor-proto/src/channel/reactor.rs
+10
-10
10 additions, 10 deletions
crates/tor-proto/src/channel/reactor.rs
with
34 additions
and
26 deletions
crates/tor-proto/src/channel/circmap.rs
+
24
−
16
View file @
7ab84078
...
...
@@ -14,6 +14,7 @@ use futures::channel::{mpsc, oneshot};
use
rand
::
distributions
::
Distribution
;
use
rand
::
Rng
;
use
std
::
collections
::{
hash_map
::
Entry
,
HashMap
};
use
std
::
ops
::{
Deref
,
DerefMut
};
/// Which group of circuit IDs are we allowed to allocate in this map?
///
...
...
@@ -91,20 +92,27 @@ pub(super) struct MutCircEnt<'a> {
was_open
:
bool
,
}
impl
<
'a
>
AsMut
<
CircEnt
>
for
MutCircEnt
<
'a
>
{
fn
as_mut
(
&
mut
self
)
->
&
mut
CircEnt
{
self
.value
}
}
impl
<
'a
>
Drop
for
MutCircEnt
<
'a
>
{
fn
drop
(
&
mut
self
)
{
let
is_open
=
!
matches!
(
self
.value
,
CircEnt
::
DestroySent
(
_
));
match
(
self
.was_open
,
is_open
)
{
(
false
,
true
)
=>
*
self
.open_count
+=
1
,
(
true
,
false
)
=>
*
self
.open_count
-=
1
,
(
_
,
_
)
=>
{}
}
(
false
,
true
)
=>
*
self
.open_count
=
self
.open_count
.saturating_add
(
1
),
(
true
,
false
)
=>
*
self
.open_count
=
self
.open_count
.saturating_sub
(
1
),
(
_
,
_
)
=>
(),
};
}
}
impl
<
'a
>
Deref
for
MutCircEnt
<
'a
>
{
type
Target
=
CircEnt
;
fn
deref
(
&
self
)
->
&
Self
::
Target
{
self
.value
}
}
impl
<
'a
>
DerefMut
for
MutCircEnt
<
'a
>
{
fn
deref_mut
(
&
mut
self
)
->
&
mut
Self
::
Target
{
self
.value
}
}
...
...
@@ -255,8 +263,8 @@ mod test {
ids_low
.push
(
id_low
);
assert!
(
matches!
(
map_low
.get_mut
(
id_low
)
.unwrap
()
.as_mut
()
,
&
mut
CircEnt
::
Opening
(
_
,
_
)
*
map_low
.get_mut
(
id_low
)
.unwrap
(),
CircEnt
::
Opening
(
_
,
_
)
));
let
(
csnd
,
_
)
=
oneshot
::
channel
();
...
...
@@ -286,14 +294,14 @@ mod test {
// Good case.
assert!
(
map_high
.get_mut
(
ids_high
[
0
])
.is_some
());
assert!
(
matches!
(
map_high
.get_mut
(
ids_high
[
0
])
.unwrap
()
.as_mut
()
,
&
mut
CircEnt
::
Opening
(
_
,
_
)
*
map_high
.get_mut
(
ids_high
[
0
])
.unwrap
(),
CircEnt
::
Opening
(
_
,
_
)
));
let
adv
=
map_high
.advance_from_opening
(
ids_high
[
0
]);
assert!
(
adv
.is_ok
());
assert!
(
matches!
(
map_high
.get_mut
(
ids_high
[
0
])
.unwrap
()
.as_mut
()
,
&
mut
CircEnt
::
Open
(
_
)
*
map_high
.get_mut
(
ids_high
[
0
])
.unwrap
(),
CircEnt
::
Open
(
_
)
));
// Can't double-advance.
...
...
This diff is collapsed.
Click to expand it.
crates/tor-proto/src/channel/reactor.rs
+
10
−
10
View file @
7ab84078
...
...
@@ -288,12 +288,12 @@ impl Reactor {
/// Give the RELAY cell `msg` to the appropriate circuit.
async
fn
deliver_relay
(
&
mut
self
,
circid
:
CircId
,
msg
:
ChanMsg
)
->
Result
<
()
>
{
let
opt_
ent
=
self
.circs
.get_mut
(
circid
);
if
opt_ent
.is_none
()
{
return
Err
(
Error
::
ChanProto
(
"Relay cell on nonexistent circuit"
.into
()));
}
let
mut
ent
=
opt_ent
.expect
(
"None entry should have been checked."
);
match
ent
.as_mut
()
{
let
mut
ent
=
self
.circs
.get_mut
(
circid
)
.ok_or_else
(||
Error
::
ChanProto
(
"Relay cell on nonexistent circuit"
.into
()))
?
;
match
&
mut
*
ent
{
CircEnt
::
Open
(
s
)
=>
{
// There's an open circuit; we can give it the RELAY cell.
if
s
.send
(
msg
.try_into
()
?
)
.await
.is_err
()
{
...
...
@@ -495,7 +495,7 @@ pub(crate) mod test {
let
id
=
pending
.peek_circid
();
let
ent
=
reactor
.circs
.get_mut
(
id
);
assert!
(
matches!
(
ent
.unwrap
()
.as_mut
()
,
CircEnt
::
Opening
(
_
,
_
)));
assert!
(
matches!
(
*
ent
.unwrap
(),
CircEnt
::
Opening
(
_
,
_
)));
assert!
(
chan
.duration_unused
()
.is_none
());
// in use
// Now drop the circuit; this should tell the reactor to remove
...
...
@@ -504,7 +504,7 @@ pub(crate) mod test {
reactor
.run_once
()
.await
.unwrap
();
let
ent
=
reactor
.circs
.get_mut
(
id
);
assert!
(
matches!
(
ent
.unwrap
()
.as_mut
()
,
CircEnt
::
DestroySent
(
_
)));
assert!
(
matches!
(
*
ent
.unwrap
(),
CircEnt
::
DestroySent
(
_
)));
let
cell
=
output
.next
()
.await
.unwrap
();
assert_eq!
(
cell
.circid
(),
id
);
assert!
(
matches!
(
cell
.msg
(),
ChanMsg
::
Destroy
(
_
)));
...
...
@@ -536,7 +536,7 @@ pub(crate) mod test {
let
id
=
pending
.peek_circid
();
let
ent
=
reactor
.circs
.get_mut
(
id
);
assert!
(
matches!
(
ent
.unwrap
()
.as_mut
()
,
CircEnt
::
Opening
(
_
,
_
)));
assert!
(
matches!
(
*
ent
.unwrap
(),
CircEnt
::
Opening
(
_
,
_
)));
#[allow(clippy::clone_on_copy)]
let
rtc
=
rt
.clone
();
...
...
@@ -563,7 +563,7 @@ pub(crate) mod test {
// But the next run if the reactor will make the circuit get closed.
let
ent
=
reactor
.circs
.get_mut
(
id
);
assert!
(
matches!
(
ent
.unwrap
()
.as_mut
()
,
CircEnt
::
DestroySent
(
_
)));
assert!
(
matches!
(
*
ent
.unwrap
(),
CircEnt
::
DestroySent
(
_
)));
});
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment