-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfileext.cpp
103 lines (81 loc) · 1.42 KB
/
fileext.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
#include <iostream>
#include <string.h>
#include <stdlib.h>
#include "fileext.h"
using namespace std;
FileExtHeader::FileExtHeader()
: firstfileext(NULL)
{
}
FileExtHeader::~FileExtHeader()
{
FileExtension *ext;
while(firstfileext)
delete firstfileext;
}
FileExtension *FileExtHeader::FirstExt()
{
return(firstfileext);
}
void FileExtHeader::AddExtension(const char *ext)
{
new FileExtension(this,ext);
}
bool FileExtHeader::MatchExtension(const char *filename)
{
FileExtension *fe=FirstExt();
while(fe)
{
if(fe->MatchExtension(filename))
return(true);
fe=fe->NextExt();
}
return(false);
}
FileExtension::FileExtension(FileExtHeader *header,const char *extension)
: next(NULL), prev(NULL), header(header), ext(NULL)
{
while(extension[0]=='.')
++extension;
ext=strdup(extension);
if((next=header->firstfileext))
next->prev=this;
header->firstfileext=this;
}
FileExtension::~FileExtension()
{
if(ext)
free(ext);
if(prev)
prev->next=next;
else
header->firstfileext=next;
if(next)
next->prev=prev;
}
bool FileExtension::MatchExtension(const char *filename)
{
if(!filename)
return(false);
int n=strlen(filename);
while(n)
{
if(filename[n]=='.')
{
if((strcasecmp(&filename[n+1],ext)==0))
return(true);
else
return(false);
}
--n;
}
return(false);
}
FileExtension *FileExtension::NextExt()
{
return(next);
}
FileExtension *FileExtension::PrevExt()
{
return(prev);
}