summaryrefslogtreecommitdiff
path: root/src/notification.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/notification.c')
-rw-r--r--src/notification.c369
1 files changed, 134 insertions, 235 deletions
diff --git a/src/notification.c b/src/notification.c
index eb0e79e..295c1c2 100644
--- a/src/notification.c
+++ b/src/notification.c
@@ -1,8 +1,11 @@
+/* vim: colorcolumn=80 ts=4 sw=4
+ */
/*
* notification.c
*
- * Copyright (C) 2002 Sun Microsystems, Inc.
- * Copyright (C) 2006 Christian Persch
+ * Copyright © 2002 Sun Microsystems, Inc.
+ * Copyright © 2006 Christian Persch
+ * Copyright © 2021-2022 Logan Rathbone
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -19,7 +22,7 @@
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
- * Authors: Glynn Foster <glynn.foster@sun.com>
+ * Original Author: Glynn Foster <glynn.foster@sun.com>
*/
#include <config.h>
@@ -29,184 +32,102 @@
#include <string.h>
#include <time.h>
#include <unistd.h>
-#ifdef HAVE_LIBNOTIFY
-#include <libnotify/notify.h>
#include "util.h"
#include "zenity.h"
#define MAX_HINTS 16
-static char *icon_file;
-static GHashTable *notification_hints;
+static void
+zenity_send_notification (GNotification *notification)
+{
+ g_application_send_notification (g_application_get_default (),
+ "zenity-notification",
+ notification);
+}
-static NotifyNotification *
-zenity_notification_new (gchar *message, gchar *icon_file) {
- NotifyNotification *notif;
- gchar **text;
+static GNotification *
+zenity_notification_new (char *message, char *icon_path)
+{
+ g_autoptr (GNotification) notif;
+ g_auto(GStrv) text = NULL;
+ /* Accept a title and optional body in the form of `my title\nmy body'.
+ * The way this is displayed by the notification system is implementation
+ * defined.
+ */
text = g_strsplit (g_strcompress (message), "\n", 2);
- if (*text == NULL) {
- g_printerr (_ ("Could not parse message\n"));
+ if (*text == NULL)
+ {
+ g_printerr (_("Could not parse message\n"));
return NULL;
}
- notif = notify_notification_new (text[0], /* title */
- text[1], /* summary */
- icon_file);
- g_strfreev (text);
- return notif;
-}
-
-static void
-on_notification_default_action (
- NotifyNotification *n, const char *action, void *user_data) {
- ZenityData *zen_data;
-
- zen_data = (ZenityData *) user_data;
- notify_notification_close (n, NULL);
+ notif = g_notification_new (text[0]); /* title */
- zen_data->exit_code = zenity_util_return_exit_code (ZENITY_OK);
-
- gtk_main_quit ();
-}
-
-static GHashTable *
-zenity_notification_parse_hints_array (gchar **hints) {
- GHashTable *result;
- gchar **pair;
- int i;
+ if (text[1])
+ g_notification_set_body (notif, text[1]);
- result = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free);
+ if (icon_path)
+ {
+ g_autoptr(GIcon) icon = NULL;
- for (i = 0; i < g_strv_length (hints); i++) {
- pair = g_strsplit (hints[i], ":", 2);
- g_hash_table_replace (result, g_strdup (pair[0]), g_strdup (pair[1]));
- g_strfreev (pair);
+ icon = zenity_util_gicon_from_string (icon_path);
+ g_notification_set_icon (notif, icon);
}
- if (g_hash_table_size (result) == 0) {
- g_hash_table_unref (result);
- return NULL;
- } else {
- return result;
- }
-}
-static GHashTable *
-zenity_notification_parse_hints (gchar *hints) {
- GHashTable *result;
- gchar **hint_array;
-
- hint_array = g_strsplit (g_strcompress (hints), "\n", MAX_HINTS);
- result = zenity_notification_parse_hints_array (hint_array);
- g_strfreev (hint_array);
- return result;
+ return g_steal_pointer (&notif);
}
static void
-zenity_notification_set_hint (
- gpointer key, gpointer value, gpointer user_data) {
- NotifyNotification *notification;
- gchar *hint_name;
- GVariant *hint_value;
-
- gchar *string_value;
- gboolean boolean_value;
- gint32 int_value;
- guchar byte_value;
-
- hint_name = (gchar *) key;
- string_value = (gchar *) value;
- notification = (NotifyNotification *) user_data;
-
- if ((g_ascii_strcasecmp ("action-icons", hint_name) == 0) ||
- (g_ascii_strcasecmp ("resident", hint_name) == 0) ||
- (g_ascii_strcasecmp ("suppress-sound", hint_name) == 0) ||
- (g_ascii_strcasecmp ("transient", hint_name) == 0)) {
- /* boolean hints */
- if (g_ascii_strcasecmp ("true", string_value) == 0) {
- boolean_value = TRUE;
- } else if (g_ascii_strcasecmp ("false", string_value) == 0) {
- boolean_value = FALSE;
- } else {
- g_printerr (_ ("Invalid value for a boolean typed hint.\nSupported "
- "values are 'true' or 'false'.\n"));
- return;
- }
- hint_value = g_variant_new_boolean (boolean_value);
- } else if ((g_ascii_strcasecmp ("category", hint_name) == 0) ||
- (g_ascii_strcasecmp ("desktop-entry", hint_name) == 0) ||
- (g_ascii_strcasecmp ("image-path", hint_name) == 0) ||
- (g_ascii_strcasecmp ("image_path", hint_name) == 0) ||
- (g_ascii_strcasecmp ("sound-file", hint_name) == 0) ||
- (g_ascii_strcasecmp ("sound-name", hint_name) == 0)) {
- /* string hints */
- hint_value = g_variant_new_string (string_value);
- } else if ((g_ascii_strcasecmp ("image-data", hint_name) == 0) ||
- (g_ascii_strcasecmp ("image_data", hint_name) == 0) ||
- (g_ascii_strcasecmp ("icon-data", hint_name) == 0)) {
- /* (iibiiay) */
- g_printerr (_ ("Unsupported hint. Skipping.\n"));
- return;
- } else if ((g_ascii_strcasecmp ("x", hint_name) == 0) ||
- (g_ascii_strcasecmp ("y", hint_name) == 0)) {
- /* int hints */
- if (string_value == NULL)
- string_value = "";
- int_value = (gint32) g_ascii_strtoll (string_value, NULL, 0);
- hint_value = g_variant_new_int32 (int_value);
- } else if ((g_ascii_strcasecmp ("urgency", hint_name) == 0)) {
- /* byte hints */
- if (string_value == NULL)
- string_value = "";
- byte_value = (guchar) g_ascii_strtoll (string_value, NULL, 0);
- hint_value = g_variant_new_byte (byte_value);
- } else {
- /* unknown hints */
- g_printerr (_ ("Unknown hint name. Skipping.\n"));
- return;
- }
-
- notify_notification_set_hint (notification, hint_name, hint_value);
-}
+on_notification_default_action (GSimpleAction *self,
+ GVariant *parameter,
+ gpointer user_data)
+{
+ ZenityData *zen_data = user_data;
-static void
-zenity_notification_set_hints (
- NotifyNotification *notification, GHashTable *hints) {
- if (hints == NULL) {
- return;
- }
+ zen_data->exit_code = zenity_util_return_exit_code (ZENITY_OK);
- g_hash_table_foreach (hints, zenity_notification_set_hint, notification);
+ zenity_util_gapp_quit (NULL, zen_data);
}
static gboolean
-zenity_notification_handle_stdin (
- GIOChannel *channel, GIOCondition condition, gpointer user_data) {
- if ((condition & G_IO_IN) != 0) {
- GString *string;
- GError *error = NULL;
+zenity_notification_handle_stdin (GIOChannel *channel, GIOCondition condition,
+ gpointer user_data)
+{
+ static char *icon_file;
+
+ if ((condition & G_IO_IN) != 0)
+ {
+ g_autoptr(GString) string = NULL;
+ g_autoptr(GError) error = NULL;
- string = g_string_new (NULL);
while (channel->is_readable == FALSE)
;
+
+ string = g_string_new (NULL);
+
do {
- gint status;
- gchar *command, *value, *colon;
+ int status;
+ g_autofree char *command = NULL;
+ char *value, *colon;
do {
- status = g_io_channel_read_line_string (
- channel, string, NULL, &error);
- while (gdk_events_pending ())
- gtk_main_iteration ();
+ status = g_io_channel_read_line_string (channel, string,
+ NULL, &error);
+
+ while (g_main_context_pending (NULL)) {
+ g_main_context_iteration (NULL, FALSE);
+ }
} while (status == G_IO_STATUS_AGAIN);
- if (status != G_IO_STATUS_NORMAL) {
+ if (status != G_IO_STATUS_NORMAL)
+ {
if (error) {
- g_warning ("zenity_notification_handle_stdin () : %s",
- error->message);
- g_error_free (error);
+ g_warning ("%s: %s",
+ __func__,
+ error->message);
error = NULL;
}
continue;
@@ -214,10 +135,12 @@ zenity_notification_handle_stdin (
zenity_util_strip_newline (string->str);
colon = strchr (string->str, ':');
- if (colon == NULL) {
- g_printerr (_ ("Could not parse command from stdin\n"));
+ if (colon == NULL)
+ {
+ g_printerr (_("Could not parse command from stdin\n"));
continue;
}
+
/* split off the command and value */
command = g_strstrip (g_strndup (string->str, colon - string->str));
@@ -225,69 +148,62 @@ zenity_notification_handle_stdin (
while (*value && g_ascii_isspace (*value))
value++;
- if (!g_ascii_strcasecmp (command, "icon")) {
+ if (! g_ascii_strcasecmp (command, "icon"))
+ {
g_free (icon_file);
icon_file = g_strdup (value);
- } else if (!g_ascii_strcasecmp (command, "hints")) {
- if (notification_hints != NULL) {
- g_hash_table_unref (notification_hints);
- }
- notification_hints = zenity_notification_parse_hints (value);
- } else if (!g_ascii_strcasecmp (command, "message")) {
+ }
+ else if (!g_ascii_strcasecmp (command, "message"))
+ {
/* display a notification bubble */
- if (!g_utf8_validate (value, -1, NULL)) {
+ if (! g_utf8_validate (value, -1, NULL))
+ {
g_warning ("Invalid UTF-8 in input!");
- } else {
- NotifyNotification *notif;
- error = NULL;
+ }
+ else
+ {
+ g_autoptr(GNotification) notif = NULL;
notif = zenity_notification_new (value, icon_file);
+
if (notif == NULL)
continue;
- zenity_notification_set_hints (notif, notification_hints);
-
- notify_notification_show (notif, &error);
- if (error) {
- g_warning (
- "Error showing notification: %s", error->message);
- g_error_free (error);
- error = NULL;
- }
-
- g_object_unref (notif);
+ zenity_send_notification (notif);
}
- } else if (!g_ascii_strcasecmp (command, "tooltip")) {
- if (!g_utf8_validate (value, -1, NULL)) {
+ }
+ else if (! g_ascii_strcasecmp (command, "tooltip"))
+ {
+ if (! g_utf8_validate (value, -1, NULL))
+ {
g_warning ("Invalid UTF-8 in input!");
- } else {
- NotifyNotification *notif;
+ }
+ else
+ {
+ g_autoptr(GNotification) notif = NULL;
+
notif = zenity_notification_new (value, icon_file);
+
if (notif == NULL)
continue;
- zenity_notification_set_hints (notif, notification_hints);
-
- notify_notification_show (notif, &error);
- if (error) {
- g_warning (
- "Error showing notification: %s", error->message);
- g_error_free (error);
- error = NULL;
- }
+ zenity_send_notification (notif);
}
- } else if (!g_ascii_strcasecmp (command, "visible")) {
+ }
+ else if (!g_ascii_strcasecmp (command, "visible"))
+ {
- } else {
+ }
+ else
+ {
g_warning ("Unknown command '%s'", command);
}
- g_free (command);
} while (g_io_channel_get_buffer_condition (channel) == G_IO_IN);
- g_string_free (string, TRUE);
}
- if ((condition & G_IO_HUP) != 0) {
+ if ((condition & G_IO_HUP) != 0)
+ {
g_io_channel_shutdown (channel, TRUE, NULL);
return FALSE;
}
@@ -296,76 +212,59 @@ zenity_notification_handle_stdin (
}
static void
-zenity_notification_listen_on_stdin (ZenityData *data) {
+zenity_notification_listen_on_stdin (ZenityData *data)
+{
GIOChannel *channel;
channel = g_io_channel_unix_new (0);
g_io_channel_set_encoding (channel, NULL, NULL);
g_io_channel_set_flags (channel, G_IO_FLAG_NONBLOCK, NULL);
- g_io_add_watch (
- channel, G_IO_IN | G_IO_HUP, zenity_notification_handle_stdin, data);
+ g_io_add_watch (channel,
+ G_IO_IN | G_IO_HUP,
+ zenity_notification_handle_stdin,
+ data);
}
void
-zenity_notification (
- ZenityData *data, ZenityNotificationData *notification_data) {
- GError *error;
- NotifyNotification *notification;
- GHashTable *notification_hints;
-
- /* create the notification widget */
- if (!notify_is_initted ()) {
- notify_init (_ ("Zenity notification"));
- }
+zenity_notification (ZenityData *data,
+ ZenityNotificationData *notification_data)
+{
+ GNotification *notification;
- if (notification_data->listen) {
+ if (notification_data->listen)
+ {
zenity_notification_listen_on_stdin (data);
- gtk_main ();
- } else {
- if (notification_data->notification_text == NULL) {
+
+ zenity_util_gapp_main (NULL);
+ }
+ else
+ {
+ g_autoptr(GSimpleAction) action = NULL;
+
+ if (notification_data->notification_text == NULL)
exit (1);
- }
notification = zenity_notification_new (
- notification_data->notification_text, data->window_icon);
+ notification_data->notification_text, notification_data->icon);
- if (notification == NULL) {
+ if (notification == NULL)
exit (1);
- }
/* if we aren't listening for changes, then close on default action */
- notify_notification_add_action (notification,
- "default",
- "Do Default Action",
- (NotifyActionCallback) on_notification_default_action,
- data,
- NULL);
+ action = g_simple_action_new ("app.default", NULL);
+ g_signal_connect (action, "activate",
+ G_CALLBACK(on_notification_default_action), data);
- /* set the notification hints for the displayed notification */
- if (notification_data->notification_hints != NULL) {
- notification_hints = zenity_notification_parse_hints_array (
- notification_data->notification_hints);
- zenity_notification_set_hints (notification, notification_hints);
- g_hash_table_unref (notification_hints);
- }
-
- /* Show icon and wait */
- error = NULL;
- if (!notify_notification_show (notification, &error)) {
- if (error != NULL) {
- g_warning ("Error showing notification: %s", error->message);
- g_error_free (error);
- }
- exit (1);
- }
+ g_notification_set_default_action (notification, "app.default");
+
+ zenity_send_notification (notification);
}
if (data->timeout_delay > 0) {
g_timeout_add_seconds (data->timeout_delay,
(GSourceFunc) zenity_util_timeout_handle,
NULL);
- gtk_main ();
+
+ zenity_util_gapp_main (NULL);
}
}
-
-#endif