summaryrefslogtreecommitdiff
path: root/examples/c/search-events.c
blob: 1d843e874f5aadb37f7b0c586f7ea27113a700f8 (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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
 * 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_received (ZeitgeistIndex *index,
                    GAsyncResult   *res,
                    gpointer        user_data)
{
  ZeitgeistResultSet *events;
  ZeitgeistEvent     *event;
  ZeitgeistSubject   *subject;
  GError             *error;
  GMainLoop          *mainloop = (GMainLoop*) user_data;
  gint                i;
  
  error = NULL;
  events = zeitgeist_index_search_finish (index, res, &error);

  if (error)
    {
      g_warning ("Error reading results: %s", error->message);
      g_error_free (error);
      return;
    }

  g_message ("Got %u/%u events:",
             zeitgeist_result_set_size (events),
             zeitgeist_result_set_estimated_matches (events));

  while (zeitgeist_result_set_has_next (events))
    {
      event = zeitgeist_result_set_next_value (events);
      for (i = 0; i < zeitgeist_event_num_subjects (event); i++)
        {
          subject = zeitgeist_event_get_subject (event, i);
          g_printf ("%s\n", zeitgeist_subject_get_uri (subject));
        }
    }

  g_object_unref (events);
  
  g_main_loop_quit (mainloop);
}

gint
main (gint   argc,
      gchar *argv[])
{
  GMainLoop          *mainloop;
  ZeitgeistIndex     *index;
  gchar             **queryv;
  gchar              *query;
  
  
  if (argc <= 1)
    {
      g_printf ("Please specify a string to search for.\n");
      return 1;
    }
  
  /* Construct query string by concatenating the command line args
   * except the first one */
  queryv = argv;
  queryv++;
  query = g_strjoinv (" ", queryv);
  
  mainloop = g_main_loop_new (NULL, FALSE);
  index = zeitgeist_index_new ();
  
  g_printf ("Searching for '%s':\n", query);
  
  zeitgeist_index_search (index,
                          query,
                          zeitgeist_time_range_new_anytime (),
                          g_ptr_array_new (),
                          0,
                          10,
                          ZEITGEIST_RESULT_TYPE_RELEVANCY,
                          NULL,
                          (GAsyncReadyCallback)on_events_received,
                          mainloop);
  
  g_main_loop_run (mainloop);
  
  return 0;
}