nushell/crates/nu-command/src/network/port.rs
Stefan Holderbach 95b78eee25
Change the usage misnomer to "description" (#13598)
# Description
    
The meaning of the word usage is specific to describing how a command
function is *used* and not a synonym for general description. Usage can
be used to describe the SYNOPSIS or EXAMPLES sections of a man page
where the permitted argument combinations are shown or example *uses*
are given.
Let's not confuse people and call it what it is a description.

Our `help` command already creates its own *Usage* section based on the
available arguments and doesn't refer to the description with usage.

# User-Facing Changes

`help commands` and `scope commands` will now use `description` or
`extra_description`
`usage`-> `description`
`extra_usage` -> `extra_description`

Breaking change in the plugin protocol:

In the signature record communicated with the engine.
`usage`-> `description`
`extra_usage` -> `extra_description`

The same rename also takes place for the methods on
`SimplePluginCommand` and `PluginCommand`

# Tests + Formatting
- Updated plugin protocol specific changes
# After Submitting
- [ ] update plugin protocol doc
2024-08-22 12:02:08 +02:00

137 lines
4.2 KiB
Rust

use nu_engine::command_prelude::*;
use std::net::{Ipv4Addr, SocketAddr, SocketAddrV4, TcpListener};
#[derive(Clone)]
pub struct SubCommand;
impl Command for SubCommand {
fn name(&self) -> &str {
"port"
}
fn signature(&self) -> Signature {
Signature::build("port")
.input_output_types(vec![(Type::Nothing, Type::Int)])
.optional(
"start",
SyntaxShape::Int,
"The start port to scan (inclusive).",
)
.optional("end", SyntaxShape::Int, "The end port to scan (inclusive).")
.category(Category::Network)
}
fn description(&self) -> &str {
"Get a free port from system."
}
fn search_terms(&self) -> Vec<&str> {
vec!["network", "http"]
}
fn run(
&self,
engine_state: &EngineState,
stack: &mut Stack,
call: &Call,
_input: PipelineData,
) -> Result<PipelineData, ShellError> {
get_free_port(engine_state, stack, call)
}
fn examples(&self) -> Vec<Example> {
vec![
Example {
description: "get a free port between 3121 and 4000",
example: "port 3121 4000",
result: Some(Value::test_int(3121)),
},
Example {
description: "get a free port from system",
example: "port",
result: None,
},
]
}
}
fn get_free_port(
engine_state: &EngineState,
stack: &mut Stack,
call: &Call,
) -> Result<PipelineData, ShellError> {
let start_port: Option<Spanned<usize>> = call.opt(engine_state, stack, 0)?;
let end_port: Option<Spanned<usize>> = call.opt(engine_state, stack, 1)?;
let listener = if start_port.is_none() && end_port.is_none() {
// get free port from system.
TcpListener::bind("127.0.0.1:0")?
} else {
let (start_port, start_span) = match start_port {
Some(p) => (p.item, Some(p.span)),
None => (1024, None),
};
let start_port = match u16::try_from(start_port) {
Ok(p) => p,
Err(e) => {
return Err(ShellError::CantConvert {
to_type: "u16".into(),
from_type: "usize".into(),
span: start_span.unwrap_or(call.head),
help: Some(format!("{e} (min: {}, max: {})", u16::MIN, u16::MAX)),
});
}
};
let (end_port, end_span) = match end_port {
Some(p) => (p.item, Some(p.span)),
None => (65535, None),
};
let end_port = match u16::try_from(end_port) {
Ok(p) => p,
Err(e) => {
return Err(ShellError::CantConvert {
to_type: "u16".into(),
from_type: "usize".into(),
span: end_span.unwrap_or(call.head),
help: Some(format!("{e} (min: {}, max: {})", u16::MIN, u16::MAX)),
});
}
};
let range_span = match (start_span, end_span) {
(Some(start), Some(end)) => Span::new(start.start, end.end),
(Some(start), None) => start,
(None, Some(end)) => end,
(None, None) => call.head,
};
// check input range valid.
if start_port > end_port {
return Err(ShellError::InvalidRange {
left_flank: start_port.to_string(),
right_flank: end_port.to_string(),
span: range_span,
});
}
// try given port one by one.
match (start_port..=end_port)
.map(|port| SocketAddr::V4(SocketAddrV4::new(Ipv4Addr::LOCALHOST, port)))
.find_map(|addr| TcpListener::bind(addr).ok())
{
Some(listener) => listener,
None => {
return Err(ShellError::IOError {
msg: "Every port has been tried, but no valid one was found".to_string(),
})
}
}
};
let free_port = listener.local_addr()?.port();
Ok(Value::int(free_port as i64, call.head).into_pipeline_data())
}