p5 0.10.0

A tui client for Pulumi
Documentation
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
use std::collections::HashMap;

use pulumi_automation::{
    event::{EngineEvent, EventType, ResOpFailedDetails, ResOutputsDetails, ResourcePreDetails},
    local::{LocalStack, LocalWorkspace},
    stack::StackChangeSummary,
    workspace::{Deployment, OutputMap, StackSettings, StackSummary},
};
use ratatui::widgets::ListState;
use tui_input::Input;

use crate::widgets::ResourceListState;

type Result<T> = std::result::Result<T, String>;

#[derive(Default)]
pub struct AppState {
    pub context_stack: Vec<AppContext>,
    pub command_prompt: Input,
    pub selected_workspace: Option<WorkspaceState>,

    pub workspace_list_state: ListState,
    pub stack_list_state: ListState,

    pub toast: Option<(chrono::DateTime<chrono::Utc>, String)>,

    pub workspaces: Loadable<Vec<LocalWorkspace>>,

    /// workspace paths to their outputs
    pub workspace_store: HashMap<String, WorkspaceOutputs>,
}

impl AppState {
    pub fn push_context(&mut self, context: AppContext) {
        if let Some(current_context) = self.context_stack.last() {
            if current_context == &context {
                return; // No need to push the same context again
            }
        }

        match context {
            AppContext::WorkspaceList => {
                self.context_stack.clear();
            }
            AppContext::StackList => {
                self.context_stack.clear();
                self.context_stack.push(AppContext::WorkspaceList);
            }
            AppContext::Stack(_) => {
                self.context_stack.clear();
                self.context_stack.push(AppContext::WorkspaceList);
                self.context_stack.push(AppContext::StackList);
            }
            _ => {}
        }

        self.context_stack.push(context);
    }

    pub fn try_selected_workspace(&self) -> Option<LocalWorkspace> {
        if let Some(i) = self.workspace_list_state.selected() {
            if let Some(workspace) = self.workspaces.as_option().and_then(|ws| ws.get(i)) {
                return Some(workspace.clone());
            }
        }

        None
    }

    pub fn try_selected_stack(&self) -> Option<StackSummary> {
        if let Some(state) = &self.selected_workspace {
            if let Some(i) = self.stack_list_state.selected() {
                if let Some(outputs) = self.workspace_store.get(&state.workspace_path) {
                    if let Some(stack) = outputs.stacks.as_option().and_then(|stacks| stacks.get(i))
                    {
                        return Some(stack.clone());
                    }
                }
            }
        }

        None
    }

    pub fn select_workspace_by_cwd(&mut self, cwd: &str) -> () {
        if let Some(i) = self
            .workspaces
            .as_option()
            .and_then(|ws| ws.iter().position(|w| w.cwd == cwd))
        {
            self.workspace_list_state.select(Some(i));
        }

        self.selected_workspace = Some(WorkspaceState {
            workspace_path: cwd.to_string(),
            selected_stack: None,
        });
    }

    pub fn select_stack_by_name_and_cwd(&mut self, stack_name: &str, cwd: &str) -> () {
        self.select_workspace_by_cwd(cwd);

        if let Some(state) = self.selected_workspace.as_mut() {
            if let Some(outputs) = self.workspace_store.get_mut(&state.workspace_path) {
                if let Some(i) = outputs
                    .stacks
                    .as_option()
                    .and_then(|stacks| stacks.iter().position(|s| s.name == stack_name))
                {
                    self.stack_list_state.select(Some(i));
                }
            }

            state.selected_stack = Some(StackState {
                stack_name: stack_name.to_string(),
                resource_state: ResourceListState::default(),
            });
        }
    }

    pub fn background_context(&self) -> AppContext {
        if let Some(context) = self.context_stack.last() {
            if let AppContext::CommandPrompt = context {
                if self.context_stack.len() > 1 {
                    return self.context_stack[self.context_stack.len() - 2].clone();
                }
                return Default::default();
            }
            return context.clone();
        }
        Default::default()
    }

    pub fn current_context(&self) -> AppContext {
        self.context_stack.last().cloned().unwrap_or_default()
    }

    pub fn workspace(&self) -> &Loadable<LocalWorkspace> {
        if let Some(state) = &self.selected_workspace {
            if let Some(outputs) = self.workspace_store.get(&state.workspace_path) {
                return &outputs.workspace;
            }
        }

        &Loadable::NotLoaded
    }

    pub fn stack_state_mut(&mut self) -> Option<&mut StackOutputs> {
        if let Some(state) = self.selected_workspace.as_mut() {
            if let Some(outputs) = self.workspace_store.get_mut(&state.workspace_path) {
                if let Some(stack_name) = state.selected_stack.as_mut() {
                    if let Some(stack_outputs) = outputs.stack_store.get_mut(&stack_name.stack_name)
                    {
                        return Some(stack_outputs);
                    }
                }
            }
        }

        None
    }

