GEOS 3.14.0dev
IMPatternMatcher.h
1/**********************************************************************
2 *
3 * GEOS - Geometry Engine Open Source
4 * http://geos.osgeo.org
5 *
6 * Copyright (c) 2024 Martin Davis
7 * Copyright (C) 2024 Paul Ramsey <pramsey@cleverelephant.ca>
8 *
9 * This is free software; you can redistribute and/or modify it under
10 * the terms of the GNU Lesser General Public Licence as published
11 * by the Free Software Foundation.
12 * See the COPYING file for more information.
13 *
14 **********************************************************************/
15
16#pragma once
17
18#include <geos/geom/Location.h>
19#include <geos/geom/Dimension.h>
20#include <geos/geom/IntersectionMatrix.h>
21#include <geos/operation/relateng/IMPredicate.h>
22#include <geos/export.h>
23
24#include <memory>
25#include <vector>
26
27// Forward declarations
28namespace geos {
29namespace geom {
30 class Envelope;
31}
32}
33
34namespace geos { // geos.
35namespace operation { // geos.operation.
36namespace relateng { // geos.operation.relateng
37
38
39class GEOS_DLL IMPatternMatcher : public IMPredicate {
40 using Envelope = geos::geom::Envelope;
42 using Dimension = geos::geom::Dimension;
43 using IntersectionMatrix = geos::geom::IntersectionMatrix;
44
45private:
46
47 std::string imPattern;
48 IntersectionMatrix patternMatrix;
49
50 static bool requireInteraction(const IntersectionMatrix& im);
51
52 static bool isInteraction(int imDim);
53
54
55public:
56
57 IMPatternMatcher(std::string p_imPattern)
58 : imPattern(p_imPattern)
59 , patternMatrix(p_imPattern)
60 {};
61
62 std::string name() const override;
63
64 using IMPredicate::init;
65 void init(const Envelope& envA, const Envelope& envB) override;
66
67 bool requireInteraction() const override;
68
69 bool isDetermined() const override;
70
71 bool valueIM() override;
72
73 std::string toString() const;
74
75 friend std::ostream& operator<<(std::ostream& os, const IMPatternMatcher& imp);
76
77};
78
79
80} // namespace geos.operation.relateng
81} // namespace geos.operation
82} // namespace geos
83
Definition Dimension.h:27
An Envelope defines a rectangulare region of the 2D coordinate plane.
Definition Envelope.h:59
Implementation of Dimensionally Extended Nine-Intersection Model (DE-9IM) matrix.
Definition IntersectionMatrix.h:51
Location
Constants representing the location of a point relative to a geometry.
Definition Location.h:32
Basic namespace for all GEOS functionalities.
Definition geos.h:39