forked from illiliti/libudev-zero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
udev_list.c
129 lines (104 loc) · 3.36 KB
/
udev_list.c
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/*
* Copyright (c) 2020-2021 illiliti <[email protected]>
* SPDX-License-Identifier: ISC
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <string.h>
#include <stdlib.h>
#include "udev.h"
#include "udev_list.h"
void udev_list_entry_init(struct udev_list_entry *list_entry)
{
list_entry->value = NULL;
list_entry->name = NULL;
list_entry->next = NULL;
}
void udev_list_entry_free(struct udev_list_entry *list_entry)
{
free(list_entry->value);
free(list_entry->name);
free(list_entry);
}
void udev_list_entry_free_all(struct udev_list_entry *list_entry)
{
struct udev_list_entry *list_entry2 = list_entry->next;
while (list_entry2) {
list_entry = list_entry2;
list_entry2 = list_entry->next;
udev_list_entry_free(list_entry);
}
}
struct udev_list_entry *udev_list_entry_add(struct udev_list_entry *list_entry, const char *name, const char *value, int uniq)
{
struct udev_list_entry *list_entry2;
if (uniq) {
list_entry2 = udev_list_entry_get_by_name(list_entry, name);
if (list_entry2 && value) {
if (list_entry2->value && strcmp(list_entry2->value, value) == 0) {
return list_entry2;
}
free(list_entry2->value);
list_entry2->value = strdup(value);
if (!list_entry2->value) {
return NULL;
}
return list_entry2;
}
}
list_entry2 = calloc(1, sizeof(*list_entry2));
if (!list_entry2) {
return NULL;
}
list_entry2->name = strdup(name);
if (!list_entry2->name) {
free(list_entry2);
return NULL;
}
if (value) {
list_entry2->value = strdup(value);
if (!list_entry2->value) {
free(list_entry2->name);
free(list_entry2);
return NULL;
}
}
list_entry2->next = list_entry->next;
list_entry->next = list_entry2;
return list_entry2;
}
struct udev_list_entry *udev_list_entry_get_next(struct udev_list_entry *list_entry)
{
return list_entry ? list_entry->next : NULL;
}
struct udev_list_entry *udev_list_entry_get_by_name(struct udev_list_entry *list_entry, const char *name)
{
if (!list_entry || !name) {
return NULL;
}
do {
if (list_entry->name && strcmp(list_entry->name, name) == 0) {
return list_entry;
}
}
while ((list_entry = list_entry->next));
return NULL;
}
const char *udev_list_entry_get_name(struct udev_list_entry *list_entry)
{
return list_entry ? list_entry->name : NULL;
}
const char *udev_list_entry_get_value(struct udev_list_entry *list_entry)
{
return list_entry ? list_entry->value : NULL;
}