regenerate code
This commit is contained in:
@@ -87,3 +87,39 @@ Et_industry_openapiClient::UploadDeviceDataOutcomeCallable Et_industry_openapiCl
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
Et_industry_openapiClient::UploadDeviceDataDCOutcome Et_industry_openapiClient::uploadDeviceDataDC(const UploadDeviceDataDCRequest &request) const
|
||||
{
|
||||
auto endpointOutcome = endpointProvider_->getEndpoint();
|
||||
if (!endpointOutcome.isSuccess())
|
||||
return UploadDeviceDataDCOutcome(endpointOutcome.error());
|
||||
|
||||
auto outcome = makeRequest(endpointOutcome.result(), request);
|
||||
|
||||
if (outcome.isSuccess())
|
||||
return UploadDeviceDataDCOutcome(UploadDeviceDataDCResult(outcome.result()));
|
||||
else
|
||||
return UploadDeviceDataDCOutcome(outcome.error());
|
||||
}
|
||||
|
||||
void Et_industry_openapiClient::uploadDeviceDataDCAsync(const UploadDeviceDataDCRequest& request, const UploadDeviceDataDCAsyncHandler& handler, const std::shared_ptr<const AsyncCallerContext>& context) const
|
||||
{
|
||||
auto fn = [this, request, handler, context]()
|
||||
{
|
||||
handler(this, request, uploadDeviceDataDC(request), context);
|
||||
};
|
||||
|
||||
asyncExecute(new Runnable(fn));
|
||||
}
|
||||
|
||||
Et_industry_openapiClient::UploadDeviceDataDCOutcomeCallable Et_industry_openapiClient::uploadDeviceDataDCCallable(const UploadDeviceDataDCRequest &request) const
|
||||
{
|
||||
auto task = std::make_shared<std::packaged_task<UploadDeviceDataDCOutcome()>>(
|
||||
[this, request]()
|
||||
{
|
||||
return this->uploadDeviceDataDC(request);
|
||||
});
|
||||
|
||||
asyncExecute(new Runnable([task]() { (*task)(); }));
|
||||
return task->get_future();
|
||||
}
|
||||
|
||||
|
||||
67
et-industry-openapi/src/model/UploadDeviceDataDCRequest.cc
Normal file
67
et-industry-openapi/src/model/UploadDeviceDataDCRequest.cc
Normal file
@@ -0,0 +1,67 @@
|
||||
/*
|
||||
* 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/et-industry-openapi/model/UploadDeviceDataDCRequest.h>
|
||||
|
||||
using AlibabaCloud::Et_industry_openapi::Model::UploadDeviceDataDCRequest;
|
||||
|
||||
UploadDeviceDataDCRequest::UploadDeviceDataDCRequest() :
|
||||
RoaServiceRequest("et-industry-openapi", "2019-06-10")
|
||||
{
|
||||
setResourcePath("/api/report/point");
|
||||
setMethod(HttpRequest::Method::Post);
|
||||
}
|
||||
|
||||
UploadDeviceDataDCRequest::~UploadDeviceDataDCRequest()
|
||||
{}
|
||||
|
||||
std::vector<UploadDeviceDataDCRequest::data> UploadDeviceDataDCRequest::getData()const
|
||||
{
|
||||
return data_;
|
||||
}
|
||||
|
||||
void UploadDeviceDataDCRequest::setData(const std::vector<data>& data)
|
||||
{
|
||||
data_ = data;
|
||||
for(int dep1 = 0; dep1!= data.size(); dep1++) {
|
||||
auto dataObj = data.at(dep1);
|
||||
std::string dataObjStr = "data." + std::to_string(dep1 + 1);
|
||||
for(int dep2 = 0; dep2!= dataObj.data.size(); dep2++) {
|
||||
auto dataObj = dataObj.data.at(dep2);
|
||||
std::string dataObjStr = dataObjStr + "data." + std::to_string(dep2 + 1);
|
||||
setParameter(dataObjStr + ".Device_id", dataObj.device_id);
|
||||
setParameter(dataObjStr + ".Create_time", dataObj.create_time);
|
||||
setParameter(dataObjStr + ".System_code", dataObj.system_code);
|
||||
setParameter(dataObjStr + ".Time", dataObj.time);
|
||||
setParameter(dataObjStr + ".Systime", dataObj.systime);
|
||||
setParameter(dataObjStr + ".Value", dataObj.value);
|
||||
setParameter(dataObjStr + ".Key", dataObj.key);
|
||||
}
|
||||
setParameter(dataObjStr + ".Pk", dataObj.pk);
|
||||
}
|
||||
}
|
||||
|
||||
int UploadDeviceDataDCRequest::getTaskId()const
|
||||
{
|
||||
return taskId_;
|
||||
}
|
||||
|
||||
void UploadDeviceDataDCRequest::setTaskId(int taskId)
|
||||
{
|
||||
taskId_ = taskId;
|
||||
setBodyParameter("TaskId", std::to_string(taskId));
|
||||
}
|
||||
|
||||
65
et-industry-openapi/src/model/UploadDeviceDataDCResult.cc
Normal file
65
et-industry-openapi/src/model/UploadDeviceDataDCResult.cc
Normal file
@@ -0,0 +1,65 @@
|
||||
/*
|
||||
* 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/et-industry-openapi/model/UploadDeviceDataDCResult.h>
|
||||
#include <json/json.h>
|
||||
|
||||
using namespace AlibabaCloud::Et_industry_openapi;
|
||||
using namespace AlibabaCloud::Et_industry_openapi::Model;
|
||||
|
||||
UploadDeviceDataDCResult::UploadDeviceDataDCResult() :
|
||||
ServiceResult()
|
||||
{}
|
||||
|
||||
UploadDeviceDataDCResult::UploadDeviceDataDCResult(const std::string &payload) :
|
||||
ServiceResult()
|
||||
{
|
||||
parse(payload);
|
||||
}
|
||||
|
||||
UploadDeviceDataDCResult::~UploadDeviceDataDCResult()
|
||||
{}
|
||||
|
||||
void UploadDeviceDataDCResult::parse(const std::string &payload)
|
||||
{
|
||||
Json::Reader reader;
|
||||
Json::Value value;
|
||||
reader.parse(payload, value);
|
||||
setRequestId(value["RequestId"].asString());
|
||||
if(!value["Data"].isNull())
|
||||
data_ = value["Data"].asString();
|
||||
if(!value["Code"].isNull())
|
||||
code_ = value["Code"].asString();
|
||||
if(!value["Message"].isNull())
|
||||
message_ = value["Message"].asString();
|
||||
|
||||
}
|
||||
|
||||
std::string UploadDeviceDataDCResult::getMessage()const
|
||||
{
|
||||
return message_;
|
||||
}
|
||||
|
||||
std::string UploadDeviceDataDCResult::getData()const
|
||||
{
|
||||
return data_;
|
||||
}
|
||||
|
||||
std::string UploadDeviceDataDCResult::getCode()const
|
||||
{
|
||||
return code_;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user