| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /*
- * 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/vod/model/GetTranscodeTaskResult.h>
- #include <json/json.h>
- using namespace AlibabaCloud::Vod;
- using namespace AlibabaCloud::Vod::Model;
- GetTranscodeTaskResult::GetTranscodeTaskResult() :
- ServiceResult()
- {}
- GetTranscodeTaskResult::GetTranscodeTaskResult(const std::string &payload) :
- ServiceResult()
- {
- parse(payload);
- }
- GetTranscodeTaskResult::~GetTranscodeTaskResult()
- {}
- void GetTranscodeTaskResult::parse(const std::string &payload)
- {
- Json::Reader reader;
- Json::Value value;
- reader.parse(payload, value);
- setRequestId(value["RequestId"].asString());
- auto transcodeTaskNode = value["TranscodeTask"];
- if(!transcodeTaskNode["TranscodeTaskId"].isNull())
- transcodeTask_.transcodeTaskId = transcodeTaskNode["TranscodeTaskId"].asString();
- if(!transcodeTaskNode["VideoId"].isNull())
- transcodeTask_.videoId = transcodeTaskNode["VideoId"].asString();
- if(!transcodeTaskNode["TaskStatus"].isNull())
- transcodeTask_.taskStatus = transcodeTaskNode["TaskStatus"].asString();
- if(!transcodeTaskNode["CreationTime"].isNull())
- transcodeTask_.creationTime = transcodeTaskNode["CreationTime"].asString();
- if(!transcodeTaskNode["CompleteTime"].isNull())
- transcodeTask_.completeTime = transcodeTaskNode["CompleteTime"].asString();
- if(!transcodeTaskNode["Trigger"].isNull())
- transcodeTask_.trigger = transcodeTaskNode["Trigger"].asString();
- if(!transcodeTaskNode["TranscodeTemplateGroupId"].isNull())
- transcodeTask_.transcodeTemplateGroupId = transcodeTaskNode["TranscodeTemplateGroupId"].asString();
- auto allTranscodeJobInfoList = value["TranscodeJobInfoList"]["TranscodeJobInfo"];
- for (auto value : allTranscodeJobInfoList)
- {
- TranscodeTask::TranscodeJobInfo transcodeJobInfoObject;
- if(!value["TranscodeJobId"].isNull())
- transcodeJobInfoObject.transcodeJobId = value["TranscodeJobId"].asString();
- if(!value["TranscodeTemplateId"].isNull())
- transcodeJobInfoObject.transcodeTemplateId = value["TranscodeTemplateId"].asString();
- if(!value["TranscodeJobStatus"].isNull())
- transcodeJobInfoObject.transcodeJobStatus = value["TranscodeJobStatus"].asString();
- if(!value["CreationTime"].isNull())
- transcodeJobInfoObject.creationTime = value["CreationTime"].asString();
- if(!value["CompleteTime"].isNull())
- transcodeJobInfoObject.completeTime = value["CompleteTime"].asString();
- if(!value["TranscodeProgress"].isNull())
- transcodeJobInfoObject.transcodeProgress = std::stol(value["TranscodeProgress"].asString());
- if(!value["InputFileUrl"].isNull())
- transcodeJobInfoObject.inputFileUrl = value["InputFileUrl"].asString();
- if(!value["Priority"].isNull())
- transcodeJobInfoObject.priority = value["Priority"].asString();
- if(!value["ErrorCode"].isNull())
- transcodeJobInfoObject.errorCode = value["ErrorCode"].asString();
- if(!value["ErrorMessage"].isNull())
- transcodeJobInfoObject.errorMessage = value["ErrorMessage"].asString();
- if(!value["Definition"].isNull())
- transcodeJobInfoObject.definition = value["Definition"].asString();
- auto outputFileNode = value["OutputFile"];
- if(!outputFileNode["Width"].isNull())
- transcodeJobInfoObject.outputFile.width = outputFileNode["Width"].asString();
- if(!outputFileNode["Height"].isNull())
- transcodeJobInfoObject.outputFile.height = outputFileNode["Height"].asString();
- if(!outputFileNode["Bitrate"].isNull())
- transcodeJobInfoObject.outputFile.bitrate = outputFileNode["Bitrate"].asString();
- if(!outputFileNode["Fps"].isNull())
- transcodeJobInfoObject.outputFile.fps = outputFileNode["Fps"].asString();
- if(!outputFileNode["Format"].isNull())
- transcodeJobInfoObject.outputFile.format = outputFileNode["Format"].asString();
- if(!outputFileNode["Duration"].isNull())
- transcodeJobInfoObject.outputFile.duration = outputFileNode["Duration"].asString();
- if(!outputFileNode["Filesize"].isNull())
- transcodeJobInfoObject.outputFile.filesize = std::stol(outputFileNode["Filesize"].asString());
- if(!outputFileNode["Encryption"].isNull())
- transcodeJobInfoObject.outputFile.encryption = outputFileNode["Encryption"].asString();
- if(!outputFileNode["AudioStreamList"].isNull())
- transcodeJobInfoObject.outputFile.audioStreamList = outputFileNode["AudioStreamList"].asString();
- if(!outputFileNode["VideoStreamList"].isNull())
- transcodeJobInfoObject.outputFile.videoStreamList = outputFileNode["VideoStreamList"].asString();
- if(!outputFileNode["SubtitleStreamList"].isNull())
- transcodeJobInfoObject.outputFile.subtitleStreamList = outputFileNode["SubtitleStreamList"].asString();
- if(!outputFileNode["OutputFileUrl"].isNull())
- transcodeJobInfoObject.outputFile.outputFileUrl = outputFileNode["OutputFileUrl"].asString();
- auto allWatermarkIdList = outputFileNode["WatermarkIdList"]["WatermarkId"];
- for (auto value : allWatermarkIdList)
- transcodeJobInfoObject.outputFile.watermarkIdList.push_back(value.asString());
- transcodeTask_.transcodeJobInfoList.push_back(transcodeJobInfoObject);
- }
- }
- GetTranscodeTaskResult::TranscodeTask GetTranscodeTaskResult::getTranscodeTask()const
- {
- return transcodeTask_;
- }
|