1 | /* |
2 | * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved. |
3 | * |
4 | * Licensed under the Apache License, Version 2.0 (the "License"). |
5 | * You may not use this file except in compliance with the License. |
6 | * A copy of the License is located at |
7 | * |
8 | * http://aws.amazon.com/apache2.0 |
9 | * |
10 | * or in the "license" file accompanying this file. This file is distributed |
11 | * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either |
12 | * express or implied. See the License for the specific language governing |
13 | * permissions and limitations under the License. |
14 | */ |
15 | |
16 | #include <aws/s3/model/ScanRange.h> |
17 | #include <aws/core/utils/xml/XmlSerializer.h> |
18 | #include <aws/core/utils/StringUtils.h> |
19 | #include <aws/core/utils/memory/stl/AWSStringStream.h> |
20 | |
21 | #include <utility> |
22 | |
23 | using namespace Aws::Utils::Xml; |
24 | using namespace Aws::Utils; |
25 | |
26 | namespace Aws |
27 | { |
28 | namespace S3 |
29 | { |
30 | namespace Model |
31 | { |
32 | |
33 | ScanRange::ScanRange() : |
34 | m_start(0), |
35 | m_startHasBeenSet(false), |
36 | m_end(0), |
37 | m_endHasBeenSet(false) |
38 | { |
39 | } |
40 | |
41 | ScanRange::ScanRange(const XmlNode& xmlNode) : |
42 | m_start(0), |
43 | m_startHasBeenSet(false), |
44 | m_end(0), |
45 | m_endHasBeenSet(false) |
46 | { |
47 | *this = xmlNode; |
48 | } |
49 | |
50 | ScanRange& ScanRange::operator =(const XmlNode& xmlNode) |
51 | { |
52 | XmlNode resultNode = xmlNode; |
53 | |
54 | if(!resultNode.IsNull()) |
55 | { |
56 | XmlNode startNode = resultNode.FirstChild("Start" ); |
57 | if(!startNode.IsNull()) |
58 | { |
59 | m_start = StringUtils::ConvertToInt64(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(startNode.GetText()).c_str()).c_str()); |
60 | m_startHasBeenSet = true; |
61 | } |
62 | XmlNode endNode = resultNode.FirstChild("End" ); |
63 | if(!endNode.IsNull()) |
64 | { |
65 | m_end = StringUtils::ConvertToInt64(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(endNode.GetText()).c_str()).c_str()); |
66 | m_endHasBeenSet = true; |
67 | } |
68 | } |
69 | |
70 | return *this; |
71 | } |
72 | |
73 | void ScanRange::AddToNode(XmlNode& parentNode) const |
74 | { |
75 | Aws::StringStream ss; |
76 | if(m_startHasBeenSet) |
77 | { |
78 | XmlNode startNode = parentNode.CreateChildElement("Start" ); |
79 | ss << m_start; |
80 | startNode.SetText(ss.str()); |
81 | ss.str("" ); |
82 | } |
83 | |
84 | if(m_endHasBeenSet) |
85 | { |
86 | XmlNode endNode = parentNode.CreateChildElement("End" ); |
87 | ss << m_end; |
88 | endNode.SetText(ss.str()); |
89 | ss.str("" ); |
90 | } |
91 | |
92 | } |
93 | |
94 | } // namespace Model |
95 | } // namespace S3 |
96 | } // namespace Aws |
97 | |