Mercurial > hg > svcore
view data/fft/FFTFileCache.h @ 489:82ab61fa9223
* Reorganise our sparql queries on the basis that Redland must be
available, not only optional. So for anything querying the pool
of data about plugins, we use a single datastore and model which
is initialised at the outset by PluginRDFIndexer and then queried
directly; for anything that "reads from a file" (e.g. loading
annotations) we query directly using Rasqal, going to the
datastore when we need additional plugin-related information.
This may improve performance, but mostly it simplifies the code
and fixes a serious issue with RDF import in the previous versions
(namely that multiple sequential RDF imports would end up sharing
the same RDF data pool!)
author | Chris Cannam |
---|---|
date | Fri, 21 Nov 2008 16:12:29 +0000 |
parents | f60360209e5c |
children | 6066bde1c126 |
line wrap: on
line source
/* -*- 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 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. */ #ifndef _FFT_FILE_CACHE_H_ #define _FFT_FILE_CACHE_H_ #include "FFTCache.h" #include "fileio/MatrixFile.h" #include <QMutex> class FFTFileCache : public FFTCache { public: FFTFileCache(QString fileBase, MatrixFile::Mode mode, StorageType storageType); virtual ~FFTFileCache(); MatrixFile::Mode getMode() const { return m_mfc->getMode(); } virtual size_t getWidth() const; virtual size_t getHeight() const; virtual void resize(size_t width, size_t height); virtual void reset(); // zero-fill or 1-fill as appropriate without changing size virtual float getMagnitudeAt(size_t x, size_t y) const; virtual float getNormalizedMagnitudeAt(size_t x, size_t y) const; virtual float getMaximumMagnitudeAt(size_t x) const; virtual float getPhaseAt(size_t x, size_t y) const; virtual void getValuesAt(size_t x, size_t y, float &real, float &imag) const; virtual bool haveSetColumnAt(size_t x) const; virtual void setColumnAt(size_t x, float *mags, float *phases, float factor); virtual void setColumnAt(size_t x, float *reals, float *imags); virtual void suspend() { m_mfc->suspend(); } static size_t getCacheSize(size_t width, size_t height, StorageType type); virtual StorageType getStorageType() { return m_storageType; } virtual Type getType() { return FileCache; } protected: char *m_writebuf; mutable char *m_readbuf; mutable size_t m_readbufCol; mutable size_t m_readbufWidth; float getFromReadBufStandard(size_t x, size_t y) const { m_readbufMutex.lock(); if (m_readbuf && (m_readbufCol == x || (m_readbufWidth > 1 && m_readbufCol+1 == x))) { float v = ((float *)m_readbuf)[(x - m_readbufCol) * m_mfc->getHeight() + y]; m_readbufMutex.unlock(); return v; } else { populateReadBuf(x); m_readbufMutex.unlock(); return getFromReadBufStandard(x, y); } } float getFromReadBufCompactUnsigned(size_t x, size_t y) const { m_readbufMutex.lock(); if (m_readbuf && (m_readbufCol == x || (m_readbufWidth > 1 && m_readbufCol+1 == x))) { float v = ((uint16_t *)m_readbuf)[(x - m_readbufCol) * m_mfc->getHeight() + y]; m_readbufMutex.unlock(); return v; } else { populateReadBuf(x); m_readbufMutex.unlock(); return getFromReadBufCompactUnsigned(x, y); } } float getFromReadBufCompactSigned(size_t x, size_t y) const { m_readbufMutex.lock(); if (m_readbuf && (m_readbufCol == x || (m_readbufWidth > 1 && m_readbufCol+1 == x))) { float v = ((int16_t *)m_readbuf)[(x - m_readbufCol) * m_mfc->getHeight() + y]; m_readbufMutex.unlock(); return v; } else { populateReadBuf(x); m_readbufMutex.unlock(); return getFromReadBufCompactSigned(x, y); } } void populateReadBuf(size_t x) const; float getNormalizationFactor(size_t col) const { size_t h = m_mfc->getHeight(); if (h < m_factorSize) return 0; if (m_storageType != Compact) { return getFromReadBufStandard(col, h - 1); } else { m_readbufMutex.lock(); union { float f; uint16_t u[2]; } factor; if (!m_readbuf || !(m_readbufCol == col || (m_readbufWidth > 1 && m_readbufCol+1 == col))) { populateReadBuf(col); } size_t ix = (col - m_readbufCol) * m_mfc->getHeight() + h; factor.u[0] = ((uint16_t *)m_readbuf)[ix - 2]; factor.u[1] = ((uint16_t *)m_readbuf)[ix - 1]; m_readbufMutex.unlock(); return factor.f; } } void setNormalizationFactorToWritebuf(float newfactor) { size_t h = m_mfc->getHeight(); if (h < m_factorSize) return; if (m_storageType != Compact) { ((float *)m_writebuf)[h - 1] = newfactor; } else { union { float f; uint16_t u[2]; } factor; factor.f = newfactor; ((uint16_t *)m_writebuf)[h - 2] = factor.u[0]; ((uint16_t *)m_writebuf)[h - 1] = factor.u[1]; } } MatrixFile *m_mfc; QMutex m_writeMutex; mutable QMutex m_readbufMutex; StorageType m_storageType; size_t m_factorSize; }; #endif