1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
use std::{
any::Any,
borrow::Cow,
ops::{Deref, DerefMut},
};
use bstr::BStr;
#[cfg(any(feature = "blocking-client", feature = "async-client"))]
use crate::client::{MessageKind, RequestWriter, WriteMode};
use crate::{client::Error, Protocol};
pub trait TransportWithoutIO {
fn set_identity(&mut self, _identity: git_sec::identity::Account) -> Result<(), Error> {
Err(Error::AuthenticationUnsupported)
}
#[cfg(any(feature = "blocking-client", feature = "async-client"))]
fn request(&mut self, write_mode: WriteMode, on_into_read: MessageKind) -> Result<RequestWriter<'_>, Error>;
fn to_url(&self) -> Cow<'_, BStr>;
fn supported_protocol_versions(&self) -> &[Protocol] {
&[]
}
fn connection_persists_across_multiple_requests(&self) -> bool;
fn configure(&mut self, config: &dyn Any) -> Result<(), Box<dyn std::error::Error + Send + Sync + 'static>>;
}
impl<T: TransportWithoutIO + ?Sized> TransportWithoutIO for Box<T> {
fn set_identity(&mut self, identity: git_sec::identity::Account) -> Result<(), Error> {
self.deref_mut().set_identity(identity)
}
#[cfg(any(feature = "blocking-client", feature = "async-client"))]
fn request(&mut self, write_mode: WriteMode, on_into_read: MessageKind) -> Result<RequestWriter<'_>, Error> {
self.deref_mut().request(write_mode, on_into_read)
}
fn to_url(&self) -> Cow<'_, BStr> {
self.deref().to_url()
}
fn supported_protocol_versions(&self) -> &[Protocol] {
self.deref().supported_protocol_versions()
}
fn connection_persists_across_multiple_requests(&self) -> bool {
self.deref().connection_persists_across_multiple_requests()
}
fn configure(&mut self, config: &dyn Any) -> Result<(), Box<dyn std::error::Error + Send + Sync + 'static>> {
self.deref_mut().configure(config)
}
}
impl<T: TransportWithoutIO + ?Sized> TransportWithoutIO for &mut T {
fn set_identity(&mut self, identity: git_sec::identity::Account) -> Result<(), Error> {
self.deref_mut().set_identity(identity)
}
#[cfg(any(feature = "blocking-client", feature = "async-client"))]
fn request(&mut self, write_mode: WriteMode, on_into_read: MessageKind) -> Result<RequestWriter<'_>, Error> {
self.deref_mut().request(write_mode, on_into_read)
}
fn to_url(&self) -> Cow<'_, BStr> {
self.deref().to_url()
}
fn supported_protocol_versions(&self) -> &[Protocol] {
self.deref().supported_protocol_versions()
}
fn connection_persists_across_multiple_requests(&self) -> bool {
self.deref().connection_persists_across_multiple_requests()
}
fn configure(&mut self, config: &dyn Any) -> Result<(), Box<dyn std::error::Error + Send + Sync + 'static>> {
self.deref_mut().configure(config)
}
}