106 lines
3.6 KiB
C++
106 lines
3.6 KiB
C++
/*
|
|
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include <alibabacloud/visionai-poc/model/RecognizeLabelResult.h>
|
|
#include <json/json.h>
|
|
|
|
using namespace AlibabaCloud::Visionai_poc;
|
|
using namespace AlibabaCloud::Visionai_poc::Model;
|
|
|
|
RecognizeLabelResult::RecognizeLabelResult() :
|
|
ServiceResult()
|
|
{}
|
|
|
|
RecognizeLabelResult::RecognizeLabelResult(const std::string &payload) :
|
|
ServiceResult()
|
|
{
|
|
parse(payload);
|
|
}
|
|
|
|
RecognizeLabelResult::~RecognizeLabelResult()
|
|
{}
|
|
|
|
void RecognizeLabelResult::parse(const std::string &payload)
|
|
{
|
|
Json::Reader reader;
|
|
Json::Value value;
|
|
reader.parse(payload, value);
|
|
setRequestId(value["RequestId"].asString());
|
|
auto responseNode = value["Response"];
|
|
if(!responseNode["Success"].isNull())
|
|
response_.success = responseNode["Success"].asString() == "true";
|
|
if(!responseNode["Url"].isNull())
|
|
response_.url = responseNode["Url"].asString();
|
|
if(!responseNode["RequestId"].isNull())
|
|
response_.requestId = responseNode["RequestId"].asString();
|
|
if(!responseNode["ErrorCode"].isNull())
|
|
response_.errorCode = responseNode["ErrorCode"].asString();
|
|
if(!responseNode["ErrorMessage"].isNull())
|
|
response_.errorMessage = responseNode["ErrorMessage"].asString();
|
|
auto dataNode = responseNode["Data"];
|
|
auto allObjectsNode = dataNode["Objects"]["Node"];
|
|
for (auto dataNodeObjectsNode : allObjectsNode)
|
|
{
|
|
Response::Data::Node nodeObject;
|
|
auto propertiesResultsNode = value["PropertiesResults"];
|
|
if(!propertiesResultsNode["PropertyId"].isNull())
|
|
nodeObject.propertiesResults.propertyId = propertiesResultsNode["PropertyId"].asString();
|
|
if(!propertiesResultsNode["PropertyName"].isNull())
|
|
nodeObject.propertiesResults.propertyName = propertiesResultsNode["PropertyName"].asString();
|
|
auto allValuesNode = propertiesResultsNode["Values"]["SubNode"];
|
|
for (auto propertiesResultsNodeValuesSubNode : allValuesNode)
|
|
{
|
|
Response::Data::Node::PropertiesResults::SubNode subNodeObject;
|
|
if(!propertiesResultsNodeValuesSubNode["Probability"].isNull())
|
|
subNodeObject.probability = std::stoi(propertiesResultsNodeValuesSubNode["Probability"].asString());
|
|
if(!propertiesResultsNodeValuesSubNode["ValueId"].isNull())
|
|
subNodeObject.valueId = propertiesResultsNodeValuesSubNode["ValueId"].asString();
|
|
if(!propertiesResultsNodeValuesSubNode["ValueName"].isNull())
|
|
subNodeObject.valueName = propertiesResultsNodeValuesSubNode["ValueName"].asString();
|
|
nodeObject.propertiesResults.values.push_back(subNodeObject);
|
|
}
|
|
response_.data.objects.push_back(nodeObject);
|
|
}
|
|
if(!value["Code"].isNull())
|
|
code_ = value["Code"].asString();
|
|
if(!value["Success"].isNull())
|
|
success_ = value["Success"].asString() == "true";
|
|
if(!value["Message"].isNull())
|
|
message_ = value["Message"].asString();
|
|
|
|
}
|
|
|
|
RecognizeLabelResult::Response RecognizeLabelResult::getResponse()const
|
|
{
|
|
return response_;
|
|
}
|
|
|
|
std::string RecognizeLabelResult::getMessage()const
|
|
{
|
|
return message_;
|
|
}
|
|
|
|
std::string RecognizeLabelResult::getCode()const
|
|
{
|
|
return code_;
|
|
}
|
|
|
|
bool RecognizeLabelResult::getSuccess()const
|
|
{
|
|
return success_;
|
|
}
|
|
|