]> Pileus Git - ~andy/gtk/blob - gtk/gtkrecentmanager.c
Remove unnecessary NULL checks before g_free(). (#369666, Morten Welinder,
[~andy/gtk] / gtk / gtkrecentmanager.c
1 /* GTK - The GIMP Toolkit
2  * gtkrecentmanager.c: a manager for the recently used resources
3  *
4  * Copyright (C) 2006 Emmanuele Bassi
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  */
20
21 #include "config.h"
22
23 #include <sys/types.h>
24 #include <sys/stat.h>
25 #ifdef HAVE_UNISTD_H
26 #include <unistd.h>
27 #endif
28 #include <errno.h>
29 #include <string.h>
30 #include <stdlib.h>
31 #include <glib.h>
32 #include <glib/gstdio.h>
33
34 #include "gtkrecentmanager.h"
35 #include "gtkintl.h"
36 #include "gtkstock.h"
37 #include "gtkicontheme.h"
38 #include "gtktypebuiltins.h"
39 #include "gtkprivate.h"
40 #include "gtkmarshalers.h"
41 #include "gtkalias.h"
42
43 #ifdef G_OS_UNIX
44 #define XDG_PREFIX _gtk_xdg
45 #include "xdgmime/xdgmime.h"
46 #endif
47
48 /* the file where we store the recently used items */
49 #define GTK_RECENTLY_USED_FILE  ".recently-used.xbel"
50
51 /* a poll every two seconds should be enough */
52 #define POLL_DELTA      2000
53
54 /* return all items by default */
55 #define DEFAULT_LIMIT   -1
56
57 /* keep in sync with xdgmime */
58 #define GTK_RECENT_DEFAULT_MIME "application/octet-stream"
59
60 typedef struct
61 {
62   gchar *name;
63   gchar *exec;
64   
65   guint count;
66   
67   time_t stamp;
68 } RecentAppInfo;
69
70 struct _GtkRecentInfo
71 {
72   gchar *uri;
73   
74   gchar *display_name;
75   gchar *description;
76   
77   time_t added;
78   time_t modified;
79   time_t visited;
80   
81   gchar *mime_type;
82   
83   GSList *applications;
84   GHashTable *apps_lookup;
85   
86   GSList *groups;
87   
88   gboolean is_private;
89   
90   GdkPixbuf *icon;
91   
92   gint ref_count;
93 };
94
95 struct _GtkRecentManagerPrivate
96 {
97   gchar *filename;
98
99   guint is_screen_singleton : 1;
100   guint is_dirty : 1;
101   guint write_in_progress : 1;
102   guint read_in_progress : 1;
103   
104   gint limit;
105   gint size;
106
107   GdkScreen *screen;
108   
109   GBookmarkFile *recent_items;
110   
111   time_t last_mtime;
112   guint poll_timeout;
113 };
114
115 enum
116 {
117   PROP_0,
118
119   PROP_FILENAME,  
120   PROP_LIMIT,
121   PROP_SIZE
122 };
123
124 static void           gtk_recent_manager_finalize     (GObject               *object);
125
126 static void           gtk_recent_manager_set_property (GObject               *object,
127                                                        guint                  prop_id,
128                                                        const GValue          *value,
129                                                        GParamSpec            *pspec);
130 static void           gtk_recent_manager_get_property (GObject               *object,
131                                                        guint                  prop_id,
132                                                        GValue                *value,
133                                                        GParamSpec            *pspec);
134 static void           gtk_recent_manager_changed      (GtkRecentManager      *manager);
135
136 static void           gtk_recent_manager_real_changed (GtkRecentManager      *manager);
137 static gboolean       gtk_recent_manager_poll_timeout (gpointer               data);
138 static void           gtk_recent_manager_set_filename (GtkRecentManager      *manager,
139                                                        const gchar           *filename);
140
141 static void           build_recent_items_list         (GtkRecentManager      *manager);
142 static void           purge_recent_items_list         (GtkRecentManager      *manager,
143                                                        GError               **error);
144
145 static RecentAppInfo *recent_app_info_new             (const gchar           *app_name);
146 static void           recent_app_info_free            (RecentAppInfo         *app_info);
147
148 static GtkRecentInfo *gtk_recent_info_new             (const gchar           *uri);
149 static void           gtk_recent_info_free            (GtkRecentInfo         *recent_info);
150
151 static guint signal_changed = 0;
152
153 G_DEFINE_TYPE (GtkRecentManager, gtk_recent_manager, G_TYPE_OBJECT)
154
155 static void
156 filename_warning (const gchar *format, 
157                   const gchar *filename, 
158                   const gchar *message)
159 {
160   gchar *utf8 = g_filename_to_utf8 (filename, -1, NULL, NULL, NULL);
161   g_warning (format, utf8 ? utf8 : "(invalid filename)", message);
162   g_free (utf8);
163 }
164
165 /* Test of haystack has the needle prefix, comparing case
166  * insensitive. haystack may be UTF-8, but needle must
167  * contain only lowercase ascii. */
168 static gboolean
169 has_case_prefix (const gchar *haystack, 
170                  const gchar *needle)
171 {
172   const gchar *h, *n;
173
174   /* Eat one character at a time. */
175   h = haystack;
176   n = needle;
177
178   while (*n && *h && *n == g_ascii_tolower (*h))
179     {
180       n++;
181       h++;
182     }
183
184   return *n == '\0';
185 }
186
187 GQuark
188 gtk_recent_manager_error_quark (void)
189 {
190   return g_quark_from_static_string ("gtk-recent-manager-error-quark");
191 }
192
193
194 static void
195 gtk_recent_manager_class_init (GtkRecentManagerClass *klass)
196 {
197   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
198   
199   gtk_recent_manager_parent_class = g_type_class_peek_parent (klass);
200   
201   gobject_class->set_property = gtk_recent_manager_set_property;
202   gobject_class->get_property = gtk_recent_manager_get_property;
203   gobject_class->finalize = gtk_recent_manager_finalize;
204   
205   /**
206    * GtkRecentManager:filename
207    *
208    * The full path to the file to be used to store and read the recently
209    * used resources list
210    *
211    * Since: 2.10
212    */
213   g_object_class_install_property (gobject_class,
214                                    PROP_FILENAME,
215                                    g_param_spec_string ("filename",
216                                                         P_("Filename"),
217                                                         P_("The full path to the file to be used to store and read the list"),
218                                                         NULL,
219                                                         (G_PARAM_CONSTRUCT_ONLY | G_PARAM_READABLE | G_PARAM_WRITABLE)));
220   /**
221    * GtkRecentManager:limit
222    *
223    * The maximum number of items to be returned by the
224    * gtk_recent_manager_get_items() function.
225    *
226    * Since: 2.10
227    */
228   g_object_class_install_property (gobject_class,
229                                    PROP_LIMIT,
230                                    g_param_spec_int ("limit",
231                                                      P_("Limit"),
232                                                      P_("The maximum number of items to be returned by gtk_recent_manager_get_items()"),
233                                                      -1,
234                                                      G_MAXINT,
235                                                      DEFAULT_LIMIT,
236                                                      G_PARAM_READWRITE));
237   /**
238    * GtkRecentManager:size
239    * 
240    * The size of the recently used resources list.
241    *
242    * Since: 2.10
243    */
244   g_object_class_install_property (gobject_class,
245                                    PROP_SIZE,
246                                    g_param_spec_int ("size",
247                                                      P_("Size"),
248                                                      P_("The size of the recently used resources list"),
249                                                      -1,
250                                                      G_MAXINT,
251                                                      0,
252                                                      G_PARAM_READABLE));
253   
254   /**
255    * GtkRecentManager::changed
256    * @recent_manager: the recent manager
257    *
258    * Emitted when the current recently used resources manager changes its
259    * contents.
260    *
261    * Since: 2.10
262    */
263   signal_changed =
264     g_signal_new (I_("changed"),
265                   G_TYPE_FROM_CLASS (klass),
266                   G_SIGNAL_RUN_FIRST,
267                   G_STRUCT_OFFSET (GtkRecentManagerClass, changed),
268                   NULL, NULL,
269                   g_cclosure_marshal_VOID__VOID,
270                   G_TYPE_NONE, 0);
271   
272   klass->changed = gtk_recent_manager_real_changed;
273   
274   g_type_class_add_private (klass, sizeof (GtkRecentManagerPrivate));
275 }
276
277 static void
278 gtk_recent_manager_init (GtkRecentManager *manager)
279 {
280   GtkRecentManagerPrivate *priv;
281   
282   priv = g_type_instance_get_private ((GTypeInstance *) manager,
283                                       GTK_TYPE_RECENT_MANAGER);
284   manager->priv = priv;
285   
286   priv->limit = DEFAULT_LIMIT;
287   priv->size = 0;
288   
289   priv->is_screen_singleton = FALSE;
290   priv->is_dirty = FALSE;
291   priv->write_in_progress = FALSE;
292   priv->read_in_progress = FALSE;
293
294   priv->screen = NULL;
295
296   priv->filename = g_build_filename (g_get_home_dir (),
297                                      GTK_RECENTLY_USED_FILE,
298                                      NULL);
299   priv->poll_timeout = gdk_threads_add_timeout (POLL_DELTA,
300                                       gtk_recent_manager_poll_timeout,
301                                       manager);
302
303   build_recent_items_list (manager);
304 }
305
306 static void
307 gtk_recent_manager_set_property (GObject               *object,
308                                  guint                  prop_id,
309                                  const GValue          *value,
310                                  GParamSpec            *pspec)
311 {
312   GtkRecentManager *recent_manager = GTK_RECENT_MANAGER (object);
313  
314   switch (prop_id)
315     {
316     case PROP_FILENAME:
317       gtk_recent_manager_set_filename (recent_manager, g_value_get_string (value));
318       break;      
319     case PROP_LIMIT:
320       gtk_recent_manager_set_limit (recent_manager, g_value_get_int (value));
321       break;
322     default:
323       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
324       break;
325     }
326 }
327
328 static void
329 gtk_recent_manager_get_property (GObject               *object,
330                                  guint                  prop_id,
331                                  GValue                *value,
332                                  GParamSpec            *pspec)
333 {
334   GtkRecentManager *recent_manager = GTK_RECENT_MANAGER (object);
335   
336   switch (prop_id)
337     {
338     case PROP_FILENAME:
339       g_value_set_string (value, recent_manager->priv->filename);
340       break;
341     case PROP_LIMIT:
342       g_value_set_int (value, recent_manager->priv->limit);
343       break;
344     case PROP_SIZE:
345       g_value_set_int (value, recent_manager->priv->size);
346       break;
347     default:
348       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
349       break;
350     }
351
352
353 static void
354 gtk_recent_manager_finalize (GObject *object)
355 {
356   GtkRecentManager *manager = GTK_RECENT_MANAGER (object);
357   GtkRecentManagerPrivate *priv = manager->priv;
358
359   /* remove the poll timeout */
360   if (priv->poll_timeout)
361     g_source_remove (priv->poll_timeout);
362   
363   g_free (priv->filename);
364   
365   if (priv->recent_items)
366     g_bookmark_file_free (priv->recent_items);
367   
368   /* chain up parent's finalize method */  
369   G_OBJECT_CLASS (gtk_recent_manager_parent_class)->finalize (object);
370 }
371
372 static void
373 gtk_recent_manager_real_changed (GtkRecentManager *manager)
374 {
375   GtkRecentManagerPrivate *priv = manager->priv;
376
377   g_object_freeze_notify (G_OBJECT (manager));
378
379   if (priv->is_dirty)
380     {
381       GError *write_error;
382       struct stat stat_buf;
383       
384       /* we are marked as dirty, so we dump the content of our
385        * recently used items list
386        */
387       g_assert (priv->filename != NULL);
388
389       priv->write_in_progress = TRUE;
390
391       /* if no container object has been defined, we create a new
392        * empty container, and dump it
393        */
394       if (!priv->recent_items)
395         {
396           priv->recent_items = g_bookmark_file_new ();
397           priv->size = 0;
398         }
399
400       write_error = NULL;
401       g_bookmark_file_to_file (priv->recent_items,
402                                priv->filename,
403                                &write_error);
404
405       if (write_error)
406         {
407           filename_warning ("Attempting to store changes into `%s', "
408                             "but failed: %s",
409                             priv->filename,
410                             write_error->message);
411           g_error_free (write_error);
412         }
413
414       priv->write_in_progress = FALSE;
415           
416       /* we have sync'ed our list with the storage file, so we
417        * update the file mtime in order to skip the timed check
418        * and spare us from a re-read.
419        */
420       if (g_stat (priv->filename, &stat_buf) < 0)
421         {
422           filename_warning ("Unable to stat() the recently used resources file "
423                             "at `%s': %s.",
424                             priv->filename,
425                             g_strerror (errno));
426
427           g_object_thaw_notify (G_OBJECT (manager));
428
429           return;
430         }
431       
432       priv->last_mtime = stat_buf.st_mtime;
433       
434       /* mark us as clean */
435       priv->is_dirty = FALSE;
436     }
437   else
438     {
439       /* we are not marked as dirty, so we have been called
440        * because the recently used resources file has been
441        * changed (and not from us).
442        */
443       build_recent_items_list (manager);
444     }
445
446   g_object_thaw_notify (G_OBJECT (manager));
447 }
448
449 /* timed poll()-ing of the recently used resources file.
450  * an event-based system would be more efficient.
451  */
452 static gboolean
453 gtk_recent_manager_poll_timeout (gpointer data)
454 {
455   GtkRecentManager *manager = GTK_RECENT_MANAGER (data);
456   GtkRecentManagerPrivate *priv = manager->priv;
457   struct stat stat_buf;
458   int stat_res;
459
460   /* wait for the next timeout if we have a read/write in progress */
461   if (priv->write_in_progress || priv->read_in_progress)
462     return TRUE;
463
464   stat_res = g_stat (priv->filename, &stat_buf);
465   if (stat_res < 0)
466     {
467       /* the file does not exist, yet, so we wait */
468       if (errno == ENOENT)
469         return TRUE;
470       
471       filename_warning ("Unable to stat() the recently used resources file "
472                         "at `%s': %s.",
473                         priv->filename,
474                         g_strerror (errno));
475       
476       return TRUE;
477     }
478
479   /* the file didn't change from the last poll(), so we bail out */
480   if (stat_buf.st_mtime == priv->last_mtime)
481     return TRUE;
482
483   /* the file has been changed, hence we emit the "changed" signal */
484   gtk_recent_manager_changed (manager);
485
486   return TRUE;
487 }
488
489 static void
490 gtk_recent_manager_set_filename (GtkRecentManager *manager,
491                                  const gchar      *filename)
492 {
493   GtkRecentManagerPrivate *priv;
494   
495   g_assert (GTK_IS_RECENT_MANAGER (manager));
496   priv = manager->priv;
497   
498   if (!filename || filename[0] == '\0')
499     return;
500   
501   g_free (manager->priv->filename);
502
503   if (manager->priv->poll_timeout)
504     {
505       g_source_remove (manager->priv->poll_timeout);
506       manager->priv->poll_timeout = 0;
507     }
508
509   priv->filename = g_strdup (filename);
510   priv->poll_timeout = gdk_threads_add_timeout (POLL_DELTA,
511                                       gtk_recent_manager_poll_timeout,
512                                       manager);
513
514   /* mark us clean, so that we can re-read the list
515    * of recently used resources
516    */
517   priv->is_dirty = FALSE;
518   build_recent_items_list (manager);
519 }
520
521 /* reads the recently used resources file and builds the items list.
522  * we keep the items list inside the parser object, and build the
523  * RecentInfo object only on user's demand to avoid useless replication.
524  * this function resets the dirty bit of the manager.
525  */
526 static void
527 build_recent_items_list (GtkRecentManager *manager)
528 {
529   GtkRecentManagerPrivate *priv;
530   struct stat stat_buf;
531   int stat_res;
532   gboolean res;
533   GError *read_error;
534   gint size;
535
536   priv = manager->priv;
537   g_assert (priv->filename != NULL);
538   
539   if (!priv->recent_items)
540     {
541       priv->recent_items = g_bookmark_file_new ();
542       priv->size = 0;
543     }
544
545   stat_res = g_stat (priv->filename, &stat_buf);
546   if (stat_res < 0)
547     {
548       /* the file doesn't exists, so we bail out and wait for the first
549        * write operation
550        */
551
552       if (errno == ENOENT)
553         return;
554       else
555         {
556           filename_warning ("Attempting to read the recently used resources file "
557                             "at `%s', but an error occurred: %s. Aborting.",
558                             priv->filename,
559                             g_strerror (errno));
560
561           return;
562         }
563     }
564
565   /* record the last mtime, for later use */
566   priv->last_mtime = stat_buf.st_mtime;
567   
568   priv->read_in_progress = TRUE;
569
570   /* the file exists, and it's valid (we hope); if not, destroy the container
571    * object and hope for a better result when the next "changed" signal is
572    * fired. */
573   read_error = NULL;
574   res = g_bookmark_file_load_from_file (priv->recent_items,
575                                         priv->filename,
576                                         &read_error);
577   if (read_error)
578     {
579       filename_warning ("Attempting to read the recently used resources file "
580                         "at `%s', but the parser failed: %s.",
581                         priv->filename,
582                         read_error->message);
583
584       g_bookmark_file_free (priv->recent_items);
585       priv->recent_items = NULL;
586
587       g_error_free (read_error);
588     }
589
590   size = g_bookmark_file_get_size (priv->recent_items);
591   if (priv->size != size)
592     {
593       priv->size = size;
594       
595       g_object_notify (G_OBJECT (manager), "size");
596     }
597
598   priv->read_in_progress = FALSE;
599   priv->is_dirty = FALSE;
600 }
601
602
603 /********************
604  * GtkRecentManager *
605  ********************/
606
607
608 /**
609  * gtk_recent_manager_new:
610  * 
611  * Creates a new recent manager object.  Recent manager objects are used to
612  * handle the list of recently used resources.  A #GtkRecentManager object
613  * monitors the recently used resources list, and emits the "changed" signal
614  * each time something inside the list changes.
615  *
616  * #GtkRecentManager objects are expensive: be sure to create them only when
617  * needed. You should use the gtk_recent_manager_new_for_screen() or the
618  * gtk_recent_manager_get_default() functions instead.
619  *
620  * Return value: A newly created #GtkRecentManager object.
621  *
622  * Since: 2.10
623  */
624 GtkRecentManager *
625 gtk_recent_manager_new (void)
626 {
627   return g_object_new (GTK_TYPE_RECENT_MANAGER, NULL);
628 }
629
630 /**
631  * gtk_recent_manager_get_default:
632  *
633  * Gets the recent manager for the default screen. See
634  * gtk_recent_manager_get_for_screen().
635  *
636  * Return value: A unique #GtkRecentManager associated with the
637  *   default screen. This recent manager is associated to the
638  *   screen and can be used as long as the screen is open.
639  *   Do no ref or unref it.
640  *
641  * Since: 2.10
642  */
643 GtkRecentManager *
644 gtk_recent_manager_get_default (void)
645 {
646   return gtk_recent_manager_get_for_screen (gdk_screen_get_default ());
647 }
648
649 /**
650  * gtk_recent_manager_get_for_screen:
651  * @screen: a #GdkScreen
652  *
653  * Gets the recent manager object associated with @screen; if this
654  * function has not previously been called for the given screen,
655  * a new recent manager object will be created and associated with
656  * the screen. Recent manager objects are fairly expensive to create,
657  * so using this function is usually a better choice than calling 
658  * gtk_recent_manager_new() and setting the screen yourself; by using
659  * this function a single recent manager object will be shared between
660  * users.
661  *
662  * Return value: A unique #GtkRecentManager associated with the given
663  *   screen. This recent manager is associated to the with the screen
664  *   and can be used as long as the screen is open. Do not ref or
665  *   unref it.
666  *
667  * Since: 2.10
668  */
669 GtkRecentManager *
670 gtk_recent_manager_get_for_screen (GdkScreen *screen)
671 {
672   GtkRecentManager *manager;
673
674   g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
675   g_return_val_if_fail (!screen->closed, NULL);
676
677   manager = g_object_get_data (G_OBJECT (screen), "gtk-recent-manager-default");
678   if (!manager)
679     {
680       GtkRecentManagerPrivate *priv;
681       
682       manager = gtk_recent_manager_new ();
683       gtk_recent_manager_set_screen (manager, screen);
684
685       priv = manager->priv;
686       priv->is_screen_singleton = TRUE;
687
688       g_object_set_data (G_OBJECT (screen), I_("gtk-recent-manager-default"), manager);
689     }
690
691   return manager;
692 }
693
694 static void
695 display_closed (GdkDisplay       *display,
696                 gboolean          is_error,
697                 GtkRecentManager *manager)
698 {
699   GtkRecentManagerPrivate *priv = manager->priv;
700   GdkScreen *screen = priv->screen;
701   gboolean was_screen_singleton = priv->is_screen_singleton;
702
703   if (was_screen_singleton)
704     {
705       g_object_set_data (G_OBJECT (screen), I_("gtk-recent-manager-default"), NULL);
706       priv->is_screen_singleton = FALSE;
707     }
708
709   gtk_recent_manager_set_screen (manager, NULL);
710
711   if (was_screen_singleton)
712     g_object_unref (manager);
713 }
714
715 static void
716 unset_screen (GtkRecentManager *manager)
717 {
718   GtkRecentManagerPrivate *priv = manager->priv;
719   GdkDisplay *display;
720
721   if (priv->screen)
722     {
723       display = gdk_screen_get_display (priv->screen);
724
725       g_signal_handlers_disconnect_by_func (display,
726                                             (gpointer) display_closed,
727                                             manager);
728
729       priv->screen = NULL;
730     }
731 }
732
733 /**
734  * gtk_recent_manager_set_screen:
735  * @manager: a #GtkRecentManager
736  * @screen: a #GdkScreen
737  *
738  * Sets the screen for a recent manager; the screen is used to
739  * track the user's currently configured recently used documents
740  * storage.
741  * 
742  * Since: 2.10
743  */
744 void
745 gtk_recent_manager_set_screen (GtkRecentManager *manager,
746                                GdkScreen        *screen)
747 {
748   GtkRecentManagerPrivate *priv;
749   GdkDisplay *display;
750
751   g_return_if_fail (GTK_IS_RECENT_MANAGER (manager));
752   g_return_if_fail (screen == NULL || GDK_IS_SCREEN (screen));
753
754   priv = manager->priv;
755
756   unset_screen (manager);
757
758   if (screen)
759     {
760       display = gdk_screen_get_display (screen);
761
762       priv->screen = screen;
763
764       g_signal_connect (display, "closed",
765                         G_CALLBACK (display_closed), manager);
766     }
767 }
768
769 /**
770  * gtk_recent_manager_set_limit:
771  * @manager: a #GtkRecentManager
772  * @limit: the maximum number of items to return, or -1.
773  *
774  * Sets the maximum number of item that the gtk_recent_manager_get_items()
775  * function should return.  If @limit is set to -1, then return all the
776  * items.
777  *
778  * Since: 2.10
779  */
780 void
781 gtk_recent_manager_set_limit (GtkRecentManager *manager,
782                               gint              limit)
783 {
784   GtkRecentManagerPrivate *priv;
785   
786   g_return_if_fail (GTK_IS_RECENT_MANAGER (manager));
787   
788   priv = manager->priv;
789   priv->limit = limit;
790 }
791
792 /**
793  * gtk_recent_manager_get_limit:
794  * @manager: a #GtkRecentManager
795  *
796  * Gets the maximum number of items that the gtk_recent_manager_get_items()
797  * function should return.
798  *
799  * Return value: the number of items to return, or -1 for every item.
800  *
801  * Since: 2.10
802  */
803 gint
804 gtk_recent_manager_get_limit (GtkRecentManager *manager)
805 {
806   GtkRecentManagerPrivate *priv;
807   
808   g_return_val_if_fail (GTK_IS_RECENT_MANAGER (manager), DEFAULT_LIMIT);
809   
810   priv = manager->priv;
811   return priv->limit;
812 }
813
814 /**
815  * gtk_recent_manager_add_item:
816  * @manager: a #GtkRecentManager
817  * @uri: a valid URI
818  *
819  * Adds a new resource, pointed by @uri, into the recently used
820  * resources list.
821  *
822  * This function automatically retrieving some of the needed
823  * metadata and setting other metadata to common default values; it
824  * then feeds the data to gtk_recent_manager_add_full().
825  *
826  * See gtk_recent_manager_add_full() if you want to explicitely
827  * define the metadata for the resource pointed by @uri.
828  *
829  * Return value: %TRUE if the new item was successfully added
830  *   to the recently used resources list
831  *
832  * Since: 2.10
833  */
834 gboolean
835 gtk_recent_manager_add_item (GtkRecentManager  *manager,
836                              const gchar       *uri)
837 {
838   GtkRecentData *recent_data;
839   GError *add_error;
840   gboolean retval;
841   
842   g_return_val_if_fail (GTK_IS_RECENT_MANAGER (manager), FALSE);
843   g_return_val_if_fail (uri != NULL, FALSE);
844
845   recent_data = g_slice_new (GtkRecentData);
846   
847   recent_data->display_name = NULL;
848   recent_data->description = NULL;
849   
850 #ifdef G_OS_UNIX
851   if (has_case_prefix (uri, "file:/"))
852     {
853       gchar *filename;
854       const gchar *mime_type;
855       
856       filename = g_filename_from_uri (uri, NULL, NULL);
857       mime_type = xdg_mime_get_mime_type_for_file (filename, NULL);
858       if (!mime_type)
859         recent_data->mime_type = g_strdup (GTK_RECENT_DEFAULT_MIME);
860       else
861         recent_data->mime_type = g_strdup (mime_type);
862       
863       g_free (filename);
864     }
865   else
866 #endif
867     recent_data->mime_type = g_strdup (GTK_RECENT_DEFAULT_MIME);
868   
869   recent_data->app_name = g_strdup (g_get_application_name ());
870   recent_data->app_exec = g_strjoin (" ", g_get_prgname (), "%u", NULL);
871   
872   recent_data->groups = NULL;
873   
874   recent_data->is_private = FALSE;
875   
876   add_error = NULL;
877   retval = gtk_recent_manager_add_full (manager, uri, recent_data);
878   
879   g_free (recent_data->mime_type);
880   g_free (recent_data->app_name);
881   g_free (recent_data->app_exec);
882
883   g_slice_free (GtkRecentData, recent_data);
884   
885   return retval;
886 }
887
888 /**
889  * gtk_recent_manager_add_full:
890  * @manager: a #GtkRecentManager
891  * @uri: a valid URI
892  * @recent_data: metadata of the resource
893  *
894  * Adds a new resource, pointed by @uri, into the recently used
895  * resources list, using the metadata specified inside the #GtkRecentData
896  * structure passed in @recent_data.
897  *
898  * The passed URI will be used to identify this resource inside the
899  * list.
900  *
901  * In order to register the new recently used resource, metadata about
902  * the resource must be passed as well as the URI; the metadata is
903  * stored in a #GtkRecentData structure, which must contain the MIME
904  * type of the resource pointed by the URI; the name of the application
905  * that is registering the item, and a command line to be used when
906  * launching the item.
907  *
908  * Optionally, a #GtkRecentData structure might contain a UTF-8 string
909  * to be used when viewing the item instead of the last component of the
910  * URI; a short description of the item; whether the item should be
911  * considered private - that is, should be displayed only by the
912  * applications that have registered it.
913  *
914  * Return value: %TRUE if the new item was successfully added to the
915  * recently used resources list, %FALSE otherwise.
916  *
917  * Since: 2.10
918  */
919 gboolean
920 gtk_recent_manager_add_full (GtkRecentManager     *manager,
921                              const gchar          *uri,
922                              const GtkRecentData  *data)
923 {
924   GtkRecentManagerPrivate *priv;
925   
926   g_return_val_if_fail (GTK_IS_RECENT_MANAGER (manager), FALSE);
927   g_return_val_if_fail (uri != NULL, FALSE);
928   g_return_val_if_fail (data != NULL, FALSE);
929
930   /* sanity checks */
931   if ((data->display_name) &&
932       (!g_utf8_validate (data->display_name, -1, NULL)))
933     {
934       g_warning ("Attempting to add `%s' to the list of recently used "
935                  "resources, but the display name is not a valid UTF-8 "
936                  "encoded string",
937                  uri);
938       return FALSE;
939     }
940   
941   if ((data->description) &&
942       (!g_utf8_validate (data->description, -1, NULL)))
943     {
944       g_warning ("Attempting to add `%s' to the list of recently used "
945                  "resources, but the description is not a valid UTF-8 "
946                  "encoded string",
947                  uri);
948       return FALSE;
949     }
950
951  
952   if (!data->mime_type)
953     {
954       g_warning ("Attempting to add `%s' to the list of recently used "
955                  "resources, but not MIME type was defined",
956                  uri);
957       return FALSE;
958     }
959   
960   if (!data->app_name)
961     {
962       g_warning ("Attempting to add `%s' to the list of recently used "
963                  "resources, but no name of the application that is "
964                  "registering it was defined",
965                  uri);
966       return FALSE;
967     }
968   
969   if (!data->app_exec)
970     {
971       g_warning ("Attempting to add `%s' to the list of recently used "
972                  "resources, but no command line for the application "
973                  "that is registering it was defined",
974                  uri);
975       return FALSE;
976     }
977   
978   priv = manager->priv;
979
980   if (!priv->recent_items)
981     {
982       priv->recent_items = g_bookmark_file_new ();
983       priv->size = 0;
984     }
985
986   if (data->display_name)  
987     g_bookmark_file_set_title (priv->recent_items, uri, data->display_name);
988   
989   if (data->description)
990     g_bookmark_file_set_description (priv->recent_items, uri, data->description);
991
992   g_bookmark_file_set_mime_type (priv->recent_items, uri, data->mime_type);
993   
994   if (data->groups && data->groups[0] != '\0')
995     {
996       gint j;
997       
998       for (j = 0; (data->groups)[j] != NULL; j++)
999         g_bookmark_file_add_group (priv->recent_items, uri, (data->groups)[j]);
1000     }
1001   
1002   /* register the application; this will take care of updating the
1003    * registration count and time in case the application has
1004    * already registered the same document inside the list
1005    */
1006   g_bookmark_file_add_application (priv->recent_items, uri,
1007                                    data->app_name,
1008                                    data->app_exec);
1009   
1010   g_bookmark_file_set_is_private (priv->recent_items, uri,
1011                                   data->is_private);
1012   
1013   /* mark us as dirty, so that when emitting the "changed" signal we
1014    * will dump our changes
1015    */
1016   priv->is_dirty = TRUE;
1017   
1018   gtk_recent_manager_changed (manager);
1019   
1020   return TRUE;
1021 }
1022
1023 /**
1024  * gtk_recent_manager_remove_item:
1025  * @manager: a #GtkRecentManager
1026  * @uri: the URI of the item you wish to remove
1027  * @error: return location for a #GError, or %NULL
1028  *
1029  * Removes a resource pointed by @uri from the recently used resources
1030  * list handled by a recent manager.
1031  *
1032  * Return value: %TRUE if the item pointed by @uri has been successfully
1033  *   removed by the recently used resources list, and %FALSE otherwise.
1034  *
1035  * Since: 2.10
1036  */
1037 gboolean
1038 gtk_recent_manager_remove_item (GtkRecentManager  *manager,
1039                                 const gchar       *uri,
1040                                 GError           **error)
1041 {
1042   GtkRecentManagerPrivate *priv;
1043   GError *remove_error = NULL;
1044
1045   g_return_val_if_fail (GTK_IS_RECENT_MANAGER (manager), FALSE);
1046   g_return_val_if_fail (uri != NULL, FALSE);
1047   g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
1048   
1049   priv = manager->priv;
1050   
1051   if (!priv->recent_items)
1052     {
1053       priv->recent_items = g_bookmark_file_new ();
1054       priv->size = 0;
1055
1056       g_set_error (error, GTK_RECENT_MANAGER_ERROR,
1057                    GTK_RECENT_MANAGER_ERROR_NOT_FOUND,
1058                    _("Unable to find an item with URI '%s'"),
1059                    uri);
1060
1061       return FALSE;
1062     }
1063
1064   g_bookmark_file_remove_item (priv->recent_items, uri, &remove_error);
1065   if (remove_error)
1066     {
1067       g_propagate_error (error, remove_error);
1068       
1069       return FALSE;
1070     }
1071
1072   priv->is_dirty = TRUE;
1073
1074   gtk_recent_manager_changed (manager);
1075   
1076   return TRUE;
1077 }
1078
1079 /**
1080  * gtk_recent_manager_has_item:
1081  * @manager: a #GtkRecentManager
1082  * @uri: a URI
1083  *
1084  * Checks whether there is a recently used resource registered
1085  * with @uri inside the recent manager.
1086  *
1087  * Return value: %TRUE if the resource was found, %FALSE otherwise.
1088  *
1089  * Since: 2.10
1090  */
1091 gboolean
1092 gtk_recent_manager_has_item (GtkRecentManager *manager,
1093                              const gchar      *uri)
1094 {
1095   GtkRecentManagerPrivate *priv;
1096
1097   g_return_val_if_fail (GTK_IS_RECENT_MANAGER (manager), FALSE);
1098   g_return_val_if_fail (uri != NULL, FALSE);
1099
1100   priv = manager->priv;
1101   g_return_val_if_fail (priv->recent_items != NULL, FALSE);
1102
1103   return g_bookmark_file_has_item (priv->recent_items, uri);
1104 }
1105
1106 static gboolean
1107 build_recent_info (GBookmarkFile  *bookmarks,
1108                    GtkRecentInfo  *info)
1109 {
1110   gchar **apps, **groups;
1111   gsize apps_len, groups_len, i;
1112
1113   g_assert (bookmarks != NULL);
1114   g_assert (info != NULL);
1115   
1116   info->display_name = g_bookmark_file_get_title (bookmarks, info->uri, NULL);
1117   info->description = g_bookmark_file_get_description (bookmarks, info->uri, NULL);
1118   info->mime_type = g_bookmark_file_get_mime_type (bookmarks, info->uri, NULL);
1119     
1120   info->is_private = g_bookmark_file_get_is_private (bookmarks, info->uri, NULL);
1121   
1122   info->added = g_bookmark_file_get_added (bookmarks, info->uri, NULL);
1123   info->modified = g_bookmark_file_get_modified (bookmarks, info->uri, NULL);
1124   info->visited = g_bookmark_file_get_visited (bookmarks, info->uri, NULL);
1125   
1126   groups = g_bookmark_file_get_groups (bookmarks, info->uri, &groups_len, NULL);
1127   for (i = 0; i < groups_len; i++)
1128     {
1129       gchar *group_name = g_strdup (groups[i]);
1130       
1131       info->groups = g_slist_append (info->groups, group_name);
1132     }
1133
1134   g_strfreev (groups);
1135   
1136   apps = g_bookmark_file_get_applications (bookmarks, info->uri, &apps_len, NULL);
1137   for (i = 0; i < apps_len; i++)
1138     {
1139       gchar *app_name, *app_exec;
1140       guint count;
1141       time_t stamp;
1142       RecentAppInfo *app_info;
1143       gboolean res;
1144       
1145       app_name = apps[i];
1146       
1147       res = g_bookmark_file_get_app_info (bookmarks, info->uri, app_name,
1148                                           &app_exec,
1149                                           &count,
1150                                           &stamp,
1151                                           NULL);
1152       if (!res)
1153         continue;
1154       
1155       app_info = recent_app_info_new (app_name);
1156       app_info->exec = app_exec;
1157       app_info->count = count;
1158       app_info->stamp = stamp;
1159       
1160       info->applications = g_slist_append (info->applications,
1161                                            app_info);
1162       g_hash_table_replace (info->apps_lookup, app_info->name, app_info);
1163     }
1164   
1165   g_strfreev (apps);
1166   
1167   return TRUE; 
1168 }
1169
1170 /**
1171  * gtk_recent_manager_lookup_item:
1172  * @manager: a #GtkRecentManager
1173  * @uri: a URI
1174  * @error: a return location for a #GError, or %NULL
1175  *
1176  * Searches for a URI inside the recently used resources list, and
1177  * returns a structure containing informations about the resource
1178  * like its MIME type, or its display name.
1179  *
1180  * Return value: a #GtkRecentInfo structure containing information
1181  *   about the resource pointed by @uri, or %NULL if the URI was
1182  *   not registered in the recently used resources list.  Free with
1183  *   gtk_recent_info_unref().
1184  *
1185  * Since: 2.10
1186  */
1187 GtkRecentInfo *
1188 gtk_recent_manager_lookup_item (GtkRecentManager  *manager,
1189                                 const gchar       *uri,
1190                                 GError           **error)
1191 {
1192   GtkRecentManagerPrivate *priv;
1193   GtkRecentInfo *info = NULL;
1194   gboolean res;
1195   
1196   g_return_val_if_fail (GTK_IS_RECENT_MANAGER (manager), NULL);
1197   g_return_val_if_fail (uri != NULL, NULL);
1198   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
1199   
1200   priv = manager->priv;
1201   if (!priv->recent_items)
1202     {
1203       priv->recent_items = g_bookmark_file_new ();
1204       priv->size = 0;
1205
1206       g_set_error (error, GTK_RECENT_MANAGER_ERROR,
1207                    GTK_RECENT_MANAGER_ERROR_NOT_FOUND,
1208                    _("Unable to find an item with URI '%s'"),
1209                    uri);
1210
1211       return NULL;
1212     }
1213   
1214   if (!g_bookmark_file_has_item (priv->recent_items, uri))
1215     {
1216       g_set_error (error, GTK_RECENT_MANAGER_ERROR,
1217                    GTK_RECENT_MANAGER_ERROR_NOT_FOUND,
1218                    _("Unable to find an item with URI '%s'"),
1219                    uri);
1220       return NULL;
1221     }
1222   
1223   info = gtk_recent_info_new (uri);
1224   g_return_val_if_fail (info != NULL, NULL);
1225   
1226   /* fill the RecentInfo structure with the data retrieved by our
1227    * parser object from the storage file 
1228    */
1229   res = build_recent_info (priv->recent_items, info);
1230   if (!res)
1231     {
1232       gtk_recent_info_free (info);
1233       
1234       return NULL;
1235     }
1236  
1237   return gtk_recent_info_ref (info);
1238 }
1239
1240 /**
1241  * gtk_recent_manager_move_item:
1242  * @manager: a #GtkRecentManager
1243  * @uri: the URI of a recently used resource
1244  * @new_uri: the new URI of the recently used resource, or %NULL to
1245  *    remove the item pointed by @uri in the list
1246  * @error: a return location for a #GError, or %NULL
1247  *
1248  * Changes the location of a recently used resource from @uri to @new_uri.
1249  * 
1250  * Please note that this function will not affect the resource pointed
1251  * by the URIs, but only the URI used in the recently used resources list.
1252  *
1253  * Return value: %TRUE on success.
1254  *
1255  * Since: 2.10
1256  */ 
1257 gboolean
1258 gtk_recent_manager_move_item (GtkRecentManager  *recent_manager,
1259                               const gchar       *uri,
1260                               const gchar       *new_uri,
1261                               GError           **error)
1262 {
1263   GtkRecentManagerPrivate *priv;
1264   GError *move_error;
1265   gboolean res;
1266   
1267   g_return_val_if_fail (GTK_IS_RECENT_MANAGER (recent_manager), FALSE);
1268   g_return_val_if_fail (uri != NULL, FALSE);
1269   g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
1270   
1271   priv = recent_manager->priv;
1272
1273   if (!g_bookmark_file_has_item (priv->recent_items, uri))
1274     {
1275       g_set_error (error, GTK_RECENT_MANAGER_ERROR,
1276                    GTK_RECENT_MANAGER_ERROR_NOT_FOUND,
1277                    _("Unable to find an item with URI '%s'"),
1278                    uri);
1279       return FALSE;
1280     }
1281   
1282   move_error = NULL;
1283   res = g_bookmark_file_move_item (priv->recent_items,
1284                                    uri, new_uri,
1285                                    &move_error);
1286   if (move_error)
1287     {
1288       g_propagate_error (error, move_error);
1289       return FALSE;
1290     }
1291   
1292   priv->is_dirty = TRUE;
1293
1294   gtk_recent_manager_changed (recent_manager);
1295   
1296   return TRUE;
1297 }
1298
1299 /**
1300  * gtk_recent_manager_get_items:
1301  * @manager: a #GtkRecentManager
1302  *
1303  * Gets the list of recently used resources.
1304  *
1305  * Return value: a list of newly allocated #GtkRecentInfo objects. Use
1306  *   gtk_recent_info_unref() on each item inside the list, and then
1307  *   free the list itself using g_list_free().
1308  *
1309  * Since: 2.10
1310  */
1311 GList *
1312 gtk_recent_manager_get_items (GtkRecentManager *manager)
1313 {
1314   GtkRecentManagerPrivate *priv;
1315   GList *retval = NULL;
1316   gchar **uris;
1317   gsize uris_len, i;
1318   
1319   g_return_val_if_fail (GTK_IS_RECENT_MANAGER (manager), NULL);
1320   
1321   priv = manager->priv;
1322   if (!priv->recent_items)
1323     return NULL;
1324
1325   if (priv->limit == 0)
1326     return NULL;
1327   
1328   uris = g_bookmark_file_get_uris (priv->recent_items, &uris_len);
1329   for (i = 0; i < uris_len; i++)
1330     {
1331       GtkRecentInfo *info;
1332       gboolean res;
1333       
1334       info = gtk_recent_info_new (uris[i]);
1335       res = build_recent_info (priv->recent_items, info);
1336       if (!res)
1337         {
1338           g_warning ("Unable to create a RecentInfo object for "
1339                      "item with URI `%s'",
1340                      uris[i]);
1341           gtk_recent_info_free (info);
1342           
1343           continue;
1344         }
1345       
1346       retval = g_list_prepend (retval, info);
1347     }
1348   
1349   g_strfreev (uris);
1350     
1351   /* clamp the list, if a limit is present */
1352   if ((priv->limit != -1) &&
1353       (g_list_length (retval) > priv->limit))
1354     {
1355       GList *clamp, *l;
1356       
1357       clamp = g_list_nth (retval, priv->limit - 1);
1358       
1359       if (!clamp)
1360         return retval;
1361       
1362       l = clamp->next;
1363       clamp->next = NULL;
1364       
1365       g_list_foreach (l, (GFunc) gtk_recent_info_free, NULL);
1366       g_list_free (l);
1367     }
1368   
1369   return retval;
1370 }
1371
1372 static void
1373 purge_recent_items_list (GtkRecentManager  *manager,
1374                          GError           **error)
1375 {
1376   GtkRecentManagerPrivate *priv = manager->priv;
1377
1378   if (!priv->recent_items)
1379     return;
1380   
1381   g_bookmark_file_free (priv->recent_items);
1382   priv->recent_items = NULL;
1383       
1384   priv->recent_items = g_bookmark_file_new ();
1385   priv->size = 0;
1386   priv->is_dirty = TRUE;
1387       
1388   /* emit the changed signal, to ensure that the purge is written */
1389   gtk_recent_manager_changed (manager);
1390 }
1391
1392 /**
1393  * gtk_recent_manager_purge_items:
1394  * @manager: a #GtkRecentManager
1395  * @error: a return location for a #GError, or %NULL
1396  *
1397  * Purges every item from the recently used resources list.
1398  *
1399  * Return value: the number of items that have been removed from the
1400  *   recently used resources list.
1401  *
1402  * Since: 2.10
1403  */
1404 gint
1405 gtk_recent_manager_purge_items (GtkRecentManager  *manager,
1406                                 GError           **error)
1407 {
1408   GtkRecentManagerPrivate *priv;
1409   gint count, purged;
1410   
1411   g_return_val_if_fail (GTK_IS_RECENT_MANAGER (manager), -1);
1412
1413   priv = manager->priv;
1414   if (!priv->recent_items)
1415     return 0;
1416   
1417   count = g_bookmark_file_get_size (priv->recent_items);
1418   if (!count)
1419     return 0;
1420   
1421   purge_recent_items_list (manager, error);
1422   
1423   purged = count - g_bookmark_file_get_size (priv->recent_items);
1424
1425   return purged;
1426 }
1427
1428 static void
1429 gtk_recent_manager_changed (GtkRecentManager *recent_manager)
1430 {
1431   g_signal_emit (recent_manager, signal_changed, 0);
1432 }
1433
1434 /*****************
1435  * GtkRecentInfo *
1436  *****************/
1437  
1438 GType
1439 gtk_recent_info_get_type (void)
1440 {
1441   static GType info_type = 0;
1442   
1443   if (!info_type)
1444     info_type = g_boxed_type_register_static ("GtkRecentInfo",
1445                                               (GBoxedCopyFunc) gtk_recent_info_ref,
1446                                               (GBoxedFreeFunc) gtk_recent_info_unref);
1447   return info_type;
1448 }
1449
1450 static GtkRecentInfo *
1451 gtk_recent_info_new (const gchar *uri)
1452 {
1453   GtkRecentInfo *info;
1454
1455   g_assert (uri != NULL);
1456
1457   info = g_new0 (GtkRecentInfo, 1);
1458   info->uri = g_strdup (uri);
1459   
1460   info->applications = NULL;
1461   info->apps_lookup = g_hash_table_new (g_str_hash, g_str_equal);
1462   
1463   info->groups = NULL;
1464   
1465   info->ref_count = 1;
1466
1467   return info;
1468 }
1469
1470 static void
1471 gtk_recent_info_free (GtkRecentInfo *recent_info)
1472 {
1473   if (!recent_info)
1474     return;
1475
1476   g_free (recent_info->uri);
1477   g_free (recent_info->display_name);
1478   g_free (recent_info->description);
1479   g_free (recent_info->mime_type);
1480   
1481   if (recent_info->applications)
1482     {
1483       g_slist_foreach (recent_info->applications,
1484                        (GFunc) recent_app_info_free,
1485                        NULL);
1486       g_slist_free (recent_info->applications);
1487       
1488       recent_info->applications = NULL;
1489     }
1490   
1491   if (recent_info->apps_lookup)
1492     g_hash_table_destroy (recent_info->apps_lookup);
1493
1494   if (recent_info->groups)
1495     {
1496       g_slist_foreach (recent_info->groups,
1497                        (GFunc) g_free,
1498                        NULL);
1499       g_slist_free (recent_info->groups);
1500
1501       recent_info->groups = NULL;
1502     }
1503   
1504   if (recent_info->icon)
1505     g_object_unref (recent_info->icon);
1506
1507   g_free (recent_info);
1508 }
1509
1510 /**
1511  * gtk_recent_info_ref:
1512  * @info: a #GtkRecentInfo
1513  *
1514  * Increases the reference count of @recent_info by one.
1515  *
1516  * Return value: the recent info object with its reference count increased
1517  *   by one.
1518  *
1519  * Since: 2.10
1520  */
1521 GtkRecentInfo *
1522 gtk_recent_info_ref (GtkRecentInfo *info)
1523 {
1524   g_return_val_if_fail (info != NULL, NULL);
1525   g_return_val_if_fail (info->ref_count > 0, NULL);
1526   
1527   info->ref_count += 1;
1528     
1529   return info;
1530 }
1531
1532 /**
1533  * gtk_recent_info_unref:
1534  * @info: a #GtkRecentInfo
1535  *
1536  * Decreases the reference count of @info by one.  If the reference
1537  * count reaches zero, @info is deallocated, and the memory freed.
1538  *
1539  * Since: 2.10
1540  */
1541 void
1542 gtk_recent_info_unref (GtkRecentInfo *info)
1543 {
1544   g_return_if_fail (info != NULL);
1545   g_return_if_fail (info->ref_count > 0);
1546
1547   info->ref_count -= 1;
1548   
1549   if (info->ref_count == 0)
1550     gtk_recent_info_free (info);
1551 }
1552
1553 /**
1554  * gtk_recent_info_get_uri:
1555  * @info: a #GtkRecentInfo
1556  *
1557  * Gets the URI of the resource.
1558  *
1559  * Return value: the URI of the resource.  The returned string is
1560  *   owned by the recent manager, and should not be freed.
1561  *
1562  * Since: 2.10
1563  */
1564 G_CONST_RETURN gchar *
1565 gtk_recent_info_get_uri (GtkRecentInfo *info)
1566 {
1567   g_return_val_if_fail (info != NULL, NULL);
1568   
1569   return info->uri;
1570 }
1571
1572 /**
1573  * gtk_recent_info_get_display_name:
1574  * @info: a #GtkRecentInfo
1575  *
1576  * Gets the name of the resource.  If none has been defined, the basename
1577  * of the resource is obtained.
1578  *
1579  * Return value: the display name of the resource.  The returned string
1580  *   is owned by the recent manager, and should not be freed.
1581  *
1582  * Since: 2.10
1583  */
1584 G_CONST_RETURN gchar *
1585 gtk_recent_info_get_display_name (GtkRecentInfo *info)
1586 {
1587   g_return_val_if_fail (info != NULL, NULL);
1588   
1589   if (!info->display_name)
1590     info->display_name = gtk_recent_info_get_short_name (info);
1591   
1592   return info->display_name;
1593 }
1594
1595 /**
1596  * gtk_recent_info_get_description:
1597  * @info: a #GtkRecentInfo
1598  *
1599  * Gets the (short) description of the resource.
1600  *
1601  * Return value: the description of the resource.  The returned string
1602  *   is owned by the recent manager, and should not be freed.
1603  *
1604  * Since: 2.10
1605  **/
1606 G_CONST_RETURN gchar *
1607 gtk_recent_info_get_description (GtkRecentInfo *info)
1608 {
1609   g_return_val_if_fail (info != NULL, NULL);
1610   
1611   return info->description;
1612 }
1613
1614 /**
1615  * gtk_recent_info_get_mime_type:
1616  * @info: a #GtkRecentInfo
1617  *
1618  * Gets the MIME type of the resource.
1619  *
1620  * Return value: the MIME type of the resource.  The returned string
1621  *   is owned by the recent manager, and should not be freed.
1622  *
1623  * Since: 2.10
1624  */
1625 G_CONST_RETURN gchar *
1626 gtk_recent_info_get_mime_type (GtkRecentInfo *info)
1627 {
1628   g_return_val_if_fail (info != NULL, NULL);
1629   
1630   if (!info->mime_type)
1631     info->mime_type = g_strdup (GTK_RECENT_DEFAULT_MIME);
1632   
1633   return info->mime_type;
1634 }
1635
1636 /**
1637  * gtk_recent_info_get_added:
1638  * @info: a #GtkRecentInfo
1639  *
1640  * Gets the timestamp (seconds from system's Epoch) when the resource
1641  * was added to the recently used resources list.
1642  *
1643  * Return value: the number of seconds elapsed from system's Epoch when
1644  *   the resource was added to the list, or -1 on failure.
1645  *
1646  * Since: 2.10
1647  */
1648 time_t
1649 gtk_recent_info_get_added (GtkRecentInfo *info)
1650 {
1651   g_return_val_if_fail (info != NULL, (time_t) -1);
1652   
1653   return info->added;
1654 }
1655
1656 /**
1657  * gtk_recent_info_get_modified:
1658  * @info: a #GtkRecentInfo
1659  *
1660  * Gets the timestamp (seconds from system's Epoch) when the resource
1661  * was last modified.
1662  *
1663  * Return value: the number of seconds elapsed from system's Epoch when
1664  *   the resource was last modified, or -1 on failure.
1665  *
1666  * Since: 2.10
1667  */
1668 time_t
1669 gtk_recent_info_get_modified (GtkRecentInfo *info)
1670 {
1671   g_return_val_if_fail (info != NULL, (time_t) -1);
1672   
1673   return info->modified;
1674 }
1675
1676 /**
1677  * gtk_recent_info_get_visited:
1678  * @info: a #GtkRecentInfo
1679  *
1680  * Gets the timestamp (seconds from system's Epoch) when the resource
1681  * was last visited.
1682  *
1683  * Return value: the number of seconds elapsed from system's Epoch when
1684  *   the resource was last visited, or -1 on failure.
1685  *
1686  * Since: 2.10
1687  */
1688 time_t
1689 gtk_recent_info_get_visited (GtkRecentInfo *info)
1690 {
1691   g_return_val_if_fail (info != NULL, (time_t) -1);
1692   
1693   return info->visited;
1694 }
1695
1696 /**
1697  * gtk_recent_info_get_private_hint:
1698  * @info: a #GtkRecentInfo
1699  *
1700  * Gets the value of the "private" flag.  Resources in the recently used
1701  * list that have this flag set to %TRUE should only be displayed by the
1702  * applications that have registered them.
1703  *
1704  * Return value: %TRUE if the private flag was found, %FALSE otherwise.
1705  *
1706  * Since: 2.10
1707  */
1708 gboolean
1709 gtk_recent_info_get_private_hint (GtkRecentInfo *info)
1710 {
1711   g_return_val_if_fail (info != NULL, FALSE);
1712   
1713   return info->is_private;
1714 }
1715
1716
1717 static RecentAppInfo *
1718 recent_app_info_new (const gchar *app_name)
1719 {
1720   RecentAppInfo *app_info;
1721
1722   g_assert (app_name != NULL);
1723   
1724   app_info = g_new0 (RecentAppInfo, 1);
1725   app_info->name = g_strdup (app_name);
1726   app_info->exec = NULL;
1727   app_info->count = 1;
1728   app_info->stamp = time (NULL);
1729   
1730   return app_info;
1731 }
1732
1733 static void
1734 recent_app_info_free (RecentAppInfo *app_info)
1735 {
1736   if (!app_info)
1737     return;
1738   
1739   g_free (app_info->name);
1740   
1741   g_free (app_info->exec);
1742   
1743   g_free (app_info);
1744 }
1745
1746 /**
1747  * gtk_recent_info_get_application_info:
1748  * @info: a #GtkRecentInfo
1749  * @app_name: the name of the application that has registered this item
1750  * @app_exec: return location for the string containing the command line
1751  * @count: return location for the number of times this item was registered
1752  * @time_: return location for the timestamp this item was last registered
1753  *    for this application
1754  *
1755  * Gets the data regarding the application that has registered the resource
1756  * pointed by @info.
1757  *
1758  * If the command line contains any escape characters defined inside the
1759  * storage specification, they will be expanded.
1760  *
1761  * Return value: %TRUE if an application with @app_name has registered this
1762  *   resource inside the recently used list, or %FALSE otherwise.  You should
1763  *   free the returned command line using g_free().
1764  *
1765  * Since: 2.10
1766  */
1767 gboolean
1768 gtk_recent_info_get_application_info (GtkRecentInfo  *info,
1769                                       const gchar    *app_name,
1770                                       gchar         **app_exec,
1771                                       guint          *count,
1772                                       time_t         *time_)
1773 {
1774   RecentAppInfo *ai;
1775   
1776   g_return_val_if_fail (info != NULL, FALSE);
1777   g_return_val_if_fail (app_name != NULL, FALSE);
1778   
1779   ai = (RecentAppInfo *) g_hash_table_lookup (info->apps_lookup,
1780                                               app_name);
1781   if (!ai)
1782     {
1783       g_warning ("No registered application with name '%s' "
1784                  "for item with URI '%s' found",
1785                  app_name,
1786                  info->uri);
1787       return FALSE;
1788     }
1789   
1790   if (app_exec)
1791     *app_exec = ai->exec;
1792   
1793   if (count)
1794     *count = ai->count;
1795   
1796   if (time_)
1797     *time_ = ai->stamp;
1798
1799   return TRUE;
1800 }
1801
1802 /**
1803  * gtk_recent_info_get_applications:
1804  * @info: a #GtkRecentInfo
1805  * @length: return location for the length of the returned list, or %NULL
1806  *
1807  * Retrieves the list of applications that have registered this resource.
1808  *
1809  * Return value: a newly allocated %NULL-terminated array of strings.
1810  *   Use g_strfreev() to free it.
1811  *
1812  * Since: 2.10
1813  */                           
1814 gchar **
1815 gtk_recent_info_get_applications (GtkRecentInfo *info,
1816                                   gsize         *length)
1817 {
1818   GSList *l;
1819   gchar **retval;
1820   gsize n_apps, i;
1821   
1822   g_return_val_if_fail (info != NULL, NULL);
1823   
1824   if (!info->applications)
1825     {
1826       if (length)
1827         *length = 0;
1828       
1829       return NULL;    
1830     }
1831   
1832   n_apps = g_slist_length (info->applications);
1833   
1834   retval = g_new0 (gchar *, n_apps + 1);
1835   
1836   for (l = info->applications, i = 0;
1837        l != NULL;
1838        l = l->next)
1839     {
1840       RecentAppInfo *ai = (RecentAppInfo *) l->data;
1841       
1842       g_assert (ai != NULL);
1843       
1844       retval[i++] = g_strdup (ai->name);
1845     }
1846   retval[i] = NULL;
1847   
1848   if (length)
1849     *length = i;
1850   
1851   return retval;
1852 }
1853
1854 /**
1855  * gtk_recent_info_has_application:
1856  * @info: a #GtkRecentInfo
1857  * @app_name: a string containing an application name
1858  *
1859  * Checks whether an application registered this resource using @app_name.
1860  *
1861  * Return value: %TRUE if an application with name @app_name was found,
1862  *   %FALSE otherwise.
1863  *
1864  * Since: 2.10
1865  */
1866 gboolean
1867 gtk_recent_info_has_application (GtkRecentInfo *info,
1868                                  const gchar   *app_name)
1869 {
1870   g_return_val_if_fail (info != NULL, FALSE);
1871   g_return_val_if_fail (app_name != NULL, FALSE);
1872   
1873   return (NULL != g_hash_table_lookup (info->apps_lookup, app_name));
1874 }
1875
1876 /**
1877  * gtk_recent_info_last_application:
1878  * @info: a #GtkRecentInfo
1879  *
1880  * Gets the name of the last application that have registered the
1881  * recently used resource represented by @info.
1882  *
1883  * Return value: an application name.  Use g_free() to free it.
1884  *
1885  * Since: 2.10
1886  */
1887 gchar *
1888 gtk_recent_info_last_application (GtkRecentInfo  *info)
1889 {
1890   GSList *l;
1891   time_t last_stamp = (time_t) -1;
1892   gchar *name = NULL;
1893   
1894   g_return_val_if_fail (info != NULL, NULL);
1895   
1896   for (l = info->applications; l != NULL; l = l->next)
1897     {
1898       RecentAppInfo *ai = (RecentAppInfo *) l->data;
1899       
1900       if (ai->stamp > last_stamp)
1901         {
1902           name = ai->name;
1903           last_stamp = ai->stamp;
1904         }
1905     }
1906   
1907   return g_strdup (name);
1908 }
1909
1910 typedef struct
1911 {
1912   gint size;
1913   GdkPixbuf *pixbuf;
1914 } IconCacheElement;
1915
1916 static void
1917 icon_cache_element_free (IconCacheElement *element)
1918 {
1919   if (element->pixbuf)
1920     g_object_unref (element->pixbuf);
1921   g_free (element);
1922 }
1923
1924 static void
1925 icon_theme_changed (GtkIconTheme     *icon_theme)
1926 {
1927   GHashTable *cache;
1928
1929   /* Difference from the initial creation is that we don't
1930    * reconnect the signal
1931    */
1932   cache = g_hash_table_new_full (g_str_hash, g_str_equal,
1933                                  (GDestroyNotify)g_free,
1934                                  (GDestroyNotify)icon_cache_element_free);
1935   g_object_set_data_full (G_OBJECT (icon_theme), "gtk-recent-icon-cache",
1936                           cache, (GDestroyNotify)g_hash_table_destroy);
1937 }
1938
1939 /* TODO: use the GtkFileChooser's icon cache instead of our own to reduce
1940  * the memory footprint
1941  */
1942 static GdkPixbuf *
1943 get_cached_icon (const gchar *name,
1944                  gint         pixel_size)
1945 {
1946   GtkIconTheme *icon_theme;
1947   GHashTable *cache;
1948   IconCacheElement *element;
1949
1950   icon_theme = gtk_icon_theme_get_default ();
1951   cache = g_object_get_data (G_OBJECT (icon_theme), "gtk-recent-icon-cache");
1952
1953   if (!cache)
1954     {
1955       cache = g_hash_table_new_full (g_str_hash, g_str_equal,
1956                                      (GDestroyNotify)g_free,
1957                                      (GDestroyNotify)icon_cache_element_free);
1958
1959       g_object_set_data_full (G_OBJECT (icon_theme), "gtk-recent-icon-cache",
1960                               cache, (GDestroyNotify)g_hash_table_destroy);
1961       g_signal_connect (icon_theme, "changed",
1962                         G_CALLBACK (icon_theme_changed), NULL);
1963     }
1964
1965   element = g_hash_table_lookup (cache, name);
1966   if (!element)
1967     {
1968       element = g_new0 (IconCacheElement, 1);
1969       g_hash_table_insert (cache, g_strdup (name), element);
1970     }
1971
1972   if (element->size != pixel_size)
1973     {
1974       if (element->pixbuf)
1975         g_object_unref (element->pixbuf);
1976
1977       element->size = pixel_size;
1978       element->pixbuf = gtk_icon_theme_load_icon (icon_theme, name,
1979                                                   pixel_size, 0, NULL);
1980     }
1981
1982   return element->pixbuf ? g_object_ref (element->pixbuf) : NULL;
1983 }
1984
1985
1986 static GdkPixbuf *
1987 get_icon_for_mime_type (const char *mime_type,
1988                         gint        pixel_size)
1989 {
1990   const char *separator;
1991   GString *icon_name;
1992   GdkPixbuf *pixbuf;
1993
1994   separator = strchr (mime_type, '/');
1995   if (!separator)
1996     return NULL; /* maybe we should return a GError with "invalid MIME-type" */
1997
1998   icon_name = g_string_new ("gnome-mime-");
1999   g_string_append_len (icon_name, mime_type, separator - mime_type);
2000   g_string_append_c (icon_name, '-');
2001   g_string_append (icon_name, separator + 1);
2002   pixbuf = get_cached_icon (icon_name->str, pixel_size);
2003   g_string_free (icon_name, TRUE);
2004   if (pixbuf)
2005     return pixbuf;
2006
2007   icon_name = g_string_new ("gnome-mime-");
2008   g_string_append_len (icon_name, mime_type, separator - mime_type);
2009   pixbuf = get_cached_icon (icon_name->str, pixel_size);
2010   g_string_free (icon_name, TRUE);
2011
2012   return pixbuf;
2013 }
2014
2015 static GdkPixbuf *
2016 get_icon_fallback (const gchar *icon_name,
2017                    gint         size)
2018 {
2019   GtkIconTheme *icon_theme;
2020   GdkPixbuf *retval;
2021
2022   icon_theme = gtk_icon_theme_get_default ();
2023   
2024   retval = gtk_icon_theme_load_icon (icon_theme, icon_name,
2025                                      size,
2026                                      GTK_ICON_LOOKUP_USE_BUILTIN,
2027                                      NULL);
2028   g_assert (retval != NULL);
2029   
2030   return retval; 
2031 }
2032
2033 /**
2034  * gtk_recent_info_get_icon:
2035  * @info: a #GtkRecentInfo
2036  * @size: the size of the icon in pixels
2037  *
2038  * Retrieves the icon of size @size associated to the resource MIME type.
2039  *
2040  * Return value: a #GdkPixbuf containing the icon, or %NULL.
2041  *
2042  * Since: 2.10
2043  */
2044 GdkPixbuf *
2045 gtk_recent_info_get_icon (GtkRecentInfo *info,
2046                           gint           size)
2047 {
2048   GdkPixbuf *retval = NULL;
2049   
2050   g_return_val_if_fail (info != NULL, NULL);
2051   
2052   if (info->mime_type)
2053     retval = get_icon_for_mime_type (info->mime_type, size);
2054
2055   /* this should never fail */  
2056   if (!retval)
2057     retval = get_icon_fallback (GTK_STOCK_FILE, size);
2058   
2059   return retval;
2060 }
2061
2062 /**
2063  * gtk_recent_info_is_local:
2064  * @info: a #GtkRecentInfo
2065  *
2066  * Checks whether the resource is local or not by looking at the
2067  * scheme of its URI.
2068  *
2069  * Return value: %TRUE if the resource is local.
2070  *
2071  * Since: 2.10
2072  */
2073 gboolean
2074 gtk_recent_info_is_local (GtkRecentInfo *info)
2075 {
2076   g_return_val_if_fail (info != NULL, FALSE);
2077   
2078   return has_case_prefix (info->uri, "file:/");
2079 }
2080
2081 /**
2082  * gtk_recent_info_exists:
2083  * @info: a #GtkRecentInfo
2084  *
2085  * Checks whether the resource pointed by @info still exists.  At
2086  * the moment this check is done only on resources pointing to local files.
2087  *
2088  * Return value: %TRUE if the resource exists
2089  *
2090  * Since: 2.10
2091  */
2092 gboolean
2093 gtk_recent_info_exists (GtkRecentInfo *info)
2094 {
2095   gchar *filename;
2096   struct stat stat_buf;
2097   gboolean retval = FALSE;
2098   
2099   g_return_val_if_fail (info != NULL, FALSE);
2100   
2101   /* we guarantee only local resources */
2102   if (!gtk_recent_info_is_local (info))
2103     return FALSE;
2104   
2105   filename = g_filename_from_uri (info->uri, NULL, NULL);
2106   if (filename)
2107     {
2108       if (stat (filename, &stat_buf) == 0)
2109         retval = TRUE;
2110      
2111       g_free (filename);
2112     }
2113   
2114   return retval;
2115 }
2116
2117 /**
2118  * gtk_recent_info_match:
2119  * @info_a: a #GtkRecentInfo
2120  * @info_b: a #GtkRecentInfo
2121  *
2122  * Checks whether two #GtkRecentInfo structures point to the same
2123  * resource.
2124  *
2125  * Return value: %TRUE if both #GtkRecentInfo structures point to se same
2126  *   resource, %FALSE otherwise.
2127  *
2128  * Since: 2.10
2129  */
2130 gboolean
2131 gtk_recent_info_match (GtkRecentInfo *info_a,
2132                        GtkRecentInfo *info_b)
2133 {
2134   g_return_val_if_fail (info_a != NULL, FALSE);
2135   g_return_val_if_fail (info_b != NULL, FALSE);
2136   
2137   return (0 == strcmp (info_a->uri, info_b->uri));
2138 }
2139
2140 /* taken from gnome-vfs-uri.c */
2141 static const gchar *
2142 get_method_string (const gchar  *substring, 
2143                    gchar       **method_string)
2144 {
2145   const gchar *p;
2146   char *method;
2147         
2148   for (p = substring;
2149        g_ascii_isalnum (*p) || *p == '+' || *p == '-' || *p == '.';
2150        p++)
2151     ;
2152
2153   if (*p == ':'
2154 #ifdef G_OS_WIN32
2155                 &&
2156       !(p == substring + 1 && g_ascii_isalpha (*substring))
2157 #endif
2158                                                            )
2159     {
2160       /* Found toplevel method specification.  */
2161       method = g_strndup (substring, p - substring);
2162       *method_string = g_ascii_strdown (method, -1);
2163       g_free (method);
2164       p++;
2165     }
2166   else
2167     {
2168       *method_string = g_strdup ("file");
2169       p = substring;
2170     }
2171   
2172   return p;
2173 }
2174
2175 /* Stolen from gnome_vfs_make_valid_utf8() */
2176 static char *
2177 make_valid_utf8 (const char *name)
2178 {
2179   GString *string;
2180   const char *remainder, *invalid;
2181   int remaining_bytes, valid_bytes;
2182
2183   string = NULL;
2184   remainder = name;
2185   remaining_bytes = name ? strlen (name) : 0;
2186
2187   while (remaining_bytes != 0)
2188     {
2189       if (g_utf8_validate (remainder, remaining_bytes, &invalid))
2190         break;
2191       
2192       valid_bytes = invalid - remainder;
2193       
2194       if (string == NULL)
2195         string = g_string_sized_new (remaining_bytes);
2196       
2197       g_string_append_len (string, remainder, valid_bytes);
2198       g_string_append_c (string, '?');
2199       
2200       remaining_bytes -= valid_bytes + 1;
2201       remainder = invalid + 1;
2202     }
2203   
2204   if (string == NULL)
2205     return g_strdup (name);
2206
2207   g_string_append (string, remainder);
2208   g_assert (g_utf8_validate (string->str, -1, NULL));
2209
2210   return g_string_free (string, FALSE);
2211 }
2212
2213 static gchar *
2214 get_uri_shortname_for_display (const gchar *uri)
2215 {
2216   gchar *name = NULL;
2217   gboolean validated = FALSE;
2218
2219   if (has_case_prefix (uri, "file:/"))
2220     {
2221       gchar *local_file;
2222       
2223       local_file = g_filename_from_uri (uri, NULL, NULL);
2224       
2225       if (local_file)
2226         {
2227           name = g_filename_display_basename (local_file);
2228           validated = TRUE;
2229         }
2230                 
2231       g_free (local_file);
2232     } 
2233   
2234   if (!name)
2235     {
2236       gchar *method;
2237       gchar *local_file;
2238       const gchar *rest;
2239       
2240       rest = get_method_string (uri, &method);
2241       local_file = g_filename_display_basename (rest);
2242       
2243       name = g_strdup_printf ("%s: %s", method, local_file);
2244       
2245       g_free (local_file);
2246       g_free (method);
2247     }
2248   
2249   g_assert (name != NULL);
2250   
2251   if (!validated && !g_utf8_validate (name, -1, NULL))
2252     {
2253       gchar *utf8_name;
2254       
2255       utf8_name = make_valid_utf8 (name);
2256       g_free (name);
2257       
2258       name = utf8_name;
2259     }
2260
2261   return name;
2262 }
2263
2264 /**
2265  * gtk_recent_info_get_short_name:
2266  * @info: an #GtkRecentInfo
2267  *
2268  * Computes a valid UTF-8 string that can be used as the name of the item in a
2269  * menu or list.  For example, calling this function on an item that refers to
2270  * "file:///foo/bar.txt" will yield "bar.txt".
2271  *
2272  * Return value: A newly-allocated string in UTF-8 encoding; free it with
2273  *   g_free().
2274  *
2275  * Since: 2.10
2276  */
2277 gchar *
2278 gtk_recent_info_get_short_name (GtkRecentInfo *info)
2279 {
2280   gchar *short_name;
2281
2282   g_return_val_if_fail (info != NULL, NULL);
2283
2284   if (info->uri == NULL)
2285     return NULL;
2286
2287   short_name = get_uri_shortname_for_display (info->uri);
2288
2289   return short_name;
2290 }
2291
2292 /**
2293  * gtk_recent_info_get_uri_display:
2294  * @info: a #GtkRecentInfo
2295  *
2296  * Gets a displayable version of the resource's URI.  If the resource
2297  * is local, it returns a local path; if the resource is not local,
2298  * it returns the UTF-8 encoded content of gtk_recent_info_get_uri().
2299  *
2300  * Return value: a UTF-8 string containing the resource's URI or %NULL
2301  *
2302  * Since: 2.10
2303  */
2304 gchar *
2305 gtk_recent_info_get_uri_display (GtkRecentInfo *info)
2306 {
2307   gchar *retval;
2308   
2309   g_return_val_if_fail (info != NULL, NULL);
2310
2311   retval = NULL;
2312   if (gtk_recent_info_is_local (info))
2313     {
2314       gchar *filename;
2315
2316       filename = g_filename_from_uri (info->uri, NULL, NULL);
2317       if (!filename)
2318         return NULL;
2319       
2320       retval = g_filename_to_utf8 (filename, -1, NULL, NULL, NULL);
2321       g_free (filename);
2322     }
2323   else
2324     {
2325       retval = make_valid_utf8 (info->uri);
2326     }
2327
2328   return retval;
2329 }
2330
2331 /**
2332  * gtk_recent_info_get_age:
2333  * @info: a #GtkRecentInfo
2334  *
2335  * Gets the number of days elapsed since the last update of the resource
2336  * pointed by @info.
2337  *
2338  * Return value: a positive integer containing the number of days elapsed
2339  *   since the time this resource was last modified.  
2340  *
2341  * Since: 2.10
2342  */
2343 gint
2344 gtk_recent_info_get_age (GtkRecentInfo *info)
2345 {
2346   time_t now, delta;
2347   gint retval;
2348
2349   g_return_val_if_fail (info != NULL, -1);
2350
2351   now = time (NULL);
2352   
2353   delta = now - info->modified;
2354   
2355   retval = (gint) (delta / (60 * 60 * 24));
2356   
2357   return retval;
2358 }
2359
2360 /**
2361  * gtk_recent_info_get_groups:
2362  * @info: a #GtkRecentInfo
2363  * @length: return location for the number of groups returned, or %NULL
2364  *
2365  * Returns all groups registered for the recently used item @info.  The
2366  * array of returned group names will be %NULL terminated, so length might
2367  * optionally be %NULL.
2368  *
2369  * Return value: a newly allocated %NULL terminated array of strings.  Use
2370  *   g_strfreev() to free it.
2371  *
2372  * Since: 2.10
2373  */
2374 gchar **
2375 gtk_recent_info_get_groups (GtkRecentInfo *info,
2376                             gsize         *length)
2377 {
2378   GSList *l;
2379   gchar **retval;
2380   gsize n_groups, i;
2381   
2382   g_return_val_if_fail (info != NULL, NULL);
2383   
2384   if (!info->groups)
2385     {
2386       if (length)
2387         *length = 0;
2388       
2389       return NULL;
2390     }
2391   
2392   n_groups = g_slist_length (info->groups);
2393   
2394   retval = g_new0 (gchar *, n_groups + 1);
2395   
2396   for (l = info->groups, i = 0;
2397        l != NULL;
2398        l = l->next)
2399     {
2400       gchar *group_name = (gchar *) l->data;
2401       
2402       g_assert (group_name != NULL);
2403       
2404       retval[i++] = g_strdup (group_name);
2405     }
2406   retval[i] = NULL;
2407   
2408   if (length)
2409     *length = i;
2410   
2411   return retval;
2412 }
2413
2414 /**
2415  * gtk_recent_info_has_group:
2416  * @info: a #GtkRecentInfo
2417  * @group_name: name of a group
2418  *
2419  * Checks whether @group_name appears inside the groups registered for the
2420  * recently used item @info.
2421  *
2422  * Return value: %TRUE if the group was found.
2423  *
2424  * Since: 2.10
2425  */
2426 gboolean
2427 gtk_recent_info_has_group (GtkRecentInfo *info,
2428                            const gchar   *group_name)
2429 {
2430   GSList *l;
2431   
2432   g_return_val_if_fail (info != NULL, FALSE);
2433   g_return_val_if_fail (group_name != NULL, FALSE);
2434
2435   if (!info->groups)
2436     return FALSE;
2437
2438   for (l = info->groups; l != NULL; l = l->next)
2439     {
2440       gchar *g = (gchar *) l->data;
2441
2442       if (strcmp (g, group_name) == 0)
2443         return TRUE;
2444     }
2445
2446   return FALSE;
2447 }
2448
2449 #define __GTK_RECENT_MANAGER_C__
2450 #include "gtkaliasdef.c"