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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
use crossbeam::channel::{bounded, unbounded, Receiver, Sender};
use cursive_core::direction::Direction;
use cursive_core::event::{AnyCb, Event, EventResult};
use cursive_core::theme::PaletteColor;
use cursive_core::utils::markup::StyledString;
use cursive_core::view::{CannotFocus, Selector, View, ViewNotFound};
use cursive_core::views::TextView;
use cursive_core::{Cursive, Printer, Rect, Vec2};
use interpolation::Ease;
use log::warn;
use num::clamp;
use send_wrapper::SendWrapper;
use std::thread;
use std::time::Instant;
use crate::{infinite::FPS, utils, AsyncView};
pub enum AsyncProgressState<V: View> {
Pending(f32),
Error(String),
Available(V),
}
pub struct AnimationProgressFrame {
pub content: StyledString,
pub pos: usize,
pub next_frame_idx: usize,
}
pub fn default_progress(
width: usize,
_height: usize,
progress: f32,
pos: usize,
frame_idx: usize,
) -> AnimationProgressFrame {
assert!(progress >= 0.0);
assert!(progress <= 1.0);
let foreground = PaletteColor::Highlight;
let background = PaletteColor::HighlightInactive;
let symbol = "━";
let duration = 30;
let durationf = duration as f64;
let next_pos = width as f32 * progress;
let offset = next_pos as usize - pos;
let idx = frame_idx % duration;
let idxf = idx as f64;
let factor = (idxf / durationf).circular_out();
let end = (pos as f64 + offset as f64 * factor) as usize;
let mut result = StyledString::new();
result.append_styled(utils::repeat_str(symbol, end), foreground);
result.append_styled(utils::repeat_str(symbol, width - end), background);
AnimationProgressFrame {
content: result,
pos: end,
next_frame_idx: idx + 1,
}
}
pub fn default_progress_error(
msg: String,
width: usize,
_height: usize,
progress: f32,
pos: usize,
frame_idx: usize,
) -> AnimationProgressFrame {
assert!(progress >= 0.0);
assert!(progress <= 1.0);
let foreground = PaletteColor::Highlight;
let background = PaletteColor::HighlightInactive;
let symbol = "━";
let duration = 30;
let durationf = duration as f64;
let idx = frame_idx;
let idxf = idx as f64;
let factor = (idxf / durationf).circular_in_out();
let mut offset = width as f64 * factor;
let padding = width.saturating_sub(msg.len()) / 2;
let mut background_content = format!(
"{}{}{}",
utils::repeat_str(" ", padding),
msg,
utils::repeat_str(" ", padding),
);
if background_content
.as_str()
.get(0..offset as usize)
.is_none()
{
offset += 2_f64;
}
let end = pos + offset as usize;
background_content.truncate(offset as usize);
let mut result = StyledString::new();
result.append_plain(background_content);
result.append_styled(
utils::repeat_str(symbol, {
if (pos + offset as usize) < width {
pos
} else {
width.saturating_sub(offset as usize)
}
}),
foreground,
);
result.append_styled(
utils::repeat_str(symbol, width.saturating_sub(end)),
background,
);
AnimationProgressFrame {
content: result,
pos,
next_frame_idx: frame_idx + 1,
}
}
pub struct AsyncProgressView<T: View> {
view: AsyncProgressState<T>,
loading: TextView,
progress_fn: Box<dyn Fn(usize, usize, f32, usize, usize) -> AnimationProgressFrame + 'static>,
error_fn:
Box<dyn Fn(String, usize, usize, f32, usize, usize) -> AnimationProgressFrame + 'static>,
width: Option<usize>,
height: Option<usize>,
view_rx: Receiver<AsyncProgressState<T>>,
frame_index: usize,
dropped: Sender<()>,
pos: usize,
}
impl<T: View> AsyncProgressView<T> {
pub fn new<F>(siv: &mut Cursive, creator: F) -> Self
where
F: FnMut() -> AsyncProgressState<T> + 'static,
{
let (view_tx, view_rx) = unbounded();
let (error_tx, error_rx) = bounded(1);
Self::polling_cb(
siv,
Instant::now(),
SendWrapper::new(view_tx),
error_rx,
creator,
);
Self {
view: AsyncProgressState::Pending(0.0),
loading: TextView::new(""),
progress_fn: Box::new(default_progress),
error_fn: Box::new(default_progress_error),
width: None,
height: None,
view_rx,
frame_index: 0,
dropped: error_tx,
pos: 0,
}
}
fn polling_cb<F>(
siv: &mut Cursive,
instant: Instant,
chan: SendWrapper<Sender<AsyncProgressState<T>>>,
error_chan: Receiver<()>,
mut cb: F,
) where
F: FnMut() -> AsyncProgressState<T> + 'static,
{
let res = cb();
match res {
AsyncProgressState::Pending(_) => {
let sink = siv.cb_sink().clone();
let cb = SendWrapper::new(cb);
match chan.send(res) {
Ok(_) => {},
Err(send_err) => warn!("Could not send progress to AsyncProgressView. It probably has been dropped before the asynchronous initialization of a view has been finished: {}", send_err),
}
thread::spawn(move || {
if let Some(duration) = FPS.checked_sub(instant.elapsed()) {
thread::sleep(duration);
}
match sink.send(Box::new(move |siv| {
Self::polling_cb(siv, Instant::now(), chan, error_chan, cb.take())
})) {
Ok(_) => {}
Err(send_err) => {
warn!("Could not send callback to cursive. It probably has been dropped before the asynchronous initialization of a view has been finished: {}", send_err);
}
}
});
}
AsyncProgressState::Error(content) => {
AsyncView::<T>::error_anim_cb(siv, error_chan);
match chan.send(AsyncProgressState::Error(content)) {
Ok(_) => {}
Err(send_err) => {
warn!("View has been dropped before asynchronous initialization has been finished. Check if you removed this view from Cursive: {}", send_err);
}
}
}
AsyncProgressState::Available(view) => {
match chan.send(AsyncProgressState::Available(view)) {
Ok(_) => {}
Err(send_err) => {
warn!("View has been dropped before asynchronous initialization has been finished. Check if you removed this view from Cursive: {}", send_err);
}
}
}
}
}
pub fn with_width(mut self, width: usize) -> Self {
self.set_width(width);
self
}
pub fn with_height(mut self, height: usize) -> Self {
self.set_height(height);
self
}
pub fn with_progress_fn<F>(mut self, progress_fn: F) -> Self
where
F: Fn(usize, usize, f32, usize, usize) -> AnimationProgressFrame + 'static,
{
self.set_progress_fn(progress_fn);
self
}
pub fn with_error_fn<F>(mut self, error_fn: F) -> Self
where
F: Fn(String, usize, usize, f32, usize, usize) -> AnimationProgressFrame + 'static,
{
self.set_error_fn(error_fn);
self
}
pub fn set_width(&mut self, width: usize) {
self.width = Some(width);
}
pub fn set_height(&mut self, height: usize) {
self.height = Some(height);
}
pub fn set_progress_fn<F>(&mut self, progress_fn: F)
where
F: Fn(usize, usize, f32, usize, usize) -> AnimationProgressFrame + 'static,
{
self.progress_fn = Box::new(progress_fn);
}
pub fn set_error_fn<F>(&mut self, error_fn: F)
where
F: Fn(String, usize, usize, f32, usize, usize) -> AnimationProgressFrame + 'static,
{
self.error_fn = Box::new(error_fn);
}
pub fn inherit_width(&mut self) {
self.width = None;
}
pub fn inherit_height(&mut self) {
self.height = None;
}
}
impl<T: View> Drop for AsyncProgressView<T> {
fn drop(&mut self) {
match self.dropped.send(()) {
Ok(_) => {}
Err(send_err) => warn!(
"Refreshing thread has been dropped before view has, this has no impact on your code and is a bug: {}",
send_err
),
}
}
}
impl<T: View + Sized> View for AsyncProgressView<T> {
fn draw(&self, printer: &Printer) {
match &self.view {
AsyncProgressState::Available(v) => {
v.draw(printer);
}
AsyncProgressState::Error(_) | AsyncProgressState::Pending(_) => {
self.loading.draw(printer)
}
}
}
fn layout(&mut self, vec: Vec2) {
match &mut self.view {
AsyncProgressState::Available(v) => v.layout(vec),
AsyncProgressState::Error(_) | AsyncProgressState::Pending(_) => {
self.loading.layout(vec)
}
}
}
fn needs_relayout(&self) -> bool {
match &self.view {
AsyncProgressState::Available(v) => v.needs_relayout(),
AsyncProgressState::Error(_) | AsyncProgressState::Pending(_) => {
self.loading.needs_relayout()
}
}
}
fn required_size(&mut self, constraint: Vec2) -> Vec2 {
if !matches!(self.view, AsyncProgressState::Available(_)) {
if let Ok(state) = self.view_rx.try_recv() {
self.view = state
}
}
match &mut self.view {
AsyncProgressState::Available(v) => v.required_size(constraint),
AsyncProgressState::Pending(value) => {
let width = self.width.unwrap_or(constraint.x);
let height = self.height.unwrap_or(constraint.y);
let AnimationProgressFrame {
content,
pos,
next_frame_idx,
} = (self.progress_fn)(
width,
height,
clamp(*value, 0.0, 1.0),
self.pos,
self.frame_index,
);
self.pos = pos;
self.frame_index = next_frame_idx;
self.loading.set_content(content);
self.loading.required_size(constraint)
}
AsyncProgressState::Error(msg) => {
let width = self.width.unwrap_or(constraint.x);
let height = self.height.unwrap_or(constraint.y);
let AnimationProgressFrame {
content,
pos,
next_frame_idx,
} = (self.error_fn)(
(*msg).to_string(),
width,
height,
0.5,
self.pos,
self.frame_index,
);
self.pos = pos;
self.frame_index = next_frame_idx;
self.loading.set_content(content);
self.loading.required_size(constraint)
}
}
}
fn on_event(&mut self, ev: Event) -> EventResult {
match &mut self.view {
AsyncProgressState::Available(v) => v.on_event(ev),
AsyncProgressState::Error(_) | AsyncProgressState::Pending(_) => {
self.loading.on_event(ev)
}
}
}
fn call_on_any<'a>(&mut self, sel: &Selector, cb: AnyCb<'a>) {
match &mut self.view {
AsyncProgressState::Available(v) => v.call_on_any(sel, cb),
AsyncProgressState::Error(_) | AsyncProgressState::Pending(_) => {
self.loading.call_on_any(sel, cb)
}
}
}
fn focus_view(&mut self, sel: &Selector) -> Result<EventResult, ViewNotFound> {
match &mut self.view {
AsyncProgressState::Available(v) => v.focus_view(sel),
AsyncProgressState::Error(_) | AsyncProgressState::Pending(_) => {
self.loading.focus_view(sel)
}
}
}
fn take_focus(&mut self, source: Direction) -> Result<EventResult, CannotFocus> {
match &mut self.view {
AsyncProgressState::Available(v) => v.take_focus(source),
AsyncProgressState::Error(_) | AsyncProgressState::Pending(_) => {
self.loading.take_focus(source)
}
}
}
fn important_area(&self, view_size: Vec2) -> Rect {
match &self.view {
AsyncProgressState::Available(v) => v.important_area(view_size),
AsyncProgressState::Error(_) | AsyncProgressState::Pending(_) => {
self.loading.important_area(view_size)
}
}
}
}