This file is indexed.

/usr/include/pdal/util/Bounds.hpp is in libpdal-dev 1.6.0-1build2.

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
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
/******************************************************************************
 * 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.
 ****************************************************************************/

#pragma once

#include <cstdint>
#include <sstream>

#include "pdal_util_export.hpp"

namespace pdal
{

/**
  BOX2D represents a two-dimensional box with double-precision bounds.
*/
class PDAL_DLL BOX2D
{
public:
    double minx;  ///< Minimum X value.
    double maxx;  ///< Maximum X value.
    double miny;  ///< Minimum Y value.
    double maxy;  ///< Maximum Y value.

    /**
      Construct an "empty" bounds box.
    */
    BOX2D()
        { clear(); }

    /**
      Construct and initialize a bounds box.

      \param minx  Minimum X value.
      \param miny  Minimum Y value.
      \param maxx  Maximum X value.
      \param maxy  Maximum Y value.
    */
    BOX2D(double minx, double miny, double maxx, double maxy) :
        minx(minx), maxx(maxx), miny(miny), maxy(maxy)
    {}

    /**
      Determine whether a bounds box has not had any bounds set.

      \return  Whether the bounds box is empty.
    */
    bool empty() const;

    /**
      Determine whether a bounds box has had any bounds set.

      \return  Whether the bounds box is valid.
    */
    bool valid() const;

    /**
      Clear the bounds box to an empty state.
    */
    void clear();

    /**
      Expand the bounds of the box if a value is less than the current
      minimum or greater than the current maximum.  If the bounds box is
      currently empty, both minimum and maximum box bounds will be set to
      the provided value.

      \param x  X dimension value.
      \param y  Y dimension value.
    */
    void grow(double x, double y);

    /**
      Determine if a bounds box contains a point.

      \param x  X dimension value.
      \param y  Y dimension value.
      \return  Whether both dimensions are equal to or less than the maximum
        box values and equal to or more than the minimum box values.
    */
    bool contains(double x, double y) const
        { return minx <= x && x <= maxx && miny <= y && y <= maxy; }

    /**
      Determine if the bounds of this box are the same as that of another
      box.  Empty bounds boxes are always equal.

      \param other  Bounds box to check for equality.
      \return \c true if the provided box has equal limits to this box,
        \c false otherwise.
    */
    bool equal(const BOX2D& other) const
    {
        return  minx == other.minx && maxx == other.maxx &&
            miny == other.miny && maxy == other.maxy;
    }

    /**
      Determine if the bounds of this box are the same as that of another
      box.  Empty bounds boxes are always equal.

      \param other  Bounds box to check for equality.
      \return \c true if the provided box has equal limits to this box,
        \c false otherwise.
    */
    bool operator==(BOX2D const& other) const
    {
        return equal(other);
    }

    /**
      Determine if the bounds of this box are different from that of another
      box.  Empty bounds boxes are never unequal.

      \param other  Bounds box to check for inequality.
      \return \c true if the provided box has limits different from this box,
        \c false otherwise.
    */
    bool operator!=(BOX2D const& other) const
    {
        return (!equal(other));
    }

    /**
      Expand this box to contain another box.

      \param other  Box that this box should contain.
    */
    void grow(const BOX2D& other)
    {
        if (other.minx < minx) minx = other.minx;
        if (other.maxx > maxx) maxx = other.maxx;

        if (other.miny < miny) miny = other.miny;
        if (other.maxy > maxy) maxy = other.maxy;
    }

    /**
      Clip this bounds box by another so it will be contained by the
      other box.

      \param other  Clipping box for this box.
    */
    void clip(const BOX2D& other)
    {
        if (other.minx > minx) minx = other.minx;
        if (other.maxx < maxx) maxx = other.maxx;

        if (other.miny > miny) miny = other.miny;
        if (other.maxy < maxy) maxy = other.maxy;
    }

    /**
      Determine if another bounds box is contained in this bounds box.
      Equal limits are considered to be contained.

      \param other  Bounds box to check for containment.
      \return  \c true if the provided box is contained in this box,
        \c false otherwise.
    **/
    bool contains(const BOX2D& other) const
    {
        return minx <= other.minx && maxx >= other.maxx &&
            miny <= other.miny && maxy >= other.maxy;
    }

