-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmfccfile.cpp
187 lines (140 loc) · 4.16 KB
/
mfccfile.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
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
#include "mfccfile.h"
MfccFile::MfccFile(const QString& fileName, QObject *parent) : QObject(parent) {
m_fileName = fileName;
}
bool MfccFile::isReadable() {
QFile file(m_fileName);
if (!file.open(QFile::ReadOnly))
return false;
return hasValidSize(&file);
}
bool MfccFile::isReadable(const QString &fileName) {
if (fileName.isEmpty())
return false;
MfccFile temp(fileName);
return temp.isReadable();
}
bool MfccFile::isWritable() {
if (m_fileName.isEmpty())
return false;
QFileInfo info(m_fileName);
if (info.exists()) {
QFile file(m_fileName);
if (!file.open(QFile::ReadWrite))
return false;
return hasValidSize(&file);
}
else {
QFileInfo dirInfo(QFileInfo(m_fileName).dir().absolutePath());
return dirInfo.isDir() && dirInfo.isWritable();
}
}
bool MfccFile::isWritable(const QString &fileName) {
if (fileName.isEmpty())
return false;
MfccFile temp(fileName);
return temp.isWritable();
}
bool MfccFile::exists() {
QFileInfo fileInfo(m_fileName);
return fileInfo.exists();
}
void MfccFile::clear() {
QFile file (m_fileName);
file.remove();
}
void MfccFile::clear(const QString &fileName) {
QFile file (fileName);
file.remove();
}
bool MfccFile::write(const QVector<QVector<float>> &mfccs) {
if (!isValidMfccVector(mfccs))
return false;
QFile mfccFile(m_fileName);
if (!mfccFile.open(QFile::WriteOnly | QFile::Truncate))
return false;
QDataStream output(&mfccFile);
initStream(&output);
output << static_cast<int32_t>(mfccs.size());
for (QVector<float> i : mfccs) {
for (float j : i)
output << j;
}
return true;
}
bool MfccFile::append(const QVector<float> &mfccs, bool checkFile) {
if (mfccs.size() != MFCC_COUNT || (checkFile && !isWritable()))
return false;
if (!exists()) {
QVector<QVector<float>> temp;
temp << mfccs;
return write(temp);
}
QFile file(m_fileName);
if (!file.open(QFile::ReadWrite))
return false;
QDataStream output(&file);
initStream(&output);
/* Append MFCC data at the end of the file. */
output.device()->seek(file.size());
for (float i : mfccs)
output << i;
/* Update vectors count. */
output.device()->seek(0);
int32_t vectors;
output >> vectors;
vectors++;
output.device()->seek(0);
output << vectors;
return true;
}
QVector<QVector<float>> MfccFile::readAll(bool checkFile) {
if (checkFile && !isReadable())
return QVector<QVector<float>>();
QFile file(m_fileName);
if (!file.open(QFile::ReadOnly))
return QVector<QVector<float>>();
QDataStream stream(&file);
initStream(&stream);
int32_t vectors;
stream >> vectors;
float temp;
QVector<QVector<float>> mfccs;
for (int i = 0; i < vectors; i++) {
QVector<float> segmentMfcc;
for (int j = 0; j < MFCC_COUNT; j++) {
stream >> temp;
segmentMfcc.append(temp);
}
mfccs.append(segmentMfcc);
}
return mfccs;
}
void MfccFile::initStream(QDataStream *stream) {
if (!stream) return;
stream->setByteOrder(QDataStream::LittleEndian);
stream->setFloatingPointPrecision(QDataStream::SinglePrecision);
stream->setVersion(QDataStream::Qt_5_9);
}
bool MfccFile::hasValidSize(QFile *mfccFile) {
if (!mfccFile || mfccFile->size() < static_cast<qint64>(sizeof(int32_t)))
return false;
QDataStream stream(mfccFile);
initStream(&stream);
int32_t vectorsCount;
stream >> vectorsCount;
qint64 vectors = ((mfccFile->size() - static_cast<qint64>(sizeof(int32_t))) / static_cast<qint64>(sizeof(float))) / MFCC_COUNT;
if (vectors != vectorsCount) {
qDebug() << "Invalid file size: " << vectors << " != " << vectorsCount << "!";
}
return vectors == vectorsCount;
}
bool MfccFile::isValidMfccVector(const QVector<QVector<float>> &mfccs) {
if (mfccs.isEmpty())
return false;
for (QVector<float> i : mfccs) {
if (i.size() != MFCC_COUNT)
return false;
}
return true;
}