/* */ #include "XmlRpcRequestParserController.h" #include namespace aria2 { namespace rpc { void XmlRpcRequestParserController::pushFrame() { frameStack_.push(std::move(currentFrame_)); currentFrame_ = StateFrame(); } void XmlRpcRequestParserController::popStructFrame() { assert(!frameStack_.empty()); StateFrame parentFrame = std::move(frameStack_.top()); Dict* dict = downcast(parentFrame.value_); assert(dict); frameStack_.pop(); if(currentFrame_.validMember()) { dict->put(std::move(currentFrame_.name_), std::move(currentFrame_.value_)); } currentFrame_ = std::move(parentFrame); } void XmlRpcRequestParserController::popArrayFrame() { assert(!frameStack_.empty()); StateFrame parentFrame = std::move(frameStack_.top()); List* list = downcast(parentFrame.value_); assert(list); frameStack_.pop(); if(currentFrame_.value_) { list->append(std::move(currentFrame_.value_)); } currentFrame_ = std::move(parentFrame); } void XmlRpcRequestParserController::setCurrentFrameValue (std::unique_ptr value) { currentFrame_.value_ = std::move(value); } void XmlRpcRequestParserController::setCurrentFrameName (std::string name) { currentFrame_.name_ = std::move(name); } const std::unique_ptr& XmlRpcRequestParserController::getCurrentFrameValue() const { return currentFrame_.value_; } std::unique_ptr XmlRpcRequestParserController::popCurrentFrameValue() { return std::move(currentFrame_.value_); } void XmlRpcRequestParserController::reset() { while(!frameStack_.empty()) { frameStack_.pop(); } currentFrame_.reset(); methodName_.clear(); } void XmlRpcRequestParserController::setMethodName(std::string methodName) { methodName_ = std::move(methodName); } } // namespace rpc } // namespace aria2