    /**
      Determine if another box overlaps this box.

      \param other  Box to test for overlap.
      \return  Whether the provided box overlaps this box.
    */
    bool overlaps(const BOX2D& other)
    {
        return minx <= other.maxx && maxx >= other.minx &&
            miny <= other.maxy && maxy >= other.miny;
    }

    /**
      Convert this box to a string suitable for use in SQLite.

      \param precision  Precision for output [default: 8]
      \return  String format of this box.
    */
    std::string toBox(uint32_t precision = 8) const
    {
        std::stringstream oss;

        oss.precision(precision);
        oss.setf(std::ios_base::fixed, std::ios_base::floatfield);

        oss << "box2d(";
            oss << minx << " " << miny << ", ";
            oss << maxx << " " << maxy << ")";
        return oss.str();
    }

    /**
      Convert this box to a well-known text string.

      \param precision  Precision for output [default: 8]
      \return  String format of this box.
    */
    std::string toWKT(uint32_t precision = 8) const
    {
        if (empty())
            return std::string();

        std::stringstream oss;

        oss.precision(precision);
        oss.setf(std::ios_base::fixed, std::ios_base::floatfield);

        oss << "POLYGON ((";
        oss << minx << " " << miny << ", ";
        oss << minx << " " << maxy << ", ";
        oss << maxx << " " << maxy << ", ";
        oss << maxx << " " << miny << ", ";
        oss << minx << " " << miny;
        oss << "))";

        return oss.str();
    }

    /**
      Convert this box to a GeoJSON text string.

      \param precision  Precision for output [default: 8]
      \return  String format of this box.
    */
    std::string toGeoJSON(uint32_t precision = 8) const
    {
        if (empty())
            return std::string();

        std::stringstream oss;

        oss.precision(precision);
        oss.setf(std::ios_base::fixed, std::ios_base::floatfield);
        oss << "{\"bbox\":[" << minx << ", " << miny << ", " <<
            maxx <<  "," << maxy << "]}";
        return oss.str();
    }

    /**
      Return a staticly-allocated Bounds extent that represents infinity

      \return  A bounds box with infinite bounds,
    */
    static const BOX2D& getDefaultSpatialExtent();
};

/**
  BOX3D represents a three-dimensional box with double-precision bounds.
*/
class PDAL_DLL BOX3D : private BOX2D
{
public:
    using BOX2D::minx;
    using BOX2D::maxx;
    using BOX2D::miny;
    using BOX2D::maxy;
    double minz;   ///< Minimum Z value.
    double maxz;   ///< Maximum Z value.

    /**
      Clear the bounds box to an empty state.
    */
    BOX3D()
       { clear(); }

    BOX3D(const BOX3D& box) :
        BOX2D(box), minz(box.minz), maxz(box.maxz)
    {}

    explicit BOX3D(const BOX2D& box) :
        BOX2D(box), minz(0), maxz(0)
    {}

    /**
      Construct and initialize a bounds box.

      \param minx  Minimum X value.
      \param miny  Minimum Y value.
      \param minx  Minimum Z value.
      \param maxx  Maximum X value.
      \param maxy  Maximum Y value.
      \param maxz  Maximum Z value.
    */
    BOX3D(double minx, double miny, double minz, double maxx, double maxy,
        double maxz) : BOX2D(minx, miny, maxx, maxy), minz(minz), maxz(maxz)
    {}

    /**
      Determine whether a bounds box has not had any bounds set (is in a state
      as if default-constructed).

      \return  Whether the bounds box is empty.
    */
    bool empty() const;

    /**
      Determine whether a bounds box has had any bounds set.

      \return  \true if the bounds box is not empty
    */
    bool valid() const;

    /**
      Expand the bounds of the box if a value is less than the current
      minimum or greater than the current maximum.  If the bounds box is
      currently empty, both minimum and maximum box bounds will be set to
      the provided value.

      \param x  X dimension value.
      \param y  Y dimension value.
      \param z  Z dimension value.
    */
    void grow(double x, double y, double z);

    /**
      Clear the bounds box to an empty state.
    */
    void clear();


    /**
      Determine if a bounds box contains a point.

      \param x  X dimension value.
      \param y  Y dimension value.
      \param z  Z dimension value.
      \return  Whether both dimensions are equal to or less than the maximum
        box values and equal to or more than the minimum box values.
    */
    bool contains(double x, double y, double z) const
    {
        return BOX2D::contains(x, y) && minz <= z && z <= maxz;
    }

