Chris@87
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@87
|
2
|
Chris@87
|
3 /*
|
Chris@87
|
4 Sonic Visualiser
|
Chris@87
|
5 An audio file viewer and annotation editor.
|
Chris@87
|
6 Centre for Digital Music, Queen Mary, University of London.
|
Chris@87
|
7 This file copyright 2006 Chris Cannam.
|
Chris@87
|
8
|
Chris@87
|
9 This program is free software; you can redistribute it and/or
|
Chris@87
|
10 modify it under the terms of the GNU General Public License as
|
Chris@87
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@87
|
12 License, or (at your option) any later version. See the file
|
Chris@87
|
13 COPYING included with this distribution for more information.
|
Chris@87
|
14 */
|
Chris@87
|
15
|
Chris@87
|
16 #ifndef _MATRIX_FILE_CACHE_H_
|
Chris@87
|
17 #define _MATRIX_FILE_CACHE_H_
|
Chris@87
|
18
|
Chris@87
|
19 #include <sys/types.h>
|
Chris@87
|
20 #include <QString>
|
Chris@87
|
21
|
Chris@87
|
22 // This class is _not_ thread safe. Each instance must only be used
|
Chris@87
|
23 // within a single thread. You may however have as many instances as
|
Chris@87
|
24 // you like referring to the same file in separate threads.
|
Chris@87
|
25
|
Chris@87
|
26 class MatrixFileCache
|
Chris@87
|
27 {
|
Chris@87
|
28 public:
|
Chris@87
|
29 enum Mode { ReadOnly, ReadWrite };
|
Chris@87
|
30
|
Chris@87
|
31 MatrixFileCache(QString fileBase, Mode mode);
|
Chris@87
|
32 virtual ~MatrixFileCache();
|
Chris@87
|
33
|
Chris@87
|
34 size_t getWidth() const;
|
Chris@87
|
35 size_t getHeight() const;
|
Chris@87
|
36
|
Chris@87
|
37 void resize(size_t width, size_t height);
|
Chris@87
|
38 void reset();
|
Chris@87
|
39
|
Chris@87
|
40 void setRangeOfInterest(size_t x, size_t width);
|
Chris@87
|
41
|
Chris@87
|
42 float getValueAt(size_t x, size_t y) const;
|
Chris@87
|
43 void getColumnAt(size_t x, float *values) const;
|
Chris@87
|
44 // float getColumnMaximum(size_t x) const;
|
Chris@87
|
45 // float getColumnMinimum(size_t x) const;
|
Chris@87
|
46
|
Chris@87
|
47 void setValueAt(size_t x, size_t y, float value);
|
Chris@87
|
48 void setColumnAt(size_t x, float *values);
|
Chris@87
|
49
|
Chris@87
|
50 protected:
|
Chris@87
|
51 int m_fd;
|
Chris@87
|
52 Mode m_mode;
|
Chris@87
|
53 size_t m_width;
|
Chris@87
|
54 size_t m_height;
|
Chris@87
|
55 size_t m_rx;
|
Chris@87
|
56 size_t m_rw;
|
Chris@87
|
57 float **m_range;
|
Chris@87
|
58 size_t m_headerSize;
|
Chris@87
|
59
|
Chris@87
|
60 mutable off_t m_off;
|
Chris@87
|
61
|
Chris@87
|
62 bool seekTo(size_t x, size_t y) const;
|
Chris@87
|
63 };
|
Chris@87
|
64
|
Chris@87
|
65 #endif
|
Chris@87
|
66
|