diff options
author | orivej <orivej@yandex-team.ru> | 2022-02-10 16:45:01 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:01 +0300 |
commit | 2d37894b1b037cf24231090eda8589bbb44fb6fc (patch) | |
tree | be835aa92c6248212e705f25388ebafcf84bc7a1 /contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/Rule.cpp | |
parent | 718c552901d703c502ccbefdfc3c9028d608b947 (diff) | |
download | ydb-2d37894b1b037cf24231090eda8589bbb44fb6fc.tar.gz |
Restoring authorship annotation for <orivej@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/Rule.cpp')
-rw-r--r-- | contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/Rule.cpp | 328 |
1 files changed, 164 insertions, 164 deletions
diff --git a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/Rule.cpp b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/Rule.cpp index 9ffe4d5867..00311551c4 100644 --- a/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/Rule.cpp +++ b/contrib/libs/aws-sdk-cpp/aws-cpp-sdk-s3/source/model/Rule.cpp @@ -1,164 +1,164 @@ -/** - * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. - * SPDX-License-Identifier: Apache-2.0. - */ - -#include <aws/s3/model/Rule.h> -#include <aws/core/utils/xml/XmlSerializer.h> -#include <aws/core/utils/StringUtils.h> -#include <aws/core/utils/memory/stl/AWSStringStream.h> - -#include <utility> - -using namespace Aws::Utils::Xml; -using namespace Aws::Utils; - -namespace Aws -{ -namespace S3 -{ -namespace Model -{ - -Rule::Rule() : - m_expirationHasBeenSet(false), - m_iDHasBeenSet(false), - m_prefixHasBeenSet(false), - m_status(ExpirationStatus::NOT_SET), - m_statusHasBeenSet(false), - m_transitionHasBeenSet(false), - m_noncurrentVersionTransitionHasBeenSet(false), - m_noncurrentVersionExpirationHasBeenSet(false), - m_abortIncompleteMultipartUploadHasBeenSet(false) -{ -} - -Rule::Rule(const XmlNode& xmlNode) : - m_expirationHasBeenSet(false), - m_iDHasBeenSet(false), - m_prefixHasBeenSet(false), - m_status(ExpirationStatus::NOT_SET), - m_statusHasBeenSet(false), - m_transitionHasBeenSet(false), - m_noncurrentVersionTransitionHasBeenSet(false), - m_noncurrentVersionExpirationHasBeenSet(false), - m_abortIncompleteMultipartUploadHasBeenSet(false) -{ - *this = xmlNode; -} - -Rule& Rule::operator =(const XmlNode& xmlNode) -{ - XmlNode resultNode = xmlNode; - - if(!resultNode.IsNull()) - { - XmlNode expirationNode = resultNode.FirstChild("Expiration"); - if(!expirationNode.IsNull()) - { - m_expiration = expirationNode; - m_expirationHasBeenSet = true; - } - XmlNode iDNode = resultNode.FirstChild("ID"); - if(!iDNode.IsNull()) - { - m_iD = Aws::Utils::Xml::DecodeEscapedXmlText(iDNode.GetText()); - m_iDHasBeenSet = true; - } - XmlNode prefixNode = resultNode.FirstChild("Prefix"); - if(!prefixNode.IsNull()) - { - m_prefix = Aws::Utils::Xml::DecodeEscapedXmlText(prefixNode.GetText()); - m_prefixHasBeenSet = true; - } - XmlNode statusNode = resultNode.FirstChild("Status"); - if(!statusNode.IsNull()) - { - m_status = ExpirationStatusMapper::GetExpirationStatusForName(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(statusNode.GetText()).c_str()).c_str()); - m_statusHasBeenSet = true; - } - XmlNode transitionNode = resultNode.FirstChild("Transition"); - if(!transitionNode.IsNull()) - { - m_transition = transitionNode; - m_transitionHasBeenSet = true; - } - XmlNode noncurrentVersionTransitionNode = resultNode.FirstChild("NoncurrentVersionTransition"); - if(!noncurrentVersionTransitionNode.IsNull()) - { - m_noncurrentVersionTransition = noncurrentVersionTransitionNode; - m_noncurrentVersionTransitionHasBeenSet = true; - } - XmlNode noncurrentVersionExpirationNode = resultNode.FirstChild("NoncurrentVersionExpiration"); - if(!noncurrentVersionExpirationNode.IsNull()) - { - m_noncurrentVersionExpiration = noncurrentVersionExpirationNode; - m_noncurrentVersionExpirationHasBeenSet = true; - } - XmlNode abortIncompleteMultipartUploadNode = resultNode.FirstChild("AbortIncompleteMultipartUpload"); - if(!abortIncompleteMultipartUploadNode.IsNull()) - { - m_abortIncompleteMultipartUpload = abortIncompleteMultipartUploadNode; - m_abortIncompleteMultipartUploadHasBeenSet = true; - } - } - - return *this; -} - -void Rule::AddToNode(XmlNode& parentNode) const -{ - Aws::StringStream ss; - if(m_expirationHasBeenSet) - { - XmlNode expirationNode = parentNode.CreateChildElement("Expiration"); - m_expiration.AddToNode(expirationNode); - } - - if(m_iDHasBeenSet) - { - XmlNode iDNode = parentNode.CreateChildElement("ID"); - iDNode.SetText(m_iD); - } - - if(m_prefixHasBeenSet) - { - XmlNode prefixNode = parentNode.CreateChildElement("Prefix"); - prefixNode.SetText(m_prefix); - } - - if(m_statusHasBeenSet) - { - XmlNode statusNode = parentNode.CreateChildElement("Status"); - statusNode.SetText(ExpirationStatusMapper::GetNameForExpirationStatus(m_status)); - } - - if(m_transitionHasBeenSet) - { - XmlNode transitionNode = parentNode.CreateChildElement("Transition"); - m_transition.AddToNode(transitionNode); - } - - if(m_noncurrentVersionTransitionHasBeenSet) - { - XmlNode noncurrentVersionTransitionNode = parentNode.CreateChildElement("NoncurrentVersionTransition"); - m_noncurrentVersionTransition.AddToNode(noncurrentVersionTransitionNode); - } - - if(m_noncurrentVersionExpirationHasBeenSet) - { - XmlNode noncurrentVersionExpirationNode = parentNode.CreateChildElement("NoncurrentVersionExpiration"); - m_noncurrentVersionExpiration.AddToNode(noncurrentVersionExpirationNode); - } - - if(m_abortIncompleteMultipartUploadHasBeenSet) - { - XmlNode abortIncompleteMultipartUploadNode = parentNode.CreateChildElement("AbortIncompleteMultipartUpload"); - m_abortIncompleteMultipartUpload.AddToNode(abortIncompleteMultipartUploadNode); - } - -} - -} // namespace Model -} // namespace S3 -} // namespace Aws +/** + * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. + * SPDX-License-Identifier: Apache-2.0. + */ + +#include <aws/s3/model/Rule.h> +#include <aws/core/utils/xml/XmlSerializer.h> +#include <aws/core/utils/StringUtils.h> +#include <aws/core/utils/memory/stl/AWSStringStream.h> + +#include <utility> + +using namespace Aws::Utils::Xml; +using namespace Aws::Utils; + +namespace Aws +{ +namespace S3 +{ +namespace Model +{ + +Rule::Rule() : + m_expirationHasBeenSet(false), + m_iDHasBeenSet(false), + m_prefixHasBeenSet(false), + m_status(ExpirationStatus::NOT_SET), + m_statusHasBeenSet(false), + m_transitionHasBeenSet(false), + m_noncurrentVersionTransitionHasBeenSet(false), + m_noncurrentVersionExpirationHasBeenSet(false), + m_abortIncompleteMultipartUploadHasBeenSet(false) +{ +} + +Rule::Rule(const XmlNode& xmlNode) : + m_expirationHasBeenSet(false), + m_iDHasBeenSet(false), + m_prefixHasBeenSet(false), + m_status(ExpirationStatus::NOT_SET), + m_statusHasBeenSet(false), + m_transitionHasBeenSet(false), + m_noncurrentVersionTransitionHasBeenSet(false), + m_noncurrentVersionExpirationHasBeenSet(false), + m_abortIncompleteMultipartUploadHasBeenSet(false) +{ + *this = xmlNode; +} + +Rule& Rule::operator =(const XmlNode& xmlNode) +{ + XmlNode resultNode = xmlNode; + + if(!resultNode.IsNull()) + { + XmlNode expirationNode = resultNode.FirstChild("Expiration"); + if(!expirationNode.IsNull()) + { + m_expiration = expirationNode; + m_expirationHasBeenSet = true; + } + XmlNode iDNode = resultNode.FirstChild("ID"); + if(!iDNode.IsNull()) + { + m_iD = Aws::Utils::Xml::DecodeEscapedXmlText(iDNode.GetText()); + m_iDHasBeenSet = true; + } + XmlNode prefixNode = resultNode.FirstChild("Prefix"); + if(!prefixNode.IsNull()) + { + m_prefix = Aws::Utils::Xml::DecodeEscapedXmlText(prefixNode.GetText()); + m_prefixHasBeenSet = true; + } + XmlNode statusNode = resultNode.FirstChild("Status"); + if(!statusNode.IsNull()) + { + m_status = ExpirationStatusMapper::GetExpirationStatusForName(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(statusNode.GetText()).c_str()).c_str()); + m_statusHasBeenSet = true; + } + XmlNode transitionNode = resultNode.FirstChild("Transition"); + if(!transitionNode.IsNull()) + { + m_transition = transitionNode; + m_transitionHasBeenSet = true; + } + XmlNode noncurrentVersionTransitionNode = resultNode.FirstChild("NoncurrentVersionTransition"); + if(!noncurrentVersionTransitionNode.IsNull()) + { + m_noncurrentVersionTransition = noncurrentVersionTransitionNode; + m_noncurrentVersionTransitionHasBeenSet = true; + } + XmlNode noncurrentVersionExpirationNode = resultNode.FirstChild("NoncurrentVersionExpiration"); + if(!noncurrentVersionExpirationNode.IsNull()) + { + m_noncurrentVersionExpiration = noncurrentVersionExpirationNode; + m_noncurrentVersionExpirationHasBeenSet = true; + } + XmlNode abortIncompleteMultipartUploadNode = resultNode.FirstChild("AbortIncompleteMultipartUpload"); + if(!abortIncompleteMultipartUploadNode.IsNull()) + { + m_abortIncompleteMultipartUpload = abortIncompleteMultipartUploadNode; + m_abortIncompleteMultipartUploadHasBeenSet = true; + } + } + + return *this; +} + +void Rule::AddToNode(XmlNode& parentNode) const +{ + Aws::StringStream ss; + if(m_expirationHasBeenSet) + { + XmlNode expirationNode = parentNode.CreateChildElement("Expiration"); + m_expiration.AddToNode(expirationNode); + } + + if(m_iDHasBeenSet) + { + XmlNode iDNode = parentNode.CreateChildElement("ID"); + iDNode.SetText(m_iD); + } + + if(m_prefixHasBeenSet) + { + XmlNode prefixNode = parentNode.CreateChildElement("Prefix"); + prefixNode.SetText(m_prefix); + } + + if(m_statusHasBeenSet) + { + XmlNode statusNode = parentNode.CreateChildElement("Status"); + statusNode.SetText(ExpirationStatusMapper::GetNameForExpirationStatus(m_status)); + } + + if(m_transitionHasBeenSet) + { + XmlNode transitionNode = parentNode.CreateChildElement("Transition"); + m_transition.AddToNode(transitionNode); + } + + if(m_noncurrentVersionTransitionHasBeenSet) + { + XmlNode noncurrentVersionTransitionNode = parentNode.CreateChildElement("NoncurrentVersionTransition"); + m_noncurrentVersionTransition.AddToNode(noncurrentVersionTransitionNode); + } + + if(m_noncurrentVersionExpirationHasBeenSet) + { + XmlNode noncurrentVersionExpirationNode = parentNode.CreateChildElement("NoncurrentVersionExpiration"); + m_noncurrentVersionExpiration.AddToNode(noncurrentVersionExpirationNode); + } + + if(m_abortIncompleteMultipartUploadHasBeenSet) + { + XmlNode abortIncompleteMultipartUploadNode = parentNode.CreateChildElement("AbortIncompleteMultipartUpload"); + m_abortIncompleteMultipartUpload.AddToNode(abortIncompleteMultipartUploadNode); + } + +} + +} // namespace Model +} // namespace S3 +} // namespace Aws |