Generated 2019-09-16 for alikafka.

This commit is contained in:
sdk-team
2021-05-08 01:36:02 +00:00
parent 8502ce8db8
commit a2e2d09381
191 changed files with 11641 additions and 1 deletions

View File

@@ -0,0 +1,101 @@
/*
* 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/alikafka/model/GetConsumerProgressResult.h>
#include <json/json.h>
using namespace AlibabaCloud::Alikafka;
using namespace AlibabaCloud::Alikafka::Model;
GetConsumerProgressResult::GetConsumerProgressResult() :
ServiceResult()
{}
GetConsumerProgressResult::GetConsumerProgressResult(const std::string &payload) :
ServiceResult()
{
parse(payload);
}
GetConsumerProgressResult::~GetConsumerProgressResult()
{}
void GetConsumerProgressResult::parse(const std::string &payload)
{
Json::Reader reader;
Json::Value value;
reader.parse(payload, value);
setRequestId(value["RequestId"].asString());
auto consumerProgressNode = value["ConsumerProgress"];
if(!consumerProgressNode["TotalDiff"].isNull())
consumerProgress_.totalDiff = std::stol(consumerProgressNode["TotalDiff"].asString());
if(!consumerProgressNode["LastTimestamp"].isNull())
consumerProgress_.lastTimestamp = std::stol(consumerProgressNode["LastTimestamp"].asString());
auto allTopicListNode = consumerProgressNode["TopicList"]["TopicListItem"];
for (auto consumerProgressNodeTopicListTopicListItem : allTopicListNode)
{
ConsumerProgress::TopicListItem topicListItemObject;
if(!consumerProgressNodeTopicListTopicListItem["Topic"].isNull())
topicListItemObject.topic = consumerProgressNodeTopicListTopicListItem["Topic"].asString();
if(!consumerProgressNodeTopicListTopicListItem["TotalDiff"].isNull())
topicListItemObject.totalDiff = std::stol(consumerProgressNodeTopicListTopicListItem["TotalDiff"].asString());
if(!consumerProgressNodeTopicListTopicListItem["LastTimestamp"].isNull())
topicListItemObject.lastTimestamp = std::stol(consumerProgressNodeTopicListTopicListItem["LastTimestamp"].asString());
auto allOffsetListNode = consumerProgressNodeTopicListTopicListItem["OffsetList"]["OffsetListItem"];
for (auto consumerProgressNodeTopicListTopicListItemOffsetListOffsetListItem : allOffsetListNode)
{
ConsumerProgress::TopicListItem::OffsetListItem offsetListObject;
if(!consumerProgressNodeTopicListTopicListItemOffsetListOffsetListItem["BrokerOffset"].isNull())
offsetListObject.brokerOffset = std::stol(consumerProgressNodeTopicListTopicListItemOffsetListOffsetListItem["BrokerOffset"].asString());
if(!consumerProgressNodeTopicListTopicListItemOffsetListOffsetListItem["ConsumerOffset"].isNull())
offsetListObject.consumerOffset = std::stol(consumerProgressNodeTopicListTopicListItemOffsetListOffsetListItem["ConsumerOffset"].asString());
if(!consumerProgressNodeTopicListTopicListItemOffsetListOffsetListItem["LastTimestamp"].isNull())
offsetListObject.lastTimestamp = std::stol(consumerProgressNodeTopicListTopicListItemOffsetListOffsetListItem["LastTimestamp"].asString());
if(!consumerProgressNodeTopicListTopicListItemOffsetListOffsetListItem["Partition"].isNull())
offsetListObject.partition = std::stoi(consumerProgressNodeTopicListTopicListItemOffsetListOffsetListItem["Partition"].asString());
topicListItemObject.offsetList.push_back(offsetListObject);
}
consumerProgress_.topicList.push_back(topicListItemObject);
}
if(!value["Success"].isNull())
success_ = value["Success"].asString() == "true";
if(!value["Code"].isNull())
code_ = std::stoi(value["Code"].asString());
if(!value["Message"].isNull())
message_ = value["Message"].asString();
}
std::string GetConsumerProgressResult::getMessage()const
{
return message_;
}
GetConsumerProgressResult::ConsumerProgress GetConsumerProgressResult::getConsumerProgress()const
{
return consumerProgress_;
}
int GetConsumerProgressResult::getCode()const
{
return code_;
}
bool GetConsumerProgressResult::getSuccess()const
{
return success_;
}