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