    /**
      Determine if another bounds box is contained in this bounds box.
      Equal limits are considered to be contained.

      \param other  Bounds box to check for containment.
      \return  \c true if the provided box is contained in this box,
        \c false otherwise.
    **/
    bool contains(const BOX3D& other) const
    {
        return BOX2D::contains(other) &&
            minz <= other.minz && other.maxz <= maxz;
    }

    /**
      Determine if the bounds of this box are the same as that of another
      box.  Empty bounds boxes are always equal.

      \param other  Bounds box to check for equality.
      \return \c true if the provided box has equal limits to this box,
        \c false otherwise.
    */
    bool equal(const BOX3D& other) const
    {
        return  BOX2D::contains(other) &&
            minz == other.minz && maxz == other.maxz;
    }

    /**
      Determine if the bounds of this box are the same as that of another
      box.  Empty bounds boxes are always equal.

      \param other  Bounds box to check for equality.
      \return \c true if the provided box has equal limits to this box,
        \c false otherwise.
    */
    bool operator==(BOX3D const& rhs) const
    {
        return equal(rhs);
    }

    /**
      Determine if the bounds of this box are different from that of another
      box.  Empty bounds boxes are never unequal.

      \param other  Bounds box to check for inequality.
      \return \c true if the provided box has limits different from this box,
        \c false otherwise.
    */
    bool operator!=(BOX3D const& rhs) const
    {
        return (!equal(rhs));
    }

    /**
      Expand this box to contain another box.

      \param other  Box that this box should contain.
    */
    void grow(const BOX3D& other)
    {
        BOX2D::grow(other);
        if (other.minz < minz) minz = other.minz;
        if (other.maxz > maxz) maxz = other.maxz;
    }

    /**
      Clip this bounds box by another so it will be contained by the
      other box.

      \param other  Clipping box for this box.
    */
    void clip(const BOX3D& other)
    {
        BOX2D::clip(other);
        if (other.minz < minz) minz = other.minz;
        if (other.maxz > maxz) maxz = other.maxz;
    }

    /**
      Determine if another box overlaps this box.

      \param other  Box to test for overlap.
      \return  Whether the provided box overlaps this box.
    */
    bool overlaps(const BOX3D& other)
    {
        return BOX2D::overlaps(other) &&
           minz <= other.maxz && maxz >= other.minz;
    }

    /**
      Convert this box to 2-dimensional bounding box.

      \return  Bounding box with Z dimension stripped.
    */
    BOX2D to2d() const
    {
        return *this;
    }

    /**
      Convert this box to a string suitable for use in SQLite.

      \param precision  Precision for output [default: 8]
      \return  String format of this box.
    */
    std::string toBox(uint32_t precision = 8) const
    {
        std::stringstream oss;

        oss.precision(precision);
        oss.setf(std::ios_base::fixed, std::ios_base::floatfield);

        oss << "box3d(" << minx << " " << miny << " " << minz << ", " <<
            maxx << " " << maxy << " " << maxz << ")";
        return oss.str();
    }

