1 from __future__
import unicode_literals
16 import urllib
.request
as compat_urllib_request
17 except ImportError: # Python 2
18 import urllib2
as compat_urllib_request
21 import urllib
.error
as compat_urllib_error
22 except ImportError: # Python 2
23 import urllib2
as compat_urllib_error
26 import urllib
.parse
as compat_urllib_parse
27 except ImportError: # Python 2
28 import urllib
as compat_urllib_parse
31 from urllib
.parse
import urlparse
as compat_urllib_parse_urlparse
32 except ImportError: # Python 2
33 from urlparse
import urlparse
as compat_urllib_parse_urlparse
36 import urllib
.parse
as compat_urlparse
37 except ImportError: # Python 2
38 import urlparse
as compat_urlparse
41 import http
.cookiejar
as compat_cookiejar
42 except ImportError: # Python 2
43 import cookielib
as compat_cookiejar
46 import html
.entities
as compat_html_entities
47 except ImportError: # Python 2
48 import htmlentitydefs
as compat_html_entities
51 import http
.client
as compat_http_client
52 except ImportError: # Python 2
53 import httplib
as compat_http_client
56 from urllib
.error
import HTTPError
as compat_HTTPError
57 except ImportError: # Python 2
58 from urllib2
import HTTPError
as compat_HTTPError
61 from urllib
.request
import urlretrieve
as compat_urlretrieve
62 except ImportError: # Python 2
63 from urllib
import urlretrieve
as compat_urlretrieve
67 from subprocess
import DEVNULL
68 compat_subprocess_get_DEVNULL
= lambda: DEVNULL
70 compat_subprocess_get_DEVNULL
= lambda: open(os
.path
.devnull
, 'w')
73 import http
.server
as compat_http_server
75 import BaseHTTPServer
as compat_http_server
78 from urllib
.parse
import unquote_to_bytes
as compat_urllib_parse_unquote_to_bytes
79 from urllib
.parse
import unquote
as compat_urllib_parse_unquote
80 from urllib
.parse
import unquote_plus
as compat_urllib_parse_unquote_plus
81 except ImportError: # Python 2
82 _asciire
= (compat_urllib_parse
._asciire
if hasattr(compat_urllib_parse
, '_asciire')
83 else re
.compile('([\x00-\x7f]+)'))
85 # HACK: The following are the correct unquote_to_bytes, unquote and unquote_plus
86 # implementations from cpython 3.4.3's stdlib. Python 2's version
87 # is apparently broken (see https://github.com/rg3/youtube-dl/pull/6244)
89 def compat_urllib_parse_unquote_to_bytes(string
):
90 """unquote_to_bytes('abc%20def') -> b'abc def'."""
91 # Note: strings are encoded as UTF-8. This is only an issue if it contains
92 # unescaped non-ASCII characters, which URIs should not.
94 # Is it a string-like object?
97 if isinstance(string
, unicode):
98 string
= string
.encode('utf-8')
99 bits
= string
.split(b
'%')
104 for item
in bits
[1:]:
106 append(compat_urllib_parse
._hextochr
[item
[:2]])
113 def compat_urllib_parse_unquote(string
, encoding
='utf-8', errors
='replace'):
114 """Replace %xx escapes by their single-character equivalent. The optional
115 encoding and errors parameters specify how to decode percent-encoded
116 sequences into Unicode characters, as accepted by the bytes.decode()
118 By default, percent-encoded sequences are decoded with UTF-8, and invalid
119 sequences are replaced by a placeholder character.
121 unquote('abc%20def') -> 'abc def'.
123 if '%' not in string
:
130 bits
= _asciire
.split(string
)
133 for i
in range(1, len(bits
), 2):
134 append(compat_urllib_parse_unquote_to_bytes(bits
[i
]).decode(encoding
, errors
))
138 def compat_urllib_parse_unquote_plus(string
, encoding
='utf-8', errors
='replace'):
139 """Like unquote(), but also replace plus signs by spaces, as required for
140 unquoting HTML form values.
142 unquote_plus('%7e/abc+def') -> '~/abc def'
144 string
= string
.replace('+', ' ')
145 return compat_urllib_parse_unquote(string
, encoding
, errors
)
148 compat_str
= unicode # Python 2
153 compat_basestring
= basestring
# Python 2
155 compat_basestring
= str
158 compat_chr
= unichr # Python 2
163 from xml
.etree
.ElementTree
import ParseError
as compat_xml_parse_error
164 except ImportError: # Python 2.6
165 from xml
.parsers
.expat
import ExpatError
as compat_xml_parse_error
169 from urllib
.parse
import parse_qs
as compat_parse_qs
170 except ImportError: # Python 2
171 # HACK: The following is the correct parse_qs implementation from cpython 3's stdlib.
172 # Python 2's version is apparently totally broken
174 def _parse_qsl(qs
, keep_blank_values
=False, strict_parsing
=False,
175 encoding
='utf-8', errors
='replace'):
176 qs
, _coerce_result
= qs
, compat_str
177 pairs
= [s2
for s1
in qs
.split('&') for s2
in s1
.split(';')]
179 for name_value
in pairs
:
180 if not name_value
and not strict_parsing
:
182 nv
= name_value
.split('=', 1)
185 raise ValueError("bad query field: %r" % (name_value
,))
186 # Handle case of a control-name with no equal sign
187 if keep_blank_values
:
191 if len(nv
[1]) or keep_blank_values
:
192 name
= nv
[0].replace('+', ' ')
193 name
= compat_urllib_parse_unquote(
194 name
, encoding
=encoding
, errors
=errors
)
195 name
= _coerce_result(name
)
196 value
= nv
[1].replace('+', ' ')
197 value
= compat_urllib_parse_unquote(
198 value
, encoding
=encoding
, errors
=errors
)
199 value
= _coerce_result(value
)
200 r
.append((name
, value
))
203 def compat_parse_qs(qs
, keep_blank_values
=False, strict_parsing
=False,
204 encoding
='utf-8', errors
='replace'):
206 pairs
= _parse_qsl(qs
, keep_blank_values
, strict_parsing
,
207 encoding
=encoding
, errors
=errors
)
208 for name
, value
in pairs
:
209 if name
in parsed_result
:
210 parsed_result
[name
].append(value
)
212 parsed_result
[name
] = [value
]
216 from shlex
import quote
as shlex_quote
217 except ImportError: # Python < 3.3
219 if re
.match(r
'^[-_\w./]+$', s
):
222 return "'" + s
.replace("'", "'\"'\"'") + "'"
232 if sys
.version_info
>= (3, 0):
233 compat_getenv
= os
.getenv
234 compat_expanduser
= os
.path
.expanduser
236 # Environment variables should be decoded with filesystem encoding.
237 # Otherwise it will fail if any non-ASCII characters present (see #3854 #3217 #2918)
239 def compat_getenv(key
, default
=None):
240 from .utils
import get_filesystem_encoding
241 env
= os
.getenv(key
, default
)
243 env
= env
.decode(get_filesystem_encoding())
246 # HACK: The default implementations of os.path.expanduser from cpython do not decode
247 # environment variables with filesystem encoding. We will work around this by
248 # providing adjusted implementations.
249 # The following are os.path.expanduser implementations from cpython 2.7.8 stdlib
250 # for different platforms with correct environment variables decoding.
252 if os
.name
== 'posix':
253 def compat_expanduser(path
):
254 """Expand ~ and ~user constructions. If user or $HOME is unknown,
256 if not path
.startswith('~'):
258 i
= path
.find('/', 1)
262 if 'HOME' not in os
.environ
:
264 userhome
= pwd
.getpwuid(os
.getuid()).pw_dir
266 userhome
= compat_getenv('HOME')
270 pwent
= pwd
.getpwnam(path
[1:i
])
273 userhome
= pwent
.pw_dir
274 userhome
= userhome
.rstrip('/')
275 return (userhome
+ path
[i
:]) or '/'
276 elif os
.name
== 'nt' or os
.name
== 'ce':
277 def compat_expanduser(path
):
278 """Expand ~ and ~user constructs.
280 If user or $HOME is unknown, do nothing."""
284 while i
< n
and path
[i
] not in '/\\':
287 if 'HOME' in os
.environ
:
288 userhome
= compat_getenv('HOME')
289 elif 'USERPROFILE' in os
.environ
:
290 userhome
= compat_getenv('USERPROFILE')
291 elif 'HOMEPATH' not in os
.environ
:
295 drive
= compat_getenv('HOMEDRIVE')
298 userhome
= os
.path
.join(drive
, compat_getenv('HOMEPATH'))
301 userhome
= os
.path
.join(os
.path
.dirname(userhome
), path
[1:i
])
303 return userhome
+ path
[i
:]
305 compat_expanduser
= os
.path
.expanduser
308 if sys
.version_info
< (3, 0):
310 from .utils
import preferredencoding
311 print(s
.encode(preferredencoding(), 'xmlcharrefreplace'))
314 assert isinstance(s
, compat_str
)
319 subprocess_check_output
= subprocess
.check_output
320 except AttributeError:
321 def subprocess_check_output(*args
, **kwargs
):
322 assert 'input' not in kwargs
323 p
= subprocess
.Popen(*args
, stdout
=subprocess
.PIPE
, **kwargs
)
324 output
, _
= p
.communicate()
327 raise subprocess
.CalledProcessError(ret
, p
.args
, output
=output
)
330 if sys
.version_info
< (3, 0) and sys
.platform
== 'win32':
331 def compat_getpass(prompt
, *args
, **kwargs
):
332 if isinstance(prompt
, compat_str
):
333 from .utils
import preferredencoding
334 prompt
= prompt
.encode(preferredencoding())
335 return getpass
.getpass(prompt
, *args
, **kwargs
)
337 compat_getpass
= getpass
.getpass
339 # Old 2.6 and 2.7 releases require kwargs to be bytes
343 _testfunc(**{'x': 0})
345 def compat_kwargs(kwargs
):
346 return dict((bytes(k
), v
) for k
, v
in kwargs
.items())
348 compat_kwargs
= lambda kwargs
: kwargs
351 if sys
.version_info
< (2, 7):
352 def compat_socket_create_connection(address
, timeout
, source_address
=None):
355 for res
in socket
.getaddrinfo(host
, port
, 0, socket
.SOCK_STREAM
):
356 af
, socktype
, proto
, canonname
, sa
= res
359 sock
= socket
.socket(af
, socktype
, proto
)
360 sock
.settimeout(timeout
)
362 sock
.bind(source_address
)
365 except socket
.error
as _
:
372 raise socket
.error("getaddrinfo returns an empty list")
374 compat_socket_create_connection
= socket
.create_connection
377 # Fix https://github.com/rg3/youtube-dl/issues/4223
378 # See http://bugs.python.org/issue9161 for what is broken
379 def workaround_optparse_bug9161():
380 op
= optparse
.OptionParser()
381 og
= optparse
.OptionGroup(op
, 'foo')
385 real_add_option
= optparse
.OptionGroup
.add_option
387 def _compat_add_option(self
, *args
, **kwargs
):
389 v
.encode('ascii', 'replace') if isinstance(v
, compat_str
)
391 bargs
= [enc(a
) for a
in args
]
393 (k
, enc(v
)) for k
, v
in kwargs
.items())
394 return real_add_option(self
, *bargs
, **bkwargs
)
395 optparse
.OptionGroup
.add_option
= _compat_add_option
397 if hasattr(shutil
, 'get_terminal_size'): # Python >= 3.3
398 compat_get_terminal_size
= shutil
.get_terminal_size
400 _terminal_size
= collections
.namedtuple('terminal_size', ['columns', 'lines'])
402 def compat_get_terminal_size():
403 columns
= compat_getenv('COLUMNS', None)
405 columns
= int(columns
)
408 lines
= compat_getenv('LINES', None)
415 sp
= subprocess
.Popen(
417 stdout
=subprocess
.PIPE
, stderr
=subprocess
.PIPE
)
418 out
, err
= sp
.communicate()
419 lines
, columns
= map(int, out
.split())
422 return _terminal_size(columns
, lines
)
425 itertools
.count(start
=0, step
=1)
426 compat_itertools_count
= itertools
.count
427 except TypeError: # Python 2.6
428 def compat_itertools_count(start
=0, step
=1):
440 'compat_get_terminal_size',
443 'compat_html_entities',
444 'compat_http_client',
445 'compat_http_server',
446 'compat_itertools_count',
451 'compat_socket_create_connection',
453 'compat_subprocess_get_DEVNULL',
454 'compat_urllib_error',
455 'compat_urllib_parse',
456 'compat_urllib_parse_unquote',
457 'compat_urllib_parse_unquote_plus',
458 'compat_urllib_parse_unquote_to_bytes',
459 'compat_urllib_parse_urlparse',
460 'compat_urllib_request',
462 'compat_urlretrieve',
463 'compat_xml_parse_error',
465 'subprocess_check_output',
466 'workaround_optparse_bug9161',