forked from qdrant/qdrant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstartup.rs
59 lines (50 loc) · 2.01 KB
/
startup.rs
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
//! Contains a collection of functions that are called at the start of the program.
use std::backtrace::Backtrace;
use std::panic;
use std::path::PathBuf;
use crate::common::error_reporting::ErrorReporter;
const DEFAULT_INITIALIZED_FILE: &str = ".qdrant-initialized";
fn get_init_file_path() -> PathBuf {
std::env::var("QDRANT_INIT_FILE_PATH")
.map(PathBuf::from)
.unwrap_or_else(|_| DEFAULT_INITIALIZED_FILE.into())
}
pub fn setup_panic_hook(reporting_enabled: bool, reporting_id: String) {
panic::set_hook(Box::new(move |panic_info| {
let backtrace = Backtrace::force_capture().to_string();
let loc = if let Some(loc) = panic_info.location() {
format!(" in file {} at line {}", loc.file(), loc.line())
} else {
String::new()
};
let message = if let Some(s) = panic_info.payload().downcast_ref::<&str>() {
s
} else if let Some(s) = panic_info.payload().downcast_ref::<String>() {
s
} else {
"Payload not captured as it is not a string."
};
log::error!("Panic backtrace: \n{}", backtrace);
log::error!("Panic occurred{loc}: {message}");
if reporting_enabled {
ErrorReporter::report(message, &reporting_id, Some(&loc));
}
}));
}
/// Creates a file that indicates that the server has been started.
/// This file is used to check if the server has been successfully started before potential kill.
pub fn touch_started_file_indicator() {
if let Err(err) = std::fs::write(get_init_file_path(), "") {
log::warn!("Failed to create init file indicator: {}", err);
}
}
/// Removes a file that indicates that the server has been started.
/// Use before server initialization to avoid false positives.
pub fn remove_started_file_indicator() {
let path = get_init_file_path();
if path.exists() {
if let Err(err) = std::fs::remove_file(path) {
log::warn!("Failed to remove init file indicator: {}", err);
}
}
}