Expand file tree
/
Copy path_spawn_patch.py
More file actions
Latest commit
60 lines (52 loc) · 2.12 KB
/
Copy path_spawn_patch.py
File metadata and controls
60 lines (52 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# Copyright 2016 gRPC authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Patches the spawn() command for windows compilers.
Windows has an 8191 character command line limit, but some compilers
support an @command_file directive where command_file is a file
containing the full command line.
"""
fromdistutilsimportccompiler
importos
importos.path
importshutil
importsys
importtempfile
MAX_COMMAND_LENGTH=8191
_classic_spawn=ccompiler.CCompiler.spawn
def_commandfile_spawn(self, command):
command_length=sum([len(arg) forargincommand])
ifos.name=='nt'andcommand_length>MAX_COMMAND_LENGTH:
# Even if this command doesn't support the @command_file, it will
# fail as is so we try blindly
print('Command line length exceeded, using command file')
print(' '.join(command))
temporary_directory=tempfile.mkdtemp()
command_filename=os.path.abspath(
os.path.join(temporary_directory, 'command'))
withopen(command_filename, 'w') ascommand_file:
escaped_args= [
'"'+arg.replace('\\', '\\\\') +'"'forargincommand[1:]
]
command_file.write(' '.join(escaped_args))
modified_command=command[:1] + ['@{}'.format(command_filename)]
try:
_classic_spawn(self, modified_command)
finally:
shutil.rmtree(temporary_directory)
else:
_classic_spawn(self, command)
defmonkeypatch_spawn():
"""Monkeypatching is dumb, but it's either that or we become maintainers of
something much, much bigger."""
ccompiler.CCompiler.spawn=_commandfile_spawn