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
use std::fmt::Display;

use ratatui::{
    style::{Style, Stylize},
    text::{Line, Span},
};
use serde::{Deserialize, Serialize};

use crate::render::Render;

#[derive(Default, Deserialize, Serialize, Debug)]
pub struct RunResult {
    #[serde(default)]
    pub elapsed_time: u32,
    #[serde(default)]
    pub finished: bool,
    // pub expected_elapsed_time: u32,
    // pub expected_lang: String,
    // pub expected_memory: u128,
    // pub expected_run_success: bool,
    // pub expected_status_code: i32,
    // pub expected_status_runtime: String,
    // pub expected_std_output_list: Vec<String>,
    // pub expected_task_finish_time: u128,
    // pub expected_task_name: String,
    // pub fast_submit: bool,
    #[serde(default)]
    pub task_name: String,

    #[serde(default)]
    pub status_code: i64,
    #[serde(default)]
    pub status_msg: String,

    #[serde(default)]
    pub question_id: String,
    #[serde(default)]
    pub std_output: String,
    #[serde(default)]
    pub expected_output: String,
    #[serde(default)]
    pub last_testcase: String,

    #[serde(default)]
    pub code_answer: Vec<String>,
    // #[serde(default)]
    // pub code_output: String, // test:vec,submit:string, delete the field
    #[serde(default)]
    pub compare_result: String,
    #[serde(default)]
    pub correct_answer: bool,
    #[serde(default)]
    pub expected_code_answer: Vec<String>,
    #[serde(default)]
    pub expected_code_output: Vec<String>,

    #[serde(default)]
    pub pretty_lang: String,
    #[serde(default)]
    pub lang: String,

    #[serde(default)]
    pub memory: u64,
    #[serde(default)]
    pub status_memory: String,
    #[serde(default)]
    pub memory_percentile: Option<f64>,

    #[serde(default)]
    pub status_runtime: String,
    #[serde(default)]
    pub runtime_percentile: Option<f64>,
    #[serde(default)]
    pub run_success: bool,

    #[serde(default)]
    pub state: String,

    #[serde(default)]
    pub std_output_list: Vec<String>,
    #[serde(default)]
    pub submission_id: String,

    #[serde(default)]
    pub task_finish_time: u64,

    #[serde(default)]
    pub total_correct: Option<u64>,
    #[serde(default)]
    pub total_testcases: Option<u64>,

    // runtime error
    #[serde(default)]
    pub full_runtime_error: String,
    #[serde(default)]
    pub runtime_error: String,

    // compile error
    #[serde(default)]
    pub compile_error: String,
    #[serde(default)]
    pub full_compile_error: String,
}

impl Render for RunResult {
    fn to_tui_vec(&self) -> Vec<Line> {
        let mut status_msg_id = vec![
            Line::from(vec![
                Span::styled("  # Status Code: ", Style::default()),
                Span::styled(
                    self.status_code.to_string(),
                    Style::default()
                        .bold()
                        .fg(ratatui::style::Color::Cyan),
                ),
                Span::styled(", Msg: ", Style::default()),
                Span::styled(
                    self.status_msg.to_owned(),
                    Style::default()
                        .bold()
                        .fg(ratatui::style::Color::Cyan),
                ),
            ]),
            Line::from(vec![
                Span::styled("  • Lang: ", Style::default()),
                Span::styled(
                    self.pretty_lang.to_owned(),
                    Style::default()
                        .bold()
                        .fg(ratatui::style::Color::Cyan),
                ),
            ]),
        ];
        if !self.question_id.is_empty() {
            status_msg_id.push(Line::from(vec![
                Span::styled("  • Question ID: ", Style::default()),
                Span::styled(
                    self.question_id.to_owned(),
                    Style::default()
                        .bold()
                        .fg(ratatui::style::Color::Cyan),
                ),
            ]));
        }

        let last_case = vec![Line::from(vec![
            Span::styled("  • Last Testcases: ", Style::default()),
            Span::styled(
                self.last_testcase.to_owned(),
                Style::default()
                    .bold()
                    .fg(ratatui::style::Color::Cyan),
            ),
        ])];
        let total_correct_total_case = vec![
            Line::from(vec![
                Span::styled("  • Total correct: ", Style::default()),
                Span::styled(
                    self.total_correct
                        .unwrap_or_default()
                        .to_string(),
                    Style::default()
                        .bold()
                        .fg(ratatui::style::Color::Cyan),
                ),
            ]),
            Line::from(vec![
                Span::styled("  • Total Testcases: ", Style::default()),
                Span::styled(
                    self.total_testcases
                        .unwrap_or_default()
                        .to_string(),
                    Style::default()
                        .bold()
                        .fg(ratatui::style::Color::Cyan),
                ),
            ]),
        ];

        let mut mem_time = vec![Line::from(vec![
            Span::styled("  • Memory: ", Style::default()),
            Span::styled(
                self.status_memory.to_owned(),
                Style::default()
                    .bold()
                    .fg(ratatui::style::Color::Cyan),
            ),
        ])];
        if self.memory_percentile.is_some() {
            mem_time.push(Line::from(vec![
                Span::styled("  • Memory Low Than: ", Style::default()),
                Span::styled(
                    self.memory_percentile
                        .unwrap_or_default()
                        .to_string(),
                    Style::default()
                        .bold()
                        .fg(ratatui::style::Color::Cyan),
                ),
                Span::styled("%", Style::default()),
            ]));
        }
        mem_time.push(Line::from(vec![
            Span::styled("  • Runtime: ", Style::default()),
            Span::styled(
                self.status_runtime.to_owned(),
                Style::default()
                    .bold()
                    .fg(ratatui::style::Color::Cyan),
            ),
        ]));
        if self.runtime_percentile.is_some() {
            mem_time.push(Line::from(vec![
                Span::styled("  • Fast Than: ", Style::default()),
                Span::styled(
                    self.runtime_percentile
                        .unwrap_or_default()
                        .to_string(),
                    Style::default()
                        .bold()
                        .fg(ratatui::style::Color::Cyan),
                ),
                Span::styled("%", Style::default()),
            ]));
        }

        let full_r_err: Vec<Line> = self
            .full_runtime_error
            .split('\n')
            .map(|v| Line::from(v.to_owned()))
            .collect();
        let mut runtime_err = vec![Line::from("  • Runtime Error:")];
        runtime_err.extend(full_r_err);

        let full_c_err: Vec<Line> = self
            .full_compile_error
            .split('\n')
            .map(|v| Line::from(v.to_owned()))
            .collect();
        let mut compile_err = vec![Line::from("  • Compile Error:")];
        compile_err.extend(full_c_err);

        let y_ans1 = self
            .code_answer
            .iter()
            .map(|v| Line::from(format!("    • {}", v)))
            .collect::<Vec<Line>>();
        let mut your_ans = vec![Line::from("  • Your Answer:")];
        your_ans.extend(y_ans1);

        let c_ans1 = self
            .expected_code_answer
            .iter()
            .map(|v| Line::from(format!("    • {}", v)))
            .collect::<Vec<Line>>();
        let mut correct_ans = vec![Line::from("  • Correct Answer:")];
        correct_ans.extend(c_ans1);

        // make it meaning
        if self.full_runtime_error.is_empty() && self.full_compile_error.is_empty() {
            status_msg_id.extend(total_correct_total_case);
        }
        if !self.last_testcase.is_empty() {
            status_msg_id.extend(last_case);
        }
        if !self.status_memory.is_empty() {
            status_msg_id.extend(mem_time);
        }
        if !self.full_compile_error.is_empty() {
            status_msg_id.extend(compile_err);
        }
        if !self.full_runtime_error.is_empty() {
            status_msg_id.extend(runtime_err);
        }
        if !self.code_answer.is_empty() {
            status_msg_id.extend(your_ans);
        }
        if !self
            .expected_code_answer
            .is_empty()
        {
            status_msg_id.extend(correct_ans);
        }

        status_msg_id
    }
}

