2 Copyright 2020 Google LLC
4 Use of this source code is governed by a BSD-style
5 license that can be found in the LICENSE file or at
6 https://developers.google.com/open-source/licenses/bsd
11 #include "reftable-error.h"
12 #include "reftable-record.h"
16 int pq_less(struct pq_entry
*a
, struct pq_entry
*b
)
18 int cmp
= reftable_record_cmp(a
->rec
, b
->rec
);
20 return a
->index
> b
->index
;
24 struct pq_entry
merged_iter_pqueue_remove(struct merged_iter_pqueue
*pq
)
27 struct pq_entry e
= pq
->heap
[0];
28 pq
->heap
[0] = pq
->heap
[pq
->len
- 1];
35 if (j
< pq
->len
&& pq_less(&pq
->heap
[j
], &pq
->heap
[i
]))
37 if (k
< pq
->len
&& pq_less(&pq
->heap
[k
], &pq
->heap
[min
]))
41 SWAP(pq
->heap
[i
], pq
->heap
[min
]);
48 int merged_iter_pqueue_add(struct merged_iter_pqueue
*pq
, const struct pq_entry
*e
)
52 REFTABLE_ALLOC_GROW(pq
->heap
, pq
->len
+ 1, pq
->cap
);
54 return REFTABLE_OUT_OF_MEMORY_ERROR
;
55 pq
->heap
[pq
->len
++] = *e
;
59 size_t j
= (i
- 1) / 2;
60 if (pq_less(&pq
->heap
[j
], &pq
->heap
[i
]))
62 SWAP(pq
->heap
[j
], pq
->heap
[i
]);
69 void merged_iter_pqueue_release(struct merged_iter_pqueue
*pq
)
71 REFTABLE_FREE_AND_NULL(pq
->heap
);
72 memset(pq
, 0, sizeof(*pq
));