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 384209 - wrap g_shell_quote/unquote()
wrap g_shell_quote/unquote()
Status: RESOLVED WONTFIX
Product: pygobject
Classification: Bindings
Component: general
Git master
Other All
: Normal enhancement
: ---
Assigned To: Nobody's working on this now (help wanted and appreciated)
Python bindings maintainers
Depends on:
Blocks:
 
 
Reported: 2006-12-10 00:01 UTC by Paul Pogonyshev
Modified: 2008-04-27 18:15 UTC
See Also:
GNOME target: ---
GNOME version: Unversioned Enhancement


Attachments
proposed patch without documentation (1.45 KB, patch)
2007-04-07 13:39 UTC, Paul Pogonyshev
rejected Details | Review
new patch wrapping g_shell_quote() and g_shell_unquote() (7.48 KB, patch)
2007-04-07 15:36 UTC, Paul Pogonyshev
needs-work Details | Review
fixed patch that should not leak memory (7.69 KB, patch)
2007-04-07 17:15 UTC, Paul Pogonyshev
rejected Details | Review

Description Paul Pogonyshev 2006-12-10 00:01:03 UTC
Please wrap g_shell_parse_argv().  There seems to be no replacement in Python.
Comment 1 Paul Pogonyshev 2007-04-07 13:39:12 UTC
Created attachment 85952 [details] [review]
proposed patch without documentation

Documentation will be written if the patch is accepted.
Comment 2 Gustavo Carneiro 2007-04-07 14:03:14 UTC
What about shlex?  Seems to do the same in Python...

http://docs.python.org/lib/module-shlex.html
Comment 3 Gustavo Carneiro 2007-04-07 14:04:41 UTC
OTOH, g_shell_quote () appears not to have a Python equivalent...
Comment 4 Paul Pogonyshev 2007-04-07 14:11:35 UTC
Doh, you are right about shlex package.  I wish you told that _before_ I wrote the patch :-/

Should I then write a patch for wrapping g_shell_quote/g_shell_unquote?  It maybe makes sense to keep g_shell_parse_args then, but OTOH we can add a reference to shlex package in the documentation.
Comment 5 Gustavo Carneiro 2007-04-07 14:25:18 UTC
(In reply to comment #4)
> Doh, you are right about shlex package.  I wish you told that _before_ I wrote
> the patch :-/

But I bet it was a good learning experience.. ;-)

> 
> Should I then write a patch for wrapping g_shell_quote/g_shell_unquote?  It
> maybe makes sense to keep g_shell_parse_args then, but OTOH we can add a
> reference to shlex package in the documentation.
> 

g_shell_unquote can be accomplished with shlex as well (will return a list with only one element in that case).

g_shell_quote is fine.
Comment 6 Paul Pogonyshev 2007-04-07 15:36:35 UTC
Created attachment 85955 [details] [review]
new patch wrapping g_shell_quote() and g_shell_unquote()

