Chris@109
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@109
|
2
|
Chris@109
|
3 /*
|
Chris@109
|
4 Sonic Visualiser
|
Chris@109
|
5 An audio file viewer and annotation editor.
|
Chris@109
|
6 Centre for Digital Music, Queen Mary, University of London.
|
Chris@109
|
7 This file copyright 2006 Chris Cannam.
|
Chris@109
|
8
|
Chris@109
|
9 This program is free software; you can redistribute it and/or
|
Chris@109
|
10 modify it under the terms of the GNU General Public License as
|
Chris@109
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@109
|
12 License, or (at your option) any later version. See the file
|
Chris@109
|
13 COPYING included with this distribution for more information.
|
Chris@109
|
14 */
|
Chris@109
|
15
|
Chris@109
|
16 #ifndef _RESIZEABLE_BITMAP_H_
|
Chris@109
|
17 #define _RESIZEABLE_BITMAP_H_
|
Chris@109
|
18
|
Chris@109
|
19 #include <vector>
|
Chris@109
|
20 #include <stdint.h>
|
Chris@109
|
21
|
Chris@113
|
22 class ResizeableBitset {
|
Chris@109
|
23
|
Chris@109
|
24 public:
|
Chris@113
|
25 ResizeableBitset() : m_bits(0) {
|
Chris@109
|
26 }
|
Chris@546
|
27 ResizeableBitset(size_t size) : m_bits(new std::vector<uint8_t>), m_size(size) {
|
Chris@183
|
28 m_bits->assign((size >> 3) + 1, 0);
|
Chris@109
|
29 }
|
Chris@113
|
30 ResizeableBitset(const ResizeableBitset &b) {
|
Chris@109
|
31 m_bits = new std::vector<uint8_t>(*b.m_bits);
|
Chris@109
|
32 }
|
Chris@113
|
33 ResizeableBitset &operator=(const ResizeableBitset &b) {
|
Chris@109
|
34 if (&b != this) return *this;
|
Chris@109
|
35 delete m_bits;
|
Chris@109
|
36 m_bits = new std::vector<uint8_t>(*b.m_bits);
|
Chris@109
|
37 return *this;
|
Chris@109
|
38 }
|
Chris@113
|
39 ~ResizeableBitset() {
|
Chris@109
|
40 delete m_bits;
|
Chris@109
|
41 }
|
Chris@109
|
42
|
Chris@548
|
43 void resize(size_t size) { // retaining existing data; not thread safe
|
Chris@548
|
44 size_t bytes = (size >> 3) + 1;
|
Chris@548
|
45 if (m_bits && bytes == m_bits->size()) return;
|
Chris@548
|
46 std::vector<uint8_t> *newbits = new std::vector<uint8_t>(bytes);
|
Chris@548
|
47 newbits->assign(bytes, 0);
|
Chris@548
|
48 if (m_bits) {
|
Chris@548
|
49 for (size_t i = 0; i < bytes && i < m_bits->size(); ++i) {
|
Chris@548
|
50 (*newbits)[i] = (*m_bits)[i];
|
Chris@548
|
51 }
|
Chris@109
|
52 delete m_bits;
|
Chris@109
|
53 }
|
Chris@548
|
54 m_bits = newbits;
|
Chris@548
|
55 m_size = size;
|
Chris@109
|
56 }
|
Chris@109
|
57
|
Chris@109
|
58 bool get(size_t column) const {
|
Chris@183
|
59 return ((*m_bits)[column >> 3]) & (1u << (column & 0x07));
|
Chris@109
|
60 }
|
Chris@109
|
61
|
Chris@112
|
62 void set(size_t column) {
|
Chris@183
|
63 ((*m_bits)[column >> 3]) |= (uint8_t(1) << (column & 0x07));
|
Chris@112
|
64 }
|
Chris@112
|
65
|
Chris@112
|
66 void reset(size_t column) {
|
Chris@183
|
67 ((*m_bits)[column >> 3]) &= ~(uint8_t(1) << (column & 0x07));
|
Chris@112
|
68 }
|
Chris@112
|
69
|
Chris@112
|
70 void copy(size_t source, size_t dest) {
|
Chris@112
|
71 get(source) ? set(dest) : reset(dest);
|
Chris@109
|
72 }
|
Chris@546
|
73
|
Chris@546
|
74 size_t size() const {
|
Chris@546
|
75 return m_size;
|
Chris@546
|
76 }
|
Chris@109
|
77
|
Chris@109
|
78 private:
|
Chris@109
|
79 std::vector<uint8_t> *m_bits;
|
Chris@546
|
80 size_t m_size;
|
Chris@109
|
81 };
|
Chris@109
|
82
|
Chris@109
|
83
|
Chris@109
|
84 #endif
|
Chris@109
|
85
|