diff options
author | Fawzi Mohamed <[email protected]> | 2014-01-09 15:47:05 +0100 |
---|---|---|
committer | Fawzi Mohamed <[email protected]> | 2014-01-21 13:43:19 +0100 |
commit | 1ce5b1273a0c14cb4bb19f8a6c2ce206c8af318d (patch) | |
tree | c1ec5918273481deca10eba1121c58fbcd2fe1cb /src/plugins/ios/iostoolhandler.cpp | |
parent | 9f81e79c8f095b4755719cb8f7a8c5e8d9e6b4b6 (diff) |
ios: fix handling of command characters in run
Xml does not support control characters (even if encoded), thus
QXmlStreamWriter does not encode them, and QXmlStreamReader gives an
error with them.
Thus outputting a control char would stop the application.
Now we send them with a special tag and decode them.
Note that the Output pane does some emulation of terminal behavior
when receiving them.
Sending app output as block because otherwise the stange logic
within the OutputPane inserts spurious newlines (a string not
containing a newline always gets a newline prepended) .
Task-number: QTCREATORBUG-11219
Change-Id: I3557ffbb23ca2ea4eec9a97335a95580c9c4482b
Reviewed-by: Eike Ziller <[email protected]>
Reviewed-by: Fawzi Mohamed <[email protected]>
Diffstat (limited to 'src/plugins/ios/iostoolhandler.cpp')
-rw-r--r-- | src/plugins/ios/iostoolhandler.cpp | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/src/plugins/ios/iostoolhandler.cpp b/src/plugins/ios/iostoolhandler.cpp index e00e13754dd..7a4ffe9f50d 100644 --- a/src/plugins/ios/iostoolhandler.cpp +++ b/src/plugins/ios/iostoolhandler.cpp @@ -62,6 +62,7 @@ struct ParserState { Value, QueryResult, AppOutput, + ControlChar, AppStarted, InferiorPid, GdbServerPort, @@ -87,9 +88,10 @@ struct ParserState { case Status: case InferiorPid: case GdbServerPort: + case AppOutput: return true; case QueryResult: - case AppOutput: + case ControlChar: case AppStarted: case AppTransfer: case Item: @@ -398,6 +400,13 @@ void IosToolHandlerPrivate::processXml() stack.append(ParserState(ParserState::QueryResult)); } else if (elName == QLatin1String("app_output")) { stack.append(ParserState(ParserState::AppOutput)); + } else if (elName == QLatin1String("control_char")) { + QXmlStreamAttributes attributes = outputParser.attributes(); + QChar c[1] = { QChar::fromLatin1(static_cast<char>(attributes.value(QLatin1String("code")).toString().toInt())) }; + if (stack.size() > 0 && stack.last().collectChars()) + stack.last().chars.append(c[0]); + stack.append(ParserState(ParserState::ControlChar)); + break; } else if (elName == QLatin1String("item")) { stack.append(ParserState(ParserState::Item)); } else if (elName == QLatin1String("status")) { @@ -466,6 +475,9 @@ void IosToolHandlerPrivate::processXml() stop(0); return; case ParserState::AppOutput: + appOutput(p.chars); + break; + case ParserState::ControlChar: break; case ParserState::AppStarted: break; @@ -494,9 +506,7 @@ void IosToolHandlerPrivate::processXml() // isCDATA() returns true. if (stack.isEmpty()) break; - if (stack.last().kind == ParserState::AppOutput) - emit appOutput(outputParser.text().toString()); - else if (stack.last().collectChars()) + if (stack.last().collectChars()) stack.last().chars.append(outputParser.text()); break; case QXmlStreamReader::Comment: |