[easytag/wip/help: 14/18] Add basic error reporting to mp4_tag.cc
- From: David King <davidk src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [easytag/wip/help: 14/18] Add basic error reporting to mp4_tag.cc
- Date: Fri, 11 Apr 2014 13:08:54 +0000 (UTC)
commit 0955b0b8b3866f060d8b3a4a2661a1e023763dcb
Author: Santtu Lakkala <inz inz fi>
Date: Fri Apr 11 12:01:15 2014 +0300
Add basic error reporting to mp4_tag.cc
Add some error reporting enabled by updates in GIO wrapper to
mp4_tag.cc.
src/mp4_tag.cc | 53 ++++++++++++++++++++++++++++++++++++++++++++++++-----
1 files changed, 48 insertions(+), 5 deletions(-)
---
diff --git a/src/mp4_tag.cc b/src/mp4_tag.cc
index c21f999..efeaebd 100644
--- a/src/mp4_tag.cc
+++ b/src/mp4_tag.cc
@@ -61,15 +61,36 @@ gboolean Mp4tag_Read_File_Tag (gchar *filename, File_Tag *FileTag)
/* Get data from tag. */
GFile *file = g_file_new_for_path (filename);
GIO_InputStream stream (file);
- TagLib::MP4::File mp4file (&stream);
+ if (!stream.isOpen ())
+ {
+ gchar *filename_utf8 = filename_to_display (filename);
+ const GError *error = stream.getError ();
+ Log_Print (LOG_ERROR, _("Error while opening file: '%s' (%s)."),
+ filename_utf8, error->message);
+ g_free (filename_utf8);
+ return FALSE;
+ }
+
+ TagLib::MP4::File mp4file (&stream);
g_object_unref (file);
if (!mp4file.isOpen ())
{
gchar *filename_utf8 = filename_to_display (filename);
- Log_Print (LOG_ERROR, _("Error while opening file: '%s' (%s)."),
- filename_utf8, _("MP4 format invalid"));
+ const GError *error = stream.getError ();
+
+ if (error)
+ {
+ Log_Print (LOG_ERROR, _("Error while opening file: '%s' (%s)."),
+ filename_utf8, error->message);
+ }
+ else
+ {
+ Log_Print (LOG_ERROR, _("Error while opening file: '%s' (%s)."),
+ filename_utf8, _("MP4 format invalid"));
+ }
+
g_free (filename_utf8);
return FALSE;
}
@@ -233,14 +254,36 @@ gboolean Mp4tag_Write_File_Tag (ET_File *ETFile)
/* Open file for writing */
GFile *file = g_file_new_for_path (filename);
GIO_IOStream stream (file);
+
+ if (!stream.isOpen ())
+ {
+ gchar *filename_utf8 = filename_to_display (filename);
+ const GError *error = stream.getError ();
+ Log_Print (LOG_ERROR, _("Error while opening file: '%s' (%s)."),
+ filename_utf8, error->message);
+ g_free (filename_utf8);
+ return FALSE;
+ }
+
TagLib::MP4::File mp4file (&stream);
g_object_unref (file);
if (!mp4file.isOpen ())
{
- Log_Print (LOG_ERROR, _("Error while opening file: '%s' (%s)."),
- filename_utf8, _("MP4 format invalid"));
+ const GError *error = stream.getError ();
+
+ if (error)
+ {
+ Log_Print (LOG_ERROR, _("Error while opening file: '%s' (%s)."),
+ filename_utf8, error->message);
+ }
+ else
+ {
+ Log_Print (LOG_ERROR, _("Error while opening file: '%s' (%s)."),
+ filename_utf8, _("MP4 format invalid"));
+ }
+
return FALSE;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]