libmp/examples/client/check.c
2024-08-04 16:00:18 +03:00

46 lines
991 B
C

#include "../../include/all.h"
#include "../common.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char *argv[]) {
int ret = EXIT_FAILURE;
lm_entry_t entry;
lm_ctx_t ctx;
if (argc != 2) {
printf("usage: %s <package name>\n", argv[0]);
return ret;
}
lm_entry_init(&entry);
if (!lm_ctx_new(&ctx, ROOT_DIR, NULL, DATA_DIR)) {
printf("failed to init the ctx: %s (%d)\n", lm_strerror(), lm_error());
goto end;
}
if (!lm_ctx_database_find(&ctx, &entry, argv[1], NULL)) {
printf("failed to find package: %s (%d)\n", lm_strerror(), lm_error());
goto end;
}
printf("checking %s (%s)...\n", entry.name, entry.version);
if (!lm_ctx_check(&ctx, &entry, NULL, NULL)) {
printf("failed to verify the package: %s (%d)\n", lm_strerror(), lm_error());
goto end;
}
printf("package check was successful!\n");
ret = EXIT_SUCCESS;
end:
lm_entry_free(&entry);
lm_ctx_free(&ctx);
return ret;
}