File: bititerator.cpp

package info (click to toggle)
libopenraw 0.1.2-0.4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,484 kB
  • sloc: cpp: 13,907; sh: 4,090; ansic: 1,922; xml: 769; makefile: 676; perl: 42
file content (91 lines) | stat: -rw-r--r-- 1,991 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/* -*- tab-width:4; c-basic-offset:4 -*- */
/*
 * libopenraw - bititerator.cpp
 *
 * Copyright (C) 2008 Rafael Avila de Espindola.
 *
 * This library is free software: you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation, either version 3 of
 * the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library.  If not, see
 * <http://www.gnu.org/licenses/>.
 */

#include <assert.h>
#include <algorithm>
#include "bititerator.hpp"

namespace OpenRaw {
namespace Internals {

BitIterator::BitIterator(const uint8_t * const p, size_t size)
    : m_p(p)
    , m_size(size)
    , m_bitBuffer(0)
    , m_bitsOnBuffer(0)

{
}

void BitIterator::load(size_t numBits)
{
    size_t numBytes = (numBits + 7) / 8;

    //align the bits on the right
    m_bitBuffer >>= (32 - m_bitsOnBuffer);

    m_bitsOnBuffer += 8 * numBytes;

    //load the new bits from the right
    for (size_t i = 0; i < numBytes && m_size > 0; ++i) {
        m_bitBuffer = (m_bitBuffer << 8) | *m_p;
        ++m_p;
        m_size--;
    }

    //align the bits on the left
    m_bitBuffer = m_bitBuffer << (32 - m_bitsOnBuffer);
}

uint32_t BitIterator::get(size_t n)
{
	uint32_t ret = peek(n);

	skip(n);

	return ret;
}

uint32_t BitIterator::peek(size_t n)
{
	assert(n <= 25);
	
	if (n == 0)
		return 0;
	
	if (n > m_bitsOnBuffer)
		load(n - m_bitsOnBuffer);
	
	assert(n <= m_bitsOnBuffer);
	
	return m_bitBuffer >> (32 - n);
}

void BitIterator::skip(size_t n)
{
	size_t num_bits = std::min(n, m_bitsOnBuffer);
	m_bitsOnBuffer -= num_bits;
	m_bitBuffer <<= num_bits;
}

	
}
}