    pub fn stack_state(&self) -> Option<&StackOutputs> {
        if let Some(state) = self.selected_workspace.as_ref() {
            if let Some(outputs) = self.workspace_store.get(&state.workspace_path) {
                if let Some(stack_name) = state.selected_stack.as_ref() {
                    if let Some(stack_outputs) = outputs.stack_store.get(&stack_name.stack_name) {
                        return Some(stack_outputs);
                    }
                }
            }
        }

        None
    }

    pub fn stack(&self) -> &Loadable<LocalStack> {
        if let Some(stack_outputs) = self.stack_state() {
            return &stack_outputs.stack;
        }

        &Loadable::NotLoaded
    }

    pub fn stack_outputs(&self) -> &Loadable<OutputMap> {
        if let Some(stack_outputs) = self.stack_state() {
            return &stack_outputs.outputs;
        }

        &Loadable::NotLoaded
    }

    pub fn stack_config(&self) -> &Loadable<StackSettings> {
        if let Some(stack_outputs) = self.stack_state() {
            return &stack_outputs.config;
        }

        &Loadable::NotLoaded
    }

    pub fn stack_state_data(&self) -> &Loadable<Deployment> {
        if let Some(stack_outputs) = self.stack_state() {
            return &stack_outputs.state;
        }

        &Loadable::NotLoaded
    }

    pub fn stack_resource_state(
        &mut self,
    ) -> Option<(&Loadable<Deployment>, &mut ResourceListState)> {
        if let Some(workspace_state) = self.selected_workspace.as_mut() {
            if let Some(stack_name) = workspace_state.selected_stack.as_mut() {
                if let Some(stack_outputs) = self
                    .workspace_store
                    .get_mut(&workspace_state.workspace_path)
                {
                    if let Some(stack_outputs) =
                        stack_outputs.stack_store.get_mut(&stack_name.stack_name)
                    {
                        return Some((&stack_outputs.state, &mut stack_name.resource_state));
                    }
                }
            }
        }
        None
    }

    pub fn stack_operation_state(
        &mut self,
    ) -> Option<(&mut OperationProgress, &mut ResourceListState)> {
        if let Some(workspace_state) = self.selected_workspace.as_mut() {
            if let Some(stack_name) = workspace_state.selected_stack.as_mut() {
                if let Some(stack_outputs) = self
                    .workspace_store
                    .get_mut(&workspace_state.workspace_path)
                {
                    if let Some(stack_outputs) =
                        stack_outputs.stack_store.get_mut(&stack_name.stack_name)
                    {
                        if let Some(operation_progress) = &mut stack_outputs.operation {
                            return Some((operation_progress, &mut stack_name.resource_state));
                        }
                    }
                }
            }
        }
        None
    }

    pub fn operation_progress(&self) -> Option<&OperationProgress> {
        if let Some(stack_outputs) = self.stack_state() {
            return stack_outputs.operation.as_ref();
        }
        None
    }

    pub fn stacks(&self) -> &Loadable<Vec<StackSummary>> {
        if let Some(state) = &self.selected_workspace {
            if let Some(outputs) = self.workspace_store.get(&state.workspace_path) {
                return &outputs.stacks;
            }
        }

        &Loadable::NotLoaded
    }

    pub fn workspaces(&self) -> &Loadable<Vec<LocalWorkspace>> {
        &self.workspaces
    }

    pub fn stack_context(&self) -> StackContext {
        if let AppContext::Stack(stack_context) = self.background_context() {
            return stack_context.clone();
        }
        StackContext::Config
    }
}

#[derive(Debug, Clone, Default)]
pub enum Loadable<T> {
    #[default]
    NotLoaded,
    Loading,
    Loaded(T),
}

impl<T> Loadable<T> {
    pub fn is_loaded(&self) -> bool {
        matches!(self, Loadable::Loaded(_))
    }

    pub fn is_loading(&self) -> bool {
        matches!(self, Loadable::Loading)
    }

    pub fn is_not_loaded(&self) -> bool {
        matches!(self, Loadable::NotLoaded)
    }

    pub fn as_mut_or_default(&mut self, default: T) -> &mut T {
        match self {
            Loadable::Loaded(value) => value,
            Loadable::Loading | Loadable::NotLoaded => {
                *self = Loadable::Loaded(default);
                if let Loadable::Loaded(value) = self {
                    value
                } else {
                    unreachable!()
                }
            }
        }
    }

    pub fn as_ref(&self) -> Loadable<&T> {
        match self {
            Loadable::Loaded(value) => Loadable::Loaded(value),
            Loadable::Loading => Loadable::Loading,
            Loadable::NotLoaded => Loadable::NotLoaded,
        }
    }

    pub fn as_option(&self) -> Option<&T> {
        match self {
            Loadable::Loaded(value) => Some(value),
            Loadable::Loading | Loadable::NotLoaded => None,
        }
    }
}

#[derive(Default)]
pub struct WorkspaceOutputs {
    pub workspace: Loadable<LocalWorkspace>,
    pub stacks: Loadable<Vec<StackSummary>>,
    /// stack names to their outputs
    pub stack_store: HashMap<String, StackOutputs>,
}

