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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
use std::io::Write;
use std::path::PathBuf;
use std::process::Command;
use std::{fs::File, sync::Arc};
use crate::factorio::rcon::{FactorioRcon, RconSettings};
use crate::factorio::world::FactorioWorld;
use crate::process::output_parser::OutputParser;
use crate::process::process_control::FactorioStartCondition;
use crate::process::InteractiveProcess;
use miette::{IntoDiagnostic, Result};
use parking_lot::{Mutex, RwLock};
use std::sync::mpsc;
pub async fn read_output(
cmd: Command,
log_path: PathBuf,
rcon_settings: &RconSettings,
write_logs: bool,
silent: Arc<RwLock<bool>>,
wait_until: FactorioStartCondition,
) -> Result<(Arc<FactorioWorld>, InteractiveProcess, FactorioRcon)> {
let log_file = Mutex::new(match write_logs {
true => Some(File::create(log_path).into_diagnostic()?),
false => None,
});
let mut output_parser = OutputParser::new();
let wait_until_thread = wait_until.clone();
let (tx1, rx1) = mpsc::channel();
let (tx2, rx2) = mpsc::channel();
let initialized = Mutex::new(false);
let _world = output_parser.world();
let _silent = silent.clone();
let proc = InteractiveProcess::new_with_stderr(
cmd,
move |line| {
match line {
Ok(line) => {
let silent = *silent.read();
let mut initialized = initialized.lock();
if !*initialized && line.contains("my_client_id") {
tx1.send(()).expect("failed to send");
if wait_until_thread == FactorioStartCondition::Initialized {
*initialized = true;
}
}
if !*initialized
&& (line.contains("initial discovery done") || line.contains("(100% done)"))
{
*initialized = true;
output_parser.on_init().unwrap();
tx2.send(()).expect("failed to send");
}
if *initialized || !line.contains(" / ") {
let mut log_file = log_file.lock();
log_file.iter_mut().for_each(|log_file| {
log_file
.write_all(line.as_bytes())
.expect("failed to write log file");
log_file.write_all(b"\n").expect("failed to write log file");
});
if !line.is_empty() && &line[0..2] == "§" {
if let Some(pos) = line[2..].find('§') {
let tick: u64 = (&line[2..pos + 2]).parse().unwrap();
let rest = &line[pos + 4..];
if let Some(pos) = rest.find('§') {
let action = &rest[0..pos];
let rest = &rest[pos + 2..];
if !silent {
match action {
"on_player_changed_position"
| "on_player_main_inventory_changed"
| "on_player_changed_distance"
| "entity_prototypes"
| "recipes"
| "force"
| "item_prototypes"
| "graphics"
| "tiles"
| "STATIC_DATA_END"
| "entities" => {}
_ => {
info!(
"<cyan>server</>⮞ §{}§<bright-blue>{}</>§<green>{}</>",
tick, action, rest
);
}
}
}
let result = output_parser.parse(tick, action, rest);
if let Err(err) = result {
error!(
"<red>failed to parse</> <bright-blue>'{}'</>",
line
);
error!("<red>error: {:?}</>", err);
}
}
}
} else if line.contains("Error") && !silent {
warn!("<cyan>server</>⮞ <red>{}</>", line);
} else if !silent {
println!("{}", line);
}
}
}
Err(err) => {
error!("<red>failed to read server stdout: {:?}</>", err);
}
};
},
move |line| {
match line {
Ok(line) => {
warn!("<cyan>server</>⮞ <red>{}</>", line);
}
Err(err) => {
error!("<red>failed to read server stderr: {:?}</>", err);
}
};
},
).into_diagnostic()?;
rx1.recv().into_diagnostic()?;
let rcon = FactorioRcon::new(rcon_settings, _silent)
.await
.expect("failed to rcon");
rcon.initialize_server().await?;
if wait_until == FactorioStartCondition::DiscoveryComplete {
rx2.recv().into_diagnostic()?;
}
Ok((_world, proc, rcon))
}