5646.1.2
by Martin Pool
Add brief user documentation of command line splitting |
1 |
# Copyright (C) 2010-2011 Canonical Ltd
|
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
2 |
#
|
3 |
# This program is free software; you can redistribute it and/or modify
|
|
4 |
# it under the terms of the GNU General Public License as published by
|
|
5 |
# the Free Software Foundation; either version 2 of the License, or
|
|
6 |
# (at your option) any later version.
|
|
7 |
#
|
|
8 |
# This program is distributed in the hope that it will be useful,
|
|
9 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
10 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
11 |
# GNU General Public License for more details.
|
|
12 |
#
|
|
13 |
# You should have received a copy of the GNU General Public License
|
|
14 |
# along with this program; if not, write to the Free Software
|
|
15 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
16 |
||
5646.1.2
by Martin Pool
Add brief user documentation of command line splitting |
17 |
"""Unicode-compatible command-line splitter for all platforms.
|
18 |
||
19 |
The user-visible behaviour of this module is described in
|
|
20 |
configuring_bazaar.txt.
|
|
21 |
"""
|
|
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
22 |
|
6379.6.7
by Jelmer Vernooij
Move importing from future until after doc string, otherwise the doc string will disappear. |
23 |
from __future__ import absolute_import |
24 |
||
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
25 |
import re |
26 |
||
27 |
||
28 |
_whitespace_match = re.compile(u'\s', re.UNICODE).match |
|
29 |
||
30 |
||
31 |
class _PushbackSequence(object): |
|
32 |
def __init__(self, orig): |
|
33 |
self._iter = iter(orig) |
|
34 |
self._pushback_buffer = [] |
|
5050.1.3
by Vincent Ladeuil
Delete spurious spaces. |
35 |
|
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
36 |
def next(self): |
37 |
if len(self._pushback_buffer) > 0: |
|
38 |
return self._pushback_buffer.pop() |
|
39 |
else: |
|
40 |
return self._iter.next() |
|
5050.1.3
by Vincent Ladeuil
Delete spurious spaces. |
41 |
|
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
42 |
def pushback(self, char): |
43 |
self._pushback_buffer.append(char) |
|
5050.1.3
by Vincent Ladeuil
Delete spurious spaces. |
44 |
|
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
45 |
def __iter__(self): |
46 |
return self |
|
47 |
||
48 |
||
49 |
class _Whitespace(object): |
|
4913.5.21
by Gordon Tyler
Refactored interface between Parser and states. |
50 |
def process(self, next_char, context): |
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
51 |
if _whitespace_match(next_char): |
52 |
if len(context.token) > 0: |
|
53 |
return None |
|
54 |
else: |
|
55 |
return self |
|
4913.5.22
by Gordon Tyler
Tweaked quote handling. |
56 |
elif next_char in context.allowed_quote_chars: |
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
57 |
context.quoted = True |
58 |
return _Quotes(next_char, self) |
|
59 |
elif next_char == u'\\': |
|
60 |
return _Backslash(self) |
|
61 |
else: |
|
62 |
context.token.append(next_char) |
|
63 |
return _Word() |
|
64 |
||
65 |
||
66 |
class _Quotes(object): |
|
67 |
def __init__(self, quote_char, exit_state): |
|
68 |
self.quote_char = quote_char |
|
69 |
self.exit_state = exit_state |
|
70 |
||
4913.5.21
by Gordon Tyler
Refactored interface between Parser and states. |
71 |
def process(self, next_char, context): |
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
72 |
if next_char == u'\\': |
73 |
return _Backslash(self) |
|
74 |
elif next_char == self.quote_char: |
|
75 |
return self.exit_state |
|
76 |
else: |
|
77 |
context.token.append(next_char) |
|
78 |
return self |
|
79 |
||
80 |
||
81 |
class _Backslash(object): |
|
82 |
# See http://msdn.microsoft.com/en-us/library/bb776391(VS.85).aspx
|
|
83 |
def __init__(self, exit_state): |
|
84 |
self.exit_state = exit_state |
|
85 |
self.count = 1 |
|
5050.1.3
by Vincent Ladeuil
Delete spurious spaces. |
86 |
|
4913.5.21
by Gordon Tyler
Refactored interface between Parser and states. |
87 |
def process(self, next_char, context): |
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
88 |
if next_char == u'\\': |
89 |
self.count += 1 |
|
90 |
return self |
|
4913.5.22
by Gordon Tyler
Tweaked quote handling. |
91 |
elif next_char in context.allowed_quote_chars: |
92 |
# 2N backslashes followed by a quote are N backslashes
|
|
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
93 |
context.token.append(u'\\' * (self.count/2)) |
4913.5.22
by Gordon Tyler
Tweaked quote handling. |
94 |
# 2N+1 backslashes follwed by a quote are N backslashes followed by
|
95 |
# the quote which should not be processed as the start or end of
|
|
96 |
# the quoted arg
|
|
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
97 |
if self.count % 2 == 1: |
4913.5.22
by Gordon Tyler
Tweaked quote handling. |
98 |
# odd number of \ escapes the quote
|
99 |
context.token.append(next_char) |
|
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
100 |
else: |
4913.5.22
by Gordon Tyler
Tweaked quote handling. |
101 |
# let exit_state handle next_char
|
102 |
context.seq.pushback(next_char) |
|
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
103 |
self.count = 0 |
104 |
return self.exit_state |
|
105 |
else: |
|
4913.5.22
by Gordon Tyler
Tweaked quote handling. |
106 |
# N backslashes not followed by a quote are just N backslashes
|
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
107 |
if self.count > 0: |
108 |
context.token.append(u'\\' * self.count) |
|
109 |
self.count = 0 |
|
4913.5.22
by Gordon Tyler
Tweaked quote handling. |
110 |
# let exit_state handle next_char
|
111 |
context.seq.pushback(next_char) |
|
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
112 |
return self.exit_state |
5050.1.3
by Vincent Ladeuil
Delete spurious spaces. |
113 |
|
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
114 |
def finish(self, context): |
115 |
if self.count > 0: |
|
116 |
context.token.append(u'\\' * self.count) |
|
117 |
||
118 |
||
119 |
class _Word(object): |
|
4913.5.21
by Gordon Tyler
Refactored interface between Parser and states. |
120 |
def process(self, next_char, context): |
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
121 |
if _whitespace_match(next_char): |
122 |
return None |
|
4913.5.22
by Gordon Tyler
Tweaked quote handling. |
123 |
elif next_char in context.allowed_quote_chars: |
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
124 |
return _Quotes(next_char, self) |
125 |
elif next_char == u'\\': |
|
126 |
return _Backslash(self) |
|
127 |
else: |
|
128 |
context.token.append(next_char) |
|
129 |
return self |
|
130 |
||
131 |
||
4913.5.23
by Gordon Tyler
Renamed cmdline.Parser to Splitter to better match its usage. |
132 |
class Splitter(object): |
4913.5.24
by Gordon Tyler
Added cmdline.split function, which replaces commands.shlex_split_unicode. |
133 |
def __init__(self, command_line, single_quotes_allowed): |
4913.5.21
by Gordon Tyler
Refactored interface between Parser and states. |
134 |
self.seq = _PushbackSequence(command_line) |
4913.5.22
by Gordon Tyler
Tweaked quote handling. |
135 |
self.allowed_quote_chars = u'"' |
136 |
if single_quotes_allowed: |
|
137 |
self.allowed_quote_chars += u"'" |
|
5050.1.3
by Vincent Ladeuil
Delete spurious spaces. |
138 |
|
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
139 |
def __iter__(self): |
140 |
return self |
|
5050.1.3
by Vincent Ladeuil
Delete spurious spaces. |
141 |
|
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
142 |
def next(self): |
143 |
quoted, token = self._get_token() |
|
144 |
if token is None: |
|
145 |
raise StopIteration |
|
146 |
return quoted, token |
|
5050.1.3
by Vincent Ladeuil
Delete spurious spaces. |
147 |
|
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
148 |
def _get_token(self): |
149 |
self.quoted = False |
|
150 |
self.token = [] |
|
151 |
state = _Whitespace() |
|
4913.5.21
by Gordon Tyler
Refactored interface between Parser and states. |
152 |
for next_char in self.seq: |
153 |
state = state.process(next_char, self) |
|
4913.5.19
by Gordon Tyler
Moved UnicodeShlex, etc. to a new module, bzrlib.cmdline, and renamed it to Parser. |
154 |
if state is None: |
155 |
break
|
|
156 |
if not state is None and not getattr(state, 'finish', None) is None: |
|
157 |
state.finish(self) |
|
158 |
result = u''.join(self.token) |
|
159 |
if not self.quoted and result == '': |
|
160 |
result = None |
|
161 |
return self.quoted, result |
|
4913.5.24
by Gordon Tyler
Added cmdline.split function, which replaces commands.shlex_split_unicode. |
162 |
|
4913.5.27
by Gordon Tyler
Code formatting. |
163 |
|
4913.5.24
by Gordon Tyler
Added cmdline.split function, which replaces commands.shlex_split_unicode. |
164 |
def split(unsplit, single_quotes_allowed=True): |
165 |
splitter = Splitter(unsplit, single_quotes_allowed=single_quotes_allowed) |
|
166 |
return [arg for quoted, arg in splitter] |