Files
aliyun-openapi-cpp-sdk/aegis/src/model/DescribeWhiteListProcessResult.cc
wb-hx510875 ba463ae2dc fixed #51
2019-09-19 11:14:07 +08:00

100 lines
3.2 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/aegis/model/DescribeWhiteListProcessResult.h>
#include <json/json.h>
using namespace AlibabaCloud::Aegis;
using namespace AlibabaCloud::Aegis::Model;
DescribeWhiteListProcessResult::DescribeWhiteListProcessResult() :
ServiceResult()
{}
DescribeWhiteListProcessResult::DescribeWhiteListProcessResult(const std::string &payload) :
ServiceResult()
{
parse(payload);
}
DescribeWhiteListProcessResult::~DescribeWhiteListProcessResult()
{}
void DescribeWhiteListProcessResult::parse(const std::string &payload)
{
Json::Reader reader;
Json::Value value;
reader.parse(payload, value);
setRequestId(value["RequestId"].asString());
auto allProcessesNode = value["Processes"]["Process"];
for (auto valueProcessesProcess : allProcessesNode)
{
Process processesObject;
if(!valueProcessesProcess["Id"].isNull())
processesObject.id = std::stol(valueProcessesProcess["Id"].asString());
if(!valueProcessesProcess["ProcessId"].isNull())
processesObject.processId = std::stoi(valueProcessesProcess["ProcessId"].asString());
if(!valueProcessesProcess["ProcessName"].isNull())
processesObject.processName = valueProcessesProcess["ProcessName"].asString();
if(!valueProcessesProcess["FilePath"].isNull())
processesObject.filePath = valueProcessesProcess["FilePath"].asString();
if(!valueProcessesProcess["Md5"].isNull())
processesObject.md5 = valueProcessesProcess["Md5"].asString();
if(!valueProcessesProcess["Level"].isNull())
processesObject.level = std::stoi(valueProcessesProcess["Level"].asString());
if(!valueProcessesProcess["ProcessType"].isNull())
processesObject.processType = std::stoi(valueProcessesProcess["ProcessType"].asString());
if(!valueProcessesProcess["Status"].isNull())
processesObject.status = std::stoi(valueProcessesProcess["Status"].asString());
processes_.push_back(processesObject);
}
if(!value["Count"].isNull())
count_ = std::stoi(value["Count"].asString());
if(!value["PageSize"].isNull())
pageSize_ = std::stoi(value["PageSize"].asString());
if(!value["TotalCount"].isNull())
totalCount_ = std::stoi(value["TotalCount"].asString());
if(!value["CurrentPage"].isNull())
currentPage_ = std::stoi(value["CurrentPage"].asString());
}
int DescribeWhiteListProcessResult::getTotalCount()const
{
return totalCount_;
}
int DescribeWhiteListProcessResult::getPageSize()const
{
return pageSize_;
}
int DescribeWhiteListProcessResult::getCurrentPage()const
{
return currentPage_;
}
int DescribeWhiteListProcessResult::getCount()const
{
return count_;
}
std::vector<DescribeWhiteListProcessResult::Process> DescribeWhiteListProcessResult::getProcesses()const
{
return processes_;
}