After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 589545 - *_download_document(): let the client decide where to download the file
*_download_document(): let the client decide where to download the file
Status: RESOLVED FIXED
Product: libgdata
Classification: Platform
Component: Google Documents service
git master
Other All
: Normal normal
: ---
Assigned To: libgdata-maint
libgdata-maint
Depends on:
Blocks:
 
 
Reported: 2009-07-23 20:51 UTC by Thibault Saunier
Modified: 2009-07-27 22:50 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
First buggy patch. (24.38 KB, patch)
2009-07-23 20:52 UTC, Thibault Saunier
needs-work Details | Review
Cleaned up patch. (22.74 KB, patch)
2009-07-23 22:27 UTC, Thibault Saunier
needs-work Details | Review
Patch with the last review conrections implementations. (26.08 KB, patch)
2009-07-27 04:04 UTC, Thibault Saunier
none Details | Review
New patch with the gboolean replace_if_extists. (21.18 KB, patch)
2009-07-27 17:46 UTC, Thibault Saunier
committed Details | Review

Description Thibault Saunier 2009-07-23 20:51:56 UTC
Please describe the problem:
The client can't choose the exact file where to download a document. It should be possible.

Steps to reproduce:


Actual results:


Expected results:


Does this happen every time?


Other information:
Comment 1 Thibault Saunier 2009-07-23 20:52:34 UTC
Created attachment 139108 [details] [review]
First buggy patch.
Comment 2 Thibault Saunier 2009-07-23 20:55:15 UTC
Comment on attachment 139108 [details] [review]
First buggy patch.

Here is the backtrace

  • #0 ??
    from /lib/tls/i686/cmov/libc.so.6
  • #1 ??
    from /lib/tls/i686/cmov/libc.so.6
  • #2 malloc
    from /lib/tls/i686/cmov/libc.so.6
  • #3 ??
    from /lib/tls/i686/cmov/libc.so.6
  • #4 iconv_open
    from /lib/tls/i686/cmov/libc.so.6
  • #5 try_conversion
    at gconvert.c line 71
  • #6 IA__g_iconv_open
    at gconvert.c line 123
  • #7 open_converter
    at gconvert.c line 500
  • #8 IA__g_convert
    at gconvert.c line 738
  • #9 IA__g_locale_to_utf8
    at gconvert.c line 1077
  • #10 IA__g_strerror
    at gstrfuncs.c line 941
  • #11 _g_local_file_output_stream_create
    at glocalfileoutputstream.c line 607
  • #12 g_local_file_create
    at glocalfile.c line 1340
  • #13 IA__g_file_create
    at gfile.c line 1577
  • #14 _gdata_documents_entry_download_document
    at gdata-documents-entry.c line 576
  • #15 gdata_documents_presentation_download_document
    at gdata-documents-presentation.c line 144
  • #16 test_download_all_documents
    at documents.c line 515
  • #17 g_test_run_suite_internal
    at gtestutils.c line 1130
  • #18 g_test_run_suite_internal
    at gtestutils.c line 1189
  • #19 g_test_run_suite_internal
    at gtestutils.c line 1189
  • #20 IA__g_test_run_suite
    at gtestutils.c line 1238
  • #21 IA__g_test_run
    at gtestutils.c line 862
  • #22 main
    at documents.c line 663

Comment 3 Philip Withnall 2009-07-23 21:12:47 UTC
I can't review the patch with so much unrelated stuff in it. Please remove things like test_upload_metadata_get_entry (GDataService *service) from the patch and attach an updated version with just the download changes.
Comment 4 Thibault Saunier 2009-07-23 22:27:57 UTC
Created attachment 139118 [details] [review]
Cleaned up patch.
Comment 5 Philip Withnall 2009-07-25 17:03:35 UTC
While reviewing the patch, it struck me that there's no need for the replace_file_if_exists parameter. We should make the function overwrite whatever file already exists (if any), and have the calling code check for existence of the file beforehand. The calling code would've had to do this before anyway, so that it could present a "Replace file?" dialogue to the user, in order to set the replace_file_if_exists parameter. If the user specifies a directory as destination_file, we should still overwrite existing files; just make sure that the filename that gdata_documents_*_download_document() uses is well documented.

