X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=libdocument%2Fev-document-factory.c;h=0ace5ec8d286337df3b3d4cc5b320087b4b8f760;hb=eb80ecd1f7aa6ff57d2a3324c691274745ca4ed0;hp=76ced10848d42f8113308516b1b22a5e356d9e1d;hpb=b21b2bb1894ed733dfc0820ed8a149cb2140a19a;p=evince.git diff --git a/libdocument/ev-document-factory.c b/libdocument/ev-document-factory.c index 76ced108..0ace5ec8 100644 --- a/libdocument/ev-document-factory.c +++ b/libdocument/ev-document-factory.c @@ -14,7 +14,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * */ @@ -23,10 +23,11 @@ #endif #include + #include #include -#include -#include +#include +#include #include "ev-backends-manager.h" #include "ev-document-factory.h" @@ -103,115 +104,79 @@ get_compression_from_mime_type (const gchar *mime_type) return EV_COMPRESSION_NONE; } -static void -throw_unknown_mime_type_error (GError **error) -{ - g_set_error (error, - EV_DOCUMENT_ERROR, - 0, - _("Unknown MIME Type")); -} - -static void -throw_failed_to_get_info_error (GError **error) -{ - g_set_error (error, - EV_DOCUMENT_ERROR, - 0, - _("Failed to get info for document")); -} +/* + * get_document_from_uri: + * @uri: the document URI + * @fast: whether to use fast MIME type detection + * @compression: a location to store the document's compression type + * @error: a #GError location to store an error, or %NULL + * + * Creates a #EvDocument instance for the document at @uri, using either + * fast or slow MIME type detection. If a document could be created, + * @compression is filled in with the document's compression type. + * On error, %NULL is returned and @error filled in. + * + * Returns: a new #EvDocument instance, or %NULL on error with @error filled in + */ static EvDocument * get_document_from_uri (const char *uri, - gboolean slow, + gboolean fast, EvCompressionType *compression, GError **error) { EvDocument *document = NULL; - GFile *file; - GFileInfo *file_info; - const char *mime_type; - char *content_type = NULL; + gchar *mime_type = NULL; + GError *err = NULL; *compression = EV_COMPRESSION_NONE; - file = g_file_new_for_uri (uri); - file_info = g_file_query_info (file, - G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE, - 0, NULL, NULL); - - if (file_info == NULL) { - throw_failed_to_get_info_error (error); - return NULL; - } - - mime_type = g_file_info_get_content_type (file_info); + mime_type = ev_file_get_mime_type (uri, fast, &err); if (mime_type == NULL) { - throw_unknown_mime_type_error (error); - g_object_unref (file_info); + g_free (mime_type); + + if (err == NULL) { + g_set_error_literal (error, + EV_DOCUMENT_ERROR, + EV_DOCUMENT_ERROR_INVALID, + _("Unknown MIME Type")); + } else { + g_propagate_error (error, err); + } + return NULL; } + document = ev_backends_manager_get_document (mime_type); + #ifdef ENABLE_PIXBUF - if (mime_type_supported_by_gdk_pixbuf (mime_type)) + if (!document && mime_type_supported_by_gdk_pixbuf (mime_type)) document = ev_backends_manager_get_document ("image/*"); - else - document = ev_backends_manager_get_document (mime_type); -#else - document = ev_backends_manager_get_document (mime_type); #endif /* ENABLE_PIXBUF */ if (document == NULL) { - /* try to sniff mime type from the content */ - guchar *buffer; - gssize size_read; - GFileInputStream *input_stream; - - input_stream = g_file_read (file, NULL, NULL); - buffer = g_malloc (1024); - size_read = g_input_stream_read (G_INPUT_STREAM (input_stream), - buffer, - 1024, - NULL, NULL); - g_input_stream_close (G_INPUT_STREAM (input_stream), - NULL, NULL); - g_object_unref (file); - if (size_read == -1) { - throw_failed_to_get_info_error (error); - g_object_unref (file_info); - return NULL; - } else { - content_type = g_content_type_guess (NULL, /* no filename */ - buffer, 1024, - NULL); - g_free (buffer); - if (content_type == NULL) { - throw_unknown_mime_type_error (error); - g_object_unref (file_info); - return NULL; - } else { - document = ev_backends_manager_get_document (content_type); - if (document == NULL) { - g_set_error (error, - EV_DOCUMENT_ERROR, - 0, - _("Unhandled MIME type: “%s”"), content_type); - g_object_unref (file_info); - g_free (content_type); - return NULL; - } - mime_type = content_type; - } - } - } else { - g_object_unref (file); + gchar *content_type, *mime_desc = NULL; + + content_type = g_content_type_from_mime_type (mime_type); + if (content_type) + mime_desc = g_content_type_get_description (content_type); + + g_set_error (error, + EV_DOCUMENT_ERROR, + EV_DOCUMENT_ERROR_INVALID, + _("File type %s (%s) is not supported"), + mime_desc ? mime_desc : "-", mime_type); + g_free (mime_desc); + g_free (content_type); + g_free (mime_type); + + return NULL; } *compression = get_compression_from_mime_type (mime_type); - g_object_unref (file_info); - g_free (content_type); + g_free (mime_type); return document; } @@ -226,6 +191,19 @@ free_uncompressed_uri (gchar *uri_unc) g_free (uri_unc); } +/** + * ev_document_factory_get_document: + * @uri: an URI + * @error: a #GError location to store an error, or %NULL + * + * Creates a #EvDocument for the document at @uri; or, if no backend handling + * the document's type is found, or an error occurred on opening the document, + * returns %NULL and fills in @error. + * If the document is encrypted, it is returned but also @error is set to + * %EV_DOCUMENT_ERROR_ENCRYPTED. + * + * Returns: a new #EvDocument, or %NULL. + */ EvDocument * ev_document_factory_get_document (const char *uri, GError **error) { @@ -233,84 +211,88 @@ ev_document_factory_get_document (const char *uri, GError **error) int result; EvCompressionType compression; gchar *uri_unc = NULL; + GError *err = NULL; - document = get_document_from_uri (uri, FALSE, &compression, error); - if (*error == NULL) { - uri_unc = ev_file_uncompress (uri, compression, error); + g_return_val_if_fail (uri != NULL, NULL); + + document = get_document_from_uri (uri, TRUE, &compression, &err); + g_assert (document != NULL || err != NULL); + + if (document != NULL) { + uri_unc = ev_file_uncompress (uri, compression, &err); if (uri_unc) { g_object_set_data_full (G_OBJECT (document), "uri-uncompressed", uri_unc, (GDestroyNotify) free_uncompressed_uri); - } - - if (*error != NULL) { + } else if (err != NULL) { /* Error uncompressing file */ - if (document) - g_object_unref (document); + g_object_unref (document); + g_propagate_error (error, err); return NULL; } - result = ev_document_load (document, uri_unc ? uri_unc : uri, error); + result = ev_document_load (document, uri_unc ? uri_unc : uri, &err); - if (result == FALSE || *error) { - if (*error && - (*error)->domain == EV_DOCUMENT_ERROR && - (*error)->code == EV_DOCUMENT_ERROR_ENCRYPTED) + if (result == FALSE || err) { + if (err && + g_error_matches (err, EV_DOCUMENT_ERROR, EV_DOCUMENT_ERROR_ENCRYPTED)) { + g_propagate_error (error, err); return document; + } + /* else fall through to slow mime code section below */ } else { return document; } + + g_object_unref (document); + document = NULL; } /* Try again with slow mime detection */ - if (document) - g_object_unref (document); - document = NULL; - - if (*error) - g_error_free (*error); - *error = NULL; - + g_clear_error (&err); uri_unc = NULL; - document = get_document_from_uri (uri, TRUE, &compression, error); - - if (*error != NULL) { + document = get_document_from_uri (uri, FALSE, &compression, &err); + if (document == NULL) { + g_assert (err != NULL); + g_propagate_error (error, err); return NULL; } - uri_unc = ev_file_uncompress (uri, compression, error); + uri_unc = ev_file_uncompress (uri, compression, &err); if (uri_unc) { g_object_set_data_full (G_OBJECT (document), "uri-uncompressed", uri_unc, (GDestroyNotify) free_uncompressed_uri); - } - - if (*error != NULL) { + } else if (err != NULL) { /* Error uncompressing file */ - if (document) - g_object_unref (document); + g_propagate_error (error, err); + + g_object_unref (document); return NULL; } - result = ev_document_load (document, uri_unc ? uri_unc : uri, error); - + result = ev_document_load (document, uri_unc ? uri_unc : uri, &err); if (result == FALSE) { - if (*error == NULL) { - g_set_error (error, - EV_DOCUMENT_ERROR, - 0, - _("Unknown MIME Type")); - } else if ((*error)->domain == EV_DOCUMENT_ERROR && - (*error)->code == EV_DOCUMENT_ERROR_ENCRYPTED) { + if (err == NULL) { + /* FIXME: this really should not happen; the backend should + * always return a meaningful error. + */ + g_set_error_literal (&err, + EV_DOCUMENT_ERROR, + EV_DOCUMENT_ERROR_INVALID, + _("Unknown MIME Type")); + } else if (g_error_matches (err, EV_DOCUMENT_ERROR, EV_DOCUMENT_ERROR_ENCRYPTED)) { + g_propagate_error (error, err); return document; } - if (document) - g_object_unref (document); + g_object_unref (document); document = NULL; + + g_propagate_error (error, err); } return document; @@ -346,7 +328,21 @@ file_filter_add_mime_types (EvTypeInfo *info, GtkFileFilter *filter) gtk_file_filter_add_mime_type (filter, mime_type); } -void +/** + * ev_document_factory_add_filters: + * @chooser: a #GtkFileChooser + * @document: a #EvDocument, or %NULL + * + * Adds some file filters to @chooser. + + * Always add a "All documents" format. + * + * If @document is not %NULL, adds a #GtkFileFilter for @document's MIME type. + * + * If @document is %NULL, adds a #GtkFileFilter for each document type that evince + * can handle. + */ +void ev_document_factory_add_filters (GtkWidget *chooser, EvDocument *document) { GList *all_types; @@ -354,6 +350,9 @@ ev_document_factory_add_filters (GtkWidget *chooser, EvDocument *document) GtkFileFilter *default_filter; GtkFileFilter *document_filter; + g_return_if_fail (GTK_IS_FILE_CHOOSER (chooser)); + g_return_if_fail (document == NULL || EV_IS_DOCUMENT (document)); + all_types = ev_backends_manager_get_all_types_info (); default_filter = document_filter = filter = gtk_file_filter_new ();