summaryrefslogtreecommitdiffstats
path: root/lib/label/uuid-map.c
blob: 8280579ce9b9f6a2d8a21c65488f12f681f3a909 (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
/*
 * Copyright (C) 2001 Sistina Software (UK) Limited.
 *
 * This file is released under the LGPL.
 */

#ifndef _LVM_UUID_MAP_H
#define _LVM_UUID_MAP_H

#include "uuid-map.h"
#include "dev-cache.h"
#include "dbg_malloc.h"
#include "log.h"
#include "label.h"

struct uuid_map {
	struct dev_filter *filter;
};


struct uuid_map *uuid_map_create(struct dev_filter *devices)
{
	struct uuid_map *um;

	if (!(um = dbg_malloc(sizeof(*um)))) {
		log_err("Couldn't allocate uuid_map object.");
		return NULL;
	}

	um->filter = devices;
	return um;
}

void uuid_map_destroy(struct uuid_map *um)
{
	dbg_free(um);
}

/*
 * Simple, non-caching implementation to start with.
 */
struct device *uuid_map_lookup(struct uuid_map *um, struct id *id)
{
	struct dev_iter *iter;
	struct device *dev;
	struct label *lab;

	if (!(iter = dev_iter_create(um->filter))) {
		stack;
		return NULL;
	}

	while ((dev = dev_iter_get(iter))) {

		if (!label_read(dev, &lab))
			continue;

		if (id_equal(id, &lab->id)) {
			label_destroy(lab);
			break;
		}

		label_destroy(lab);
	}

	dev_iter_destroy(iter);
	return dev;
}

#endif