annotate data/fft/FFTFileCache.h @ 408:115f60df1e4d

* Speed up spectrogram painting by releasing mutex in FFTDataServer while calculating data prior to writing it, and by adding whole-column value query methods to FFT objects * Add paint cache to Thumbwheel -- repaints of this widget were slowing down the whole spectrogram repaint * More uses of MutexLocker (named and with debug) and more profile points * Make startup much quicker some of the time, with OSC server in place
author Chris Cannam
date Thu, 08 May 2008 14:46:22 +0000
parents 824ee993ca8d
children f60360209e5c
rev   line source
Chris@148 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@148 2
Chris@148 3 /*
Chris@148 4 Sonic Visualiser
Chris@148 5 An audio file viewer and annotation editor.
Chris@148 6 Centre for Digital Music, Queen Mary, University of London.
Chris@202 7 This file copyright 2006 Chris Cannam and QMUL.
Chris@148 8
Chris@148 9 This program is free software; you can redistribute it and/or
Chris@148 10 modify it under the terms of the GNU General Public License as
Chris@148 11 published by the Free Software Foundation; either version 2 of the
Chris@148 12 License, or (at your option) any later version. See the file
Chris@148 13 COPYING included with this distribution for more information.
Chris@148 14 */
Chris@148 15
Chris@148 16 #ifndef _FFT_FILE_CACHE_H_
Chris@148 17 #define _FFT_FILE_CACHE_H_
Chris@148 18
Chris@152 19 #include "FFTCache.h"
Chris@150 20 #include "fileio/MatrixFile.h"
Chris@148 21
Chris@148 22 #include <QMutex>
Chris@148 23
Chris@148 24 class FFTFileCache : public FFTCache
Chris@148 25 {
Chris@148 26 public:
Chris@148 27 FFTFileCache(QString fileBase, MatrixFile::Mode mode,
Chris@148 28 StorageType storageType);
Chris@148 29 virtual ~FFTFileCache();
Chris@148 30
Chris@148 31 MatrixFile::Mode getMode() const { return m_mfc->getMode(); }
Chris@148 32
Chris@148 33 virtual size_t getWidth() const;
Chris@148 34 virtual size_t getHeight() const;
Chris@148 35
Chris@148 36 virtual void resize(size_t width, size_t height);
Chris@148 37 virtual void reset(); // zero-fill or 1-fill as appropriate without changing size
Chris@148 38
Chris@148 39 virtual float getMagnitudeAt(size_t x, size_t y) const;
Chris@148 40 virtual float getNormalizedMagnitudeAt(size_t x, size_t y) const;
Chris@148 41 virtual float getMaximumMagnitudeAt(size_t x) const;
Chris@148 42 virtual float getPhaseAt(size_t x, size_t y) const;
Chris@148 43
Chris@148 44 virtual void getValuesAt(size_t x, size_t y, float &real, float &imag) const;
Chris@148 45
Chris@148 46 virtual bool haveSetColumnAt(size_t x) const;
Chris@148 47
Chris@148 48 virtual void setColumnAt(size_t x, float *mags, float *phases, float factor);
Chris@148 49 virtual void setColumnAt(size_t x, float *reals, float *imags);
Chris@148 50
Chris@148 51 virtual void suspend() { m_mfc->suspend(); }
Chris@148 52
Chris@170 53 static size_t getCacheSize(size_t width, size_t height, StorageType type);
Chris@170 54
Chris@408 55 virtual StorageType getStorageType() { return m_storageType; }
Chris@359 56 virtual Type getType() { return FileCache; }
Chris@359 57
Chris@148 58 protected:
Chris@148 59 char *m_writebuf;
Chris@148 60 mutable char *m_readbuf;
Chris@148 61 mutable size_t m_readbufCol;
Chris@148 62 mutable size_t m_readbufWidth;
Chris@148 63
Chris@148 64 float getFromReadBufStandard(size_t x, size_t y) const {
Chris@148 65 if (m_readbuf &&
Chris@148 66 (m_readbufCol == x || (m_readbufWidth > 1 && m_readbufCol+1 == x))) {
Chris@148 67 return ((float *)m_readbuf)[(x - m_readbufCol) * m_mfc->getHeight() + y];
Chris@148 68 } else {
Chris@148 69 populateReadBuf(x);
Chris@148 70 return getFromReadBufStandard(x, y);
Chris@148 71 }
Chris@148 72 }
Chris@148 73
Chris@148 74 float getFromReadBufCompactUnsigned(size_t x, size_t y) const {
Chris@148 75 if (m_readbuf &&
Chris@148 76 (m_readbufCol == x || (m_readbufWidth > 1 && m_readbufCol+1 == x))) {
Chris@148 77 return ((uint16_t *)m_readbuf)[(x - m_readbufCol) * m_mfc->getHeight() + y];
Chris@148 78 } else {
Chris@148 79 populateReadBuf(x);
Chris@148 80 return getFromReadBufCompactUnsigned(x, y);
Chris@148 81 }
Chris@148 82 }
Chris@148 83
Chris@148 84 float getFromReadBufCompactSigned(size_t x, size_t y) const {
Chris@148 85 if (m_readbuf &&
Chris@148 86 (m_readbufCol == x || (m_readbufWidth > 1 && m_readbufCol+1 == x))) {
Chris@148 87 return ((int16_t *)m_readbuf)[(x - m_readbufCol) * m_mfc->getHeight() + y];
Chris@148 88 } else {
Chris@148 89 populateReadBuf(x);
Chris@148 90 return getFromReadBufCompactSigned(x, y);
Chris@148 91 }
Chris@148 92 }
Chris@148 93
Chris@183 94 void populateReadBuf(size_t x) const;
Chris@148 95
Chris@148 96 float getNormalizationFactor(size_t col) const {
Chris@266 97 size_t h = m_mfc->getHeight();
Chris@266 98 if (h < m_factorSize) return 0;
Chris@148 99 if (m_storageType != Compact) {
Chris@266 100 return getFromReadBufStandard(col, h - 1);
Chris@148 101 } else {
Chris@266 102 union {
Chris@266 103 float f;
Chris@266 104 uint16_t u[2];
Chris@266 105 } factor;
Chris@266 106 if (!m_readbuf ||
Chris@266 107 !(m_readbufCol == col ||
Chris@266 108 (m_readbufWidth > 1 && m_readbufCol+1 == col))) {
Chris@266 109 populateReadBuf(col);
Chris@266 110 }
Chris@266 111 size_t ix = (col - m_readbufCol) * m_mfc->getHeight() + h;
Chris@266 112 factor.u[0] = ((uint16_t *)m_readbuf)[ix - 2];
Chris@266 113 factor.u[1] = ((uint16_t *)m_readbuf)[ix - 1];
Chris@266 114 return factor.f;
Chris@148 115 }
Chris@148 116 }
Chris@148 117
Chris@266 118 void setNormalizationFactorToWritebuf(float newfactor) {
Chris@266 119 size_t h = m_mfc->getHeight();
Chris@266 120 if (h < m_factorSize) return;
Chris@266 121 if (m_storageType != Compact) {
Chris@266 122 ((float *)m_writebuf)[h - 1] = newfactor;
Chris@266 123 } else {
Chris@266 124 union {
Chris@266 125 float f;
Chris@266 126 uint16_t u[2];
Chris@266 127 } factor;
Chris@266 128 factor.f = newfactor;
Chris@266 129 ((uint16_t *)m_writebuf)[h - 2] = factor.u[0];
Chris@266 130 ((uint16_t *)m_writebuf)[h - 1] = factor.u[1];
Chris@266 131 }
Chris@266 132 }
Chris@266 133
Chris@148 134 MatrixFile *m_mfc;
Chris@148 135 QMutex m_writeMutex;
Chris@148 136 StorageType m_storageType;
Chris@266 137 size_t m_factorSize;
Chris@148 138 };
Chris@148 139
Chris@148 140 #endif