feat(marketplace): add DownloadManager and ExtensionManager interface#8
Merged
pabloinigoblasco merged 5 commits intoMar 10, 2026
Conversation
Add core infrastructure for extension installation pipeline: DownloadManager: - Async download with progress tracking - SHA-256 checksum verification - In-memory ZIP extraction to destination directory - Cancellation support for in-progress operations ExtensionManager (interface only): - Header defining the orchestration layer for install/uninstall/update - Dependency injection ready (DownloadManager, ZipExtractor) - Signal-based progress and error reporting Contents: - pj_marketplace/src/core/DownloadManager.h - pj_marketplace/src/core/DownloadManager.cpp - pj_marketplace/src/core/ExtensionManager.h - pj_marketplace/tests/download_manager_test.cpp
…taging Add full install/uninstall/update lifecycle for marketplace extensions. Key features: - ExtensionManager: orchestrates download, extraction, and state persistence - PlatformUtils: cross-platform path resolution and OS detection - Windows staging: extracts to .pending/ directory when DLLs are in use - Disk space validation before extraction begins - Standalone CMake build support with LibArchive dependency The extension manager delegates download+checksum+extraction to DownloadManager and handles platform-specific behavior transparently. Contents: - src/core/ExtensionManager.cpp/.h - src/core/PlatformUtils.cpp/.h - CMakeLists.txt (standalone build, LibArchive) - conanfile.txt (LibArchive dependency)
Add build infrastructure for standalone compilation of pj_marketplace. Contents: - build.sh: standalone build script (./build.sh or ./build.sh --debug) - README.md: build instructions and project structure - conanfile.txt: Qt6, libarchive, and GTest dependencies via Conan
Remove deprecated ABI version field from requirements and specification documents as this concept is no longer part of the marketplace design.
Add unit tests covering: - Extension installation and uninstallation - State persistence and recovery - Update workflows - Error handling scenarios
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add core infrastructure for extension installation pipeline:
DownloadManager:
ExtensionManager (interface only):
Contents: