/usr/include/liblas/dimension.hpp is in liblas-dev 1.8.1-3+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | /******************************************************************************
* $Id$
*
* Project: libLAS - http://liblas.org - A BSD library for LAS format data.
* Purpose: LAS Dimension implementation for C++ libLAS
* Author: Howard Butler, hobu.inc@gmail.com
*
******************************************************************************
* Copyright (c) 2010, Howard Butler
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following
* conditions are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided
* with the distribution.
* * Neither the name of the Martin Isenburg or Iowa Department
* of Natural Resources nor the names of its contributors may be
* used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
* OF SUCH DAMAGE.
****************************************************************************/
#ifndef LIBLAS_DIMENSION_HPP_INCLUDED
#define LIBLAS_DIMENSION_HPP_INCLUDED
#include <liblas/version.hpp>
#include <liblas/external/property_tree/ptree.hpp>
#include <liblas/variablerecord.hpp>
#include <liblas/version.hpp>
#include <liblas/export.hpp>
// boost
#include <boost/any.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/foreach.hpp>
#include <boost/array.hpp>
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/member.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/hashed_index.hpp>
#include <boost/multi_index/sequenced_index.hpp>
// std
#include <iosfwd>
#include <limits>
#include <string>
#include <vector>
#include <algorithm>
#include <boost/unordered_map.hpp>
namespace liblas {
/// Dimension definition
class LAS_DLL Dimension
{
public:
Dimension(std::string const& name, std::size_t size_in_bits);
Dimension& operator=(Dimension const& rhs);
Dimension(Dimension const& other);
bool operator==(const Dimension& other) const;
bool operator!=(const Dimension& other) const { return !(*this == other); }
virtual ~Dimension() {}
inline std::string const& GetName() const { return m_name; }
/// bits, total logical size of point record, including any custom
/// dimensions
inline std::size_t GetBitSize() const
{
return m_bit_size;
}
/// bytes, physical/serialisation size of record
std::size_t GetByteSize() const;
/// The byte location to start reading/writing
/// point data from in a composited schema. liblas::Schema
/// will set these values for you when liblas::Dimension are
/// added to the liblas::Schema.
inline std::size_t GetByteOffset() const
{
return m_byte_offset;
}
inline void SetByteOffset(std::size_t v)
{
m_byte_offset = v;
}
/// The bit location within the byte to start reading data. liblas::Schema
/// will set these values for you when liblas::Dimension are
/// added to the liblas::Schema. This value will be 0 for dimensions
/// that are composed of entire bytes.
inline std::size_t GetBitOffset() const
{
return m_bit_offset;
}
inline void SetBitOffset(std::size_t v)
{
m_bit_offset = v;
}
/// Is this dimension required by PointFormatName
inline bool IsRequired() const { return m_required; }
inline void IsRequired(bool v) { m_required = v; }
/// Is this dimension being used. A dimension with
/// IsActive false may exist as a placeholder in PointFormatName-specified
/// dimensions, but have their IsActive flag set to false. In this
/// case, those values may be disregarded.
inline bool IsActive() const { return m_active; }
inline void IsActive(bool v) { m_active = v; }
inline std::string GetDescription() const { return m_description; }
inline void SetDescription(std::string const& v) { m_description = v; }
/// Is this dimension a numeric dimension. Dimensions with IsNumeric == false
/// are considered generic bit/byte fields/
inline bool IsNumeric() const { return m_numeric ; }
inline void IsNumeric(bool v) { m_numeric = v; }
/// Does this dimension have a sign? Only applicable to dimensions with
/// IsNumeric == true.
inline bool IsSigned() const { return m_signed; }
inline void IsSigned(bool v) { m_signed = v; }
/// Does this dimension interpret to an integer? Only applicable to dimensions
/// with IsNumeric == true.
inline bool IsInteger() const { return m_integer; }
inline void IsInteger(bool v) { m_integer = v; }
/// The minimum value of this dimension as a double
inline double GetMinimum() const { return m_min; }
inline void SetMinimum(double min) { m_min = min; }
/// The maximum value of this dimension as a double
inline double GetMaximum() const { return m_max; }
inline void SetMaximum(double max) { m_max = max; }
/// The index position of the index. In a standard ePointFormat0
/// data record, the X dimension would have a position of 0, while
/// the Y dimension would have a position of 1, for example.
inline uint32_t GetPosition() const { return m_position; }
inline void SetPosition(uint32_t v) { m_position = v; }
/// The scaling value for this dimension as a double. This should
/// be positive or negative powers of ten.
inline double GetScale() const { return m_scale; }
inline void SetScale(double v) { m_scale = v; }
/// The offset value for this dimension. Usually zero, but it
/// can be set to any value in combination with the scale to
/// allow for more expressive ranges.
inline double GetOffset() const { return m_offset; }
inline void SetOffset(double v) { m_offset = v; }
/// If true, this dimension uses scale/offset values
inline bool IsFinitePrecision() const { return m_precise; }
inline void IsFinitePrecision(bool v) { m_precise = v; }
inline bool operator < (Dimension const& dim) const
{
return m_position < dim.m_position;
}
inline bool operator > (Dimension const& dim) const
{
return m_position > dim.m_position;
}
liblas::property_tree::ptree GetPTree() const;
private:
std::string m_name;
std::size_t m_bit_size;
bool m_required;
bool m_active;
std::string m_description;
double m_min;
double m_max;
bool m_numeric;
bool m_signed;
bool m_integer;
uint32_t m_position;
double m_scale;
bool m_precise;
double m_offset;
std::size_t m_byte_offset;
std::size_t m_bit_offset;
};
struct SetRequired
{
SetRequired(bool req) : req_(req) {}
void operator()(Dimension& e)
{
e.IsRequired(req_);
}
private:
bool req_;
};
struct SetActive
{
SetActive(bool req) : req_(req) {}
void operator()(Dimension& e)
{
e.IsActive(req_);
}
private:
bool req_;
};
std::ostream& operator<<(std::ostream& os, liblas::Dimension const& d);
} // namespace liblas
#endif // LIBLAS_DIMENSION_HPP_INCLUDED
|