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 682989 - Add g_file_info_get_uri() and g_file_info_get_file() convenience methods
Add g_file_info_get_uri() and g_file_info_get_file() convenience methods
Status: RESOLVED WONTFIX
Product: glib
Classification: Platform
Component: gio
unspecified
Other All
: Normal enhancement
: ---
Assigned To: gtkdev
gtkdev
Depends on:
Blocks:
 
 
Reported: 2012-08-29 21:08 UTC by Jasper St. Pierre (not reading bugmail)
Modified: 2012-12-12 09:55 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
gfileinfo: Add a standard::uri file info attribute (4.78 KB, patch)
2012-08-29 21:08 UTC, Jasper St. Pierre (not reading bugmail)
none Details | Review
gio: Fill in the GFileInfo::standard::uri attribute (1.86 KB, patch)
2012-08-29 21:09 UTC, Jasper St. Pierre (not reading bugmail)
none Details | Review
gio: Add some tests for the new standard::uri attribute (2.87 KB, patch)
2012-08-29 21:09 UTC, Jasper St. Pierre (not reading bugmail)
none Details | Review
client: Fill in the new standard::uri attribute (4.20 KB, patch)
2012-08-29 21:09 UTC, Jasper St. Pierre (not reading bugmail)
none Details | Review
gfileinfo: Add a standard::uri file info attribute (6.76 KB, patch)
2012-08-31 00:26 UTC, Jasper St. Pierre (not reading bugmail)
none Details | Review
gio: Fill in the GFileInfo::standard::uri attribute (2.24 KB, patch)
2012-08-31 00:26 UTC, Jasper St. Pierre (not reading bugmail)
none Details | Review
gio: Add some tests for the new standard::uri attribute (2.87 KB, patch)
2012-08-31 00:26 UTC, Jasper St. Pierre (not reading bugmail)
none Details | Review
client: Fill in the new standard::uri attribute (4.37 KB, patch)
2012-08-31 00:26 UTC, Jasper St. Pierre (not reading bugmail)
none Details | Review

Description Jasper St. Pierre (not reading bugmail) 2012-08-29 21:08:54 UTC
A common complaint of GFileEnumerator and friends is that they don't
allow you to get a GFile instance easily from the enumerator. The common
pattern is to have:

    while ((info = g_file_enumerator_next_file (enumr, NULL, NULL))
      {
        gchar *name = g_file_info_get_name (info);
        GFile *child = g_file_get_child (g_file_enumerator_get_container (enumr),
                                         nanme);
      }

We can do much better. Introduce two new convenience methods that allow
getitng the URI, and constructing a new GFile from that URI. Some local
Gio things that construct GFileInfos are patched up, and there's a gvfs
patch as well.
Comment 1 Jasper St. Pierre (not reading bugmail) 2012-08-29 21:08:57 UTC
Created attachment 222858 [details] [review]
gfileinfo: Add a standard::uri file info attribute

As well as a g_file_info_get_file helper method that creates a new file
using g_file_new_for_uri. This allows you to easily query a file, given
a GFileInfo, like during the GFileEnumerator case.
Comment 2 Jasper St. Pierre (not reading bugmail) 2012-08-29 21:09:01 UTC
Created attachment 222859 [details] [review]
gio: Fill in the GFileInfo::standard::uri attribute

In the three places that matter.
Comment 3 Jasper St. Pierre (not reading bugmail) 2012-08-29 21:09:04 UTC
Created attachment 222860 [details] [review]
gio: Add some tests for the new standard::uri attribute
Comment 4 Jasper St. Pierre (not reading bugmail) 2012-08-29 21:09:57 UTC
Created attachment 222864 [details] [review]
client: Fill in the new standard::uri attribute
Comment 5 Jasper St. Pierre (not reading bugmail) 2012-08-31 00:26:34 UTC
Created attachment 223000 [details] [review]
gfileinfo: Add a standard::uri file info attribute

As well as a g_file_info_get_file helper method that creates a new file
using g_file_new_for_uri. This allows you to easily query a file, given
a GFileInfo, like during the GFileEnumerator case.
Comment 6 Jasper St. Pierre (not reading bugmail) 2012-08-31 00:26:37 UTC
Created attachment 223001 [details] [review]
gio: Fill in the GFileInfo::standard::uri attribute

In the three places that matter.
Comment 7 Jasper St. Pierre (not reading bugmail) 2012-08-31 00:26:40 UTC
Created attachment 223002 [details] [review]
gio: Add some tests for the new standard::uri attribute
Comment 8 Jasper St. Pierre (not reading bugmail) 2012-08-31 00:26:49 UTC
Created attachment 223003 [details] [review]
client: Fill in the new standard::uri attribute
Comment 9 Alexander Larsson 2012-09-05 07:01:09 UTC
Roundtripping the uri via a GFileInfo field seems pretty weird. Not only do you get a weird field which is only filled in during enumeration, it also does a full GFile->uri->GFile roundtrip which is much more complicated than a single get_child() call.

However, adding a helper like:

GFile *g_file_enumerator_get_child (GFileEnumerator *enumerator, GFileInfo *info)

to avoid unnecessary typing seems to make a lot of sense.
Comment 10 Jasper St. Pierre (not reading bugmail) 2012-12-12 09:55:48 UTC
=> bug #682989