code: package,hpp,get (1 files)

This commit is contained in:
2025-12-26 01:45:36 +00:00
parent ebf0205804
commit 53bc9f935f

View File

@@ -1,6 +1,6 @@
/**
* @file get_package.hpp
* @brief Get package by ID or package_id operations
* @brief Get package by ID or name+version key operations
*/
#ifndef DBAL_GET_PACKAGE_HPP
#define DBAL_GET_PACKAGE_HPP
@@ -20,28 +20,28 @@ inline Result<Package> get(InMemoryStore& store, const std::string& id) {
if (id.empty()) {
return Error::validationError("Package ID cannot be empty");
}
auto it = store.packages.find(id);
if (it == store.packages.end()) {
return Error::notFound("Package not found: " + id);
}
return Result<Package>(it->second);
}
/**
* Get a package by package_id (snake_case identifier)
* Get a package by name+version key (name@version)
*/
inline Result<Package> getByPackageId(InMemoryStore& store, const std::string& package_id) {
if (package_id.empty()) {
return Error::validationError("Package ID cannot be empty");
inline Result<Package> getByPackageId(InMemoryStore& store, const std::string& package_key) {
if (package_key.empty()) {
return Error::validationError("Package key cannot be empty");
}
auto it = store.package_ids.find(package_id);
if (it == store.package_ids.end()) {
return Error::notFound("Package not found: " + package_id);
auto it = store.package_keys.find(package_key);
if (it == store.package_keys.end()) {
return Error::notFound("Package not found: " + package_key);
}
return get(store, it->second);
}