Added streaming parser for structured data format.

Added JSON streaming parser. Note that currently JSON parser ignores
frac and exp parts of number construct.
This commit is contained in:
Tatsuhiro Tsujikawa 2012-07-10 01:42:42 +09:00
parent c7131c14fe
commit 57b46d5123
15 changed files with 2087 additions and 0 deletions

View file

@ -92,6 +92,15 @@ XmlRpcRequestParserController::getCurrentFrameValue() const
return currentFrame_.value_;
}
void XmlRpcRequestParserController::reset()
{
while(!frameStack_.empty()) {
frameStack_.pop();
}
currentFrame_.reset();
methodName_.clear();
}
} // namespace rpc
} // namespace aria2