-
Notifications
You must be signed in to change notification settings - Fork 1
/
C_Filterlist.cpp
159 lines (122 loc) · 5.09 KB
/
C_Filterlist.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
//////////////////////////////////////////////////////////////////////////////////
// [ Filterlist_Class_Source ]
//////////////////////////////////////////////////////////////////////////////////
#include "C_Filterlist.hpp"
//////////////////////////////////////////////////////////////////////////////////
// [ init ]
//////////////////////////////////////////////////////////////////////////////////
int C_Filterlist::init(const char* pTxtFile){
if(!pTxtFile) return(C_FLIST_ERROR);
bFilterlist = false;
sFilterlist = pTxtFile;
return(C_FLIST_READY);
}
//////////////////////////////////////////////////////////////////////////////////
// [ read ] Sichern !!!
//////////////////////////////////////////////////////////////////////////////////
int C_Filterlist::read(){
CDA_FilterList.clear();
fFilterlist.open(sFilterlist.data(), ios_base::in | ios_base::out | ios_base::app);
if(fFilterlist.is_open()) bFilterlist = true;
else return(C_FLIST_ERROR);
char zeile[C_FLIST_MAX_DNS];
memset(zeile, 0, sizeof(zeile));
while(fFilterlist.getline(zeile, C_FLIST_MAX_DNS)){
if(strlen(zeile)){
C_Array<char>* pData = CDA_FilterList.addItem(strlen(zeile) + 1);
if(!pData) return(C_FLIST_ERROR);
memcpy(pData->getpBuffer(), zeile, strlen(zeile) + 1);
}
}
fFilterlist.close();
bFilterlist = false;
return(C_FLIST_READY);
}
//////////////////////////////////////////////////////////////////////////////////
// [ add ]
//////////////////////////////////////////////////////////////////////////////////
int C_Filterlist::add(const char* pSite){
if(!pSite) return(C_FLIST_ERROR);
int cSite = 0, cPoint = 0, pPoint[127];
if(!(cSite = strlen(pSite))) return(C_FLIST_ERROR);
memset(pPoint, 0, sizeof(pPoint));
for(long n = cSite; n > 0; n--){
switch(pSite[n]){
case 46: pPoint[cPoint++] = n; break;
}
if(cPoint == 127) return(C_FLIST_ERROR);
}
char dns[C_FLIST_MAX_DNS + 1];
memset(dns, 0, sizeof(dns));
if(cSite > C_FLIST_MAX_DNS) return(C_FLIST_ERROR);
if(cPoint > 1) memcpy(dns, &pSite[pPoint[1]] + 1, cSite - pPoint[1] - 1);
else
if(cPoint > 0) memcpy(dns, pSite, cSite);
////////////////////////////////////////////
// Test ob schon vorhanden
bool bLegal = true;
for(int nItem = 0; nItem < CDA_FilterList.getnItems(); nItem++){
C_Array<char>* pData = CDA_FilterList.getpItempData(nItem);
if(!pData) return(C_FLIST_ERROR);
if(!strcmp(pData->getpBuffer(), dns)){
bLegal = false;
break;
}
}
////////////////////////////////////////////////////////////////////
// Speichert neuen Eintrag in CDA_FilterList und fFilterlist
if(bLegal){
C_Array<char>* pData = CDA_FilterList.addItem(strlen(dns) + 1); // + ZERO
if(!pData) return(C_FLIST_ERROR);
memcpy(pData->getpBuffer(), dns, strlen(dns) + 1); // + ZERO
fFilterlist.open(sFilterlist.data(), ios_base::in | ios_base::out | ios_base::trunc);
if(fFilterlist.is_open()) bFilterlist = true;
else return(C_FLIST_ERROR);
for(int nItem = 0; nItem < CDA_FilterList.getnItems(); nItem++){
C_Array<char>* pData = CDA_FilterList.getpItempData(nItem);
if(!pData) return(C_FLIST_ERROR);
fFilterlist.write(pData->getpBuffer(), pData->getcBuffer() - 1); // - ZERO
fFilterlist << endl;
}
fFilterlist.close();
bFilterlist = false;
}
return(C_FLIST_READY);
}
//////////////////////////////////////////////////////////////////////////////////
// [ del ]
//////////////////////////////////////////////////////////////////////////////////
int C_Filterlist::del(const char* pSite){
if(!pSite) return(C_FLIST_ERROR);
int cSite = 0;
if(!(cSite = strlen(pSite))) return(C_FLIST_ERROR);
////////////////////////////////////////////
// Test ob vorhanden
bool bLegal = true;
int nItem = 0;
for(nItem = 0; nItem < CDA_FilterList.getnItems(); nItem++){
C_Array<char>* pData = CDA_FilterList.getpItempData(nItem);
if(!pData) return(C_FLIST_ERROR);
if(!strcmp(pData->getpBuffer(), pSite)){
bLegal = false;
break;
}
}
////////////////////////////////////////////////////////////////////
// Loescht Eintrag in CDA_FilterList und fFilterlist
if(!bLegal){
CDA_FilterList.delItem(nItem);
fFilterlist.open(sFilterlist.data(), ios_base::in | ios_base::out | ios_base::trunc);
if(fFilterlist.is_open()) bFilterlist = true;
else return(C_FLIST_ERROR);
for(int nItem = 0; nItem < CDA_FilterList.getnItems(); nItem++){
C_Array<char>* pData = CDA_FilterList.getpItempData(nItem);
if(!pData) return(C_FLIST_ERROR);
fFilterlist.write(pData->getpBuffer(), pData->getcBuffer() - 1); // - ZERO
fFilterlist << endl;
}
fFilterlist.close();
bFilterlist = false;
}
return(C_FLIST_READY);
}