summaryrefslogtreecommitdiff
path: root/ewah/ewah_rlw.c
blob: b9643b7d0f4420b0ebbd7315a3308407bdfafa53 (plain)
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/**
 * Copyright 2013, GitHub, Inc
 * Copyright 2009-2013, Daniel Lemire, Cliff Moon,
 *	David McIntosh, Robert Becho, Google Inc. and Veronika Zenz
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
 */
#include "git-compat-util.h"
#include "ewok.h"
#include "ewok_rlw.h"
 
static inline int next_word(struct rlw_iterator *it)
{
	if (it->pointer >= it->size)
		return 0;
 
	it->rlw.word = &it->buffer[it->pointer];
	it->pointer += rlw_get_literal_words(it->rlw.word) + 1;
 
	it->rlw.literal_words = rlw_get_literal_words(it->rlw.word);
	it->rlw.running_len = rlw_get_running_len(it->rlw.word);
	it->rlw.running_bit = rlw_get_run_bit(it->rlw.word);
	it->rlw.literal_word_offset = 0;
 
	return 1;
}
 
void rlwit_init(struct rlw_iterator *it, struct ewah_bitmap *from_ewah)
{
	it->buffer = from_ewah->buffer;
	it->size = from_ewah->buffer_size;
	it->pointer = 0;
 
	next_word(it);
 
	it->literal_word_start = rlwit_literal_words(it) +
		it->rlw.literal_word_offset;
}
 
void rlwit_discard_first_words(struct rlw_iterator *it, size_t x)
{
	while (x > 0) {
		size_t discard;
 
		if (it->rlw.running_len > x) {
			it->rlw.running_len -= x;
			return;
		}
 
		x -= it->rlw.running_len;
		it->rlw.running_len = 0;
 
		discard = (x > it->rlw.literal_words) ? it->rlw.literal_words : x;
 
		it->literal_word_start += discard;
		it->rlw.literal_words -= discard;
		x -= discard;
 
		if (x > 0 || rlwit_word_size(it) == 0) {
			if (!next_word(it))
				break;
 
			it->literal_word_start =
				rlwit_literal_words(it) + it->rlw.literal_word_offset;
		}
	}
}
 
size_t rlwit_discharge(
	struct rlw_iterator *it, struct ewah_bitmap *out, size_t max, int negate)
{
	size_t index = 0;
 
	while (index < max && rlwit_word_size(it) > 0) {
		size_t pd, pl = it->rlw.running_len;
 
		if (index + pl > max)
			pl = max - index;
 
		ewah_add_empty_words(out, it->rlw.running_bit ^ negate, pl);
		index += pl;
 
		pd = it->rlw.literal_words;
		if (pd + index > max)
			pd = max - index;
 
		ewah_add_dirty_words(out,
			it->buffer + it->literal_word_start, pd, negate);
 
		rlwit_discard_first_words(it, pd + pl);
		index += pd;
	}
 
	return index;
}
 
void rlwit_discharge_empty(struct rlw_iterator *it, struct ewah_bitmap *out)
{
	while (rlwit_word_size(it) > 0) {
		ewah_add_empty_words(out, 0, rlwit_word_size(it));
		rlwit_discard_first_words(it, rlwit_word_size(it));
	}
}