#[derive(Default)]
pub struct StackOutputs {
    pub stack: Loadable<LocalStack>,
    pub outputs: Loadable<OutputMap>,
    pub config: Loadable<StackSettings>,
    pub state: Loadable<Deployment>,
    pub operation: Option<OperationProgress>,
}

#[derive(Clone, Debug)]
pub enum ProgramOperation {
    Update,
    Destroy,
    Refresh,
}

#[derive(Default, Debug)]
pub struct WorkspaceState {
    pub workspace_path: String,
    pub selected_stack: Option<StackState>,
}

#[derive(Debug)]
pub struct StackState {
    pub stack_name: String,
    pub resource_state: ResourceListState,
}

#[derive(Clone, Default, Debug, Eq, PartialEq)]
pub enum AppContext {
    CommandPrompt,
    #[default]
    WorkspaceList,
    StackList,
    Stack(StackContext),
}

#[derive(Clone, Default, Debug, Eq, PartialEq)]
pub enum StackContext {
    Outputs,
    #[default]
    Config,
    Resources,
    Operation(OperationContext),
}

#[derive(Clone, Debug, Eq, PartialEq)]
pub enum OperationContext {
    Details,
    Summary,
    Events,
}

#[derive(Debug, Clone)]
pub struct OperationProgress {
    pub operation: ProgramOperation,
    pub options: Option<OperationOptions>,
    // loaded before executing for user review
    pub change_summary: Loadable<StackChangeSummary>,
    // loaded during execution
    pub events: Loadable<OperationEvents>,
}

impl OperationProgress {
    pub fn is_preview(&self) -> bool {
        if let Some(options) = &self.options {
            options.preview_only
        } else {
            false
        }
    }

    pub fn is_skip_preview(&self) -> bool {
        if let Some(options) = &self.options {
            options.skip_preview
        } else {
            false
        }
    }
}

#[derive(Clone, Default, Debug)]
pub struct OperationOptions {
    pub preview_only: bool,
    pub skip_preview: bool,
}

#[derive(Debug, Clone, Default)]
pub struct OperationEvents {
    pub events: Vec<EngineEvent>,
    pub states: Vec<ResourceOperationState>,
    pub done: bool,
}

#[derive(Debug, Clone)]
pub enum ResourceOperationState {
    InProgress {
        sequence: i64,
        start_time: chrono::DateTime<chrono::Utc>,
        pre_event: ResourcePreDetails,
    },
    Completed {
        sequence: i64,
        start_time: chrono::DateTime<chrono::Utc>,
        end_time: chrono::DateTime<chrono::Utc>,
        pre_event: ResourcePreDetails,
        out_event: ResOutputsDetails,
    },
    Failed {
        sequence: i64,
        start_time: chrono::DateTime<chrono::Utc>,
        end_time: chrono::DateTime<chrono::Utc>,
        pre_event: ResourcePreDetails,
        failed_event: ResOpFailedDetails,
    },
}

impl OperationEvents {
    fn find_in_progress_state_mut(&mut self, urn: &str) -> Result<&mut ResourceOperationState> {
        if let Some((index, _)) = self.states.iter().enumerate().find(|(_, state)| {
            if let ResourceOperationState::InProgress { pre_event, .. } = state {
                pre_event.metadata.urn == urn
            } else {
                false
            }
        }) {
            Ok(&mut self.states[index])
        } else {
            Err("InProgress state not found for the given URN".to_string())
        }
    }

    pub fn apply_event(&mut self, event: EngineEvent) -> Result<()> {
        self.events.push(event.clone());

        let event_time = event
            .timestamp
            .map_or(Some(chrono::Utc::now()), |t| {
                chrono::DateTime::from_timestamp(t, 0)
            })
            .unwrap_or_default();

        match event.event {
            EventType::ResourcePreEvent { details, .. } => {
                let state = ResourceOperationState::InProgress {
                    sequence: event.sequence.unwrap_or_default(),
                    start_time: event_time,
                    pre_event: details,
                };
                self.states.push(state);
            }
            EventType::ResOutputsEvent { details, .. } => {
                let urn = &details.metadata.urn;
                let state = self.find_in_progress_state_mut(urn)?;

                // Transform the InProgress state into a Completed state
                if let ResourceOperationState::InProgress {
                    sequence,
                    start_time,
                    pre_event,
                } = state.clone()
                {
                    *state = ResourceOperationState::Completed {
                        sequence,
                        start_time,
                        end_time: event_time,
                        pre_event,
                        out_event: details,
                    };
                }
            }
            EventType::ResOpFailedEvent { details, .. } => {
                let urn = &details.metadata.urn;
                let state = self.find_in_progress_state_mut(urn)?;

                // Transform the InProgress state into a Failed state
                if let ResourceOperationState::InProgress {
                    sequence,
                    start_time,
                    pre_event,
                } = state.clone()
                {
                    *state = ResourceOperationState::Failed {
                        sequence,
                        start_time,
                        end_time: event_time,
                        pre_event,
                        failed_event: details,
                    };
                }
            }
            _ => {}
        }

        Ok(())
    }
}