Skip to content

File ConstraintInfo.h#

File List > detail > ConstraintInfo.h

Go to the documentation of this file

// Copyright (c) 2025-2025, SFCGAL Team.
// SPDX-License-Identifier: LGPL-2.0-or-later

#ifndef SFCGAL_DETAIL_CONSTRAINTINFO_H_
#define SFCGAL_DETAIL_CONSTRAINTINFO_H_

#include <algorithm>
#include <cstddef>
#include <vector>

namespace SFCGAL {
namespace detail {

struct ConstraintInfo {
  enum class Type {
    LINESTRING,
    POLYGON_EXTERIOR,
    POLYGON_INTERIOR,
    POLYHEDRALSURFACE_EXTERIOR,
    POLYHEDRALSURFACE_INTERIOR,
    MULTIPOLYGON_EXTERIOR,
    MULTIPOLYGON_INTERIOR
  };

  Type   type;
  size_t geomIndex;
  size_t ringIndex;

  ConstraintInfo(Type t, size_t gIdx, size_t rIdx = 0)
      : type(t), geomIndex(gIdx), ringIndex(rIdx)
  {
  }
};

template <typename Constraint_id>
struct ConstraintOrderInfo {
  Constraint_id cid;       // Constraint ID returned by insertion
  size_t        geomIndex; // Index of the geometry in the collection
  size_t polyIndex; // Index of the polygon in MultiPolygon (if applicable)
  size_t ringIndex; // Ring index (0=exterior, >0=hole)
  size_t order; // Local order (for multiple constraints of the same polygon)
  ConstraintInfo::Type
      type; // Geometry type (linestring, polygon exterior, polygon interior)

  ConstraintOrderInfo(
      Constraint_id cid_, size_t geomIndex_, size_t polyIndex_ = 0,
      size_t ringIndex_ = 0, size_t order_ = 0,
      ConstraintInfo::Type type_ = ConstraintInfo::Type::LINESTRING)
      : cid(cid_), geomIndex(geomIndex_), polyIndex(polyIndex_),
        ringIndex(ringIndex_), order(order_), type(type_)
  {
  }
};

template <typename Constraint_id>
struct ConstraintInfoCompare {
  bool
  operator()(const ConstraintOrderInfo<Constraint_id> &a,
             const ConstraintOrderInfo<Constraint_id> &b) const
  {
    if (a.geomIndex != b.geomIndex)
      return a.geomIndex < b.geomIndex;
    if (a.polyIndex != b.polyIndex)
      return a.polyIndex < b.polyIndex;
    if (a.ringIndex != b.ringIndex)
      return a.ringIndex < b.ringIndex;
    return a.order < b.order;
  }
};

} // namespace detail
} // namespace SFCGAL

#endif // SFCGAL_DETAIL_CONSTRAINTINFO_H_