-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathPolygonHandle.cpp
251 lines (202 loc) · 5.95 KB
/
PolygonHandle.cpp
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
/*
Copyright (c) 2009-2022,
Ken Arroyo Ohori k.ohori@tudelft.nl
Hugo Ledoux h.ledoux@tudelft.nl
Martijn Meijers b.m.meijers@tudelft.nl
All rights reserved.
This file is part of pprepair: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Licensees holding a valid commercial license may use this file in
accordance with the commercial license agreement provided with
the software.
This file is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
#include "PolygonHandle.h"
Field::~Field() {
}
bool Field::operator<(Field &f) const {
if (f.getType() != getType()) return &f == this;
switch (getType()) {
case OFTString:
return dynamic_cast<const StringField &>(f) < dynamic_cast<const StringField &>(*this);
break;
case OFTReal:
return dynamic_cast<const DoubleField &>(f) < dynamic_cast<const DoubleField &>(*this);
break;
case OFTInteger:
return dynamic_cast<const IntField &>(f) < dynamic_cast<const IntField &>(*this);
break;
default:
return false;
break;
}
}
bool Field::operator==(Field &f) const {
if (f.getType() != getType()) return &f == this;
switch (getType()) {
case OFTString:
return dynamic_cast<const StringField &>(f) == dynamic_cast<const StringField &>(*this);
break;
case OFTReal:
return dynamic_cast<const DoubleField &>(f) == dynamic_cast<const DoubleField &>(*this);
break;
case OFTInteger:
return dynamic_cast<const IntField &>(f) == dynamic_cast<const IntField &>(*this);
break;
default:
return false;
break;
}
}
const char * Field::getValueAsString() {
std::cout << "Error: Getting value from abstract base class." << std::endl;
return "";
}
double Field::getValueAsDouble() {
std::cout << "Error: Getting value from abstract base class." << std::endl;
return 0.0;
}
int Field::getValueAsInt() {
std::cout << "Error: Getting value from abstract base class." << std::endl;
return 0;
}
void Field::setValueFromString(const char *v) {
std::cout << "Error: Setting value to abstract base class." << std::endl;
}
void Field::setValueFromDouble(double v) {
std::cout << "Error: Setting value to abstract base class." << std::endl;
}
void Field::setValueFromInt(int v) {
std::cout << "Error: Setting value to abstract base class." << std::endl;
}
StringField::StringField(const char *v) {
setValueFromString(v);
}
StringField::~StringField() {
free(contents);
}
bool StringField::operator<(const StringField &f) const {
return strcmp(f.contents, contents) < 0;
}
bool StringField::operator==(const StringField &f) const {
return strcmp(f.contents, contents) == 0;
}
const OGRFieldType StringField::getType() const {
return OFTString;
}
const char * StringField::getValueAsString() {
return contents;
}
void StringField::setValueFromString(const char *v) {
contents = new char[(strlen(v)+1)];
strcpy(contents, v);
}
DoubleField::DoubleField(double v) {
setValueFromDouble(v);
}
bool DoubleField::operator<(const DoubleField &f) const {
return f.contents < contents;
}
bool DoubleField::operator==(const DoubleField &f) const {
return f.contents == contents;
}
const OGRFieldType DoubleField::getType() const {
return OFTReal;
}
double DoubleField::getValueAsDouble() {
return contents;
}
void DoubleField::setValueFromDouble(double v) {
contents = v;
}
IntField::IntField(int v) {
setValueFromInt(v);
}
bool IntField::operator<(const IntField &f) const {
return f.contents < contents;
}
bool IntField::operator==(const IntField &f) const {
return f.contents == contents;
}
const OGRFieldType IntField::getType() const {
return OFTInteger;
}
int IntField::getValueAsInt() {
return contents;
}
void IntField::setValueFromInt(int v) {
contents = v;
}
PolygonHandle::PolygonHandle(unsigned int si, char *of, unsigned int l, long fid) {
schemaIndex = si;
originalFile = of;
layer = l;
}
PolygonHandle::~PolygonHandle() {
for (unsigned int i = 0; i < fields.size(); ++i) {
delete fields[i];
}
}
void PolygonHandle::addField(Field *field) {
fields.push_back(field);
}
Field * PolygonHandle::getSchemaField() {
return fields[schemaIndex];
}
Field * PolygonHandle::getField(unsigned int i) {
return fields[i];
}
unsigned long PolygonHandle::getNumberOfFields() {
return fields.size();
}
char * PolygonHandle::getOriginalFile() {
return originalFile;
}
unsigned int PolygonHandle::getLayer() {
return layer;
}
const bool PolygonHandle::isMultiPolygonHandle() {
return false;
}
MultiPolygonHandle::MultiPolygonHandle(PolygonHandle *ph) {
if (ph->isMultiPolygonHandle()) {
for (std::list<PolygonHandle *>::iterator currentHandle = ((MultiPolygonHandle *)ph)->handles.begin();
currentHandle != ((MultiPolygonHandle *)ph)->handles.end();
++currentHandle) {
handles.push_back(*currentHandle);
}
} else if (ph != NULL) {
handles.push_back(ph);
}
}
MultiPolygonHandle::~MultiPolygonHandle() {
for (unsigned int i = 0; i < fields.size(); ++i) {
delete fields[i];
}
}
const bool MultiPolygonHandle::isMultiPolygonHandle() {
return true;
}
bool MultiPolygonHandle::hasHandle(PolygonHandle *handle) {
if (find(handles.begin(), handles.end(), handle) != handles.end()) return true;
return false;
}
void MultiPolygonHandle::addHandle(PolygonHandle *handle) {
if (handle->isMultiPolygonHandle()) {
for (std::list<PolygonHandle *>::iterator currentHandle = static_cast<MultiPolygonHandle *>(handle)->handles.begin();
currentHandle != static_cast<MultiPolygonHandle *>(handle)->handles.end();
++currentHandle) {
handles.push_back(*currentHandle);
}
} else handles.push_back(handle);
}
const std::list<PolygonHandle *> *MultiPolygonHandle::getHandles() {
return &handles;
}
unsigned long MultiPolygonHandle::numberOfHandles() {
return handles.size();
}