From a5e3f1314e7e27fb0e765b3b9b8e1deb92c7c536 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Sun, 08 May 2005 18:26:01 +0000 Subject: Change api to lookup from uri. Do fast lookup first, if the type is 2005-05-08 Marco Pesenti Gritti * shell/ev-document-types.c: (get_slow_mime_type), (get_document_type_from_mime), (ev_document_type_lookup): * shell/ev-document-types.h: Change api to lookup from uri. Do fast lookup first, if the type is unknown try with data sniffing. * shell/ev-window.c: (ev_window_open), (ev_window_open_uri_list): * thumbnailer/evince-thumbnailer.c: (evince_thumbnail_pngenc_get): Adapt to api change --- (limited to 'shell/ev-document-types.c') diff --git a/shell/ev-document-types.c b/shell/ev-document-types.c index 2d64594..a373d18 100644 --- a/shell/ev-document-types.c +++ b/shell/ev-document-types.c @@ -36,6 +36,9 @@ #endif #include +#include +#include +#include typedef struct _EvDocumentType EvDocumentType; struct _EvDocumentType @@ -102,16 +105,36 @@ mime_type_supported_by_gdk_pixbuf (const gchar *mime_type) return retval; } -GType -ev_document_type_lookup (const char *mime_type) +static char * +get_slow_mime_type (const char *uri) { - int i; + GnomeVFSFileInfo *info; + char *mime_type; + GnomeVFSResult result; + + info = gnome_vfs_file_info_new (); + result = gnome_vfs_get_file_info (uri, info, + GNOME_VFS_FILE_INFO_GET_MIME_TYPE | + GNOME_VFS_FILE_INFO_FORCE_SLOW_MIME_TYPE | + GNOME_VFS_FILE_INFO_FOLLOW_LINKS); + if (info->mime_type == NULL || result != GNOME_VFS_OK) { + mime_type = NULL; + } else { + mime_type = g_strdup (info->mime_type); + } + gnome_vfs_file_info_unref (info); + + return mime_type; +} - g_return_val_if_fail (mime_type, G_TYPE_INVALID); +static GType +get_document_type_from_mime (const char *mime_type) +{ + int i; - for (i=0;i