libmp/examples/client/check.c

46 lines
992 B
C
Raw Normal View History

#include "../../include/all.h"
#include "../common.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, char *argv[]) {
2024-07-31 18:16:19 +00:00
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_init(&ctx, ROOT_DIR, NULL, DATA_DIR)) {
printf("failed to init the ctx: %s (%d)\n", lm_strerror(), lm_error());
2024-07-11 04:52:00 +00:00
goto end;
}
2024-07-31 18:16:19 +00:00
if (!lm_ctx_database_find(&ctx, &entry, argv[1], NULL)) {
printf("failed to find package: %s (%d)\n", lm_strerror(), lm_error());
goto end;
}
2024-07-31 18:16:19 +00:00
printf("checking %s (%s)...\n", entry.name, entry.version);
2024-07-31 18:16:19 +00:00
if (!lm_ctx_check(&ctx, &entry, NULL, NULL)) {
printf("failed to verify the package: %s (%d)\n", lm_strerror(), lm_error());
goto end;
}
2024-07-11 04:52:00 +00:00
printf("package check was successful!\n");
ret = EXIT_SUCCESS;
end:
2024-07-31 18:16:19 +00:00
lm_entry_free(&entry);
lm_ctx_free(&ctx);
return ret;
}