-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFilterClasses.cpp
More file actions
300 lines (260 loc) · 8.39 KB
/
FilterClasses.cpp
File metadata and controls
300 lines (260 loc) · 8.39 KB
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
#define _CRT_SECURE_NO_WARNINGS
#include "StreamClasses.h"
#include "FilterClasses.h"
#include <iostream>
#include <cstring>
#include <cassert>
#include <fstream>
#include <exception>
#include <stdlib.h>
#include <string.h>
WordFilter::WordFilter(Stream* stream, const char* word) : sourceStream(stream), filterWord(word), currentIndex(0)
{
}
bool WordFilter::supposedToBeFreed()
{
return false;
}
SequenceReplaceFilter::SequenceReplaceFilter(Stream* stream, const char* target, const char* replacement)
: sourceStream(stream), toBeReplaced(target), replaceWord(replacement), currentIndex(0)
{
}
bool SequenceReplaceFilter::supposedToBeFreed()
{
return true;
}
char* WordFilter::applyFilter(Stream* stream)
{
int i = 0;
int streamLength = stream->sizeOfArray();
int wordLength = strlen(filterWord);
while(i < streamLength)
{
if(strstr((stream->getArray() + i), filterWord) == (stream->getArray() + i))
{
streamLength -= wordLength;
for(int j = i; j < streamLength; j++)
{
*(stream->getArray() + j) = *(stream->getArray() + j + wordLength);
}
}
else
{
i++;
}
}
*(stream->getArray() + i) = '\0';
return stream->getArray();
}
char* SequenceReplaceFilter::applyFilter(Stream* stream)
{
int toBeReplacedLength = strlen(toBeReplaced);
int replaceWordLength = strlen(replaceWord);
int oldStreamLength = stream->sizeOfArray();
char* afterStream;
if(toBeReplacedLength == replaceWordLength)
{
afterStream = (char*) malloc((oldStreamLength + 1) * sizeof(char));
}
else
{
int occurrencesOfToBeReplaced = 0;
int i = 0;
while(i < oldStreamLength)
{
if((strstr((stream->getArray() + i), toBeReplaced)) == (stream->getArray() + i))
{
occurrencesOfToBeReplaced++;
i += oldStreamLength;
}
else
{
i++;
}
}
int diffInLength = replaceWordLength - toBeReplacedLength;
int newStreamLength = oldStreamLength;
newStreamLength += occurrencesOfToBeReplaced * diffInLength; //if diffInLength is positive then newStreamLength will be more than oldStreamLength
//if diffInLength is negative then newStreamLength will be less than oldStreamLength
afterStream = (char*) malloc((newStreamLength + 1) * sizeof(char));
}
//now we have already allocated the needed memory and we should actually replace the words
int i = 0;
int j = 0;
while(i < oldStreamLength)
{
if((strstr((stream->getArray() + i), toBeReplaced)) == (stream->getArray() + i))
{
strcpy((afterStream + j), replaceWord);
i += toBeReplacedLength;
j += replaceWordLength;
}
else
{
*(afterStream + j) = *(stream->getArray() + i);
i++;
j++;
}
}
*(afterStream + j) = '\0';
return afterStream;
}
PairFilter::PairFilter(Stream* stream, Filter* first, Filter* second)
: sourceStream(stream), firstFilter(first), secondFilter(second), currentIndex(0)
{
}
bool PairFilter::supposedToBeFreed()
{
return false;
}
char* PairFilter::applyFilter(Stream* stream)
{
char* firstResult = firstFilter->applyFilter(stream);
Stream resultStream(firstResult);
if(firstFilter->supposedToBeFreed())
{
free(firstResult);
}
char* secondResult = secondFilter->applyFilter(&resultStream);
(*stream) = resultStream;
if(secondFilter->supposedToBeFreed())
{
free(secondResult);
}
return stream->getArray();
}
char WordFilter::operator*() const
{
return *(sourceStream->getArray() + currentIndex);
}
void WordFilter::operator++()
{
if(currentIndex == sourceStream->sizeOfArray() - 1)
{
std::cerr << "There is not such element" << std::endl;
}
currentIndex++;
}
void WordFilter::operator--()
{
if(currentIndex < 1)
{
std::cerr << "There is not such element" << std::endl;
}
currentIndex--;
}
char WordFilter::operator[](int index) const
{
int newIndex = currentIndex + index;
assert(newIndex >= 0 && newIndex <= sourceStream->sizeOfArray() - 1);
return *(sourceStream->getArray() + newIndex);
}
char* WordFilter::operator()(int start, int end) const
{
assert(start >= 0 && end <= sourceStream->sizeOfArray() - 1);
int length = end - start + 1;
char* result = new char[length + 1];
int newIndex = currentIndex + start;
for (int i = 0; i < length; i++)
{
*(result + i) = *(sourceStream->getArray() + newIndex + i);
}
result[length] = '\0';
return result; //memory should be deallocated after using the operator
}
/*
PairFilter WordFilter::operator+(Filter& otherFilter)
{
return PairFilter(this->sourceStream, this, &otherFilter);
}
*/
char SequenceReplaceFilter::operator*() const
{
return *(sourceStream->getArray() + currentIndex);
}
void SequenceReplaceFilter::operator++()
{
if(currentIndex == sourceStream->sizeOfArray() - 1)
{
std::cerr << "There is not such element" << std::endl;
}
currentIndex++;
}
void SequenceReplaceFilter::operator--()
{
if(currentIndex < 1)
{
std::cerr << "There is not such element" << std::endl;
}
currentIndex--;
}
char SequenceReplaceFilter::operator[](int index) const
{
int newIndex = currentIndex + index;
assert(newIndex >= 0 && newIndex <= sourceStream->sizeOfArray() - 1);
return *(sourceStream->getArray() + newIndex);
}
char* SequenceReplaceFilter::operator()(int start, int end) const
{
assert(start >= 0 && end <= sourceStream->sizeOfArray() - 1);
int length = end - start + 1;
char* result = new char[length + 1];
int newIndex = currentIndex + start;
for (int i = 0; i < length; i++)
{
*(result + i) = *(sourceStream->getArray() + newIndex + i);
}
result[length] = '\0';
return result; //memory should be deallocated after using the operator
}
/*
PairFilter SequenceReplaceFilter::operator+(Filter& otherFilter)
{
return PairFilter(this->sourceStream, this, &otherFilter);
}
*/
char PairFilter::operator*() const
{
return *(sourceStream->getArray() + currentIndex);
}
void PairFilter::operator++()
{
if(currentIndex == sourceStream->sizeOfArray() - 1)
{
std::cerr << "There is not such element" << std::endl;
}
currentIndex++;
}
void PairFilter::operator--()
{
if(currentIndex < 1)
{
std::cerr << "There is not such element" << std::endl;
}
currentIndex--;
}
char PairFilter::operator[](int index) const
{
int newIndex = currentIndex + index;
assert(newIndex >= 0 && newIndex <= sourceStream->sizeOfArray() - 1);
return *(sourceStream->getArray() + newIndex);
}
char* PairFilter::operator()(int start, int end) const
{
assert(start >= 0 && end <= sourceStream->sizeOfArray() - 1);
int length = end - start + 1;
char* result = new char[length + 1];
int newIndex = currentIndex + start;
for (int i = 0; i < length; i++)
{
*(result + i) = *(sourceStream->getArray() + newIndex + i);
}
result[length] = '\0';
return result; //memory should be deallocated after using the operator
}
/*
PairFilter PairFilter::operator+(Filter& otherFilter)
{
return PairFilter(this->sourceStream, this, &otherFilter);
}
*/