core-agent-linux/qubes-rpc/gui-fatal.c

57 lines
1.1 KiB
C
Raw Normal View History

2011-03-15 13:00:12 +01:00
#define _GNU_SOURCE
#include <errno.h>
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <malloc.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdarg.h>
static void fix_display(void)
2011-03-15 13:00:12 +01:00
{
setenv("DISPLAY", ":0", 1);
}
static void produce_message(const char * type, const char *fmt, va_list args)
2011-03-15 13:00:12 +01:00
{
char *dialog_msg;
2011-03-15 13:00:12 +01:00
char buf[1024];
(void) vsnprintf(buf, sizeof(buf), fmt, args);
asprintf(&dialog_msg, "%s: %s: %s (error type: %s)",
2011-03-15 13:00:12 +01:00
program_invocation_short_name, type, buf, strerror(errno));
2013-12-29 14:06:21 +01:00
fprintf(stderr, "%s\n", dialog_msg);
2011-03-15 13:00:12 +01:00
switch (fork()) {
case -1:
exit(1); //what else
case 0:
fix_display();
#ifdef USE_KDIALOG
execlp("/usr/bin/kdialog", "kdialog", "--sorry", dialog_msg, NULL);
#else
execlp("/usr/bin/zenity", "zenity", "--error", "--text", dialog_msg, NULL);
#endif
2011-03-15 13:00:12 +01:00
exit(1);
default:;
}
free(dialog_msg);
2011-03-15 13:00:12 +01:00
}
void gui_fatal(const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
produce_message("Fatal error", fmt, args);
va_end(args);
exit(1);
}
void gui_nonfatal(const char *fmt, ...)
{
va_list args;
va_start(args, fmt);
produce_message("Information", fmt, args);
va_end(args);
}