A Routing Policy Specification Language (RPSL) parser with a focus on speed and correctness.
โก๏ธ 130-250x faster than other parsers
๐ฐ Complete implementation for multiline RPSL values
๐ฌ Able to parse objects directly from whois server responses
๐ง Low memory footprint by leveraging zero-copy
๐งช Robust parsing of any valid input ensured by Property Based Tests
Usage
Parsing RPSL objects
A string containing an object in RPSL notation can be parsed to an Object using the parse_object function.
use parse_object;
let role_acme = "
role: ACME Company
address: Packet Street 6
address: 128 Series of Tubes
address: Internet
email: rpsl-rs@github.com
nic-hdl: RPSL1-RIPE
source: RIPE
";
let parsed = parse_object.unwrap;
The returned Object allows access to the attributes contained within in form of Attributes.
println!;
Object
Objects created from RPSL text use string references that point to attributes and their values instead of copying them.
role: ACME Company โโโโโโโโโโโโโโโโ &"role" โโโ &"ACME Company"
address: Packet Street 6 โโโโโโโโโโโโโ &"address" โโโ &"Packet Street 6"
address: 128 Series of Tubes โโโโโโโโโ &"address" โโโ &"128 Series of Tubes"
address: Internet โโโโโโโโโโโโโโโโโโโโ &"address" โโโ &"Internet"
email: rpsl-rs@github.com โโโโโโโโโโ &"email" โโโ &"rpsl-rs@github.com"
nic-hdl: RPSL1-RIPE โโโโโโโโโโโโโโโโโโ &"nic-hdl" โโโ &"RPSL1-RIPE"
source: RIPE โโโโโโโโโโโโโโโโโโโโโโโโ &"source" โโโ &"RIPE"
This is what makes rpsl-rs performant and memory efficient, since no additional allocation is required during parsing.
Each Attribute can be accessed by its index and has a name and value.
println!;
Attribute
Since RPSL attribute values can either be single- or multiline, two different variants are used to represent them. See Attribute and parse_object for more details and examples.
Parsing a WHOIS server response
WHOIS servers often respond to queries by returning multiple related objects.
An example ARIN query for AS32934 will return with the requested ASNumber object first, followed by its associated OrgName:
To extract each individual object, the parse_whois_response function can be used to parse the response into a Vec containing all individual Objects within the response. Examples can be found in the function documentation.
Optional Features
The following cargo features can be used to enable additional functionality.
- simd (enabled by default): Enables the Winnow simd feature which improves string search performance using simd.
- serde: Enables Object serialization using Serde.
- json: Provides JSON serialization of an Object using Serde JSON.
MSRV Policy
This project requires the minimum supported Rust version to be at least 6 months old. As long as this requirement is met, the MSRV may be increased as necessary through a minor version update. For the currently configured MSRV, please check Cargo.toml.
Contributing
Contributions of all sizes that improve rpsl-rs in any way, be it DX/UX, documentation, performance or other are highly appreciated.
To get started, please read the contribution guidelines. Before starting work on a new feature you would like to contribute that may impact simplicity, reliability or performance, please open an issue first.
License
The source code of this project is licensed under the MIT License. For more information, see LICENSE.