123456789101112131415161718192021222324252627282930313233343536373839 |
- // callbacks.c - Sets alpm callbacks to Go functions.
- //
- // Copyright (c) 2013 The go-alpm Authors
- //
- // MIT Licensed. See LICENSE for details.
- #include <stdint.h>
- #include <stdio.h>
- #include <stdarg.h>
- #include <alpm.h>
- void logCallback(alpm_loglevel_t level, char *cstring);
- void questionCallback(alpm_question_t *question);
- void go_alpm_log_cb(alpm_loglevel_t level, const char *fmt, va_list arg) {
- char *s = malloc(128);
- if (s == NULL) return;
- int16_t length = vsnprintf(s, 128, fmt, arg);
- if (length > 128) {
- length = (length + 16) & ~0xf;
- s = realloc(s, length);
- }
- if (s != NULL) {
- logCallback(level, s);
- free(s);
- }
- }
- void go_alpm_question_cb(alpm_question_t *question) {
- questionCallback(question);
- }
- void go_alpm_set_logging(alpm_handle_t *handle) {
- alpm_option_set_logcb(handle, go_alpm_log_cb);
- }
- void go_alpm_set_question(alpm_handle_t *handle) {
- alpm_option_set_questioncb(handle, go_alpm_question_cb);
- }
|