summaryrefslogtreecommitdiffstats
path: root/src/preview.rs
blob: f6bad98c9fee828a552d258c8f3e793ac57f530c (plain)
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
use std::io::Write;
use std::sync::Mutex;
use std::sync::Arc;

use crate::coordinates::{Coordinates, Position, Size};
use crate::files::{File, Files, Kind};
use crate::listview::ListView;
use crate::textview::TextView;
use crate::widget::Widget;
use crate::async_widget::AsyncPlug;


lazy_static! {
    static ref PIDS: Arc<Mutex<Vec<u32>>> = { Arc::new(Mutex::new(vec![])) };
    static ref CURFILE: Arc<Mutex<Option<File>>> = { Arc::new(Mutex::new(None)) };
}

fn kill_procs() {
    let mut pids = PIDS.lock().unwrap();
    for pid in &*pids {
        unsafe { libc::kill(*pid as i32, 9); }
    }
    pids.clear();
}

fn is_current(file: &File) -> bool {
    true
    //CURFILE.lock().unwrap().as_ref().unwrap() == file
}

#[derive(PartialEq)]
pub struct AsyncPreviewer {
    pub file: Option<File>,
    pub buffer: String,
    pub coordinates: Coordinates,
    pub async_plug: AsyncPlug
}

impl AsyncPreviewer {
    pub fn new() -> AsyncPreviewer {
        let textview = crate::textview::TextView {
            lines: vec![],
            buffer: "".to_string(),
            coordinates: Coordinates::new(),
        };
        let textview = Box::new(textview);

        AsyncPreviewer {
            file: None,
            buffer: String::new(),
            coordinates: Coordinates::new(),
            async_plug: AsyncPlug::new(textview)
        }
    }
    pub fn set_file(&mut self, file: &File) {
        let coordinates = self.coordinates.clone();
        let file = file.clone();
        let redraw = crate::term::reset() + &self.get_redraw_empty_list(0);

        self.async_plug.replace_widget(Box::new(move || {
            kill_procs();
            let mut bufout = std::io::BufWriter::new(std::io::stdout());
            match &file.kind {
                Kind::Directory => match Files::new_from_path(&file.path) {
                    Ok(files) => {
                        //if !is_current(&file) { return }
                        let len = files.len();
                        //if len == 0 { return };
                        let mut file_list = ListView::new(files);
                        file_list.set_coordinates(&coordinates);
                        file_list.refresh();
                        //if !is_current(&file) { return }
                        file_list.animate_slide_up();
                        return Box::new(file_list) as Box<dyn Widget + Send>;

                    }
                    Err(err) => {
                        write!(bufout, "{}", redraw).unwrap();
                        let textview = crate::textview::TextView {
                            lines: vec![],
                            buffer: "".to_string(),
                            coordinates: Coordinates::new(),
                        };
                        return Box::new(textview) as Box<dyn Widget + Send>;
                    },
                }
                _ => {
                    if file.get_mime() == Some("text".to_string()) {
                        let mut textview = TextView::new_from_file(&file);
                        //if !is_current(&file) { return }
                        textview.set_coordinates(&coordinates);
                        textview.refresh();
                        //if !is_current(&file) { return }
                        textview.animate_slide_up();
                        return Box::new(textview);
                    } else {
                        let process =
                            std::process::Command::new("scope.sh")
                            .arg(&file.name)
                            .arg("10".to_string())
                            .arg("10".to_string())
                            .arg("".to_string())
                            .arg("false".to_string())
                            .stdin(std::process::Stdio::null())
                            .stdout(std::process::Stdio::piped())
                            .stderr(std::process::Stdio::null())
                            .spawn().unwrap();

                        // let pid = process.id();
                        // PIDS.lock().unwrap().push(pid);

                        //if !is_current(&file) { return }

                        let output = process.wait_with_output();
                        //if output.is_err() { return }
                        let output = output.unwrap();

                        let status = output.status.code();
                        //if status.is_none() { return }
                        let status = status.unwrap();

                        if status == 0 || status == 5 && is_current(&file) {
                            let output = std::str::from_utf8(&output.stdout)
                                .unwrap()
                                .to_string();
                            let mut textview = TextView {
                                lines: output.lines().map(|s| s.to_string()).collect(),
                                buffer: String::new(),
                                coordinates: Coordinates::new() };
                            textview.set_coordinates(&coordinates);
                            textview.refresh();
                            textview.animate_slide_up();
                            return Box::new(textview);
                        }

                    }

                    write!(bufout, "{}", redraw).unwrap();
                    //std::io::stdout().flush().unwrap();
                    let textview = crate::textview::TextView {
                        lines: vec![],
                        buffer: "".to_string(),
                        coordinates: Coordinates::new(),
                    };
                    return Box::new(textview);
                }
            }
        }));
    }
}

#[derive(PartialEq)]
pub struct Previewer {
    pub file: Option<File>,
    pub buffer: String,
    pub coordinates: Coordinates,
}

impl Previewer {
    pub fn new() -> Previewer {
        Previewer {
            file: None,
            buffer: String::new(),
            coordinates: Coordinates::new(),
        }
    }
    pub fn set_file(&mut self, file: &File) {
        let coordinates = self.coordinates.clone();
        let file = file.clone();
        let redraw = crate::term::reset() + &self.get_redraw_empty_list(0);

        *CURFILE.lock().unwrap() = Some(file.clone());

        std::thread::spawn(move || {
            kill_procs();
            match &file.kind {
                Kind::Directory => match Files::new_from_path(&file.path) {
                    Ok(files) => {
                        if !is_current(&file) { return }
                        let len = files.len();
                        if len == 0 { return };
                        let mut file_list = ListView::new(files);
                        file_list.set_coordinates(&coordinates);
                        file_list.refresh();
                        if !is_current(&file) { return }
                        file_list.animate_slide_up();

                    }
                    Err(err) => {
                        crate::window::show_status(&format!("Can't preview because: {}", err));
                    }

                },
                _ => {
                    if file.get_mime() == Some("text".to_string()) {
                        let mut textview = TextView::new_from_file(&file);
                        if !is_current(&file) { return }
                        textview.set_coordinates(&coordinates);
                        textview.refresh();
                        if !is_current(&file) { return }
                        textview.animate_slide_up();
                    } else {
                        let process =
                            std::process::Command::new("scope.sh")
                            .arg(&file.name)
                            .arg("10".to_string())
                            .arg("10".to_string())
                            .arg("".to_string())
                            .arg("false".to_string())
                            .stdin(std::process::Stdio::null())
                            .stdout(std::process::Stdio::piped())
                            .stderr(std::process::Stdio::null())
                            .spawn().unwrap();

                        let pid = process.id();
                        PIDS.lock().unwrap().push(pid);

                        if !is_current(&file) { return }

                        let output = process.wait_with_output();
                        if output.is_err() { return }
                        let output = output.unwrap();

                        let status = output.status.code();
                        if status.is_none() { return }
                        let status = status.unwrap();

                        if