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 567436 - Add g_base64_decode_len function
Add g_base64_decode_len function
Status: RESOLVED DUPLICATE of bug 564728
Product: glib
Classification: Platform
Component: general
2.16.x
Other All
: Normal enhancement
: ---
Assigned To: gtkdev
gtkdev
Depends on:
Blocks:
 
 
Reported: 2009-01-12 00:54 UTC by Konstantin Klimentov
Modified: 2009-01-13 19:31 UTC
See Also:
GNOME target: ---
GNOME version: Unversioned Enhancement



Description Konstantin Klimentov 2009-01-12 00:54:16 UTC
Hello
While profiling my application, i found that there is uneficient implementation of some function related to use of g_base64_decode
In it's current interface i can't decode base64_decoded data which is part of string, and i have to create copy for that, when is really does not nessecary.

Just a little illustration, if i have some function with prototype
gboolean f(const gchar* big_data, gsize data_len);
and it is known that all content of big_data is base64_encoded data except last 6 bytes, i have to copy all this big data just to make base64_encoded data null terminated
Of course, i can hack it by overwriting one byte to '\0' and than restore it, or use g_base64_decode_step. But first is not thread-safe(or i should use mutexes), second is inconvenient and unevident.

So, if it is possible, please add to glib something like this:
guchar* g_base64_decode_len(const gchar *text, gsize text_len, gsize *out_len);
Comment 1 Matthias Clasen 2009-01-13 07:09:02 UTC
Just use g_base64_decode_step(), I'd say. 
We should make it more obvious in the documentation that that function is suitable for in-place decoding.
Comment 2 Matthias Clasen 2009-01-13 19:31:33 UTC
*** This bug has been marked as a duplicate of 564728 ***