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 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709
|
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
/*
Sonic Visualiser
An audio file viewer and annotation editor.
Centre for Digital Music, Queen Mary, University of London.
This file copyright 2006 Chris Cannam.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version. See the file
COPYING included with this distribution for more information.
*/
#include "CSVFileReader.h"
#include "model/Model.h"
#include "base/RealTime.h"
#include "base/StringBits.h"
#include "base/ProgressReporter.h"
#include "base/RecordDirectory.h"
#include "model/SparseOneDimensionalModel.h"
#include "model/SparseTimeValueModel.h"
#include "model/EditableDenseThreeDimensionalModel.h"
#include "model/RegionModel.h"
#include "model/NoteModel.h"
#include "model/BoxModel.h"
#include "model/WritableWaveFileModel.h"
#include "DataFileReaderFactory.h"
#include <QFile>
#include <QDir>
#include <QFileInfo>
#include <QString>
#include <QRegularExpression>
#include <QStringList>
#include <QTextStream>
#include <QDateTime>
#include <iostream>
#include <map>
#include <string>
using namespace std;
namespace sv {
CSVFileReader::CSVFileReader(QString path, CSVFormat format,
sv_samplerate_t mainModelSampleRate,
ProgressReporter *reporter) :
m_format(format),
m_device(nullptr),
m_ownDevice(true),
m_warnings(0),
m_mainModelSampleRate(mainModelSampleRate),
m_fileSize(0),
m_readCount(0),
m_progress(-1),
m_reporter(reporter)
{
QFile *file = new QFile(path);
bool good = false;
if (!file->exists()) {
m_error = QFile::tr("File \"%1\" does not exist").arg(path);
} else if (!file->open(QIODevice::ReadOnly | QIODevice::Text)) {
m_error = QFile::tr("Failed to open file \"%1\"").arg(path);
} else {
good = true;
}
if (good) {
m_device = file;
m_filename = QFileInfo(path).fileName();
m_fileSize = file->size();
if (m_reporter) m_reporter->setDefinite(true);
} else {
delete file;
}
}
CSVFileReader::CSVFileReader(QIODevice *device, CSVFormat format,
sv_samplerate_t mainModelSampleRate,
ProgressReporter *reporter) :
m_format(format),
m_device(device),
m_ownDevice(false),
m_warnings(0),
m_mainModelSampleRate(mainModelSampleRate),
m_fileSize(0),
m_readCount(0),
m_progress(-1),
m_reporter(reporter)
{
if (m_reporter) m_reporter->setDefinite(false);
}
CSVFileReader::~CSVFileReader()
{
SVDEBUG << "CSVFileReader::~CSVFileReader: device is " << m_device << endl;
if (m_device && m_ownDevice) {
SVDEBUG << "CSVFileReader::CSVFileReader: Closing device" << endl;
m_device->close();
delete m_device;
}
}
bool
CSVFileReader::isOK() const
{
return (m_device != nullptr);
}
QString
CSVFileReader::getError() const
{
return m_error;
}
bool
CSVFileReader::convertTimeValue(QString s, int lineno,
sv_samplerate_t sampleRate,
int increment,
sv_frame_t &calculatedFrame) const
{
QRegularExpression nonNumericRx("[^0-9eE.,+-]");
int warnLimit = 10;
CSVFormat::TimeUnits timeUnits = m_format.getTimeUnits();
calculatedFrame = 0;
bool ok = false;
QString numeric = s;
numeric.remove(nonNumericRx);
if (timeUnits == CSVFormat::TimeSeconds) {
double time = numeric.toDouble(&ok);
if (!ok) time = StringBits::stringToDoubleLocaleFree(numeric, &ok);
calculatedFrame = sv_frame_t(time * sampleRate + 0.5);
} else if (timeUnits == CSVFormat::TimeMilliseconds) {
double time = numeric.toDouble(&ok);
if (!ok) time = StringBits::stringToDoubleLocaleFree(numeric, &ok);
calculatedFrame = sv_frame_t((time / 1000.0) * sampleRate + 0.5);
} else {
long n = numeric.toLong(&ok);
if (n >= 0) calculatedFrame = n;
if (timeUnits == CSVFormat::TimeWindows) {
calculatedFrame *= increment;
}
}
if (!ok) {
if (m_warnings < warnLimit) {
SVCERR << "WARNING: CSVFileReader::load: "
<< "Bad time format (\"" << s
<< "\") in data line "
<< lineno+1 << endl;
} else if (m_warnings == warnLimit) {
SVCERR << "WARNING: Too many warnings" << endl;
}
++m_warnings;
}
return calculatedFrame;
}
Model *
CSVFileReader::load() const
{
if (!m_device) return nullptr;
CSVFormat::ModelType modelType = m_format.getModelType();
CSVFormat::TimingType timingType = m_format.getTimingType();
CSVFormat::TimeUnits timeUnits = m_format.getTimeUnits();
sv_samplerate_t sampleRate = m_format.getSampleRate();
int increment = m_format.getIncrement();
QChar separator = m_format.getSeparator();
bool allowQuoting = m_format.getAllowQuoting();
if (timingType == CSVFormat::ExplicitTiming) {
if (modelType == CSVFormat::ThreeDimensionalModel) {
// This will be overridden later if more than one line
// appears in our file, but we want to choose a default
// that's likely to be visible
increment = 1024;
} else {
increment = 1;
}
if (timeUnits == CSVFormat::TimeSeconds ||
timeUnits == CSVFormat::TimeMilliseconds) {
sampleRate = m_mainModelSampleRate;
}
}
SparseOneDimensionalModel *model1 = nullptr;
SparseTimeValueModel *model2 = nullptr;
RegionModel *model2a = nullptr;
NoteModel *model2b = nullptr;
BoxModel *model2c = nullptr;
EditableDenseThreeDimensionalModel *model3 = nullptr;
WritableWaveFileModel *modelW = nullptr;
Model *model = nullptr;
QTextStream in(m_device);
unsigned int warnings = 0, warnLimit = 10;
unsigned int lineno = 0;
float min = 0.0, max = 0.0;
sv_frame_t frameNo = 0;
sv_frame_t duration = 0;
sv_frame_t endFrame = 0;
bool haveAnyValue = false;
bool haveEndTime = false;
bool pitchLooksLikeMIDI = true;
sv_frame_t startFrame = 0; // for calculation of dense model resolution
bool firstEverValue = true;
int valueColumns = 0;
for (int i = 0; i < m_format.getColumnCount(); ++i) {
if (m_format.getColumnPurpose(i) == CSVFormat::ColumnValue) {
++valueColumns;
}
}
int audioChannels = 0;
float **audioSamples = nullptr;
float sampleShift = 0.f;
float sampleScale = 1.f;
if (modelType == CSVFormat::WaveFileModel) {
audioChannels = valueColumns;
audioSamples =
breakfastquay::allocate_and_zero_channels<float>
(audioChannels, 1);
switch (m_format.getAudioSampleRange()) {
case CSVFormat::SampleRangeSigned1:
case CSVFormat::SampleRangeOther:
sampleShift = 0.f;
sampleScale = 1.f;
break;
case CSVFormat::SampleRangeUnsigned255:
sampleShift = -128.f;
sampleScale = 1.f / 128.f;
break;
case CSVFormat::SampleRangeSigned32767:
sampleShift = 0.f;
sampleScale = 1.f / 32768.f;
break;
}
}
map<QString, int> labelCountMap;
bool atStart = true;
bool abandoned = false;
while (!in.atEnd() && !abandoned) {
// QTextStream's readLine doesn't cope with old-style Mac
// CR-only line endings. Why did they bother making the class
// cope with more than one sort of line ending, if it still
// can't be configured to cope with all the common sorts?
// For the time being we'll deal with this case (which is
// relatively uncommon for us, but still necessary to handle)
// by reading the entire file using a single readLine, and
// splitting it. For CR and CR/LF line endings this will just
// read a line at a time, and that's obviously OK.
QString chunk = in.readLine();
QStringList lines = chunk.split('\r', Qt::SkipEmptyParts);
m_readCount += chunk.size() + 1;
if (m_reporter) {
if (m_reporter->wasCancelled()) {
abandoned = true;
break;
}
int progress;
if (m_fileSize > 0) {
progress = int((double(m_readCount) / double(m_fileSize))
* 100.0);
} else {
progress = int(m_readCount / 10000);
}
if (progress != m_progress) {
m_reporter->setProgress(progress);
m_progress = progress;
}
}
for (int li = 0; li < lines.size(); ++li) {
QString line = lines[li];
if (line.startsWith("#")) continue;
if (atStart) {
atStart = false;
if (m_format.getHeaderStatus() == CSVFormat::HeaderPresent) {
continue;
}
}
QStringList list = StringBits::split(line, separator, allowQuoting);
if (!model) {
QString modelName = m_filename;
switch (modelType) {
case CSVFormat::OneDimensionalModel:
SVDEBUG << "CSVFileReader: Creating sparse one-dimensional model" << endl;
model1 = new SparseOneDimensionalModel(sampleRate, increment);
model = model1;
break;
case CSVFormat::TwoDimensionalModel:
SVDEBUG << "CSVFileReader: Creating sparse time-value model" << endl;
model2 = new SparseTimeValueModel(sampleRate, increment, false);
model2->setScaleUnits(m_format.getScaleUnits());
model = model2;
break;
case CSVFormat::TwoDimensionalModelWithDuration:
SVDEBUG << "CSVFileReader: Creating region model" << endl;
model2a = new RegionModel(sampleRate, increment, false);
model2a->setScaleUnits(m_format.getScaleUnits());
model = model2a;
break;
case CSVFormat::TwoDimensionalModelWithDurationAndPitch:
SVDEBUG << "CSVFileReader: Creating note model" << endl;
model2b = new NoteModel(sampleRate, increment, false);
model2b->setScaleUnits(m_format.getScaleUnits());
model = model2b;
break;
case CSVFormat::TwoDimensionalModelWithDurationAndExtent:
SVDEBUG << "CSVFileReader: Creating box model" << endl;
model2c = new BoxModel(sampleRate, increment, false);
model2c->setScaleUnits(m_format.getScaleUnits());
model = model2c;
break;
case CSVFormat::ThreeDimensionalModel:
SVDEBUG << "CSVFileReader: Creating editable dense three-dimensional model" << endl;
model3 = new EditableDenseThreeDimensionalModel
(sampleRate, increment, valueColumns);
model3->setBinValueUnit(m_format.getScaleUnits());
model = model3;
break;
case CSVFormat::WaveFileModel:
{
SVDEBUG << "CSVFileReader: Creating writable wave-file model" << endl;
bool normalise = (m_format.getAudioSampleRange()
== CSVFormat::SampleRangeOther);
QString path = getConvertedAudioFilePath();
modelW = new WritableWaveFileModel
(path, sampleRate, valueColumns,
normalise ?
WritableWaveFileModel::Normalisation::Peak :
WritableWaveFileModel::Normalisation::None);
modelName = QFileInfo(path).fileName();
model = modelW;
break;
}
}
if (model && model->isOK()) {
if (modelName != "") {
model->setObjectName(modelName);
}
}
}
if (!model || !model->isOK()) {
SVCERR << "Failed to create model to load CSV file into"
<< endl;
if (model) {
delete model;
model = nullptr;
model1 = nullptr; model2 = nullptr;
model2a = nullptr; model2b = nullptr; model2c = nullptr;
model3 = nullptr; modelW = nullptr;
}
abandoned = true;
break;
}
float value = 0.f;
float otherValue = 0.f;
float pitch = 0.f;
QString label = "";
bool ok = true;
duration = 0.f;
haveEndTime = false;
for (int i = 0; i < list.size(); ++i) {
QString s = list[i];
CSVFormat::ColumnPurpose purpose = m_format.getColumnPurpose(i);
switch (purpose) {
case CSVFormat::ColumnUnknown:
break;
case CSVFormat::ColumnStartTime:
if (!convertTimeValue(s, lineno, sampleRate, increment, frameNo)) {
ok = false;
}
break;
case CSVFormat::ColumnEndTime:
if (convertTimeValue(s, lineno, sampleRate, increment, endFrame)) {
haveEndTime = true;
}
break;
case CSVFormat::ColumnDuration:
if (!convertTimeValue(s, lineno, sampleRate, increment, duration)) {
ok = false;
}
break;
case CSVFormat::ColumnValue:
if (haveAnyValue) {
otherValue = value;
}
value = s.toFloat();
haveAnyValue = true;
break;
case CSVFormat::ColumnPitch:
pitch = s.toFloat();
if (pitch < 0.f || pitch > 127.f) {
pitchLooksLikeMIDI = false;
}
break;
case CSVFormat::ColumnLabel:
label = s;
break;
}
}
if (!ok) {
continue;
}
++labelCountMap[label];
if (haveEndTime) { // ... calculate duration now all cols read
if (endFrame > frameNo) {
duration = endFrame - frameNo;
}
}
if (modelType == CSVFormat::OneDimensionalModel) {
Event point(frameNo, label);
model1->add(point);
} else if (modelType == CSVFormat::TwoDimensionalModel) {
Event point(frameNo, value, label);
model2->add(point);
} else if (modelType == CSVFormat::TwoDimensionalModelWithDuration) {
Event region(frameNo, value, duration, label);
model2a->add(region);
} else if (modelType == CSVFormat::TwoDimensionalModelWithDurationAndPitch) {
float level = ((value >= 0.f && value <= 1.f) ? value : 1.f);
Event note(frameNo, pitch, duration, level, label);
model2b->add(note);
} else if (modelType == CSVFormat::TwoDimensionalModelWithDurationAndExtent) {
float level = 0.f;
if (value > otherValue) {
level = value - otherValue;
value = otherValue;
} else {
level = otherValue - value;
}
Event box(frameNo, value, duration, level, label);
model2c->add(box);
} else if (modelType == CSVFormat::ThreeDimensionalModel) {
DenseThreeDimensionalModel::Column values;
for (int i = 0; i < list.size(); ++i) {
if (m_format.getColumnPurpose(i) != CSVFormat::ColumnValue) {
continue;
}
bool ok = false;
float value = list[i].toFloat(&ok);
values.push_back(value);
if (firstEverValue || value < min) min = value;
if (firstEverValue || value > max) max = value;
if (firstEverValue) {
startFrame = frameNo;
model3->setStartFrame(startFrame);
} else if (lineno == 1 &&
timingType == CSVFormat::ExplicitTiming) {
model3->setResolution(int(frameNo - startFrame));
}
firstEverValue = false;
if (!ok) {
if (warnings < warnLimit) {
SVCERR << "WARNING: CSVFileReader::load: "
<< "Non-numeric value \""
<< list[i]
<< "\" in data line " << lineno+1
<< ":" << endl;
SVCERR << line << endl;
++warnings;
} else if (warnings == warnLimit) {
// SVCERR << "WARNING: Too many warnings" << endl;
}
}
}
// SVDEBUG << "Setting bin values for count " << lineno << ", frame "
// << frameNo << ", time " << RealTime::frame2RealTime(frameNo, sampleRate) << endl;
model3->setColumn(lineno, values);
} else if (modelType == CSVFormat::WaveFileModel) {
int channel = 0;
for (int i = 0;
i < list.size() && channel < audioChannels;
++i) {
if (m_format.getColumnPurpose(i) !=
CSVFormat::ColumnValue) {
continue;
}
bool ok = false;
float value = list[i].toFloat(&ok);
if (!ok) {
value = 0.f;
}
value += sampleShift;
value *= sampleScale;
audioSamples[channel][0] = value;
++channel;
}
while (channel < audioChannels) {
audioSamples[channel][0] = 0.f;
++channel;
}
bool ok = modelW->addSamples(audioSamples, 1);
if (!ok) {
if (warnings < warnLimit) {
SVCERR << "WARNING: CSVFileReader::load: "
<< "Unable to add sample to wave-file model"
<< endl;
SVCERR << line << endl;
++warnings;
}
}
}
++lineno;
if (timingType == CSVFormat::ImplicitTiming ||
list.size() == 0) {
frameNo += increment;
}
}
}
if (!haveAnyValue) {
if (model2a) {
// assign values for regions based on label frequency; we
// have this in our labelCountMap, sort of
map<int, map<QString, float> > countLabelValueMap;
for (map<QString, int>::iterator i = labelCountMap.begin();
i != labelCountMap.end(); ++i) {
countLabelValueMap[i->second][i->first] = -1.f;
}
float v = 0.f;
for (map<int, map<QString, float> >::iterator i =
countLabelValueMap.end(); i != countLabelValueMap.begin(); ) {
--i;
SVCERR << "count -> " << i->first << endl;
for (map<QString, float>::iterator j = i->second.begin();
j != i->second.end(); ++j) {
j->second = v;
SVCERR << "label -> " << j->first << ", value " << v << endl;
v = v + 1.f;
}
}
map<Event, Event> eventMap;
EventVector allEvents = model2a->getAllEvents();
for (const Event &e: allEvents) {
int count = labelCountMap[e.getLabel()];
v = countLabelValueMap[count][e.getLabel()];
// SVCERR << "mapping from label \"" << p.label
// << "\" (count " << count
// << ") to value " << v << endl;
eventMap[e] = Event(e.getFrame(), v,
e.getDuration(), e.getLabel());
}
for (const auto &i: eventMap) {
// There could be duplicate regions; if so replace
// them all -- but we need to check we're not
// replacing a region by itself (or else this will
// never terminate)
if (i.first.getValue() == i.second.getValue()) {
continue;
}
while (model2a->containsEvent(i.first)) {
model2a->remove(i.first);
model2a->add(i.second);
}
}
}
}
if (model2b) {
if (pitchLooksLikeMIDI) {
model2b->setScaleUnits("MIDI Pitch");
} else {
model2b->setScaleUnits("Hz");
}
}
if (model3) {
model3->setMinimumLevel(min);
model3->setMaximumLevel(max);
}
if (modelW) {
breakfastquay::deallocate_channels(audioSamples, audioChannels);
modelW->updateModel();
modelW->writeComplete();
}
return model;
}
QString
CSVFileReader::getConvertedAudioFilePath() const
{
QString base = m_filename;
base.replace(QRegularExpression("[/\\,.:;~<>\"'|?%*]+"), "_");
QString convertedFileDir = RecordDirectory::getConvertedAudioDirectory();
if (convertedFileDir == "") {
SVCERR << "WARNING: CSVFileReader::getConvertedAudioFilePath: Failed to retrieve converted audio directory" << endl;
return "";
}
auto ms = QDateTime::currentDateTime().toMSecsSinceEpoch();
auto s = ms / 1000; // there is a toSecsSinceEpoch in Qt 5.8 but
// we currently want to support older versions
return QDir(convertedFileDir).filePath
(QString("%1-%2.wav").arg(base).arg(s));
}
} // end namespace sv
|