what is this
This commit is contained in:
@@ -21,8 +21,19 @@
|
|||||||
|
|
||||||
use super::AddrInfo;
|
use super::AddrInfo;
|
||||||
|
|
||||||
|
pub async fn get(dev: Option<&str>) -> anyhow::Result<Vec<AddrInfo>> {
|
||||||
|
let mut cmd = tokio::process::Command::new("ip");
|
||||||
|
cmd.args(["-j", "address", "show"]);
|
||||||
|
|
||||||
|
if let Some(d) = dev {
|
||||||
pub async fn get() -> Vec<AddrInfo> {
|
cmd.args(["dev", d]);
|
||||||
todo!()
|
}
|
||||||
|
|
||||||
|
let output = cmd.output().await?;
|
||||||
|
|
||||||
|
if !output.status.success() {
|
||||||
|
anyhow::bail!(String::from_utf8_lossy(&output.stderr).into_owned());
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(serde_json::from_slice(&output.stdout)?)
|
||||||
}
|
}
|
||||||
@@ -118,3 +118,8 @@ async fn ball_compare_backends() -> anyhow::Result<()> {
|
|||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[tokio::test]
|
||||||
|
async fn cidr_filter() {
|
||||||
|
unimplemented!("never. i aint add what i dont need")
|
||||||
|
}
|
||||||
@@ -2,11 +2,14 @@
|
|||||||
|
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
|
|
||||||
root = Path(__file__).parent.parent
|
root = Path(__file__).parent.parent
|
||||||
static = root / "static" # change "assets" to your folder
|
static = root / "static"
|
||||||
out_rs = root / "src" / "assets.rs"
|
src = root / "src"
|
||||||
|
out_rs = src / "assets.rs"
|
||||||
|
|
||||||
|
assert 'name = "wakey"' in (root / "Cargo.toml").read_text(
|
||||||
|
encoding="utf-8"
|
||||||
|
), "uhh how do i explain this"
|
||||||
|
|
||||||
def sanitize(name: str) -> str:
|
def sanitize(name: str) -> str:
|
||||||
# Valid Rust identifiers: letters, digits, underscores; no starting digit
|
# Valid Rust identifiers: letters, digits, underscores; no starting digit
|
||||||
@@ -35,7 +38,7 @@ class RsAssetFile:
|
|||||||
const_name = sanitize(self.path.name).upper()
|
const_name = sanitize(self.path.name).upper()
|
||||||
return (
|
return (
|
||||||
f"pub const {const_name}: &str = "
|
f"pub const {const_name}: &str = "
|
||||||
f'include_str!("{self.path.relative_to(out_rs.parent, walk_up=True).as_posix()}");'
|
f'include_str!("{self.path.relative_to(src, walk_up=True).as_posix()}");'
|
||||||
)
|
)
|
||||||
# specify walk_up to have .. in yo path
|
# specify walk_up to have .. in yo path
|
||||||
|
|
||||||
@@ -62,4 +65,4 @@ rs_code = "// generated with ./scripts/map_static.py\n" + str(
|
|||||||
RsAssetModule(static, True)
|
RsAssetModule(static, True)
|
||||||
)
|
)
|
||||||
out_rs.write_text(rs_code, encoding="utf-8")
|
out_rs.write_text(rs_code, encoding="utf-8")
|
||||||
print(f"written to {out_rs}")
|
print(f"written to {out_rs.relative_to(Path.cwd(), walk_up=True)}")
|
||||||
|
|||||||
Reference in New Issue
Block a user