aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@helixcode.com>2000-05-12 01:31:30 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2000-05-12 01:31:30 +0800
commitd509f47a95ddc37b4ee566eb5980c27f6626c8dc (patch)
tree6d3a28f5a616835ad0f81a308606850b47ace2e6 /calendar/gui
parentd91a0645f9f595cbfa953187c366dc569f5e8e41 (diff)
downloadgsoc2013-evolution-d509f47a95ddc37b4ee566eb5980c27f6626c8dc.tar
gsoc2013-evolution-d509f47a95ddc37b4ee566eb5980c27f6626c8dc.tar.gz
gsoc2013-evolution-d509f47a95ddc37b4ee566eb5980c27f6626c8dc.tar.bz2
gsoc2013-evolution-d509f47a95ddc37b4ee566eb5980c27f6626c8dc.tar.lz
gsoc2013-evolution-d509f47a95ddc37b4ee566eb5980c27f6626c8dc.tar.xz
gsoc2013-evolution-d509f47a95ddc37b4ee566eb5980c27f6626c8dc.tar.zst
gsoc2013-evolution-d509f47a95ddc37b4ee566eb5980c27f6626c8dc.zip
Removed unused arguments. Load the initial alarms here. (load_alarms): New
2000-05-11 Federico Mena Quintero <federico@helixcode.com> * gui/gnome-cal.c (gnome_calendar_update_all): Removed unused arguments. Load the initial alarms here. (load_alarms): New function to load a day's worth of alarms. (gnome_calendar_class_init): Eeeek! This was taking in an incorrect argument type. (gnome_calendar_init): Now the calendar keeps a hash table of UIDs->queued alarms. Create the hash table here. (gnome_calendar_destroy): Destroy the alarms hash table. (gnome_calendar_object_updated_cb): Remove the alarms for the object and regenerate them. (gnome_calendar_object_removed_cb): Remove the alarms for the object. * gui/alarm.c (alarm_add): Do not take in a CalendarAlarm, just the trigger time, the callback and the closure data. Return an opaque identifier for the alarm so that it can be removed by the client code if needed. Use the queue_alarm() helper function. (queue_alarm): Helper function to actually queue the alarm and set up the itimer. Deal with a nonzero return value from setitimer(). (alarm_remove): New function to remove an alarm based on its ID. (pop_alarm): New helper function; pops the first alarm of the queue and resets the timer as appropriate. (alarm_ready): Simplified a lot by using pop_alarm(). * idl/evolution-calendar.idl (Cal): Added get_alarms_in_range(). * pcs/cal.c (build_instance_seq): New function to build a CORBA sequence from the internal list of instances. (Cal_get_events_in_range): Use build_instance_seq(). (Cal_get_alarms_in_range): Implemented new method. * pcs/cal-backend.c (cal_backend_get_alarms_in_range): New function with the get_alarms_in_range() engine. * pcs/cal-backend-imc.c (cal_backend_imc_get_alarms_in_range): Implemented the get_alarms_in_range() method. * cal-client/cal-client.c (cal_client_get_alarms_in_range): New client-side function for getting the alarms. (build_instance_list): New helper function to build the CalObjInstance list from the CORBA sequence. (cal_client_get_events_in_range): Use build_instance_list(). * gui/calendar-commands.h: #include <cal-util/calobj.h>. #include "gnome-cal.h". * gui/e-week-view.c: #include "calendar-commands.h" instead of main.h; the latter is an obsolete file and will be killed. * gui/evolution-calendar-control.c (main): Call init_bonobo() before anything else. We need the GTK+ object system initialized. * gui/Makefile.am (evolution_calendar_SOURCES): Do not use main.h. * cal-util/cal-util.c (cal_alarm_instance_list_free): New function. svn path=/trunk/; revision=2987
Diffstat (limited to 'calendar/gui')
-rw-r--r--calendar/gui/Makefile.am1
-rw-r--r--calendar/gui/alarm-notify/alarm.c399
-rw-r--r--calendar/gui/alarm-notify/alarm.h37
-rw-r--r--calendar/gui/alarm.c399
-rw-r--r--calendar/gui/alarm.h37
-rw-r--r--calendar/gui/calendar-commands.c9
-rw-r--r--calendar/gui/calendar-commands.h4
-rw-r--r--calendar/gui/e-week-view.c2
-rw-r--r--calendar/gui/evolution-calendar-control.c4
-rw-r--r--calendar/gui/gnome-cal.c470
-rw-r--r--calendar/gui/gnome-cal.h6
11 files changed, 900 insertions, 468 deletions
diff --git a/calendar/gui/Makefile.am b/calendar/gui/Makefile.am
index 3785d3df08..cffe6aaa22 100644
--- a/calendar/gui/Makefile.am
+++ b/calendar/gui/Makefile.am
@@ -60,7 +60,6 @@ evolution_calendar_SOURCES = \
goto.c \
mark.c \
mark.h \
- main.h \
popup-menu.c \
popup-menu.h \
prop.c \
diff --git a/calendar/gui/alarm-notify/alarm.c b/calendar/gui/alarm-notify/alarm.c
index ae76a0ce73..20f64ffd75 100644
--- a/calendar/gui/alarm-notify/alarm.c
+++ b/calendar/gui/alarm-notify/alarm.c
@@ -1,10 +1,25 @@
-/*
- * Alarm handling for the GNOME Calendar.
+/* Evolution calendar - alarm notification support
*
- * (C) 1998 the Free Software Foundation
+ * Copyright (C) 2000 Helix Code, Inc.
*
- * Author: Miguel de Icaza (miguel@kernel.org)
+ * Authors: Miguel de Icaza <miguel@helixcode.com>
+ * Federico Mena-Quintero <federico@helixcode.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*/
+
#include <config.h>
#include <time.h>
#include <gnome.h>
@@ -14,237 +29,277 @@
#include <cal-util/calobj.h>
#include "alarm.h"
+
+
/* The pipes used to notify about an alarm */
-int alarm_pipes [2];
+static int alarm_pipes [2];
/* The list of pending alarms */
static GList *alarms;
-static void *head_alarm;
-
+/* A queued alarm structure */
typedef struct {
- time_t activation_time;
- AlarmFunction fn;
- void *closure;
- CalendarAlarm *alarm;
+ time_t trigger;
+ AlarmFunction alarm_fn;
+ gpointer data;
+ AlarmDestroyNotify destroy_notify_fn;
} AlarmRecord;
-enum DebugAction {
- ALARM_ACTIVATED,
- ALARM_ADDED,
- ALARM_NOT_ADDED
-};
-
-void debug_alarm (AlarmRecord* ar, enum DebugAction action);
-void calendar_notify (time_t time, CalendarAlarm *which, void *data);
-extern int debug_alarms;
+
-/*
- * SIGALRM handler. Notifies the callback about the alarm
- */
+/* SIGALRM handler. Notifies the callback about the alarm. */
static void
-alarm_activate ()
+alarm_signal (int arg)
{
char c = 0;
write (alarm_pipes [1], &c, 1);
}
-/*
- * SIGUSR1 handler. Toggles debugging output
+/* Sets up an itimer and returns a success code */
+static gboolean
+setup_itimer (time_t diff)
+{
+ struct itimerval itimer;
+ int v;
+
+ itimer.it_interval.tv_sec = 0;
+ itimer.it_interval.tv_usec = 0;
+ itimer.it_value.tv_sec = diff;
+ itimer.it_value.tv_usec = 0;
+
+ v = setitimer (ITIMER_REAL, &itimer, NULL);
+
+ return (v == 0) ? TRUE : FALSE;
+}
+
+/* Removes the head alarm, returns it, and schedules the next alarm in the
+ * queue.
*/
-static void
-toggle_debugging ()
+static AlarmRecord *
+pop_alarm (void)
{
- debug_alarms = !debug_alarms;
+ AlarmRecord *ar;
+ GList *l;
+
+ if (!alarms)
+ return NULL;
+
+ ar = alarms->data;
+
+ l = alarms;
+ alarms = g_list_remove_link (alarms, l);
+ g_list_free_1 (l);
+
+ if (alarms) {
+ time_t now;
+ AlarmRecord *new_ar;
+
+ now = time (NULL);
+ new_ar = alarms->data;
+
+ if (!setup_itimer (new_ar->trigger)) {
+ g_message ("pop_alarm(): Could not reset the timer! "
+ "Weird things will happen.");
+
+ /* FIXME: should we free the alarm list? What
+ * about further alarm removal requests that
+ * will fail?
+ */
+ }
+ } else {
+ struct itimerval itimer;
+ int v;
+
+ itimer.it_interval.tv_sec = 0;
+ itimer.it_interval.tv_usec = 0;
+ itimer.it_value.tv_sec = 0;
+ itimer.it_value.tv_usec = 0;
+
+ v = setitimer (ITIMER_REAL, &itimer, NULL);
+ if (v != 0)
+ g_message ("pop_alarm(): Could not clear the timer! "
+ "Weird things may happen.");
+ }
+
+ return ar;
}
+/* Input handler for our own alarm notification pipe */
static void
-alarm_ready (void *closure, int fd, GdkInputCondition cond)
+alarm_ready (gpointer data, gint fd, GdkInputCondition cond)
{
- AlarmRecord *ar = head_alarm;
- time_t now = time (NULL);
+ AlarmRecord *ar;
char c;
- if (read (alarm_pipes [0], &c, 1) != 1)
- return;
-
- if (ar == NULL){
- g_warning ("Empty events. This should not happen\n");
+ if (read (alarm_pipes [0], &c, 1) != 1) {
+ g_message ("alarm_ready(): Uh? Could not read from notification pipe.");
return;
}
- while (head_alarm){
- if (debug_alarms)
- debug_alarm (ar, ALARM_ACTIVATED);
- (*ar->fn)(ar->activation_time, ar->alarm, ar->closure);
- alarms = g_list_remove (alarms, head_alarm);
-
- /* Schedule next alarm */
- if (alarms){
- AlarmRecord *next;
-
- head_alarm = alarms->data;
- next = head_alarm;
-
- if (next->activation_time > now){
- struct itimerval itimer;
-
- itimer.it_interval.tv_sec = 0;
- itimer.it_interval.tv_usec = 0;
- itimer.it_value.tv_sec = next->activation_time - now;
- itimer.it_value.tv_usec = 0;
- setitimer (ITIMER_REAL, &itimer, NULL);
- break;
- } else {
- g_free (ar);
- ar = next;
- }
- } else
- head_alarm = NULL;
- }
+ g_assert (alarms != NULL);
+ ar = pop_alarm ();
+
+ g_message ("alarm_ready(): Notifying about alarm on %s", ctime (&ar->trigger));
+
+ (* ar->alarm_fn) (ar, ar->trigger, ar->data);
+
+ if (ar->destroy_notify_fn)
+ (* ar->destroy_notify_fn) (ar->data);
+
g_free (ar);
}
static int
-alarm_compare_by_time (gconstpointer a, gconstpointer b)
+compare_alarm_by_time (gconstpointer a, gconstpointer b)
{
const AlarmRecord *ara = a;
const AlarmRecord *arb = b;
time_t diff;
-
- diff = ara->activation_time - arb->activation_time;
+
+ diff = ara->trigger - arb->trigger;
return (diff < 0) ? -1 : (diff > 0) ? 1 : 0;
}
+/* Adds an alarm to the queue and sets up the timer */
+static gboolean
+queue_alarm (time_t now, AlarmRecord *ar)
+{
+ time_t diff;
+ AlarmRecord *old_head;
+
+ if (alarms)
+ old_head = alarms->data;
+ else
+ old_head = NULL;
+
+ alarms = g_list_insert_sorted (alarms, ar, compare_alarm_by_time);
+
+ if (old_head == alarms->data)
+ return TRUE;
+
+ /* Set the timer for removal upon activation */
+
+ diff = ar->trigger - now;
+ if (!setup_itimer (diff)) {
+ GList *l;
+
+ g_message ("queue_alarm(): Could not set up timer! Not queueing alarm.");
+
+ l = g_list_find (alarms, ar);
+ g_assert (l != NULL);
+
+ alarms = g_list_remove_link (alarms, l);
+ g_list_free_1 (l);
+ return FALSE;
+ }
+
+ return TRUE;
+}
+
/**
* alarm_add:
+ * @trigger: Time at which alarm will trigger.
+ * @alarm_fn: Callback for trigger.
+ * @data: Closure data for callback.
*
- * Tries to schedule @alarm.
+ * Adds an alarm to trigger at the specified time. The @alarm_fn will be called
+ * with the provided data and the alarm will be removed from the trigger list.
*
- * Returns TRUE if the alarm was scheduled.
- */
-gboolean
-alarm_add (CalendarAlarm *alarm, AlarmFunction fn, void *closure)
+ * Return value: An identifier for this alarm; it can be used to remove the
+ * alarm later with alarm_remove(). If the trigger time occurs in the past, then
+ * the alarm will not be queued and the function will return NULL.
+ **/
+gpointer
+alarm_add (time_t trigger, AlarmFunction alarm_fn, gpointer data,
+ AlarmDestroyNotify destroy_notify_fn)
{
- time_t now = time (NULL);
+ time_t now;
AlarmRecord *ar;
- time_t alarm_time = alarm->trigger;
-
- ar = g_new0 (AlarmRecord, 1);
- ar->activation_time = alarm_time;
- ar->fn = fn;
- ar->closure = closure;
- ar->alarm = alarm;
-
- /* If it already expired, do not add it */
- if (alarm_time < now) {
- if (debug_alarms)
- debug_alarm (ar, ALARM_NOT_ADDED);
- return FALSE;
- }
- alarms = g_list_insert_sorted (alarms, ar, alarm_compare_by_time);
+ now = time (NULL);
+ if (trigger < now)
+ return NULL;
- /* If first alarm is not the previous first alarm, reschedule SIGALRM */
- if (head_alarm != alarms->data){
- struct itimerval itimer;
- int v;
-
- /* Set the timer to disable upon activation */
- itimer.it_interval.tv_sec = 0;
- itimer.it_interval.tv_usec = 0;
- itimer.it_value.tv_sec = alarm_time - now;
- itimer.it_value.tv_usec = 0;
- v = setitimer (ITIMER_REAL, &itimer, NULL);
- head_alarm = alarms->data;
+ ar = g_new (AlarmRecord, 1);
+ ar->trigger = trigger;
+ ar->alarm_fn = alarm_fn;
+ ar->data = data;
+ ar->destroy_notify_fn = destroy_notify_fn;
+
+ g_message ("alarm_add(): Adding alarm for %s", ctime (&trigger));
+
+ if (!queue_alarm (now, ar)) {
+ if (ar->destroy_notify_fn)
+ (* ar->destroy_notify_fn) (ar->data);
+
+ g_free (ar);
+ ar = NULL;
}
- if (debug_alarms)
- debug_alarm (ar, ALARM_ADDED);
- return TRUE;
+
+ return ar;
}
-int
-alarm_kill (void *closure_key)
+/**
+ * alarm_remove:
+ * @alarm: A queued alarm identifier.
+ *
+ * Removes an alarm from the alarm queue.
+ **/
+void
+alarm_remove (gpointer alarm)
{
- GList *p;
-
- for (p = alarms; p; p = p->next){
- AlarmRecord *ar = p->data;
-
- if (ar->closure == closure_key){
- alarms = g_list_remove (alarms, p->data);
- if (alarms)
- head_alarm = alarms->data;
- else
- head_alarm = NULL;
- return 1;
- }
+ AlarmRecord *ar;
+ AlarmRecord *old_head;
+ GList *l;
+
+ ar = alarm;
+
+ l = g_list_find (alarms, ar);
+ if (!l) {
+ g_message ("alarm_remove(): Requested removal of nonexistent alarm!");
+ return;
}
- return 0;
+
+ old_head = alarms->data;
+
+ if (old_head == ar)
+ pop_alarm ();
+ else {
+ alarms = g_list_remove_link (alarms, l);
+ g_list_free_1 (l);
+ }
+
+ if (ar->destroy_notify_fn)
+ (* ar->destroy_notify_fn) (ar->data);
+
+ g_free (ar);
}
+/**
+ * alarm_init:
+ * @void:
+ *
+ * Initializes the alarm notification system. This must be called near the
+ * beginning of the program.
+ **/
void
alarm_init (void)
{
struct sigaction sa;
- struct sigaction debug_sa;
- int flags = 0;
-
+ int flags;
+
pipe (alarm_pipes);
-
+
/* set non blocking mode */
+ flags = 0;
fcntl (alarm_pipes [0], F_GETFL, &flags);
fcntl (alarm_pipes [0], F_SETFL, flags | O_NONBLOCK);
- gdk_input_add (alarm_pipes [0], GDK_INPUT_READ, alarm_ready, 0);
+ gdk_input_add (alarm_pipes [0], GDK_INPUT_READ, alarm_ready, NULL);
/* Setup the signal handler */
- sa.sa_handler = alarm_activate;
+ sa.sa_handler = alarm_signal;
sigemptyset (&sa.sa_mask);
- sa.sa_flags = SA_RESTART;
+ sa.sa_flags = SA_RESTART;
sigaction (SIGALRM, &sa, NULL);
-
- /* Setup a signal handler to toggle debugging */
- debug_sa.sa_handler = toggle_debugging;
- sigemptyset (&debug_sa.sa_mask);
- debug_sa.sa_flags = SA_RESTART;
- sigaction (SIGUSR1, &debug_sa, NULL);
-}
-
-void
-debug_alarm (AlarmRecord* ar, enum DebugAction action)
-{
- time_t now = time (NULL);
- iCalObject *ico = ar->closure;
- printf ("%s", ctime(&now));
- switch (action) {
- case ALARM_ADDED:
- printf ("Added alarm for %s", ctime(&ar->activation_time));
- break;
- case ALARM_NOT_ADDED:
- printf ("Alarm not added for %s", ctime(&ar->activation_time));
- break;
- case ALARM_ACTIVATED:
- printf ("Activated alarm\n");
- break;
- }
-
- if (ar->fn!=&calendar_notify) return;
- printf ("--- Summary: %s\n", ico->summary);
- switch (ar->alarm->type) {
- case ALARM_MAIL:
- printf ("--- Type: Mail\n");
- break;
- case ALARM_PROGRAM:
- printf ("--- Type: Program\n");
- break;
- case ALARM_DISPLAY:
- printf ("--- Type: Display\n");
- break;
- case ALARM_AUDIO:
- printf ("--- Type: Audio\n");
- break;
- }
}
-
-
diff --git a/calendar/gui/alarm-notify/alarm.h b/calendar/gui/alarm-notify/alarm.h
index efdfda997d..2394d28024 100644
--- a/calendar/gui/alarm-notify/alarm.h
+++ b/calendar/gui/alarm-notify/alarm.h
@@ -1,13 +1,40 @@
+/* Evolution calendar - alarm notification support
+ *
+ * Copyright (C) 2000 Helix Code, Inc.
+ *
+ * Authors: Miguel de Icaza <miguel@helixcode.com>
+ * Federico Mena-Quintero <federico@helixcode.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
+ */
+
#ifndef ALARM_H
#define ALARM_H
#include <time.h>
-#include <cal-util/calobj.h>
-typedef void (*AlarmFunction)(time_t time, CalendarAlarm *which, void *closuse);
+
+
+typedef void (* AlarmFunction) (gpointer alarm_id, time_t trigger, gpointer data);
+typedef void (* AlarmDestroyNotify) (gpointer data);
+
+void alarm_init (void);
+gpointer alarm_add (time_t trigger, AlarmFunction alarm_fn, gpointer data,
+ AlarmDestroyNotify destroy_notify_fn);
+void alarm_remove (gpointer alarm);
-void alarm_init (void);
-gboolean alarm_add (CalendarAlarm *alarm, AlarmFunction fn, void *closure);
-int alarm_kill (void *closure);
+
#endif
diff --git a/calendar/gui/alarm.c b/calendar/gui/alarm.c
index ae76a0ce73..20f64ffd75 100644
--- a/calendar/gui/alarm.c
+++ b/calendar/gui/alarm.c
@@ -1,10 +1,25 @@
-/*
- * Alarm handling for the GNOME Calendar.
+/* Evolution calendar - alarm notification support
*
- * (C) 1998 the Free Software Foundation
+ * Copyright (C) 2000 Helix Code, Inc.
*
- * Author: Miguel de Icaza (miguel@kernel.org)
+ * Authors: Miguel de Icaza <miguel@helixcode.com>
+ * Federico Mena-Quintero <federico@helixcode.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*/
+
#include <config.h>
#include <time.h>
#include <gnome.h>
@@ -14,237 +29,277 @@
#include <cal-util/calobj.h>
#include "alarm.h"
+
+
/* The pipes used to notify about an alarm */
-int alarm_pipes [2];
+static int alarm_pipes [2];
/* The list of pending alarms */
static GList *alarms;
-static void *head_alarm;
-
+/* A queued alarm structure */
typedef struct {
- time_t activation_time;
- AlarmFunction fn;
- void *closure;
- CalendarAlarm *alarm;
+ time_t trigger;
+ AlarmFunction alarm_fn;
+ gpointer data;
+ AlarmDestroyNotify destroy_notify_fn;
} AlarmRecord;
-enum DebugAction {
- ALARM_ACTIVATED,
- ALARM_ADDED,
- ALARM_NOT_ADDED
-};
-
-void debug_alarm (AlarmRecord* ar, enum DebugAction action);
-void calendar_notify (time_t time, CalendarAlarm *which, void *data);
-extern int debug_alarms;
+
-/*
- * SIGALRM handler. Notifies the callback about the alarm
- */
+/* SIGALRM handler. Notifies the callback about the alarm. */
static void
-alarm_activate ()
+alarm_signal (int arg)
{
char c = 0;
write (alarm_pipes [1], &c, 1);
}
-/*
- * SIGUSR1 handler. Toggles debugging output
+/* Sets up an itimer and returns a success code */
+static gboolean
+setup_itimer (time_t diff)
+{
+ struct itimerval itimer;
+ int v;
+
+ itimer.it_interval.tv_sec = 0;
+ itimer.it_interval.tv_usec = 0;
+ itimer.it_value.tv_sec = diff;
+ itimer.it_value.tv_usec = 0;
+
+ v = setitimer (ITIMER_REAL, &itimer, NULL);
+
+ return (v == 0) ? TRUE : FALSE;
+}
+
+/* Removes the head alarm, returns it, and schedules the next alarm in the
+ * queue.
*/
-static void
-toggle_debugging ()
+static AlarmRecord *
+pop_alarm (void)
{
- debug_alarms = !debug_alarms;
+ AlarmRecord *ar;
+ GList *l;
+
+ if (!alarms)
+ return NULL;
+
+ ar = alarms->data;
+
+ l = alarms;
+ alarms = g_list_remove_link (alarms, l);
+ g_list_free_1 (l);
+
+ if (alarms) {
+ time_t now;
+ AlarmRecord *new_ar;
+
+ now = time (NULL);
+ new_ar = alarms->data;
+
+ if (!setup_itimer (new_ar->trigger)) {
+ g_message ("pop_alarm(): Could not reset the timer! "
+ "Weird things will happen.");
+
+ /* FIXME: should we free the alarm list? What
+ * about further alarm removal requests that
+ * will fail?
+ */
+ }
+ } else {
+ struct itimerval itimer;
+ int v;
+
+ itimer.it_interval.tv_sec = 0;
+ itimer.it_interval.tv_usec = 0;
+ itimer.it_value.tv_sec = 0;
+ itimer.it_value.tv_usec = 0;
+
+ v = setitimer (ITIMER_REAL, &itimer, NULL);
+ if (v != 0)
+ g_message ("pop_alarm(): Could not clear the timer! "
+ "Weird things may happen.");
+ }
+
+ return ar;
}
+/* Input handler for our own alarm notification pipe */
static void
-alarm_ready (void *closure, int fd, GdkInputCondition cond)
+alarm_ready (gpointer data, gint fd, GdkInputCondition cond)
{
- AlarmRecord *ar = head_alarm;
- time_t now = time (NULL);
+ AlarmRecord *ar;
char c;
- if (read (alarm_pipes [0], &c, 1) != 1)
- return;
-
- if (ar == NULL){
- g_warning ("Empty events. This should not happen\n");
+ if (read (alarm_pipes [0], &c, 1) != 1) {
+ g_message ("alarm_ready(): Uh? Could not read from notification pipe.");
return;
}
- while (head_alarm){
- if (debug_alarms)
- debug_alarm (ar, ALARM_ACTIVATED);
- (*ar->fn)(ar->activation_time, ar->alarm, ar->closure);
- alarms = g_list_remove (alarms, head_alarm);
-
- /* Schedule next alarm */
- if (alarms){
- AlarmRecord *next;
-
- head_alarm = alarms->data;
- next = head_alarm;
-
- if (next->activation_time > now){
- struct itimerval itimer;
-
- itimer.it_interval.tv_sec = 0;
- itimer.it_interval.tv_usec = 0;
- itimer.it_value.tv_sec = next->activation_time - now;
- itimer.it_value.tv_usec = 0;
- setitimer (ITIMER_REAL, &itimer, NULL);
- break;
- } else {
- g_free (ar);
- ar = next;
- }
- } else
- head_alarm = NULL;
- }
+ g_assert (alarms != NULL);
+ ar = pop_alarm ();
+
+ g_message ("alarm_ready(): Notifying about alarm on %s", ctime (&ar->trigger));
+
+ (* ar->alarm_fn) (ar, ar->trigger, ar->data);
+
+ if (ar->destroy_notify_fn)
+ (* ar->destroy_notify_fn) (ar->data);
+
g_free (ar);
}
static int
-alarm_compare_by_time (gconstpointer a, gconstpointer b)
+compare_alarm_by_time (gconstpointer a, gconstpointer b)
{
const AlarmRecord *ara = a;
const AlarmRecord *arb = b;
time_t diff;
-
- diff = ara->activation_time - arb->activation_time;
+
+ diff = ara->trigger - arb->trigger;
return (diff < 0) ? -1 : (diff > 0) ? 1 : 0;
}
+/* Adds an alarm to the queue and sets up the timer */
+static gboolean
+queue_alarm (time_t now, AlarmRecord *ar)
+{
+ time_t diff;
+ AlarmRecord *old_head;
+
+ if (alarms)
+ old_head = alarms->data;
+ else
+ old_head = NULL;
+
+ alarms = g_list_insert_sorted (alarms, ar, compare_alarm_by_time);
+
+ if (old_head == alarms->data)
+ return TRUE;
+
+ /* Set the timer for removal upon activation */
+
+ diff = ar->trigger - now;
+ if (!setup_itimer (diff)) {
+ GList *l;
+
+ g_message ("queue_alarm(): Could not set up timer! Not queueing alarm.");
+
+ l = g_list_find (alarms, ar);
+ g_assert (l != NULL);
+
+ alarms = g_list_remove_link (alarms, l);
+ g_list_free_1 (l);
+ return FALSE;
+ }
+
+ return TRUE;
+}
+
/**
* alarm_add:
+ * @trigger: Time at which alarm will trigger.
+ * @alarm_fn: Callback for trigger.
+ * @data: Closure data for callback.
*
- * Tries to schedule @alarm.
+ * Adds an alarm to trigger at the specified time. The @alarm_fn will be called
+ * with the provided data and the alarm will be removed from the trigger list.
*
- * Returns TRUE if the alarm was scheduled.
- */
-gboolean
-alarm_add (CalendarAlarm *alarm, AlarmFunction fn, void *closure)
+ * Return value: An identifier for this alarm; it can be used to remove the
+ * alarm later with alarm_remove(). If the trigger time occurs in the past, then
+ * the alarm will not be queued and the function will return NULL.
+ **/
+gpointer
+alarm_add (time_t trigger, AlarmFunction alarm_fn, gpointer data,
+ AlarmDestroyNotify destroy_notify_fn)
{
- time_t now = time (NULL);
+ time_t now;
AlarmRecord *ar;
- time_t alarm_time = alarm->trigger;
-
- ar = g_new0 (AlarmRecord, 1);
- ar->activation_time = alarm_time;
- ar->fn = fn;
- ar->closure = closure;
- ar->alarm = alarm;
-
- /* If it already expired, do not add it */
- if (alarm_time < now) {
- if (debug_alarms)
- debug_alarm (ar, ALARM_NOT_ADDED);
- return FALSE;
- }
- alarms = g_list_insert_sorted (alarms, ar, alarm_compare_by_time);
+ now = time (NULL);
+ if (trigger < now)
+ return NULL;
- /* If first alarm is not the previous first alarm, reschedule SIGALRM */
- if (head_alarm != alarms->data){
- struct itimerval itimer;
- int v;
-
- /* Set the timer to disable upon activation */
- itimer.it_interval.tv_sec = 0;
- itimer.it_interval.tv_usec = 0;
- itimer.it_value.tv_sec = alarm_time - now;
- itimer.it_value.tv_usec = 0;
- v = setitimer (ITIMER_REAL, &itimer, NULL);
- head_alarm = alarms->data;
+ ar = g_new (AlarmRecord, 1);
+ ar->trigger = trigger;
+ ar->alarm_fn = alarm_fn;
+ ar->data = data;
+ ar->destroy_notify_fn = destroy_notify_fn;
+
+ g_message ("alarm_add(): Adding alarm for %s", ctime (&trigger));
+
+ if (!queue_alarm (now, ar)) {
+ if (ar->destroy_notify_fn)
+ (* ar->destroy_notify_fn) (ar->data);
+
+ g_free (ar);
+ ar = NULL;
}
- if (debug_alarms)
- debug_alarm (ar, ALARM_ADDED);
- return TRUE;
+
+ return ar;
}
-int
-alarm_kill (void *closure_key)
+/**
+ * alarm_remove:
+ * @alarm: A queued alarm identifier.
+ *
+ * Removes an alarm from the alarm queue.
+ **/
+void
+alarm_remove (gpointer alarm)
{
- GList *p;
-
- for (p = alarms; p; p = p->next){
- AlarmRecord *ar = p->data;
-
- if (ar->closure == closure_key){
- alarms = g_list_remove (alarms, p->data);
- if (alarms)
- head_alarm = alarms->data;
- else
- head_alarm = NULL;
- return 1;
- }
+ AlarmRecord *ar;
+ AlarmRecord *old_head;
+ GList *l;
+
+ ar = alarm;
+
+ l = g_list_find (alarms, ar);
+ if (!l) {
+ g_message ("alarm_remove(): Requested removal of nonexistent alarm!");
+ return;
}
- return 0;
+
+ old_head = alarms->data;
+
+ if (old_head == ar)
+ pop_alarm ();
+ else {
+ alarms = g_list_remove_link (alarms, l);
+ g_list_free_1 (l);
+ }
+
+ if (ar->destroy_notify_fn)
+ (* ar->destroy_notify_fn) (ar->data);
+
+ g_free (ar);
}
+/**
+ * alarm_init:
+ * @void:
+ *
+ * Initializes the alarm notification system. This must be called near the
+ * beginning of the program.
+ **/
void
alarm_init (void)
{
struct sigaction sa;
- struct sigaction debug_sa;
- int flags = 0;
-
+ int flags;
+
pipe (alarm_pipes);
-
+
/* set non blocking mode */
+ flags = 0;
fcntl (alarm_pipes [0], F_GETFL, &flags);
fcntl (alarm_pipes [0], F_SETFL, flags | O_NONBLOCK);
- gdk_input_add (alarm_pipes [0], GDK_INPUT_READ, alarm_ready, 0);
+ gdk_input_add (alarm_pipes [0], GDK_INPUT_READ, alarm_ready, NULL);
/* Setup the signal handler */
- sa.sa_handler = alarm_activate;
+ sa.sa_handler = alarm_signal;
sigemptyset (&sa.sa_mask);
- sa.sa_flags = SA_RESTART;
+ sa.sa_flags = SA_RESTART;
sigaction (SIGALRM, &sa, NULL);
-
- /* Setup a signal handler to toggle debugging */
- debug_sa.sa_handler = toggle_debugging;
- sigemptyset (&debug_sa.sa_mask);
- debug_sa.sa_flags = SA_RESTART;
- sigaction (SIGUSR1, &debug_sa, NULL);
-}
-
-void
-debug_alarm (AlarmRecord* ar, enum DebugAction action)
-{
- time_t now = time (NULL);
- iCalObject *ico = ar->closure;
- printf ("%s", ctime(&now));
- switch (action) {
- case ALARM_ADDED:
- printf ("Added alarm for %s", ctime(&ar->activation_time));
- break;
- case ALARM_NOT_ADDED:
- printf ("Alarm not added for %s", ctime(&ar->activation_time));
- break;
- case ALARM_ACTIVATED:
- printf ("Activated alarm\n");
- break;
- }
-
- if (ar->fn!=&calendar_notify) return;
- printf ("--- Summary: %s\n", ico->summary);
- switch (ar->alarm->type) {
- case ALARM_MAIL:
- printf ("--- Type: Mail\n");
- break;
- case ALARM_PROGRAM:
- printf ("--- Type: Program\n");
- break;
- case ALARM_DISPLAY:
- printf ("--- Type: Display\n");
- break;
- case ALARM_AUDIO:
- printf ("--- Type: Audio\n");
- break;
- }
}
-
-
diff --git a/calendar/gui/alarm.h b/calendar/gui/alarm.h
index efdfda997d..2394d28024 100644
--- a/calendar/gui/alarm.h
+++ b/calendar/gui/alarm.h
@@ -1,13 +1,40 @@
+/* Evolution calendar - alarm notification support
+ *
+ * Copyright (C) 2000 Helix Code, Inc.
+ *
+ * Authors: Miguel de Icaza <miguel@helixcode.com>
+ * Federico Mena-Quintero <federico@helixcode.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
+ */
+
#ifndef ALARM_H
#define ALARM_H
#include <time.h>
-#include <cal-util/calobj.h>
-typedef void (*AlarmFunction)(time_t time, CalendarAlarm *which, void *closuse);
+
+
+typedef void (* AlarmFunction) (gpointer alarm_id, time_t trigger, gpointer data);
+typedef void (* AlarmDestroyNotify) (gpointer data);
+
+void alarm_init (void);
+gpointer alarm_add (time_t trigger, AlarmFunction alarm_fn, gpointer data,
+ AlarmDestroyNotify destroy_notify_fn);
+void alarm_remove (gpointer alarm);
-void alarm_init (void);
-gboolean alarm_add (CalendarAlarm *alarm, AlarmFunction fn, void *closure);
-int alarm_kill (void *closure);
+
#endif
diff --git a/calendar/gui/calendar-commands.c b/calendar/gui/calendar-commands.c
index e6d5adedb8..73994d4302 100644
--- a/calendar/gui/calendar-commands.c
+++ b/calendar/gui/calendar-commands.c
@@ -20,7 +20,6 @@
#include <libgnorba/gnorba.h>
#include <bonobo.h>
#include <cal-util/timeutil.h>
-#include "alarm.h"
#include "eventedit.h"
#include "gnome-cal.h"
#include "calendar-commands.h"
@@ -46,9 +45,6 @@ int day_begin, day_end;
/* Whether weeks starts on Sunday or Monday */
int week_starts_on_monday;
-/* If true, enable debug output for alarms */
-int debug_alarms = 0;
-
/* If AM/PM indicators should be used. This may not be supported by the new
views. */
int am_pm_flag = 0;
@@ -381,7 +377,7 @@ open_ok (GtkWidget *widget, GtkFileSelection *fs)
ret = gnome_dialog_run (GNOME_DIALOG (error_dialog));
} else {
/* FIXME: find out who owns this calendar and use that name */
-#warning "fix me: find out who owns this calendar and use that name"
+#warning "FIXME: find out who owns this calendar and use that name"
/*
new_calendar ("Somebody", gtk_file_selection_get_filename (fs), NULL, NULL, FALSE);
*/
@@ -731,7 +727,8 @@ void calendar_set_uri (GnomeCalendar *gcal, char *calendar_file)
/*
* Initializes the calendar internal variables, loads defaults
*/
-void init_calendar (void)
+void
+init_calendar (void)
{
int i;
char *cspec, *color;
diff --git a/calendar/gui/calendar-commands.h b/calendar/gui/calendar-commands.h
index 62e9d87512..50cc2b85b6 100644
--- a/calendar/gui/calendar-commands.h
+++ b/calendar/gui/calendar-commands.h
@@ -2,6 +2,8 @@
#define CALENDAR_COMMANDS_H
#include <bonobo/bonobo-control.h>
+#include <cal-util/calobj.h>
+#include "gnome-cal.h"
/* This enum and the following array define the color preferences */
@@ -101,7 +103,7 @@ void calendar_set_uri (GnomeCalendar *gcal, char *calendar_file);
/*----------------------------------------------------------------------*/
-/* FIX ME -- where should this stuff go? */
+/* FIXME -- where should this stuff go? */
/*----------------------------------------------------------------------*/
/* This is only used by the calendar_get_events_in_range routine to get
diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c
index 0665a6e63d..26fce815f9 100644
--- a/calendar/gui/e-week-view.c
+++ b/calendar/gui/e-week-view.c
@@ -29,11 +29,11 @@
#include <config.h>
#include <math.h>
#include <gnome.h>
+#include "calendar-commands.h"
#include "e-week-view.h"
#include "e-week-view-event-item.h"
#include "e-week-view-main-item.h"
#include "e-week-view-titles-item.h"
-#include "main.h"
#include <cal-util/timeutil.h>
#include "popup-menu.h"
#include "eventedit.h"
diff --git a/calendar/gui/evolution-calendar-control.c b/calendar/gui/evolution-calendar-control.c
index 972a670bde..ac0801bcc8 100644
--- a/calendar/gui/evolution-calendar-control.c
+++ b/calendar/gui/evolution-calendar-control.c
@@ -178,15 +178,15 @@ calendar_factory_init (void)
int
main (int argc, char **argv)
{
+ init_bonobo (&argc, argv);
alarm_init ();
+
init_calendar ();
//g_log_set_always_fatal ((GLogLevelFlags) 0xFFFF);
CORBA_exception_init (&ev);
- init_bonobo (&argc, argv);
-
calendar_factory_init ();
bonobo_main ();
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c
index db46b113ee..4c90414f16 100644
--- a/calendar/gui/gnome-cal.c
+++ b/calendar/gui/gnome-cal.c
@@ -30,7 +30,18 @@
-static void gnome_calendar_class_init (GnomeCalendar *class);
+/* An entry in the UID->alarms hash table. The UID key *is* the uid field in
+ * this structure, so don't free it separately.
+ */
+typedef struct {
+ char *uid;
+ GList *alarm_ids;
+} ObjectAlarms;
+
+
+
+static void gnome_calendar_class_init (GnomeCalendarClass *class);
+static void gnome_calendar_init (GnomeCalendar *gcal);
static void gnome_calendar_destroy (GtkObject *object);
static void gnome_calendar_update_view_times (GnomeCalendar *gcal,
@@ -47,7 +58,7 @@ static void gnome_calendar_on_month_changed (GtkCalendar *calendar,
static GtkVBoxClass *parent_class;
-
+
guint
gnome_calendar_get_type (void)
@@ -56,10 +67,10 @@ gnome_calendar_get_type (void)
if(!gnome_calendar_type) {
GtkTypeInfo gnome_calendar_info = {
"GnomeCalendar",
- sizeof(GnomeCalendar),
- sizeof(GnomeCalendarClass),
+ sizeof (GnomeCalendar),
+ sizeof (GnomeCalendarClass),
(GtkClassInitFunc) gnome_calendar_class_init,
- (GtkObjectInitFunc) NULL,
+ (GtkObjectInitFunc) gnome_calendar_init,
(GtkArgSetFunc) NULL,
(GtkArgGetFunc) NULL,
};
@@ -74,15 +85,42 @@ gnome_calendar_get_type (void)
return gnome_calendar_type;
}
-
+/* Class initialization function for the gnome calendar */
static void
-gnome_calendar_class_init (GnomeCalendar *class)
+gnome_calendar_class_init (GnomeCalendarClass *class)
{
- GtkObjectClass *object_class;
+ GtkObjectClass *object_class;
+
object_class = (GtkObjectClass *) class;
+
object_class->destroy = gnome_calendar_destroy;
}
+/* Object initialization function for the gnome calendar */
+static void
+gnome_calendar_init (GnomeCalendar *gcal)
+{
+ gcal->alarms = g_hash_table_new (g_str_hash, g_str_equal);
+}
+
+/* Used from g_hash_table_foreach(); frees an object alarms entry */
+static void
+free_object_alarms (gpointer key, gpointer value, gpointer data)
+{
+ ObjectAlarms *oa;
+
+ oa = value;
+
+ g_assert (oa->uid != NULL);
+ g_free (oa->uid);
+ oa->uid = NULL;
+
+ g_assert (oa->alarm_ids != NULL);
+ g_list_free (oa->alarm_ids);
+ oa->alarm_ids = NULL;
+
+ g_free (oa);
+}
static void
gnome_calendar_destroy (GtkObject *object)
@@ -96,6 +134,10 @@ gnome_calendar_destroy (GtkObject *object)
gtk_object_unref (GTK_OBJECT (gcal->client));
+ g_hash_table_foreach (gcal->alarms, free_object_alarms, NULL);
+ g_hash_table_destroy (gcal->alarms);
+ gcal->alarms = NULL;
+
if (GTK_OBJECT_CLASS (parent_class)->destroy)
(* GTK_OBJECT_CLASS (parent_class)->destroy) (object);
}
@@ -388,11 +430,292 @@ gnome_calendar_set_view (GnomeCalendar *gcal, char *page_name)
gnome_calendar_update_gtk_calendar (gcal);
}
+/* Sends a mail notification of an alarm trigger */
+static void
+mail_notification (char *mail_address, char *text, time_t app_time)
+{
+ pid_t pid;
+ int p [2];
+ char *command;
+
+ pipe (p);
+ pid = fork ();
+ if (pid == 0){
+ int dev_null;
+
+ dev_null = open ("/dev/null", O_RDWR);
+ dup2 (p [0], 0);
+ dup2 (dev_null, 1);
+ dup2 (dev_null, 2);
+ execl ("/usr/lib/sendmail", "/usr/lib/sendmail",
+ mail_address, NULL);
+ _exit (127);
+ }
+ command = g_strconcat ("To: ", mail_address, "\n",
+ "Subject: ", _("Reminder of your appointment at "),
+ ctime (&app_time), "\n\n", text, "\n", NULL);
+ write (p [1], command, strlen (command));
+ close (p [1]);
+ close (p [0]);
+ g_free (command);
+}
+
+static int
+max_open_files (void)
+{
+ static int files;
+
+ if (files)
+ return files;
+
+ files = sysconf (_SC_OPEN_MAX);
+ if (files != -1)
+ return files;
+#ifdef OPEN_MAX
+ return files = OPEN_MAX;
+#else
+ return files = 256;
+#endif
+}
+
+/* Executes a program as a notification of an alarm trigger */
+static void
+program_notification (char *command, int close_standard)
+{
+ struct sigaction ignore, save_intr, save_quit;
+ int status = 0, i;
+ pid_t pid;
+
+ ignore.sa_handler = SIG_IGN;
+ sigemptyset (&ignore.sa_mask);
+ ignore.sa_flags = 0;
+
+ sigaction (SIGINT, &ignore, &save_intr);
+ sigaction (SIGQUIT, &ignore, &save_quit);
+
+ if ((pid = fork ()) < 0){
+ fprintf (stderr, "\n\nfork () = -1\n");
+ return;
+ }
+ if (pid == 0){
+ pid = fork ();
+ if (pid == 0){
+ const int top = max_open_files ();
+ sigaction (SIGINT, &save_intr, NULL);
+ sigaction (SIGQUIT, &save_quit, NULL);
+
+ for (i = (close_standard ? 0 : 3); i < top; i++)
+ close (i);
+
+ /* FIXME: As an excercise to the reader, copy the
+ * code from mc to setup shell properly instead of
+ * /bin/sh. Yes, this comment is larger than a cut and paste.
+ */
+ execl ("/bin/sh", "/bin/sh", "-c", command, (char *) 0);
+
+ _exit (127);
+ } else {
+ _exit (127);
+ }
+ }
+ wait (&status);
+ sigaction (SIGINT, &save_intr, NULL);
+ sigaction (SIGQUIT, &save_quit, NULL);
+}
+
+/* Present a display notification of an alarm trigger */
+static void
+display_notification (time_t trigger, time_t occur, iCalObject *ico, GnomeCalendar *gcal)
+{
+ g_message ("DISPLAY NOTIFICATION!");
+ /* FIXME */
+}
+
+/* Present an audible notification of an alarm trigger */
+static void
+audio_notification (time_t trigger, time_t occur, iCalObject *ico, GnomeCalendar *gcal)
+{
+ g_message ("AUDIO NOTIFICATION!");
+ /* FIXME */
+}
+
+struct trigger_alarm_closure {
+ GnomeCalendar *gcal;
+ char *uid;
+ enum AlarmType type;
+ time_t occur;
+};
+
+/* Callback function used when an alarm is triggered */
+static void
+trigger_alarm_cb (gpointer alarm_id, time_t trigger, gpointer data)
+{
+ struct trigger_alarm_closure *c;
+ char *str_ico;
+ iCalObject *ico;
+ CalObjFindStatus status;
+ ObjectAlarms *oa;
+ GList *l;
+
+ c = data;
+
+ /* Fetch the object */
+
+ str_ico = cal_client_get_object (c->gcal->client, c->uid);
+ status = ical_object_find_in_string (c->uid, str_ico, &ico);
+
+ switch (status) {
+ case CAL_OBJ_FIND_SUCCESS:
+ /* Go on */
+ break;
+
+ case CAL_OBJ_FIND_SYNTAX_ERROR:
+ g_message ("trigger_alarm_cb(): syntax error in fetched object");
+ return;
+
+ case CAL_OBJ_FIND_NOT_FOUND:
+ g_message ("trigger_alarm_cb(): could not find fetched object");
+ return;
+ }
+
+ g_assert (ico != NULL);
+
+ /* Present notification */
+
+ switch (c->type) {
+ case ALARM_MAIL:
+ g_assert (ico->malarm.enabled);
+ mail_notification (ico->malarm.data, ico->summary, c->occur);
+ break;
+
+ case ALARM_PROGRAM:
+ g_assert (ico->palarm.enabled);
+ program_notification (ico->palarm.data, FALSE);
+ break;
+
+ case ALARM_DISPLAY:
+ g_assert (ico->dalarm.enabled);
+ display_notification (trigger, c->occur, ico, c->gcal);
+ break;
+
+ case ALARM_AUDIO:
+ g_assert (ico->aalarm.enabled);
+ audio_notification (trigger, c->occur, ico, c->gcal);
+ break;
+ }
+
+ /* Remove the alarm from the hash table */
+
+ oa = g_hash_table_lookup (c->gcal->alarms, ico->uid);
+ g_assert (oa != NULL);
+
+ l = g_list_find (oa->alarm_ids, alarm_id);
+ g_assert (l != NULL);
+
+ oa->alarm_ids = g_list_remove_link (oa->alarm_ids, l);
+ g_list_free_1 (l);
+
+ if (!oa->alarm_ids) {
+ g_hash_table_remove (c->gcal->alarms, ico->uid);
+ g_free (oa->uid);
+ g_free (oa);
+ }
+}
+
+/* Frees a struct trigger_alarm_closure */
+static void
+free_trigger_alarm_closure (gpointer data)
+{
+ struct trigger_alarm_closure *c;
+
+ c = data;
+ g_free (c->uid);
+ g_free (c);
+}
+
+/* Queues the specified alarm */
+static void
+setup_alarm (GnomeCalendar *cal, CalAlarmInstance *ai)
+{
+ struct trigger_alarm_closure *c;
+ gpointer alarm;
+ ObjectAlarms *oa;
+
+ c = g_new (struct trigger_alarm_closure, 1);
+ c->gcal = cal;
+ c->uid = g_strdup (ai->uid);
+ c->type = ai->type;
+ c->occur = ai->occur;
+
+ alarm = alarm_add (ai->trigger, trigger_alarm_cb, c, free_trigger_alarm_closure);
+ if (!alarm) {
+ g_message ("setup_alarm(): Could not set up alarm");
+ g_free (c->uid);
+ g_free (c);
+ return;
+ }
+
+ oa = g_hash_table_lookup (cal->alarms, ai->uid);
+ if (oa)
+ oa->alarm_ids = g_list_prepend (oa->alarm_ids, alarm);
+ else {
+ oa = g_new (ObjectAlarms, 1);
+ oa->uid = g_strdup (ai->uid);
+ oa->alarm_ids = g_list_prepend (NULL, alarm);
+
+ g_hash_table_insert (cal->alarms, oa->uid, oa);
+ }
+}
+
+static void load_alarms (GnomeCalendar *cal);
+
+/* Called nightly to refresh the day's alarms */
+static void
+midnight_refresh_cb (gpointer alarm_id, time_t trigger, gpointer data)
+{
+ GnomeCalendar *cal;
+
+ cal = GNOME_CALENDAR (data);
+ cal->midnight_alarm_refresh_id = NULL;
+
+ load_alarms (cal);
+}
+
+/* Loads and queues the alarms from the current time up to midnight. */
+static void
+load_alarms (GnomeCalendar *cal)
+{
+ time_t now;
+ time_t end_of_day;
+ GList *alarms, *l;
+
+ now = time (NULL);
+ end_of_day = time_day_end (now);
+
+ /* Queue alarms */
+
+ alarms = cal_client_get_alarms_in_range (cal->client, now, end_of_day);
+
+ for (l = alarms; l; l = l->next)
+ setup_alarm (cal, l->data);
+
+ cal_alarm_instance_list_free (alarms);
+
+ /* Queue the midnight alarm refresh */
+
+ cal->midnight_alarm_refresh_id = alarm_add (end_of_day, midnight_refresh_cb, cal, NULL);
+ if (!cal->midnight_alarm_refresh_id) {
+ g_message ("load_alarms(): Could not set up the midnight refresh alarm!");
+ /* FIXME: what to do? */
+ }
+}
/* This tells all components to reload all calendar objects. */
static void
-gnome_calendar_update_all (GnomeCalendar *cal, iCalObject *object, int flags)
+gnome_calendar_update_all (GnomeCalendar *cal)
{
+ load_alarms (cal);
+
e_day_view_update_all_events (E_DAY_VIEW (cal->day_view));
e_day_view_update_all_events (E_DAY_VIEW (cal->work_week_view));
e_week_view_update_all_events (E_WEEK_VIEW (cal->week_view));
@@ -406,6 +729,30 @@ gnome_calendar_update_all (GnomeCalendar *cal, iCalObject *object, int flags)
gnome_calendar_tag_calendar (cal, cal->gtk_calendar);
}
+/* Removes any queued alarms for the specified UID */
+static void
+remove_alarms_for_object (GnomeCalendar *gcal, const char *uid)
+{
+ ObjectAlarms *oa;
+ GList *l;
+
+ oa = g_hash_table_lookup (gcal->alarms, uid);
+ if (!oa)
+ return;
+
+ for (l = oa->alarm_ids; l; l = l->next) {
+ gpointer alarm_id;
+
+ alarm_id = l->data;
+ alarm_remove (alarm_id);
+ }
+
+ g_hash_table_remove (gcal->alarms, uid);
+
+ g_free (oa->uid);
+ g_list_free (oa->alarm_ids);
+ g_free (oa);
+}
static void
gnome_calendar_object_updated_cb (GtkWidget *cal_client,
@@ -415,6 +762,9 @@ gnome_calendar_object_updated_cb (GtkWidget *cal_client,
g_message ("gnome-cal: got object changed_cb, uid='%s'",
uid?uid:"<NULL>");
+ remove_alarms_for_object (gcal, uid);
+ /* FIXME: put in new alarms */
+
/* FIXME: do we really want each view to reload the event itself?
Maybe we should keep track of events globally, maybe with ref
counts. We also need to sort out where they get freed. */
@@ -441,6 +791,8 @@ gnome_calendar_object_removed_cb (GtkWidget *cal_client,
g_message ("gnome-cal: got object removed _cb, uid='%s'",
uid?uid:"<NULL>");
+ remove_alarms_for_object (gcal, uid);
+
e_day_view_remove_event (E_DAY_VIEW (gcal->day_view), uid);
e_day_view_remove_event (E_DAY_VIEW (gcal->work_week_view), uid);
e_week_view_remove_event (E_WEEK_VIEW (gcal->week_view), uid);
@@ -501,7 +853,7 @@ gnome_calendar_load_cb (GtkWidget *cal_client,
switch (status) {
case CAL_CLIENT_LOAD_SUCCESS:
- gnome_calendar_update_all (locd->gcal, NULL, 0);
+ gnome_calendar_update_all (locd->gcal);
g_message ("gnome_calendar_load_cb: success");
break;
@@ -521,7 +873,7 @@ gnome_calendar_load_cb (GtkWidget *cal_client,
cal_client_create_calendar (locd->gcal->client,
locd->uri);
- gnome_calendar_update_all (locd->gcal, NULL, 0);
+ gnome_calendar_update_all (locd->gcal);
}
break;
@@ -613,97 +965,6 @@ gnome_calendar_object_changed (GnomeCalendar *gcal, iCalObject *obj, int flags)
g_free (obj_string);
}
-static int
-max_open_files (void)
-{
- static int files;
-
- if (files)
- return files;
-
- files = sysconf (_SC_OPEN_MAX);
- if (files != -1)
- return files;
-#ifdef OPEN_MAX
- return files = OPEN_MAX;
-#else
- return files = 256;
-#endif
-}
-
-static void
-execute (char *command, int close_standard)
-{
- struct sigaction ignore, save_intr, save_quit;
- int status = 0, i;
- pid_t pid;
-
- ignore.sa_handler = SIG_IGN;
- sigemptyset (&ignore.sa_mask);
- ignore.sa_flags = 0;
-
- sigaction (SIGINT, &ignore, &save_intr);
- sigaction (SIGQUIT, &ignore, &save_quit);
-
- if ((pid = fork ()) < 0){
- fprintf (stderr, "\n\nfork () = -1\n");
- return;
- }
- if (pid == 0){
- pid = fork ();
- if (pid == 0){
- const int top = max_open_files ();
- sigaction (SIGINT, &save_intr, NULL);
- sigaction (SIGQUIT, &save_quit, NULL);
-
- for (i = (close_standard ? 0 : 3); i < top; i++)
- close (i);
-
- /* FIXME: As an excercise to the reader, copy the
- * code from mc to setup shell properly instead of
- * /bin/sh. Yes, this comment is larger than a cut and paste.
- */
- execl ("/bin/sh", "/bin/sh", "-c", command, (char *) 0);
-
- _exit (127);
- } else {
- _exit (127);
- }
- }
- wait (&status);
- sigaction (SIGINT, &save_intr, NULL);
- sigaction (SIGQUIT, &save_quit, NULL);
-}
-
-static void
-mail_notify (char *mail_address, char *text, time_t app_time)
-{
- pid_t pid;
- int p [2];
- char *command;
-
- pipe (p);
- pid = fork ();
- if (pid == 0){
- int dev_null;
-
- dev_null = open ("/dev/null", O_RDWR);
- dup2 (p [0], 0);
- dup2 (dev_null, 1);
- dup2 (dev_null, 2);
- execl ("/usr/lib/sendmail", "/usr/lib/sendmail",
- mail_address, NULL);
- _exit (127);
- }
- command = g_strconcat ("To: ", mail_address, "\n",
- "Subject: ", _("Reminder of your appointment at "),
- ctime (&app_time), "\n\n", text, "\n", NULL);
- write (p [1], command, strlen (command));
- close (p [1]);
- close (p [0]);
- g_free (command);
-}
-
static void
stop_beeping (GtkObject* object, gpointer data)
{
@@ -736,6 +997,8 @@ timeout_beep (gpointer data)
return FALSE;
}
+#if 0
+
void
calendar_notify (time_t activation_time, CalendarAlarm *which, void *data)
{
@@ -829,6 +1092,8 @@ calendar_notify (time_t activation_time, CalendarAlarm *which, void *data)
}
}
+#endif
+
/*
* Tags the dates with appointments in a GtkCalendar based on the
* GnomeCalendar contents
@@ -1079,4 +1344,3 @@ gnome_calendar_on_month_changed (GtkCalendar *calendar,
{
gnome_calendar_tag_calendar (gcal, gcal->gtk_calendar);
}
-
diff --git a/calendar/gui/gnome-cal.h b/calendar/gui/gnome-cal.h
index 20287c202b..48bd6af679 100644
--- a/calendar/gui/gnome-cal.h
+++ b/calendar/gui/gnome-cal.h
@@ -52,6 +52,12 @@ typedef struct {
/* The signal handler id for our GtkCalendar "day_selected" handler. */
guint day_selected_id;
+
+ /* Alarm ID for the midnight refresh function */
+ gpointer midnight_alarm_refresh_id;
+
+ /* UID->alarms hash */
+ GHashTable *alarms;
} GnomeCalendar;
typedef struct {