Compare commits

...

7 Commits

Author SHA1 Message Date
_ 55daeaecf6 chore: add PTTH_QUIC to check script 2024-01-21 19:22:33 -06:00
_ 15a23bb6e3 chore: update FLTK for QUIC client 2024-01-21 19:19:58 -06:00
_ ce737d95a8 fix: compile error 2024-01-21 19:11:21 -06:00
_ 9ec89a17e2 Merge branch 'fix-windows' 2024-01-21 19:11:14 -06:00
_ c829aaa038 fix: check in a script that runs `cargo check` for Windows and Linux 2024-01-21 19:08:56 -06:00
_ 23e4835933 🏁 fix Windows build 2023-10-30 21:13:07 -05:00
_ 3639862c04 🔊 fix deprecation warnings from new deps 2023-08-31 20:30:23 -05:00
8 changed files with 43 additions and 30 deletions

32
Cargo.lock generated
View File

@ -103,6 +103,12 @@ version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bitflags"
version = "2.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
[[package]] [[package]]
name = "blake3" name = "blake3"
version = "1.3.3" version = "1.3.3"
@ -189,7 +195,7 @@ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
dependencies = [ dependencies = [
"ansi_term", "ansi_term",
"atty", "atty",
"bitflags", "bitflags 1.3.2",
"strsim", "strsim",
"textwrap", "textwrap",
"unicode-width", "unicode-width",
@ -414,11 +420,11 @@ dependencies = [
[[package]] [[package]]
name = "fltk" name = "fltk"
version = "1.3.24" version = "1.4.22"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "240c497f031c68fcde59efcd13390ee8fce5c815c6b6e8a3ad480dce7510465d" checksum = "9da639944e8827d048b63fe437e905e8177c41b9c7cb32f898ade7464208b3bd"
dependencies = [ dependencies = [
"bitflags", "bitflags 2.4.2",
"crossbeam-channel", "crossbeam-channel",
"fltk-sys", "fltk-sys",
"paste", "paste",
@ -427,9 +433,9 @@ dependencies = [
[[package]] [[package]]
name = "fltk-sys" name = "fltk-sys"
version = "1.3.24" version = "1.4.22"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae5725f846c2a8d0c718f6b114fd81fd2d8aab84fb54ff6deed96d94683ddce7" checksum = "f434491b616dce4081d022a503e1a6a0cedd677a292d3c6f173db9dc566cd021"
dependencies = [ dependencies = [
"cmake", "cmake",
] ]
@ -924,7 +930,7 @@ version = "0.26.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46a58d1d356c6597d08cde02c2f09d785b09e28711837b1ed667dc652c08a694" checksum = "46a58d1d356c6597d08cde02c2f09d785b09e28711837b1ed667dc652c08a694"
dependencies = [ dependencies = [
"bitflags", "bitflags 1.3.2",
"cfg-if", "cfg-if",
"libc", "libc",
"static_assertions", "static_assertions",
@ -987,7 +993,7 @@ version = "0.10.44"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29d971fd5722fec23977260f6e81aa67d2f22cadbdc2aa049f1022d9a3be1566" checksum = "29d971fd5722fec23977260f6e81aa67d2f22cadbdc2aa049f1022d9a3be1566"
dependencies = [ dependencies = [
"bitflags", "bitflags 1.3.2",
"cfg-if", "cfg-if",
"foreign-types", "foreign-types",
"libc", "libc",
@ -1428,7 +1434,7 @@ version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffade02495f22453cd593159ea2f59827aae7f53fa8323f756799b670881dcf8" checksum = "ffade02495f22453cd593159ea2f59827aae7f53fa8323f756799b670881dcf8"
dependencies = [ dependencies = [
"bitflags", "bitflags 1.3.2",
"getopts", "getopts",
"memchr", "memchr",
"unicase", "unicase",
@ -1547,7 +1553,7 @@ version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
dependencies = [ dependencies = [
"bitflags", "bitflags 1.3.2",
] ]
[[package]] [[package]]
@ -1826,7 +1832,7 @@ version = "2.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c" checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c"
dependencies = [ dependencies = [
"bitflags", "bitflags 1.3.2",
"core-foundation", "core-foundation",
"core-foundation-sys", "core-foundation-sys",
"libc", "libc",
@ -2326,9 +2332,9 @@ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
[[package]] [[package]]
name = "ttf-parser" name = "ttf-parser"
version = "0.17.1" version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "375812fa44dab6df41c195cd2f7fecb488f6c09fbaafb62807488cefab642bff" checksum = "17f77d76d837a7830fe1d4f12b7b4ba4192c1888001c7164257e4bc6d21d96b4"
[[package]] [[package]]
name = "typenum" name = "typenum"

View File

@ -12,7 +12,7 @@ repository = "https://six-five-six-four.com/git/reactor/ptth"
[dependencies] [dependencies]
anyhow = "1.0.38" anyhow = "1.0.38"
blake3 = "1.0.0" blake3 = "1.0.0"
fltk = "1.3.24" fltk = "1.4.22"
ptth_quic = { path = "../ptth_quic" } ptth_quic = { path = "../ptth_quic" }
quinn = "0.9.3" quinn = "0.9.3"
rand = "0.8.4" rand = "0.8.4"

View File

@ -144,7 +144,7 @@ impl GuiClient <'_> {
let gui = GuiPort::new (fltk_tx, self.ports.len ()); let gui = GuiPort::new (fltk_tx, self.ports.len ());
ports_col.add (&gui.row); ports_col.add (&gui.row);
ports_col.set_size (&gui.row, 30); ports_col.fixed (&gui.row, 30);
let port = Port { let port = Port {
gui, gui,
@ -176,20 +176,20 @@ fn main () -> anyhow::Result <()> {
let mut col = Flex::default ().column ().size_of_parent (); let mut col = Flex::default ().column ().size_of_parent ();
let frame_status = Frame::default (); let frame_status = Frame::default ();
col.set_size (&frame_status, 30); col.fixed (&frame_status, 30);
{ {
let mut row = Flex::default ().row (); let mut row = Flex::default ().row ();
let l = Frame::default ().with_label ("Server ID"); let l = Frame::default ().with_label ("Server ID");
row.set_size (&l, 120); row.fixed (&l, 120);
let l = Frame::default ().with_label ("Server port"); let l = Frame::default ().with_label ("Server port");
row.set_size (&l, 80); row.fixed (&l, 80);
let l = Frame::default ().with_label ("Local port"); let l = Frame::default ().with_label ("Local port");
row.set_size (&l, 80); row.fixed (&l, 80);
row.end (); row.end ();
col.set_size (&row, 30); col.fixed (&row, 30);
} }
let mut ports_col = Flex::default ().column (); let mut ports_col = Flex::default ().column ();
@ -198,7 +198,7 @@ fn main () -> anyhow::Result <()> {
let mut but_add_port = Button::default ().with_label ("+"); let mut but_add_port = Button::default ().with_label ("+");
but_add_port.set_trigger (CallbackTrigger::Release); but_add_port.set_trigger (CallbackTrigger::Release);
but_add_port.emit (fltk_tx, Message::AddPort); but_add_port.emit (fltk_tx, Message::AddPort);
col.set_size (&but_add_port, 30); col.fixed (&but_add_port, 30);
col.end (); col.end ();
@ -283,11 +283,11 @@ impl GuiPort {
let mut but_open = Button::default ().with_label ("Open"); let mut but_open = Button::default ().with_label ("Open");
let mut but_close = Button::default ().with_label ("Close"); let mut but_close = Button::default ().with_label ("Close");
row.set_size (&input_server_id, 120); row.fixed (&input_server_id, 120);
row.set_size (&input_server_port, 80); row.fixed (&input_server_port, 80);
row.set_size (&input_client_port, 80); row.fixed (&input_client_port, 80);
row.set_size (&but_open, 80); row.fixed (&but_open, 80);
row.set_size (&but_close, 80); row.fixed (&but_close, 80);
input_client_port.set_value (""); input_client_port.set_value ("");
input_client_port.set_readonly (true); input_client_port.set_readonly (true);

View File

@ -231,7 +231,7 @@ async fn metrics (
{ {
let mut s = String::with_capacity (4 * 1_024); let mut s = String::with_capacity (4 * 1_024);
let mut push_metric = |name, help, kind, value| { let mut push_metric = |name, help: Option<&str>, kind, value| {
if let Some (help) = help { if let Some (help) = help {
s.push_str (format! ("# HELP {} {}\n", name, help).as_str ()); s.push_str (format! ("# HELP {} {}\n", name, help).as_str ());
} }

View File

@ -129,7 +129,7 @@ pub async fn handle_response (
let magic_header = base64::decode (magic_header).map_err (PtthMagicHeaderNotBase64)?; let magic_header = base64::decode (magic_header).map_err (PtthMagicHeaderNotBase64)?;
let resp_parts: http_serde::ResponseParts = rmp_serde::from_read_ref (&magic_header).map_err (PtthMagicHeaderNotMsgPack)?; let resp_parts: http_serde::ResponseParts = rmp_serde::from_slice (&magic_header).map_err (PtthMagicHeaderNotMsgPack)?;
// Intercept the body packets here so we can check when the stream // Intercept the body packets here so we can check when the stream
// ends or errors out // ends or errors out

View File

@ -414,7 +414,7 @@ impl State {
} }
let body = req_resp.bytes ().await.map_err (ServerError::CantCollectWrappedRequests)?; let body = req_resp.bytes ().await.map_err (ServerError::CantCollectWrappedRequests)?;
let wrapped_reqs: Vec <http_serde::WrappedRequest> = rmp_serde::from_read_ref (&body) let wrapped_reqs: Vec <http_serde::WrappedRequest> = rmp_serde::from_slice (&body)
.map_err (ServerError::CantParseWrappedRequests)?; .map_err (ServerError::CantParseWrappedRequests)?;
Ok (wrapped_reqs) Ok (wrapped_reqs)

View File

@ -55,5 +55,6 @@ pub fn load <
> ( > (
config_file_path: P config_file_path: P
) -> Result <T, LoadTomlError> { ) -> Result <T, LoadTomlError> {
load_public (config_file_path) let f = File::open (&config_file_path)?;
load_inner (f)
} }

6
scripts/check.bash Executable file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail
cargo check --target x86_64-pc-windows-gnu -p ptth -p ptth_quic
cargo check --target x86_64-unknown-linux-gnu -p ptth -p ptth_quic