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
|
/* -*- 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-2009 Chris Cannam and QMUL.
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 "MatrixFile.h"
#include "base/TempDirectory.h"
#include "system/System.h"
#include "base/Profiler.h"
#include "base/Exceptions.h"
#include "base/Thread.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <iostream>
#include <cstdio>
#include <cassert>
#include <cstdlib>
#include <QFileInfo>
#include <QDir>
//#define DEBUG_MATRIX_FILE 1
//#define DEBUG_MATRIX_FILE_READ_SET 1
#ifdef DEBUG_MATRIX_FILE_READ_SET
#ifndef DEBUG_MATRIX_FILE
#define DEBUG_MATRIX_FILE 1
#endif
#endif
std::map<QString, int> MatrixFile::m_refcount;
QMutex MatrixFile::m_createMutex;
static size_t totalStorage = 0;
static size_t totalCount = 0;
static size_t openCount = 0;
MatrixFile::MatrixFile(QString fileBase, Mode mode,
int cellSize, int width, int height) :
m_fd(-1),
m_mode(mode),
m_flags(0),
m_fmode(0),
m_cellSize(cellSize),
m_width(width),
m_height(height),
m_headerSize(2 * sizeof(int)),
m_setColumns(0),
m_autoClose(false),
m_readyToReadColumn(-1)
{
Profiler profiler("MatrixFile::MatrixFile", true);
#ifdef DEBUG_MATRIX_FILE
SVDEBUG << "MatrixFile::MatrixFile(" << fileBase << ", " << int(mode) << ", " << cellSize << ", " << width << ", " << height << ")" << endl;
#endif
m_createMutex.lock();
QDir tempDir(TempDirectory::getInstance()->getPath());
QString fileName(tempDir.filePath(QString("%1.mfc").arg(fileBase)));
bool newFile = !QFileInfo(fileName).exists();
if (newFile && m_mode == ReadOnly) {
cerr << "ERROR: MatrixFile::MatrixFile: Read-only mode "
<< "specified, but cache file does not exist" << endl;
throw FileNotFound(fileName);
}
if (!newFile && m_mode == WriteOnly) {
cerr << "ERROR: MatrixFile::MatrixFile: Write-only mode "
<< "specified, but file already exists" << endl;
throw FileOperationFailed(fileName, "create");
}
// Use floating-point here to avoid integer overflow. We can be
// approximate so long as we are on the cautious side
if ((double(m_width) * m_height) * m_cellSize + m_headerSize + m_width >=
pow(2, 31) - 10.0) { // bit of slack there
cerr << "ERROR: MatrixFile::MatrixFile: width " << m_width
<< " is too large for height " << m_height << " and cell size "
<< m_cellSize << " (should be using multiple files)" << endl;
throw FileOperationFailed(fileName, "size");
}
m_flags = 0;
m_fmode = S_IRUSR | S_IWUSR;
if (m_mode == WriteOnly) {
m_flags = O_WRONLY | O_CREAT;
} else {
m_flags = O_RDONLY;
}
#ifdef _WIN32
m_flags |= O_BINARY;
#endif
#ifdef DEBUG_MATRIX_FILE
cerr << "MatrixFile(" << this << ")::MatrixFile: opening " << fileName << "..." << endl;
#endif
if ((m_fd = ::open(fileName.toLocal8Bit(), m_flags, m_fmode)) < 0) {
::perror("Open failed");
cerr << "ERROR: MatrixFile::MatrixFile: "
<< "Failed to open cache file \""
<< fileName << "\"";
if (m_mode == WriteOnly) cerr << " for writing";
cerr << endl;
throw FailedToOpenFile(fileName);
}
m_createMutex.unlock();
#ifdef DEBUG_MATRIX_FILE
cerr << "MatrixFile(" << this << ")::MatrixFile: fd is " << m_fd << endl;
#endif
if (newFile) {
initialise(); // write header and "unwritten" column tags
} else {
int header[2];
if (::read(m_fd, header, 2 * sizeof(int)) < 0) {
::perror("MatrixFile::MatrixFile: read failed");
cerr << "ERROR: MatrixFile::MatrixFile: "
<< "Failed to read header (fd " << m_fd << ", file \""
<< fileName << "\")" << endl;
throw FileReadFailed(fileName);
}
if (header[0] != m_width || header[1] != m_height) {
cerr << "ERROR: MatrixFile::MatrixFile: "
<< "Dimensions in file header (" << header[0] << "x"
<< header[1] << ") differ from expected dimensions "
<< m_width << "x" << m_height << endl;
throw FailedToOpenFile(fileName);
}
}
m_fileName = fileName;
++m_refcount[fileName];
#ifdef DEBUG_MATRIX_FILE
cerr << "MatrixFile[" << m_fd << "]::MatrixFile: File " << fileName << ", ref " << m_refcount[fileName] << endl;
cerr << "MatrixFile[" << m_fd << "]::MatrixFile: Done, size is " << "(" << m_width << ", " << m_height << ")" << endl;
#endif
++totalCount;
++openCount;
}
MatrixFile::~MatrixFile()
{
if (m_fd >= 0) {
if (::close(m_fd) < 0) {
::perror("MatrixFile::~MatrixFile: close failed");
}
openCount --;
}
QMutexLocker locker(&m_createMutex);
delete m_setColumns;
if (m_fileName != "") {
if (--m_refcount[m_fileName] == 0) {
if (::unlink(m_fileName.toLocal8Bit())) {
cerr << "WARNING: MatrixFile::~MatrixFile: reference count reached 0, but failed to unlink file \"" << m_fileName << "\"" << endl;
} else {
cerr << "deleted " << m_fileName << endl;
}
}
}
if (m_mode == WriteOnly) {
totalStorage -= (m_headerSize + (m_width * m_height * m_cellSize) + m_width);
}
totalCount --;
#ifdef DEBUG_MATRIX_FILE
cerr << "MatrixFile[" << m_fd << "]::~MatrixFile: " << endl;
cerr << "MatrixFile: Total storage now " << totalStorage/1024 << "K in " << totalCount << " instances (" << openCount << " open)" << endl;
#endif
}
void
MatrixFile::initialise()
{
Profiler profiler("MatrixFile::initialise", true);
assert(m_mode == WriteOnly);
m_setColumns = new ResizeableBitset(m_width);
off_t off = m_headerSize + (m_width * m_height * m_cellSize) + m_width;
#ifdef DEBUG_MATRIX_FILE
cerr << "MatrixFile[" << m_fd << "]::initialise(" << m_width << ", " << m_height << "): cell size " << m_cellSize << ", header size " << m_headerSize << ", resizing fd " << m_fd << " to " << off << endl;
#endif
if (::lseek(m_fd, off - 1, SEEK_SET) < 0) {
::perror("ERROR: MatrixFile::initialise: seek to end failed");
throw FileOperationFailed(m_fileName, "lseek");
}
unsigned char byte = 0;
if (::write(m_fd, &byte, 1) != 1) {
::perror("ERROR: MatrixFile::initialise: write at end failed");
throw FileOperationFailed(m_fileName, "write");
}
if (::lseek(m_fd, 0, SEEK_SET) < 0) {
::perror("ERROR: MatrixFile::initialise: Seek to write header failed");
throw FileOperationFailed(m_fileName, "lseek");
}
int header[2];
header[0] = m_width;
header[1] = m_height;
if (::write(m_fd, header, 2 * sizeof(int)) != 2 * sizeof(int)) {
::perror("ERROR: MatrixFile::initialise: Failed to write header");
throw FileOperationFailed(m_fileName, "write");
}
if (m_mode == WriteOnly) {
totalStorage += (m_headerSize + (m_width * m_height * m_cellSize) + m_width);
}
#ifdef DEBUG_MATRIX_FILE
cerr << "MatrixFile[" << m_fd << "]::initialise(" << m_width << ", " << m_height << "): storage "
<< (m_headerSize + m_width * m_height * m_cellSize + m_width) << endl;
cerr << "MatrixFile: Total storage " << totalStorage/1024 << "K" << endl;
#endif
seekTo(0);
}
void
MatrixFile::close()
{
#ifdef DEBUG_MATRIX_FILE
SVDEBUG << "MatrixFile::close()" << endl;
#endif
if (m_fd >= 0) {
if (::close(m_fd) < 0) {
::perror("MatrixFile::close: close failed");
}
m_fd = -1;
-- openCount;
#ifdef DEBUG_MATRIX_FILE
cerr << "MatrixFile: Now " << openCount << " open instances" << endl;
#endif
}
}
void
MatrixFile::getColumnAt(int x, void *data)
{
assert(m_mode == ReadOnly);
#ifdef DEBUG_MATRIX_FILE_READ_SET
cerr << "MatrixFile[" << m_fd << "]::getColumnAt(" << x << ")" << endl;
#endif
Profiler profiler("MatrixFile::getColumnAt");
ssize_t r = -1;
if (m_readyToReadColumn < 0 ||
m_readyToReadColumn != x) {
unsigned char set = 0;
if (!seekTo(x)) {
cerr << "ERROR: MatrixFile::getColumnAt(" << x << "): Seek failed" << endl;
throw FileOperationFailed(m_fileName, "seek");
}
r = ::read(m_fd, &set, 1);
if (r < 0) {
::perror("MatrixFile::getColumnAt: read failed");
throw FileReadFailed(m_fileName);
}
if (!set) {
cerr << "MatrixFile[" << m_fd << "]::getColumnAt(" << x << "): Column has not been set" << endl;
return;
}
}
r = ::read(m_fd, data, m_height * m_cellSize);
if (r < 0) {
::perror("MatrixFile::getColumnAt: read failed");
throw FileReadFailed(m_fileName);
}
}
bool
MatrixFile::haveSetColumnAt(int x) const
{
if (m_mode == WriteOnly) {
return m_setColumns->get(x);
}
if (m_readyToReadColumn >= 0 &&
int(m_readyToReadColumn) == x) return true;
Profiler profiler("MatrixFile::haveSetColumnAt");
#ifdef DEBUG_MATRIX_FILE_READ_SET
cerr << "MatrixFile[" << m_fd << "]::haveSetColumnAt(" << x << ")" << endl;
// cerr << ".";
#endif
unsigned char set = 0;
if (!seekTo(x)) {
cerr << "ERROR: MatrixFile::haveSetColumnAt(" << x << "): Seek failed" << endl;
throw FileOperationFailed(m_fileName, "seek");
}
ssize_t r = -1;
r = ::read(m_fd, &set, 1);
if (r < 0) {
::perror("MatrixFile::haveSetColumnAt: read failed");
throw FileReadFailed(m_fileName);
}
if (set) m_readyToReadColumn = int(x);
return set;
}
void
MatrixFile::setColumnAt(int x, const void *data)
{
assert(m_mode == WriteOnly);
if (m_fd < 0) return; // closed
#ifdef DEBUG_MATRIX_FILE_READ_SET
cerr << "MatrixFile[" << m_fd << "]::setColumnAt(" << x << ")" << endl;
// cerr << ".";
#endif
ssize_t w = 0;
if (!seekTo(x)) {
cerr << "ERROR: MatrixFile::setColumnAt(" << x << "): Seek failed" << endl;
throw FileOperationFailed(m_fileName, "seek");
}
unsigned char set = 0;
w = ::write(m_fd, &set, 1);
if (w != 1) {
::perror("WARNING: MatrixFile::setColumnAt: write failed (1)");
throw FileOperationFailed(m_fileName, "write");
}
w = ::write(m_fd, data, m_height * m_cellSize);
if (w != ssize_t(m_height * m_cellSize)) {
::perror("WARNING: MatrixFile::setColumnAt: write failed (2)");
throw FileOperationFailed(m_fileName, "write");
}
/*
if (x == 0) {
cerr << "Wrote " << m_height * m_cellSize << " bytes, as follows:" << endl;
for (int i = 0; i < m_height * m_cellSize; ++i) {
cerr << (int)(((char *)data)[i]) << " ";
}
cerr << endl;
}
*/
if (!seekTo(x)) {
cerr << "MatrixFile[" << m_fd << "]::setColumnAt(" << x << "): Seek failed" << endl;
throw FileOperationFailed(m_fileName, "seek");
}
set = 1;
w = ::write(m_fd, &set, 1);
if (w != 1) {
::perror("WARNING: MatrixFile::setColumnAt: write failed (3)");
throw FileOperationFailed(m_fileName, "write");
}
m_setColumns->set(x);
if (m_autoClose) {
if (m_setColumns->isAllOn()) {
#ifdef DEBUG_MATRIX_FILE
cerr << "MatrixFile[" << m_fd << "]::setColumnAt(" << x << "): All columns set: auto-closing" << endl;
#endif
close();
/*
} else {
int set = 0;
for (int i = 0; i < m_width; ++i) {
if (m_setColumns->get(i)) ++set;
}
cerr << "MatrixFile[" << m_fd << "]::setColumnAt(" << x << "): Auto-close on, but not all columns set yet (" << set << " of " << m_width << ")" << endl;
*/
}
}
}
bool
MatrixFile::seekTo(int x) const
{
if (m_fd < 0) {
cerr << "ERROR: MatrixFile::seekTo: File not open" << endl;
return false;
}
m_readyToReadColumn = -1; // not ready, unless this is subsequently re-set
off_t off = m_headerSize + x * m_height * m_cellSize + x;
#ifdef DEBUG_MATRIX_FILE_READ_SET
if (m_mode == ReadOnly) {
cerr << "MatrixFile[" << m_fd << "]::seekTo(" << x << "): off = " << off << endl;
}
#endif
#ifdef DEBUG_MATRIX_FILE_READ_SET
cerr << "MatrixFile[" << m_fd << "]::seekTo(" << x << "): off = " << off << endl;
#endif
if (::lseek(m_fd, off, SEEK_SET) == (off_t)-1) {
::perror("Seek failed");
cerr << "ERROR: MatrixFile::seekTo(" << x
<< ") = " << off << " failed" << endl;
return false;
}
return true;
}
|