2 * Copyright (C) 2010 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 #include "ValueToString.h"
31 #include <wtf/text/StringBuilder.h>
36 // Class representing a closed interval which can hold an arbitrary
37 // Plain Old Datatype (POD) as its endpoints and a piece of user
38 // data. An important characteristic for the algorithms we use is that
39 // if two intervals have identical endpoints but different user data,
40 // they are not considered to be equal. This situation can arise when
41 // representing the vertical extents of bounding boxes of overlapping
42 // triangles, where the pointer to the triangle is the user data of
45 // *Note* that the destructors of type T and UserData will *not* be
46 // called by this class. They must not allocate any memory that is
47 // required to be cleaned up in their destructors.
49 // The following constructors and operators must be implemented on
52 // - Copy constructor (if user data is desired)
57 // If the UserData type is specified, it must support a copy
58 // constructor and assignment operator.
60 // In debug mode, printing of intervals and the data they contain is
61 // enabled. This requires the following template specializations to be
64 // template<> struct WebCore::ValueToString<T> {
65 // static String string(const T& t);
67 // template<> struct WebCore::ValueToString<UserData> {
68 // static String string(const UserData& t);
71 // Note that this class requires a copy constructor and assignment
72 // operator in order to be stored in the red-black tree.
74 template<class T, class UserData = void*>
77 // Constructor from endpoints. This constructor only works when the
78 // UserData type is a pointer or other type which can be initialized
80 PODInterval(const T& low, const T& high)
88 // Constructor from two endpoints plus explicit user data.
89 PODInterval(const T& low, const T& high, const UserData data)
97 const T& low() const { return m_low; }
98 const T& high() const { return m_high; }
99 const UserData& data() const { return m_data; }
101 bool overlaps(const T& low, const T& high) const
103 if (this->high() < low)
105 if (high < this->low())
110 bool overlaps(const PODInterval& other) const
112 return overlaps(other.low(), other.high());
115 // Returns true if this interval is "less" than the other. The
116 // comparison is performed on the low endpoints of the intervals.
117 bool operator<(const PODInterval& other) const
119 return low() < other.low();
122 // Returns true if this interval is strictly equal to the other,
123 // including comparison of the user data.
124 bool operator==(const PODInterval& other) const
126 return (low() == other.low()
127 && high() == other.high()
128 && data() == other.data());
131 const T& maxHigh() const { return m_maxHigh; }
132 void setMaxHigh(const T& maxHigh) { m_maxHigh = maxHigh; }
135 // Support for printing PODIntervals.
136 String toString() const
138 StringBuilder builder;
139 builder.appendLiteral("[PODInterval (");
140 builder.append(ValueToString<T>::string(low()));
141 builder.appendLiteral(", ");
142 builder.append(ValueToString<T>::string(high()));
143 builder.appendLiteral("), data=");
144 builder.append(ValueToString<UserData>::string(data()));
145 builder.appendLiteral(", maxHigh=");
146 builder.append(ValueToString<T>::string(maxHigh()));
148 return builder.toString();
159 } // namespace WebCore
161 #endif // PODInterval_h