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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
use futures::future::BoxFuture;
use futures::AsyncWriteExt;
use std::process::{Command, Child};
use crate::fetch;
pub struct PgSettings {
pub executables_dir: String,
pub database_dir: String,
pub user: String,
pub password: String,
pub persistent: bool,
}
pub struct PgEmbed {
pub pg_settings: PgSettings,
pub fetch_settings: fetch::FetchSettings,
pub process: Option<Child>,
}
impl PgEmbed {
pub fn new(pg_settings: PgSettings, fetch_settings: fetch::FetchSettings) -> Self {
PgEmbed{
pg_settings,
fetch_settings,
process: None,
}
}
pub async fn aquire_postgres(&self) -> anyhow::Result<()> {
let pg_file = fetch::fetch_postgres(&self.fetch_settings, &self.pg_settings.executables_dir).await?;
fetch::unpack_postgres(&pg_file, &self.pg_settings.executables_dir).await
}
pub async fn init_db(&self) -> anyhow::Result<Child> {
let init_db_executable = format!("{}/bin/initdb", &self.pg_settings.executables_dir);
let password_file_arg = format!("--pwfile={}/pwfile", &self.pg_settings.executables_dir);
let process = Command::new(
init_db_executable,
)
.args(&[
"-A",
&self.pg_settings.password,
"-U",
&self.pg_settings.user,
"-D",
&self.pg_settings.database_dir,
&password_file_arg,
])
.spawn()
.expect(
"failed to execute process",
);
Ok(process)
}
pub async fn start_db(&mut self) -> anyhow::Result<()> {
let pg_ctl_executable = format!("{}/bin/pg_ctl", &self.pg_settings.executables_dir);
let mut process = Command::new(
pg_ctl_executable,
)
.args(&[
"start", "-w", "-D", &self.pg_settings.database_dir,
])
.spawn()
.expect(
"failed to start postgresql process",
);
self.process = Some(process);
Ok(())
}
pub async fn stop_db(&mut self) -> anyhow::Result<()> {
let pg_ctl_executable = format!("{}/bin/pg_ctl", &self.pg_settings.executables_dir);
let mut process = Command::new(
pg_ctl_executable,
)
.args(&[
"stop", "-w", "-D", &self.pg_settings.database_dir,
])
.spawn()
.expect(
"failed to stop postgresql process",
);
match process.try_wait() {
Ok(Some(status)) => {
println!("postgresql stopped");
self.process = None;
},
Ok(None) => {
println!("... waiting for postgresql to stop");
let res = process.wait();
println!("result: {:?}", res);
}
Err(e) => println!("postgresql not stopped properly: {}", e),
}
Ok(())
}
pub async fn create_password_file(&self) -> anyhow::Result<()> {
let file_path = format!(
"{}/{}",
&self.pg_settings.executables_dir, "pwfile"
);
let mut file = async_std::fs::File::create(&file_path).await?;
let _ = file
.write(&self.pg_settings.password.as_bytes())
.await?;
Ok(())
}
}
#[cfg(test)]
mod postgres_tests {
use super::*;
}