aboutsummaryrefslogtreecommitdiff
path: root/src/map.c
blob: 327af8d5455d455b1c732f0a41d27a9c403ac504 (plain) (blame)
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
// Copyright (c) 2023, Marvin Borner <dev@marvinborner.de>
// SPDX-License-Identifier: MIT

#include <stdlib.h>

#include <lib/hashmap.h>
#include <map.h>
#include <parse.h>

static struct hashmap *all_terms;

static void hashmap_free_term(void *item)
{
	struct term *term = *(struct term **)item;
	free(term);
}

struct term *map_get(hash_t hash)
{
	struct term **handle = hashmap_get(all_terms, hash);
	if (!handle)
		return 0;
	return *handle;
}

void map_set(struct term *term, hash_t hash)
{
	hashmap_set(all_terms, &term, hash);
}

void map_initialize(void)
{
	all_terms = hashmap_new(sizeof(struct term *), 0, hashmap_free_term);
}

void map_destroy(void)
{
	hashmap_free(all_terms);
}

struct pqueue *map_to_pqueue(pqueue_cmp_pri_f cmppri, pqueue_get_pri_f getpri,
			     pqueue_set_pos_f setpos)
{
	size_t size = hashmap_count(all_terms) + 42;
	struct pqueue *queue = pqueue_init(size, cmppri, getpri, setpos);

	size_t iter = 0;
	void *iter_val;
	while (hashmap_iter(all_terms, &iter, &iter_val)) {
		struct term *term = *(struct term **)iter_val;
		if (term->type == APP) {
			pqueue_insert(queue, term);
		}
	}

	return queue;
}