annotate data/fileio/QuickTimeFileReader.h @ 537:3cc4b7cd2aa5

* Merge from one-fftdataserver-per-fftmodel branch. This bit of reworking (which is not described very accurately by the title of the branch) turns the MatrixFile object into something that either reads or writes, but not both, and separates the FFT file cache reader and writer implementations separately. This allows the FFT data server to have a single thread owning writers and one reader per "customer" thread, and for all locking to be vastly simplified and concentrated in the data server alone (because none of the classes it makes use of is used in more than one thread at a time). The result is faster and more trustworthy code.
author Chris Cannam
date Tue, 27 Jan 2009 13:25:10 +0000
parents 183ee2a55fc7
children f3cda3280398 59e7fe1b1003
rev   line source
Chris@281 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@281 2
Chris@281 3 /*
Chris@281 4 Sonic Visualiser
Chris@281 5 An audio file viewer and annotation editor.
Chris@281 6 Centre for Digital Music, Queen Mary, University of London.
Chris@281 7 This file copyright 2006-2007 Chris Cannam and QMUL.
Chris@281 8
Chris@281 9 Based in part on QTAudioFile.h from SoundBite, copyright 2006
Chris@281 10 Chris Sutton and Mark Levy.
Chris@281 11
Chris@281 12 This program is free software; you can redistribute it and/or
Chris@281 13 modify it under the terms of the GNU General Public License as
Chris@281 14 published by the Free Software Foundation; either version 2 of the
Chris@281 15 License, or (at your option) any later version. See the file
Chris@281 16 COPYING included with this distribution for more information.
Chris@281 17 */
Chris@281 18
Chris@281 19 #ifndef _QUICKTIME_FILE_READER_H_
Chris@281 20 #define _QUICKTIME_FILE_READER_H_
Chris@281 21
Chris@281 22 #ifdef HAVE_QUICKTIME
Chris@281 23
Chris@281 24 #include "CodedAudioFileReader.h"
Chris@281 25
Chris@281 26 #include "base/Thread.h"
Chris@281 27
Chris@281 28 #include <set>
Chris@281 29
Chris@392 30 class ProgressReporter;
Chris@281 31
Chris@281 32 class QuickTimeFileReader : public CodedAudioFileReader
Chris@281 33 {
Chris@392 34 Q_OBJECT
Chris@392 35
Chris@281 36 public:
Chris@281 37 enum DecodeMode {
Chris@392 38 DecodeAtOnce, // decode the file on construction, with progress
Chris@281 39 DecodeThreaded // decode in a background thread after construction
Chris@281 40 };
Chris@281 41
Chris@317 42 QuickTimeFileReader(FileSource source,
Chris@297 43 DecodeMode decodeMode,
Chris@297 44 CacheMode cacheMode,
Chris@392 45 size_t targetRate = 0,
Chris@392 46 ProgressReporter *reporter = 0);
Chris@281 47 virtual ~QuickTimeFileReader();
Chris@281 48
Chris@290 49 virtual QString getError() const { return m_error; }
Chris@345 50 virtual QString getLocation() const { return m_source.getLocation(); }
Chris@290 51 virtual QString getTitle() const { return m_title; }
Chris@281 52
Chris@290 53 static void getSupportedExtensions(std::set<QString> &extensions);
Chris@316 54 static bool supportsExtension(QString ext);
Chris@316 55 static bool supportsContentType(QString type);
Chris@317 56 static bool supports(FileSource &source);
Chris@281 57
Chris@281 58 virtual int getDecodeCompletion() const { return m_completion; }
Chris@281 59
Chris@281 60 virtual bool isUpdating() const {
Chris@281 61 return m_decodeThread && m_decodeThread->isRunning();
Chris@281 62 }
Chris@281 63
Chris@392 64 public slots:
Chris@392 65 void cancelled();
Chris@392 66
Chris@281 67 protected:
Chris@317 68 FileSource m_source;
Chris@290 69 QString m_path;
Chris@290 70 QString m_error;
Chris@290 71 QString m_title;
Chris@281 72
Chris@281 73 class D;
Chris@281 74 D *m_d;
Chris@281 75
Chris@392 76 ProgressReporter *m_reporter;
Chris@281 77 bool m_cancelled;
Chris@281 78 int m_completion;
Chris@281 79
Chris@281 80 class DecodeThread : public Thread
Chris@281 81 {
Chris@281 82 public:
Chris@281 83 DecodeThread(QuickTimeFileReader *reader) : m_reader(reader) { }
Chris@281 84 virtual void run();
Chris@281 85
Chris@281 86 protected:
Chris@281 87 QuickTimeFileReader *m_reader;
Chris@281 88 };
Chris@281 89
Chris@281 90 DecodeThread *m_decodeThread;
Chris@281 91 };
Chris@281 92
Chris@281 93 #endif
Chris@281 94
Chris@281 95 #endif