For this reason, I'm not reviewing the main changes to _gdata_documents_entry_download_document() until you make those changes (or provide a good reason why you shouldn't). :-)

> - * @destination_directory: the directory into which the file should be downloaded
> - * @file_extension: the extension with which to save the downloaded file
> + * @destination_file: the GFile into which the presentation file should be saved
> + * @extension: the file extension (is used in case @destination_file is a folder)

You haven't renamed @file_extension to @extension in the function declaration, so don't change it in the documentation. You're also missing a "#" before "GFile".

> -	/* TODO: async version */
> +	/* TODO: async version */			

Watch out for introducing extraneous whitespace.

> -	g_return_val_if_fail (G_IS_FILE (destination_directory), NULL);
> -	g_return_val_if_fail (file_extension != NULL, NULL);
> +	g_return_val_if_fail (G_IS_FILE (destination_file), NULL);

Why remove the NULL check for file_extension?

> + * If @destination_file is a directory, then the file will be downloaded in this directory with the #GDataEntry:title with 
> + * the apropriate extension as name.
> + *
> + * If there is an error getting the document, a %GDATA_SERVICE_ERROR_WITH_QUERY error will be returned.

That second paragraph already exists in the documentation for that function, and again for gdata_documents_text_download_document().
Comment 6 Thibault Saunier 2009-07-27 04:04:53 UTC
Created attachment 139264 [details] [review]
Patch with the last review conrections implementations.
Comment 7 Thibault Saunier 2009-07-27 17:46:15 UTC
Created attachment 139304 [details] [review]
New patch with the gboolean replace_if_extists.

Hi, 

Sorry I have thought about the replace_if_exist variable  and according to this: http://library.gnome.org/devel/gio/unstable/GFile.html#g-file-query-exists, I should let this boolean. 

>We should make the function overwrite
>whatever file already exists (if any), and have the calling code check for
>existence of the file beforehand. The calling code would've had to do this
>before anyway, so that it could present a "Replace file?" dialogue to the user,
>in order to set the replace_file_if_exists parameter. If the user specifies a
>directory as destination_file, we should still overwrite existing files; just
>make sure that the filename that gdata_documents_*_download_document() uses is
>well documented.


Actually the calling code should do this after as an G_IO_ERROR_EXISTS error handling then.

So I send the new patch now hopping that you agree with me ;).
Comment 8 Philip Withnall 2009-07-27 22:50:51 UTC
Some comments about the patch:

> - * @destination_directory: the directory into which the file should be downloaded
> + * @destination_file: the #GFile into which the presentation file should be saved

A bit too much copy-pasting going on here; "presentation" isn't correct. Fixed.

> +				document_title = gdata_entry_get_title (GDATA_ENTRY (self));
> +				gchar *filename = g_strdup_printf ("%s.%s", document_title, file_extension);

It's old-fashioned, I know, but no inline declarations (of "filename" in this case) please.

> +				g_object_unref (destination_file);
> +				destination_file = new_destination_file;

You shouldn't be unreffing the input to the function under any circumstances. That completely breaks the assumed memory management scheme with the public API. Removed.

commit 88159d6a2c37cf3edd1b80398a020968d6728c39
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:   Mon Jul 27 23:42:34 2009 +0100

    Bug 589545 – *_download_document(): let the client decide where to download
    
    Patch from Thibault Saunier <saunierthibault@gmail.com> to change the
    semantics of the *_download_document() functions. Closes: bgo#589545

 gdata/gdata-private.h                              |    2 +-
 gdata/services/documents/gdata-documents-entry.c   |   60 +++++++++++---------
 .../documents/gdata-documents-presentation.c       |   13 ++--
 .../documents/gdata-documents-presentation.h       |    2 +-
 .../documents/gdata-documents-spreadsheet.c        |   16 +++--
 .../documents/gdata-documents-spreadsheet.h        |    2 +-
 gdata/services/documents/gdata-documents-text.c    |   13 ++--
 gdata/services/documents/gdata-documents-text.h    |    2 +-
 gdata/tests/documents.c                            |   57 +++++++++++++++----
 9 files changed, 105 insertions(+), 62 deletions(-)