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 114 115 116 117 118 119 120 121 122 123 124 125
// Copyright 2023 litep2p developers
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
use crate::protocol::{
notification::NotificationProtocolConfig, request_response::RequestResponseProtocolConfig,
Libp2pProtocol, NotificationProtocol,
};
use multiaddr::Multiaddr;
/// Connection role.
#[derive(Debug, Copy, Clone)]
pub enum Role {
/// Dialer.
Dialer,
/// Listener.
Listener,
}
impl Into<yamux::Mode> for Role {
fn into(self) -> yamux::Mode {
match self {
Role::Dialer => yamux::Mode::Client,
Role::Listener => yamux::Mode::Server,
}
}
}
pub struct LiteP2pConfiguration {
/// Listening addresses.
pub(crate) listen_addresses: Vec<Multiaddr>,
/// Notification protocols.
pub(crate) notification_protocols: Vec<NotificationProtocolConfig>,
/// Request-response protocols.
pub(crate) request_response_protocols: Vec<RequestResponseProtocolConfig>,
}
impl LiteP2pConfiguration {
pub fn new(
listen_addresses: Vec<Multiaddr>,
notification_protocols: Vec<NotificationProtocolConfig>,
request_response_protocols: Vec<RequestResponseProtocolConfig>,
) -> Self {
Self {
listen_addresses,
notification_protocols,
request_response_protocols,
}
}
}
// Transport configuration.
#[derive(Debug)]
pub struct TransportConfig {
/// Listening address for the transport.
listen_address: Multiaddr,
// /// Supported request-response protocols.
// libp2p_protocols: Vec<Libp2pProtocol>,
libp2p_protocols: Vec<String>,
/// Supported notification protocols.
notification_protocols: Vec<NotificationProtocol>,
/// Maximum number of allowed connections:
max_connections: usize,
}
impl TransportConfig {
/// Create new [`TransportConfig`].
pub fn new(
listen_address: Multiaddr,
libp2p_protocols: Vec<String>,
notification_protocols: Vec<NotificationProtocol>,
max_connections: usize,
) -> Self {
Self {
listen_address,
libp2p_protocols,
notification_protocols,
max_connections,
}
}
/// Get listen address.
pub fn listen_address(&self) -> &Multiaddr {
&self.listen_address
}
/// Get libp2p address.
// pub fn libp2p_protocols(&self) -> impl Iterator<Item = &Libp2pProtocol> {
pub fn libp2p_protocols(&self) -> impl Iterator<Item = &String> {
self.libp2p_protocols.iter()
}
/// Get notification address.
pub fn notification_protocols(&self) -> impl Iterator<Item = &NotificationProtocol> {
self.notification_protocols.iter()
}
/// Get the number of maximum open connections.
pub fn max_connections(&self) -> usize {
self.max_connections
}
}