summaryrefslogtreecommitdiff
path: root/examples/c/monitor-events.c
blob: 14d1a2e83ea3df6121caa94e1a254a69eec73fb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
 * Copyright (C) 2010 Canonical Ltd
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 3 as
 * published by the Free Software Foundation.
 *
 * 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, see <http://www.gnu.org/licenses/>.
 *
 * Authored by Mikkel Kamstrup Erlandsen <mikkel.kamstrup@canonical.com>
 *
 */

#include <glib.h>
#include <glib/gprintf.h>
#include <glib-object.h>
#include <zeitgeist.h>
#include <zeitgeist-client.h>

static void
on_events_inserted (ZeitgeistMonitor   *mon,
                    ZeitgeistTimeRange *time_range,
                    ZeitgeistResultSet *events,
                    gpointer            user_data)
{
  ZeitgeistEvent   *event;
  ZeitgeistSubject *subject;
  gint              j;
  
  g_message ("%i events inserted", zeitgeist_result_set_size (events));

  while (zeitgeist_result_set_has_next (events))
    {
      event = zeitgeist_result_set_next_value (events);
      for (j = 0; j < zeitgeist_event_num_subjects (event); j++)
        {
          subject = zeitgeist_event_get_subject (event, j);
          g_message (" * %s", zeitgeist_subject_get_uri (subject));
        }
    }
}

static void
on_events_deleted (ZeitgeistMonitor   *mon,
                   ZeitgeistTimeRange *time_range,
                   GArray             *event_ids,
                   gpointer            user_data)
{
  g_message ("%i events deleted", event_ids->len);
}

gint
main (gint   argc,
      gchar *argv[])
{
  GMainLoop          *mainloop;
  ZeitgeistLog       *log;
  ZeitgeistMonitor   *monitor;
  GPtrArray          *templates;
  GError**           error;
  
  error = NULL;
  mainloop = g_main_loop_new (NULL, FALSE);
  log = g_object_new (ZEITGEIST_TYPE_LOG, NULL);

  /* Templates matching anything */
  templates = g_ptr_array_new ();
  g_ptr_array_add (templates, zeitgeist_event_new ());

  monitor = zeitgeist_monitor_new (zeitgeist_time_range_new_anytime (),
                                   templates);

  g_signal_connect (monitor, "events-inserted",
                    G_CALLBACK (on_events_inserted), NULL);
  g_signal_connect (monitor, "events-deleted",
                    G_CALLBACK (on_events_deleted), NULL);

  zeitgeist_log_install_monitor (log, monitor, error);
  
  g_main_loop_run (mainloop);
  
  return 0;
}