forked from goldendict/goldendict
-
Notifications
You must be signed in to change notification settings - Fork 1
/
filetype.cc
95 lines (74 loc) · 2.07 KB
/
filetype.cc
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
/* This file is (c) 2008-2012 Konstantin Isakov <[email protected]>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#include "filetype.hh"
#include <ctype.h>
namespace Filetype {
namespace {
/// Removes any trailing or leading spaces and lowercases the string.
/// The lowercasing is done simplistically, but it is enough for file
/// extensions.
string simplifyString( string const & str )
{
string result;
size_t beginPos = 0;
while( beginPos < str.size() && isspace( str[ beginPos ] ) )
++beginPos;
size_t endPos = str.size();
while( endPos && isspace( str[ endPos - 1 ] ) )
--endPos;
result.reserve( endPos - beginPos );
while( beginPos < endPos )
result.push_back( tolower( str[ beginPos++ ] ) );
return result;
}
/// Checks if the given string ends with the given substring
bool endsWith( string const & str, string const & tail )
{
return str.size() >= tail.size() &&
str.compare( str.size() - tail.size(), tail.size(), tail ) == 0;
}
}
bool isNameOfSound( string const & name )
{
string s = simplifyString( name );
return
endsWith( s, ".wav" ) ||
endsWith( s, ".au" ) ||
endsWith( s, ".voc" ) ||
endsWith( s, ".ogg" ) ||
endsWith( s, ".mp3" ) ||
endsWith( s, ".mp4" ) ||
endsWith( s, ".aac" ) ||
endsWith( s, ".flac" ) ||
endsWith( s, ".mid" ) ||
endsWith( s, ".kar" ) ||
endsWith( s, ".mpc" ) ||
endsWith( s, ".wma" ) ||
endsWith( s, ".wv" ) ||
endsWith( s, ".ape" );
}
bool isNameOfPicture( string const & name )
{
string s = simplifyString( name );
return
endsWith( s, ".jpg" ) ||
endsWith( s, ".jpeg" ) ||
endsWith( s, ".jpe" ) ||
endsWith( s, ".png" ) ||
endsWith( s, ".gif" ) ||
endsWith( s, ".bmp" ) ||
endsWith( s, ".tif" ) ||
endsWith( s, ".tiff" ) ||
endsWith( s, ".tga" ) ||
endsWith( s, ".pcx" ) ||
endsWith( s, ".ico" ) ||
endsWith( s, ".svg" );
}
bool isNameOfTiff( string const & name )
{
string s = simplifyString( name );
return
endsWith( s, ".tif" ) ||
endsWith( s, ".tiff" );
}
}