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
9dca756e
Commit
9dca756e
authored
3 years ago
by
Ian Jackson
Browse files
Options
Downloads
Patches
Plain Diff
Replace manual Debug impls with educe in tor-proto
We now print slighly more information.
parent
210b9b70
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Cargo.lock
+1
-0
1 addition, 0 deletions
Cargo.lock
crates/tor-proto/Cargo.toml
+1
-0
1 addition, 0 deletions
crates/tor-proto/Cargo.toml
crates/tor-proto/src/stream/data.rs
+23
-32
23 additions, 32 deletions
crates/tor-proto/src/stream/data.rs
with
25 additions
and
32 deletions
Cargo.lock
+
1
−
0
View file @
9dca756e
...
...
@@ -3447,6 +3447,7 @@ dependencies = [
"cipher",
"coarsetime",
"digest 0.10.3",
"educe",
"futures",
"generic-array",
"hex",
...
...
This diff is collapsed.
Click to expand it.
crates/tor-proto/Cargo.toml
+
1
−
0
View file @
9dca756e
...
...
@@ -31,6 +31,7 @@ bytes = "1"
cipher
=
"0.3.0"
coarsetime
=
"0.1.20"
digest
=
"0.10.0"
educe
=
"0.4.6"
futures
=
"0.3.14"
asynchronous-codec
=
"0.6.0"
generic-array
=
"0.14.3"
...
...
This diff is collapsed.
Click to expand it.
crates/tor-proto/src/stream/data.rs
+
23
−
32
View file @
9dca756e
...
...
@@ -15,12 +15,15 @@ use tokio_crate::io::{AsyncRead as TokioAsyncRead, AsyncWrite as TokioAsyncWrite
#[cfg(feature
=
"tokio"
)]
use
tokio_util
::
compat
::{
FuturesAsyncReadCompatExt
,
FuturesAsyncWriteCompatExt
};
use
std
::
fmt
::
{
self
,
Debug
}
;
use
std
::
fmt
::
Debug
;
use
std
::
io
::
Result
as
IoResult
;
use
std
::
pin
::
Pin
;
use
educe
::
Educe
;
use
crate
::
circuit
::
StreamTarget
;
use
crate
::
stream
::
StreamReader
;
use
tor_bytes
::
skip_fmt
;
use
tor_cell
::
relaycell
::
msg
::{
Data
,
RelayMsg
};
use
tor_error
::
internal
;
...
...
@@ -258,6 +261,8 @@ impl TokioAsyncWrite for DataStream {
/// We have to use an enum here because, for as long as we're waiting
/// for a flush operation to complete, the future returned by
/// `flush_cell()` owns the DataWriterImpl.
#[derive(Educe)]
#[educe(Debug)]
enum
DataWriterState
{
/// The writer has closed or gotten an error: nothing more to do.
Closed
,
...
...
@@ -265,20 +270,15 @@ enum DataWriterState {
/// immediately.
Ready
(
DataWriterImpl
),
/// The writer is flushing a cell.
Flushing
(
Pin
<
Box
<
dyn
Future
<
Output
=
(
DataWriterImpl
,
Result
<
()
>
)
>
+
Send
>>
),
}
impl
Debug
for
DataWriterState
{
fn
fmt
(
&
self
,
f
:
&
mut
fmt
::
Formatter
)
->
fmt
::
Result
{
match
self
{
DataWriterState
::
Closed
=>
write!
(
f
,
"DataWriterState::Closed"
),
DataWriterState
::
Ready
(
i
)
=>
write!
(
f
,
"DataWriterState::Ready({:?})"
,
i
),
DataWriterState
::
Flushing
(
_
)
=>
write!
(
f
,
"DataWriterState::Flushing(..)"
),
}
}
Flushing
(
#[educe(Debug(method
=
"skip_fmt"
))]
Pin
<
Box
<
dyn
Future
<
Output
=
(
DataWriterImpl
,
Result
<
()
>
)
>
+
Send
>>
,
),
}
/// Internal: the write part of a DataStream
#[derive(Educe)]
#[educe(Debug)]
struct
DataWriterImpl
{
/// The underlying StreamTarget object.
s
:
StreamTarget
,
...
...
@@ -288,21 +288,13 @@ struct DataWriterImpl {
// enough for now. If we _do_ make it bigger, we'll have to change
// our use of Data::split_from to handle the case where we can't fit
// all the data.
#[educe(Debug(method
=
"skip_fmt"
))]
buf
:
Box
<
[
u8
;
Data
::
MAXLEN
]
>
,
/// Number of unflushed bytes in buf.
n_pending
:
usize
,
}
impl
Debug
for
DataWriterImpl
{
fn
fmt
(
&
self
,
f
:
&
mut
fmt
::
Formatter
)
->
fmt
::
Result
{
f
.debug_struct
(
"DataWriterImpl"
)
.field
(
"s"
,
&
self
.s
)
.field
(
"n_pending"
,
&
self
.n_pending
)
.finish_non_exhaustive
()
}
}
impl
DataWriter
{
/// Helper for poll_flush() and poll_close(): Performs a flush, then
/// closes the stream if should_close is true.
...
...
@@ -465,6 +457,8 @@ impl DataWriterImpl {
/// DataCellImpl. If we wanted to store the future and the cell at the
/// same time, we'd need to make a self-referential structure, which isn't
/// possible in safe Rust AIUI.
#[derive(Educe)]
#[educe(Debug)]
enum
DataReaderState
{
/// In this state we have received an end cell or an error.
Closed
,
...
...
@@ -473,28 +467,25 @@ enum DataReaderState {
Ready
(
DataReaderImpl
),
/// The reader is currently fetching a cell: this future is the
/// progress it is making.
ReadingCell
(
Pin
<
Box
<
dyn
Future
<
Output
=
(
DataReaderImpl
,
Result
<
()
>
)
>
+
Send
>>
),
}
impl
std
::
fmt
::
Debug
for
DataReaderState
{
fn
fmt
(
&
self
,
f
:
&
mut
std
::
fmt
::
Formatter
<
'_
>
)
->
std
::
fmt
::
Result
{
match
self
{
Self
::
Closed
=>
write!
(
f
,
"Closed"
),
Self
::
Ready
(
_
)
=>
write!
(
f
,
"Ready"
),
Self
::
ReadingCell
(
_
)
=>
write!
(
f
,
"ReadingCell"
),
}
}
ReadingCell
(
#[educe(Debug(method
=
"skip_fmt"
))]
Pin
<
Box
<
dyn
Future
<
Output
=
(
DataReaderImpl
,
Result
<
()
>
)
>
+
Send
>>
,
),
}
/// Wrapper for the read part of a DataStream
#[derive(Educe)]
#[educe(Debug)]
struct
DataReaderImpl
{
/// The underlying StreamReader object.
#[educe(Debug(method
=
"skip_fmt"
))]
s
:
StreamReader
,
/// If present, data that we received on this stream but have not
/// been able to send to the caller yet.
// TODO: This data structure is probably not what we want, but
// it's good enough for now.
#[educe(Debug(method
=
"skip_fmt"
))]
pending
:
Vec
<
u8
>
,
/// Index into pending to show what we've already read.
...
...
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