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
use std::path::PathBuf;
use native_dialog::FileDialog;
use thiserror::Error;
#[derive(Error, Debug)]
pub enum ImNativeDialogError {
#[error("The dialog is already open.")]
AlreadyOpen,
}
pub struct ImNativeFileDialog<T> {
receiver: Option<crossbeam_channel::Receiver<Result<T, native_dialog::Error>>>,
}
impl<T> Default for ImNativeFileDialog<T> {
fn default() -> Self {
Self { receiver: None }
}
}
impl ImNativeFileDialog<Vec<PathBuf>> {
pub fn show_open_multiple_file(
&mut self,
location: Option<PathBuf>,
) -> Result<(), ImNativeDialogError> {
self.show(|sender, dialog| {
let dialog = match &location {
Some(location) => dialog.set_location(location),
None => dialog,
};
let result = dialog.show_open_multiple_file();
sender
.send(result)
.expect("error sending show_open_multiple_file result to ui");
drop(location)
})
}
}
impl ImNativeFileDialog<Option<PathBuf>> {
pub fn open_single_dir(
&mut self,
location: Option<PathBuf>,
) -> Result<(), ImNativeDialogError> {
self.show(|sender, dialog| {
let dialog = match &location {
Some(location) => dialog.set_location(location),
None => dialog,
};
let result = dialog.show_open_single_dir();
sender
.send(result)
.expect("error sending open_single_dir result to ui");
drop(location)
})
}
pub fn open_single_file(
&mut self,
location: Option<PathBuf>,
) -> Result<(), ImNativeDialogError> {
self.show(|sender, dialog| {
let dialog = match &location {
Some(location) => dialog.set_location(location),
None => dialog,
};
let result = dialog.show_open_single_file();
sender
.send(result)
.expect("error sending open_single_file result to ui");
drop(location)
})
}
pub fn show_save_single_file(
&mut self,
location: Option<PathBuf>,
) -> Result<(), ImNativeDialogError> {
self.show(|sender, dialog| {
let dialog = match &location {
Some(location) => dialog.set_location(location),
None => dialog,
};
let result = dialog.show_save_single_file();
sender
.send(result)
.expect("error sending show_save_single_file result to ui");
drop(location)
})
}
}
impl<T: Send + 'static + Default> ImNativeFileDialog<T> {
pub fn show<
F: FnOnce(crossbeam_channel::Sender<Result<T, native_dialog::Error>>, FileDialog)
+ Send
+ 'static,
>(
&mut self,
run: F,
) -> Result<(), ImNativeDialogError> {
if self.receiver.is_some() {
return Err(ImNativeDialogError::AlreadyOpen);
}
let (sender, receiver) = crossbeam_channel::bounded(1);
std::thread::spawn(move || {
let dialog = FileDialog::new();
run(sender, dialog)
});
self.receiver = Some(receiver);
Ok(())
}
pub fn check(&mut self) -> Option<Result<T, native_dialog::Error>> {
match self.receiver.take() {
Some(receiver) => match receiver.try_recv() {
Ok(result) => Some(result),
Err(crossbeam_channel::TryRecvError::Disconnected) => {
log::warn!("OpenDialog channel disconnected");
Some(Ok(T::default()))
}
Err(crossbeam_channel::TryRecvError::Empty) => {
self.receiver = Some(receiver);
None
}
},
None => None,
}
}
pub fn is_open(&self) -> bool {
self.receiver.is_some()
}
}