2024-06-20 00:34:32 +00:00
|
|
|
#include "../../include/all.h"
|
2024-06-27 20:05:39 +00:00
|
|
|
|
2024-06-20 00:34:32 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2024-06-27 20:05:39 +00:00
|
|
|
#define DATA_DIR "/tmp/data"
|
|
|
|
|
2024-06-20 00:34:32 +00:00
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
int ret = EXIT_FAILURE;
|
|
|
|
|
2024-06-20 22:36:56 +00:00
|
|
|
if (argc != 2) {
|
2024-06-20 00:34:32 +00:00
|
|
|
printf("usage: %s <pool url>\n", argv[0]);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
lm_ctx_t ctx;
|
|
|
|
lm_ctx_init(&ctx);
|
|
|
|
|
2024-06-27 20:05:39 +00:00
|
|
|
if (!lm_ctx_set_data(&ctx, DATA_DIR)) {
|
|
|
|
printf("failed to set data dir: %s (%d)\n", lm_strerror(), lm_error());
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2024-07-01 03:43:20 +00:00
|
|
|
if (lm_ctx_pool_add(&ctx, "base", argv[1]) == NULL) {
|
2024-06-20 00:34:32 +00:00
|
|
|
printf("failed to add pool: %s (%d)\n", lm_strerror(), lm_error());
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2024-07-01 03:43:20 +00:00
|
|
|
lm_ctx_pool_test(&ctx, NULL, NULL);
|
|
|
|
lm_ctx_pool_get_info(&ctx, true, true, NULL, NULL);
|
|
|
|
lm_ctx_pool_get_list(&ctx, true, true, NULL, NULL);
|
|
|
|
|
|
|
|
if (lm_ctx_package_get(&ctx, "which", NULL) == NULL) {
|
|
|
|
printf("failed to get the package: %s (%d)\n", lm_strerror(), lm_error());
|
|
|
|
goto end;
|
|
|
|
}
|
2024-06-27 20:05:39 +00:00
|
|
|
|
2024-06-20 00:34:32 +00:00
|
|
|
ret = EXIT_SUCCESS;
|
|
|
|
|
|
|
|
end:
|
|
|
|
lm_ctx_free(&ctx);
|
|
|
|
return ret;
|
|
|
|
}
|