-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexclusions.cpp
87 lines (64 loc) · 1.21 KB
/
exclusions.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
#include <iostream>
#include <string.h>
#include <stdlib.h>
#include "exclusions.h"
using namespace std;
ExclusionHeader::ExclusionHeader()
: firstexcl(NULL)
{
}
ExclusionHeader::~ExclusionHeader()
{
while(firstexcl)
delete firstexcl;
}
Exclusion *ExclusionHeader::FirstExcl()
{
return(firstexcl);
}
void ExclusionHeader::AddExclusion(const char *excl)
{
new Exclusion(this,excl);
}
bool ExclusionHeader::MatchExclusion(const char *filename)
{
Exclusion *fe=FirstExcl();
while(fe)
{
if(fe->MatchExclusion(filename))
return(true);
fe=fe->NextExcl();
}
return(false);
}
Exclusion::Exclusion(ExclusionHeader *header,const char *exclusion)
: nextexcl(NULL), prevexcl(NULL), header(header), excl(NULL)
{
excl=strdup(exclusion);
if((nextexcl=header->firstexcl))
nextexcl->prevexcl=this;
header->firstexcl=this;
}
Exclusion::~Exclusion()
{
if(excl)
free(excl);
if(prevexcl)
prevexcl->nextexcl=nextexcl;
else
header->firstexcl=nextexcl;
if(nextexcl)
nextexcl->prevexcl=prevexcl;
}
bool Exclusion::MatchExclusion(const char *filename)
{
return(strcmp(filename,excl)==0);
}
Exclusion *Exclusion::NextExcl()
{
return(nextexcl);
}
Exclusion *Exclusion::PrevExcl()
{
return(prevexcl);
}