    /**
      Convert this box to a well-known text string.

      \param precision  Precision for output [default: 8]
      \return  String format of this box.
    */
    std::string toWKT(uint32_t precision = 8) const
    {
        if (empty())
            return std::string();

        std::stringstream oss;

        oss.precision(precision);
        oss.setf(std::ios_base::fixed, std::ios_base::floatfield);

        oss << "POLYHEDRON Z ( ";

        oss << "((" << minx << " " << miny << " " << minz << ", " <<
                       maxx << " " << miny << " " << minz << ", " <<
                       maxx << " " << maxy << " " << minz << ", " <<
                       minx << " " << maxy << " " << minz << ", " <<
                       minx << " " << miny << " " << minz << ", " <<
               ")), ";
        oss << "((" << minx << " " << miny << " " << minz << ", " <<
                       maxx << " " << miny << " " << minz << ", " <<
                       maxx << " " << miny << " " << maxz << ", " <<
                       minx << " " << miny << " " << maxz << ", " <<
                       minx << " " << miny << " " << minz << ", " <<
               ")), ";
        oss << "((" << maxx << " " << miny << " " << minz << ", " <<
                       maxx << " " << maxy << " " << minz << ", " <<
                       maxx << " " << maxy << " " << maxz << ", " <<
                       maxx << " " << miny << " " << maxz << ", " <<
                       maxx << " " << miny << " " << minz << ", " <<
               ")), ";
        oss << "((" << maxx << " " << maxy << " " << minz << ", " <<
                       minx << " " << maxy << " " << minz << ", " <<
                       minx << " " << maxy << " " << maxz << ", " <<
                       maxx << " " << maxy << " " << maxz << ", " <<
                       maxx << " " << maxy << " " << minz << ", " <<
               ")), ";
        oss << "((" << minx << " " << maxy << " " << minz << ", " <<
                       minx << " " << miny << " " << minz << ", " <<
                       minx << " " << miny << " " << maxz << ", " <<
                       minx << " " << maxy << " " << maxz << ", " <<
                       minx << " " << maxy << " " << minz << ", " <<
               ")), ";
        oss << "((" << minx << " " << miny << " " << maxz << ", " <<
                       maxx << " " << miny << " " << maxz << ", " <<
                       maxx << " " << maxy << " " << maxz << ", " <<
                       minx << " " << maxy << " " << maxz << ", " <<
                       minx << " " << miny << " " << maxz << ", " <<
               "))";

        oss << " )";

        return oss.str();
    }

    /**
      Return a staticly-allocated Bounds extent that represents infinity

      \return  A bounds box with infinite bounds,
    */
    static const BOX3D& getDefaultSpatialExtent();
};

/**
  Wrapper for BOX3D and BOX2D to allow extraction as either.  Typically used
  to facilitate streaming either a BOX2D or BOX3D
*/
class PDAL_DLL Bounds
{
public:
    Bounds()
    {}

    explicit Bounds(const BOX3D& box);
    explicit Bounds(const BOX2D& box);

    BOX3D to3d() const;
    BOX2D to2d() const;
    bool is3d() const;

    friend PDAL_DLL std::istream& operator >> (std::istream& in,
        Bounds& bounds);
    friend PDAL_DLL std::ostream& operator << (std::ostream& out,
        const Bounds& bounds);

private:
    BOX3D m_box;

    void set(const BOX3D& box);
    void set(const BOX2D& box);
};

/**
  Write a 2D bounds box to a stream in a format used by PDAL options.

  \param ostr  Stream to write to.
  \param bounds  Box to write.
*/
inline std::ostream& operator << (std::ostream& ostr, const BOX2D& bounds)
{
    if (bounds.empty())
    {
        ostr << "()";
        return ostr;
    }

    auto savedPrec = ostr.precision();
    ostr.precision(16); // or..?
    ostr << "(";
    ostr << "[" << bounds.minx << ", " << bounds.maxx << "], " <<
            "[" << bounds.miny << ", " << bounds.maxy << "]";
    ostr << ")";
    ostr.precision(savedPrec);
    return ostr;
}

/**
  Write a 3D bounds box to a stream in a format used by PDAL options.

  \param ostr  Stream to write to.
  \param bounds  Box to write.
*/
inline std::ostream& operator << (std::ostream& ostr, const BOX3D& bounds)
{
    if (bounds.empty())
    {
        ostr << "()";
        return ostr;
    }

    auto savedPrec = ostr.precision();
    ostr.precision(16); // or..?
    ostr << "(";
    ostr << "[" << bounds.minx << ", " << bounds.maxx << "], " <<
            "[" << bounds.miny << ", " << bounds.maxy << "], " <<
            "[" << bounds.minz << ", " << bounds.maxz << "]";
    ostr << ")";
    ostr.precision(savedPrec);
    return ostr;
}

/**
  Read a 2D bounds box from a stream in a format provided by PDAL options.

  \param istr  Stream to read from.
  \param bounds  Bounds box to populate.
*/
extern PDAL_DLL std::istream& operator>>(std::istream& istr, BOX2D& bounds);

/**
  Read a 3D bounds box from a stream in a format provided by PDAL options.

  \param istr  Stream to read from.
  \param bounds  Bounds box to populate.
*/
extern PDAL_DLL std::istream& operator>>(std::istream& istr, BOX3D& bounds);

PDAL_DLL std::istream& operator >> (std::istream& in, Bounds& bounds);
PDAL_DLL std::ostream& operator << (std::ostream& in, const Bounds& bounds);

} // namespace pdal