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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
use futures::future::BoxFuture;
use futures::{TryFutureExt};
use std::process::{Command, Child};
use crate::fetch;
use crate::errors::PgEmbedError;
use tokio::io::AsyncWriteExt;
use crate::errors::PgEmbedError::PgCleanUpFailure;
pub struct PgSettings {
pub executables_dir: String,
pub database_dir: String,
pub port: i16,
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 Drop for PgEmbed {
fn drop(&mut self) {
&self.process.as_mut().map(|p| p.kill());
if !&self.pg_settings.persistent {
&self.clean();
}
}
}
impl PgEmbed {
pub fn new(pg_settings: PgSettings, fetch_settings: fetch::FetchSettings) -> Self {
PgEmbed {
pg_settings,
fetch_settings,
process: None,
}
}
pub fn clean(&self) -> Result<(), PgEmbedError> {
let bin_dir = format!("{}/bin", &self.pg_settings.executables_dir);
let lib_dir = format!("{}/lib", &self.pg_settings.executables_dir);
let share_dir = format!("{}/share", &self.pg_settings.executables_dir);
let pw_file = format!("{}/pwfile", &self.pg_settings.executables_dir);
std::fs::remove_dir_all(&self.pg_settings.database_dir).map_err(|e| PgCleanUpFailure(e))?;
std::fs::remove_dir_all(bin_dir).map_err(|e| PgCleanUpFailure(e))?;
std::fs::remove_dir_all(lib_dir).map_err(|e| PgCleanUpFailure(e))?;
std::fs::remove_dir_all(share_dir).map_err(|e| PgCleanUpFailure(e))?;
std::fs::remove_file(pw_file).map_err(|e| PgCleanUpFailure(e))?;
Ok(())
}
pub async fn setup(&self) -> Result<(), PgEmbedError> {
&self.aquire_postgres().await?;
&self.create_password_file().await?;
&self.init_db().await?;
Ok(())
}
pub async fn aquire_postgres(&self) -> Result<(), PgEmbedError> {
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) -> Result<bool, PgEmbedError> {
let database_path = std::path::Path::new(&self.pg_settings.database_dir);
if !database_path.is_dir() {
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().map_err(|e| PgEmbedError::PgInitFailure(e))?;
Ok(true)
} else {
Ok(false)
}
}
pub async fn start_db(&mut self) -> Result<(), PgEmbedError> {
let pg_ctl_executable = format!("{}/bin/pg_ctl", &self.pg_settings.executables_dir);
let port_arg = format!("-F -p {}", &self.pg_settings.port.to_string());
let mut process = Command::new(
pg_ctl_executable,
)
.args(&[
"-o", &port_arg, "start", "-w", "-D", &self.pg_settings.database_dir
])
.spawn().map_err(|e| PgEmbedError::PgStartFailure(e))?;
self.process = Some(process);
Ok(())
}
pub async fn stop_db(&mut self) -> Result<(), PgEmbedError> {
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().map_err(|e| PgEmbedError::PgStopFailure(e))?;
match process.try_wait() {
Ok(Some(status)) => {
println!("postgresql stopped");
self.process = None;
Ok(())
}
Ok(None) => {
println!("... waiting for postgresql to stop");
let res = process.wait();
println!("result: {:?}", res);
Ok(())
}
Err(e) => Err(PgEmbedError::PgStopFailure(e)),
}
}
pub async fn create_password_file(&self) -> Result<(), PgEmbedError> {
let file_path = format!(
"{}/{}",
&self.pg_settings.executables_dir, "pwfile"
);
let mut file: tokio::fs::File = tokio::fs::File::create(&file_path).map_err(|e| PgEmbedError::WriteFileError(e)).await?;
let _ = file
.write(&self.pg_settings.password.as_bytes()).map_err(|e| PgEmbedError::WriteFileError(e))
.await?;
Ok(())
}
}