impl Display for RunResult {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        let mut status_id_lang = format!(
            "\
            # Status Code: {scode}, Msg: {msg}\n\
            * Lang: {lang}\n\
            ",
            scode = self.status_code,
            msg = self.status_msg,
            lang = self.pretty_lang,
        );
        let total_test_case = format!(
            "\
            * Total correct: {}\n\
            * Total Testcases: {}\n\
            ",
            self.total_correct
                .unwrap_or_default(),
            self.total_testcases
                .unwrap_or_default(),
        );
        let last_testcase = format!(
            "\
            * Last Testcases {}\n\
            ",
            self.last_testcase
        );
        let runtime_err = format!(
            "\
            * Runtime Error:\n\
            ```\n\
            {}\n\
            ```\n\
            ",
            self.full_runtime_error
        );
        let compile_error = format!(
            "\
            * Compile Error:\n\
            ```\n\
            {}\n\
            ```\n\
            ",
            self.full_compile_error
        );
        let mut run_memory = format!(
            "\
            * Memory: {}\n\
            ",
            self.status_memory,
        );
        if self.memory_percentile.is_some() {
            run_memory.push_str(&format!(
                "* Memory Low Than: {}%\n\
                 ",
                self.memory_percentile
                    .unwrap_or_default()
            ));
        }
        let mut run_time = format!(
            "\
            * Runtime: {}\n\
            ",
            self.status_runtime,
        );
        if self.runtime_percentile.is_some() {
            run_time.push_str(&format!(
                "\
                * Fast Than: {}%\n\
                ",
                self.runtime_percentile
                    .unwrap_or_default()
            ));
        }
        let your_answer = format!(
            "\
            * Your Answer: \n{}\n\
            ",
            self.code_answer
                .iter()
                .map(|v| format!("    * {}", v))
                .collect::<Vec<String>>()
                .join("\n"),
        );
        let corr_answer = format!(
            "\
            * Correct Answer: \n{}\n\
            ",
            self.expected_code_answer
                .iter()
                .map(|v| format!("    * {}", v))
                .collect::<Vec<String>>()
                .join("\n")
        );

        if self.full_runtime_error.is_empty() && self.full_compile_error.is_empty() {
            status_id_lang.push_str(&total_test_case);
        }
        if !self.last_testcase.is_empty() {
            status_id_lang.push_str(&last_testcase);
        }
        status_id_lang.push_str(&run_time);
        status_id_lang.push_str(&run_memory);
        if !self.full_compile_error.is_empty() {
            status_id_lang.push_str(&compile_error);
        }
        if !self.full_runtime_error.is_empty() {
            status_id_lang.push_str(&runtime_err);
        }
        if !self.code_answer.is_empty() {
            status_id_lang.push_str(&your_answer);
        }
        if !self
            .expected_code_answer
            .is_empty()
        {
            status_id_lang.push_str(&corr_answer);
        }

        status_id_lang.fmt(f)
    }
}