#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include constexpr auto* TAG = "AppPackageDetails"; namespace tt::app::apppackagedetails { extern const ::AppManifest manifest; namespace { struct Context { uint32_t appInstanceId; std::string targetPackageId; PackageManifest targetPackage = {}; std::vector appIds; uint32_t pendingUninstallDialogId = 0; }; struct FindPackageContext { const std::string* packageId; PackageManifest* outPackage; std::vector* outAppIds; bool found = false; }; void onVisitPackage(const ::AppPackage* pkg, void* context) { auto* findContext = static_cast(context); if (findContext->found || *findContext->packageId != pkg->package.id) { return; } *findContext->outPackage = pkg->package; findContext->outAppIds->assign(pkg->app_ids, pkg->app_ids + pkg->app_id_count); findContext->found = true; } bool findPackage(const std::string& packageId, PackageManifest& outPackage, std::vector& outAppIds) { FindPackageContext findContext { &packageId, &outPackage, &outAppIds }; app_manager_for_each_package(onVisitPackage, &findContext); return findContext.found; } void onPressUninstall(lv_event_t* event) { auto* ctx = static_cast(lv_event_get_user_data(event)); std::vector choices = { "Yes", "No" }; ctx->pendingUninstallDialogId = alertdialog::start( ctx->appInstanceId, "Confirmation", std::format("Uninstall {}?", ctx->targetPackage.id), choices ); } void onBackPressed(lv_event_t* event) { auto* ctx = static_cast(lv_event_get_user_data(event)); app_event_emit_close(ctx->appInstanceId); } void createWidgets(lv_obj_t* parent, void* userData) { auto* ctx = static_cast(userData); lv_obj_set_flex_flow(parent, LV_FLEX_FLOW_COLUMN); lv_obj_set_style_pad_row(parent, 0, LV_STATE_DEFAULT); auto title = std::format("{} details", ctx->targetPackage.id); auto* toolbar = lvgl_toolbar_create(parent, title.c_str()); // The global toolbar nav callback only knows how to stop old-model apps. lvgl_toolbar_set_nav_action(toolbar, LV_SYMBOL_CLOSE, onBackPressed, ctx); auto* wrapper = lv_obj_create(parent); lv_obj_set_width(wrapper, LV_PCT(100)); lv_obj_set_flex_grow(wrapper, 1); lv_obj_set_flex_flow(wrapper, LV_FLEX_FLOW_COLUMN); lv_obj_set_style_border_width(wrapper, 0, LV_STATE_DEFAULT); lvgl::obj_set_style_bg_invisible(wrapper); auto identifier = std::format("Identifier: {}", ctx->targetPackage.id); auto* identifier_label = lv_label_create(wrapper); lv_label_set_text(identifier_label, identifier.c_str()); auto version = std::format("Version: {} ({})", ctx->targetPackage.version_name, ctx->targetPackage.version_code); auto* version_label = lv_label_create(wrapper); lv_label_set_text(version_label, version.c_str()); char install_path[192]; std::string location = "unknown"; if (app_get_install_path(ctx->targetPackage.id, install_path, sizeof(install_path)) == ERROR_NONE) { location = install_path; } auto location_text = std::format("Location: {}", location); auto* location_label = lv_label_create(wrapper); lv_label_set_text(location_label, location_text.c_str()); std::string apps; for (const auto& appId : ctx->appIds) { AppManifest appManifest {}; const char* label = app_manager_find_manifest(appId.c_str(), &appManifest) == ERROR_NONE ? appManifest.name : appId.c_str(); apps += apps.empty() ? label : std::format(", {}", label); } auto apps_text = std::format("Apps: {}", apps); auto* apps_label = lv_label_create(wrapper); lv_label_set_text(apps_label, apps_text.c_str()); auto* uninstall_button = lv_button_create(wrapper); lv_obj_set_width(uninstall_button, LV_PCT(100)); lv_obj_add_event_cb(uninstall_button, onPressUninstall, LV_EVENT_SHORT_CLICKED, ctx); auto* uninstall_label = lv_label_create(uninstall_button); lv_obj_align(uninstall_label, LV_ALIGN_CENTER, 0, 0); lv_label_set_text(uninstall_label, "Uninstall"); } int32_t appMain(int argc, char* argv[]) { uint32_t appInstanceId = app_scheduler_current_app_id(); Context ctx {}; ctx.appInstanceId = appInstanceId; ctx.targetPackageId = (argc > 0) ? argv[0] : std::string(); if (!findPackage(ctx.targetPackageId, ctx.targetPackage, ctx.appIds)) { LOG_W(TAG, "Package %s not found", ctx.targetPackageId.c_str()); return 0; } TaskEventGroup event_group {}; task_event_group_construct(&event_group); AppEventSubscription sub {}; check(app_event_subscribe(&sub, &event_group) == ERROR_NONE); WindowId window = window_manager_create(appInstanceId, createWidgets, &ctx); bool shouldClose = false; while (!shouldClose) { task_event_group_wait_any(&event_group, nullptr, portMAX_DELAY); AppEvent event {}; while (app_event_poll(&sub, &event) == ERROR_NONE) { switch (event.type) { case APP_EVENT_CLOSE: shouldClose = true; break; case APP_EVENT_RESULT: if (event.result.launch_id == ctx.pendingUninstallDialogId) { if (event.result.result == 0) { // 0 = Yes app_uninstall(ctx.targetPackage.id); shouldClose = true; } app_manager_stop(event.result.launch_id); } break; default: break; } if (shouldClose) break; } } window_manager_remove(window); check(app_event_unsubscribe(&sub) == ERROR_NONE); task_event_group_destruct(&event_group); return 0; } } // namespace void start(const std::string& packageId) { const char* argv[] = { packageId.c_str() }; uint32_t instanceId = 0; app_start(manifest.id, 1, argv, &instanceId); } extern const ::AppManifest manifest = { .id = "tactility.apppackagedetails", .name = "Package Details", .category = APP_CATEGORY_SYSTEM, .location = { APP_LOCATION_MEMORY, reinterpret_cast(appMain) }, .flags = APP_MANIFEST_FLAG_HIDDEN, }; } // namespace