2020-08-11 15:50:00 +00:00
|
|
|
#include "FirmwareValidation.h"
|
2020-11-15 15:49:36 +00:00
|
|
|
#include <lvgl/lvgl.h>
|
|
|
|
#include "Version.h"
|
2020-10-02 19:16:48 +00:00
|
|
|
#include "components/firmwarevalidator/FirmwareValidator.h"
|
2020-11-15 15:49:36 +00:00
|
|
|
#include "../DisplayApp.h"
|
2020-08-11 15:50:00 +00:00
|
|
|
|
|
|
|
using namespace Pinetime::Applications::Screens;
|
|
|
|
|
|
|
|
namespace {
|
2021-04-18 17:28:14 +00:00
|
|
|
static void ButtonEventHandler(lv_obj_t* obj, lv_event_t event) {
|
|
|
|
FirmwareValidation* screen = static_cast<FirmwareValidation*>(obj->user_data);
|
2020-08-11 15:50:00 +00:00
|
|
|
screen->OnButtonEvent(obj, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
FirmwareValidation::FirmwareValidation(Pinetime::Applications::DisplayApp* app, Pinetime::Controllers::FirmwareValidator& validator)
|
|
|
|
: Screen {app}, validator {validator} {
|
2020-10-04 11:53:11 +00:00
|
|
|
labelVersionInfo = lv_label_create(lv_scr_act(), nullptr);
|
|
|
|
lv_obj_align(labelVersionInfo, nullptr, LV_ALIGN_IN_TOP_LEFT, 0, 0);
|
2020-08-11 15:50:00 +00:00
|
|
|
lv_label_set_text(labelVersionInfo, "Version : ");
|
|
|
|
lv_label_set_align(labelVersionInfo, LV_LABEL_ALIGN_LEFT);
|
|
|
|
|
2020-10-04 11:53:11 +00:00
|
|
|
labelVersionValue = lv_label_create(lv_scr_act(), nullptr);
|
2020-08-11 15:50:00 +00:00
|
|
|
lv_obj_align(labelVersionValue, labelVersionInfo, LV_ALIGN_OUT_RIGHT_MID, 0, 0);
|
|
|
|
lv_label_set_recolor(labelVersionValue, true);
|
2020-08-17 14:31:00 +00:00
|
|
|
sprintf(version, "%ld.%ld.%ld", Version::Major(), Version::Minor(), Version::Patch());
|
2020-08-11 15:50:00 +00:00
|
|
|
lv_label_set_text(labelVersionValue, version);
|
|
|
|
|
2021-05-18 15:45:16 +00:00
|
|
|
labelShortRefInfo = lv_label_create(lv_scr_act(), nullptr);
|
|
|
|
lv_obj_align(labelShortRefInfo, nullptr, LV_ALIGN_IN_TOP_LEFT, 0, 25);
|
|
|
|
lv_label_set_text(labelShortRefInfo, "ShortRef : ");
|
|
|
|
lv_label_set_align(labelShortRefInfo, LV_LABEL_ALIGN_LEFT);
|
|
|
|
|
|
|
|
labelShortRefValue = lv_label_create(lv_scr_act(), nullptr);
|
|
|
|
lv_obj_align(labelShortRefValue, labelShortRefInfo, LV_ALIGN_OUT_RIGHT_MID, 0, 0);
|
|
|
|
lv_label_set_recolor(labelShortRefValue, true);
|
|
|
|
sprintf(shortref, "%s", Version::GitCommitHash());
|
|
|
|
lv_label_set_text(labelShortRefValue, shortref);
|
|
|
|
|
2020-10-04 11:53:11 +00:00
|
|
|
labelIsValidated = lv_label_create(lv_scr_act(), nullptr);
|
|
|
|
lv_obj_align(labelIsValidated, nullptr, LV_ALIGN_IN_TOP_LEFT, 0, 50);
|
2020-08-11 15:50:00 +00:00
|
|
|
lv_label_set_recolor(labelIsValidated, true);
|
|
|
|
lv_label_set_long_mode(labelIsValidated, LV_LABEL_LONG_BREAK);
|
|
|
|
lv_obj_set_width(labelIsValidated, 240);
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
if (validator.IsValidated())
|
2020-08-11 15:50:00 +00:00
|
|
|
lv_label_set_text(labelIsValidated, "You have already\n#00ff00 validated# this firmware#");
|
|
|
|
else {
|
2021-04-18 17:28:14 +00:00
|
|
|
lv_label_set_text(labelIsValidated, "Please #00ff00 Validate# this version or\n#ff0000 Reset# to rollback to the previous version.");
|
2020-08-11 15:50:00 +00:00
|
|
|
|
2020-10-04 11:53:11 +00:00
|
|
|
buttonValidate = lv_btn_create(lv_scr_act(), nullptr);
|
2020-08-11 15:50:00 +00:00
|
|
|
lv_obj_align(buttonValidate, NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, 0);
|
|
|
|
buttonValidate->user_data = this;
|
|
|
|
lv_obj_set_event_cb(buttonValidate, ButtonEventHandler);
|
2021-04-04 02:08:51 +00:00
|
|
|
lv_obj_set_style_local_bg_color(buttonValidate, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x009900));
|
2020-08-11 15:50:00 +00:00
|
|
|
|
2020-10-04 11:53:11 +00:00
|
|
|
labelButtonValidate = lv_label_create(buttonValidate, nullptr);
|
2021-04-18 17:28:14 +00:00
|
|
|
lv_label_set_text_static(labelButtonValidate, "Validate");
|
2020-08-11 15:50:00 +00:00
|
|
|
|
2020-10-04 11:53:11 +00:00
|
|
|
buttonReset = lv_btn_create(lv_scr_act(), nullptr);
|
2020-08-11 15:50:00 +00:00
|
|
|
buttonReset->user_data = this;
|
2020-10-04 11:53:11 +00:00
|
|
|
lv_obj_align(buttonReset, nullptr, LV_ALIGN_IN_BOTTOM_RIGHT, 0, 0);
|
2021-04-04 02:08:51 +00:00
|
|
|
lv_obj_set_style_local_bg_color(buttonReset, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x990000));
|
2020-08-11 15:50:00 +00:00
|
|
|
lv_obj_set_event_cb(buttonReset, ButtonEventHandler);
|
2021-04-18 17:28:14 +00:00
|
|
|
|
2020-10-04 11:53:11 +00:00
|
|
|
labelButtonReset = lv_label_create(buttonReset, nullptr);
|
2021-04-18 17:28:14 +00:00
|
|
|
lv_label_set_text_static(labelButtonReset, "Reset");
|
|
|
|
}
|
2020-08-11 15:50:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
FirmwareValidation::~FirmwareValidation() {
|
|
|
|
lv_obj_clean(lv_scr_act());
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FirmwareValidation::Refresh() {
|
|
|
|
return running;
|
|
|
|
}
|
|
|
|
|
2021-04-18 17:28:14 +00:00
|
|
|
void FirmwareValidation::OnButtonEvent(lv_obj_t* object, lv_event_t event) {
|
|
|
|
if (object == buttonValidate && event == LV_EVENT_PRESSED) {
|
2020-08-11 15:50:00 +00:00
|
|
|
validator.Validate();
|
2021-04-18 17:28:14 +00:00
|
|
|
running = false;
|
|
|
|
} else if (object == buttonReset && event == LV_EVENT_PRESSED) {
|
2020-08-11 15:50:00 +00:00
|
|
|
validator.Reset();
|
|
|
|
}
|
|
|
|
}
|