Skip to content

Commit 51aec20

Browse files
allisonChiltoniMichka
authored andcommitted
Add standard error to exception message
The rationale is that when castxml has an error it raises a RuntimeError to the user with the message. However, the message only contains the stdout from castxml - this makes the RuntimeError contain no information about what actually went wrong. This change allows the user to add error handling to their applications based on what went wrong with castxml (such as changing their include directories, etc)
1 parent 446e873 commit 51aec20

File tree

2 files changed

+30
-14
lines changed

2 files changed

+30
-14
lines changed

src/pygccxml/parser/source_reader.py

+17-14
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,8 @@ def create_xml_file(self, source_file, destination=None):
235235
process = subprocess.Popen(
236236
args=command_line,
237237
shell=True,
238-
stdout=subprocess.PIPE)
238+
stdout=subprocess.PIPE,
239+
stderr=subprocess.PIPE)
239240

240241
try:
241242
results = []
@@ -246,9 +247,12 @@ def create_xml_file(self, source_file, destination=None):
246247
for line in process.stdout.readlines():
247248
if line.strip():
248249
results.append(line.rstrip())
250+
for line in process.stderr.readlines():
251+
if line.strip():
252+
results.append(line.rstrip())
249253

250254
exit_status = process.returncode
251-
msg = os.linesep.join([str(s) for s in results])
255+
msg = os.linesep.join([str(s.decode()) for s in results])
252256
if self.__config.ignore_gccxml_output:
253257
if not os.path.isfile(xml_file):
254258
raise RuntimeError(
@@ -257,18 +261,17 @@ def create_xml_file(self, source_file, destination=None):
257261
": %s status:%s" %
258262
(msg, exit_status))
259263
else:
260-
if msg or exit_status or not \
261-
os.path.isfile(xml_file):
262-
if not os.path.isfile(xml_file):
263-
raise RuntimeError(
264-
"Error occurred while running " +
265-
self.__config.xml_generator.upper() +
266-
" xml file does not exist")
267-
else:
268-
raise RuntimeError(
269-
"Error occurred while running " +
270-
self.__config.xml_generator.upper() +
271-
": %s status:%s" % (msg, exit_status))
264+
if msg or exit_status:
265+
raise RuntimeError(
266+
"Error occurred while running " +
267+
self.__config.xml_generator.upper() +
268+
": %s status:%s" % (msg, exit_status))
269+
if not os.path.isfile(xml_file):
270+
raise RuntimeError(
271+
"Error occurred while running " +
272+
self.__config.xml_generator.upper() +
273+
" xml file does not exist")
274+
272275
except Exception:
273276
utils.remove_file_no_raise(xml_file, self.__config)
274277
raise

tests/test_source_reader.py

+13
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# See http://www.boost.org/LICENSE_1_0.txt
55

66
import platform
7+
import os
78

89
import pytest
910

@@ -35,3 +36,15 @@ def test_compound_argument_type(global_ns):
3536
do_smth = global_ns.calldefs('do_smth')
3637
assert do_smth is not None
3738
do_smth.function_type()
39+
40+
41+
def test_stderr_present_and_readable():
42+
with open(os.path.join('tests', 'data', TEST_FILES[0]), 'r') as f:
43+
source_str = f.read()
44+
45+
err_str = "add some stuff that should not compile"
46+
source_str += err_str
47+
config = autoconfig.cxx_parsers_cfg.config.clone()
48+
with pytest.raises(RuntimeError) as e_context:
49+
parser.parse_string(source_str, config)
50+
assert err_str in str(e_context)

0 commit comments

Comments
 (0)