Note that g_shell_unquote() is not the same as shlex.split().  Try e.g. passing string 'foo "bar"' to it (the outer quotes are for Python).  While I don't see a use for this behaviour right away, I think it should be there if only to match its counterpart.
Comment 7 Gustavo Carneiro 2007-04-07 16:46:38 UTC
(In reply to comment #6)
> Created an attachment (id=85955) [edit]
> new patch wrapping g_shell_quote() and g_shell_unquote()
> 
> Note that g_shell_unquote() is not the same as shlex.split().  Try e.g. passing
> string 'foo "bar"' to it (the outer quotes are for Python).

Really?  I don't see that:

>>> shlex.split(gobject.shell_quote('foo "bar"'))[0]
'foo "bar"'

Looks correct to me...

>  While I don't see
> a use for this behaviour right away, I think it should be there if only to
> match its counterpart.

OK, I don't have strong objections to wrapping g_shell_unquote, but I still believe it is unnecessary.  jdahlin, jpe, finlay, any objections?

In any case, the patch leaks memory; you must g_free the strings returned by g_shell_quote/unquote.
Comment 8 Paul Pogonyshev 2007-04-07 17:09:53 UTC
> Really?  I don't see that:

>>> shlex.split ('foo "bar"') [0]
'foo'
>>> gobject.shell_unquote ('foo "bar"')
'foo bar'

shell_unquote() "flattens" strings bringing quoted and unquoted arguments to the same level.  I don't quite see how this would be useful, but this is sure different from what shlex.split() does.  It is about (but not completely) the same as ' '.join (shlex.split (...)) but this is non-trivial and replaces all whitespace with single space.

> In any case, the patch leaks memory; you must g_free the strings returned by
> g_shell_quote/unquote.

Oops, indeed.  I'll edit the patch.
Comment 9 Paul Pogonyshev 2007-04-07 17:15:36 UTC
Created attachment 85957 [details] [review]
fixed patch that should not leak memory
Comment 10 Gustavo Carneiro 2007-04-07 17:51:47 UTC
(In reply to comment #8)
> > Really?  I don't see that:
> 
> >>> shlex.split ('foo "bar"') [0]
> 'foo'
> >>> gobject.shell_unquote ('foo "bar"')
> 'foo bar'
> 
> shell_unquote() "flattens" strings bringing quoted and unquoted arguments to
> the same level.  I don't quite see how this would be useful, but this is sure
> different from what shlex.split() does.

I don't see how that would be useful either, and I think glib code is just being stupid.  But, well, if that's what people think they want, it's their problem...
Comment 11 Paul Pogonyshev 2007-04-07 18:03:01 UTC
Well, at least it does do what you expect if you pass a single shell-quoted string :)  In that case it is indeed identical to shlex.split (...) [0] only having somewhat more explicit name.
Comment 12 Johan (not receiving bugmail) Dahlin 2007-04-07 19:35:48 UTC
I'm generally against adding bindings for glib functions which have python equivalents in the standard library or are trivially implemented in applications. 
This seems to be just such a case.
Comment 13 Paul Pogonyshev 2007-04-07 20:03:54 UTC
shell_quote() is not trivially implemented or at least I don't know a way to do quoting easily.  shell_unquote() is a different case at least for most common usage pattern.
Comment 14 Johan (not receiving bugmail) Dahlin 2007-04-07 20:37:32 UTC
For what it is worth, I consider this a trivial implementation of what it seems that g_shell_quote() is doing:

def shell_quote(s):
    return "'%s'" % s.replace("'", "'\\''")

Can we close this bug now?
Comment 15 Gustavo Carneiro 2007-04-07 21:09:34 UTC
It is correct, but I wouldn't consider it trivial.  print shell_quote('\\\'') gives:
'\'\'''

echo '\'\''' gives:
\'

why does echo '\'\''' print \' ? If I were to follow my intuition I would say that echo '\'\''' would be a syntax error, but it apparently works..

I think not having to remember the weird shell quoting rules is worth the extra 64 bytes (yes, I measured) of code size that these two functions are wasting.
Comment 16 Gustavo Carneiro 2008-01-02 14:34:31 UTC
Johan, if you're still against the patch then please change the patch status.
Comment 17 Johan (not receiving bugmail) Dahlin 2008-01-02 14:43:31 UTC
(In reply to comment #16)
> Johan, if you're still against the patch then please change the patch status.
> 

I am. But perhaps it's a good time to create a glib module soon.
Comment 18 Gian Mario Tagliaretti 2008-01-02 14:50:08 UTC
I've done some work for a glib module:
https://launchpad.net/pyglib

The API wrapped are:
http://snipurl.com/1wczs

The doc covers 99% of the API.
Comment 19 André Klapper 2008-01-02 19:29:56 UTC
Johan, can you please change the patch status? thanks.
Comment 20 Paul Pogonyshev 2008-01-02 19:40:10 UTC
FWIW, this bug should be closed as WONTFIX then, because the patch itself is not problematic as far as I can understand.
Comment 21 Paul Pogonyshev 2008-04-27 18:15:10 UTC
Closing as per above.