-
Notifications
You must be signed in to change notification settings - Fork 2
/
label.c
200 lines (177 loc) · 7.43 KB
/
label.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/*
¬°¤*,¸¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸
¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯
__/¯\____ ___/\__ _/\__ _/\_ _/\__ _/\___ ___/\__ __/\_ _/\__
\_ ____/_> ____ \_/ _ \_ \ < /_ \_/ _>> ____ \_ > \_/ _ \_
_> ___/ ¯>__> <<__// __ _/ |> ></ _/> </ ¯ \\__> <<__// /\ // __ _/
_> \7 <__/:. \__/:. \> \_/ L/ _____/. 7> .\_/:. \__/ <_/ </:. \> \_
|:::::::::::::::::::::::/:::::::::::::>::::::::/::::::::::::::::::::::::/:::::|
|¯¯\::::/\:/¯\::::/¯¯¯¯<::::/\::/¯¯\:/¯¯¯¯¯¯\::\::/¯¯\::::/¯¯\::::/¯¯¯¯<::::/¯|
|__ |¯¯| T _ |¯¯¯| ___ |¯¯| |¯| _ T ______ |¯¯¯¯| _ |¯¯¯| _ |¯¯¯| ___ |¯¯| _|
\|__|/\|/ \|___|/ \|__|/\|_|/ \|/ \| |/ \|___|/ \|___|/dNo\|__|/
¬°¤*,¸¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸
¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯
This file is part of Etripator,
copyright (c) 2009--2023 Vincent Cruz.
Etripator 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 3 of the License, or
(at your option) any later version.
Etripator 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 Etripator. If not, see <http://www.gnu.org/licenses/>.
¬°¤*,¸¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸
¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯
*/
#include "label.h"
#include "message.h"
#define LABEL_ARRAY_INC 16
/**
* Label repository.
*/
struct label_repository_impl {
size_t size; /**< Size of label repository */
size_t last; /**< Last element in the repository */
label_t *labels; /**< Labels */
};
/**
* Get label index by its address.
* \param [in] repository Label repository.
* \param [in] logical Logical address.
* \param [in] page Memory page.
* \return label index or -1 if the label was not found.
*/
static int label_repository_index(label_repository_t* repository, uint16_t logical, uint8_t page) {
size_t i;
for(i=0; i<repository->last; i++) {
if( (repository->labels[i].page == page) &&
(repository->labels[i].logical == logical) ) {
return (int)i;
}
}
return -1;
}
/* Create label repository. */
label_repository_t* label_repository_create() {
label_repository_t *repository;
repository = (label_repository_t*)malloc(sizeof(label_repository_t));
if(repository == NULL) {
ERROR_MSG("Failed to create label repository: %s", strerror(errno));
return NULL;
}
repository->last = 0;
repository->labels = NULL;
repository->size = LABEL_ARRAY_INC;
repository->labels = (label_t*)malloc(repository->size * sizeof(label_t));
if(repository->labels == NULL) {
ERROR_MSG("Failed to create label: %s", strerror(errno));
label_repository_destroy(repository);
free(repository);
return NULL;
}
return repository;
}
/* Delete label repository. */
void label_repository_destroy(label_repository_t* repository) {
repository->size = 0;
repository->last = 0;
if(repository->labels != NULL) {
for(int i=0; i<repository->last; i++) {
if(repository->labels[i].name) {
free(repository->labels[i].name);
}
if(repository->labels[i].description) {
free(repository->labels[i].description);
}
}
free(repository->labels);
repository->labels = NULL;
}
}
/* Add label to repository. */
int label_repository_add(label_repository_t* repository, const char* name, uint16_t logical, uint8_t page, const char *description) {
int ret = 1;
int index = label_repository_index(repository, logical, page);
if(index >= 0) {
#if 0
if(strcmp(name, repository->labels[index].name)) {
// return 0;
}
#endif
if(description && !repository->labels[index].description) {
repository->labels[index].description = strdup(description);
}
} else {
/* Expand arrays if necessary */
if(repository->last >= repository->size) {
label_t *ptr;
repository->size += LABEL_ARRAY_INC;
ptr = (label_t*)realloc(repository->labels, repository->size * sizeof(label_t));
if(ptr == NULL) {
label_repository_destroy(repository);
ret = 0;
} else {
repository->labels = ptr;
}
}
if(ret != 0) {
/* Push addresses */
repository->labels[repository->last].logical = logical;
repository->labels[repository->last].page = page;
/* Push name and description */
repository->labels[repository->last].name = strdup(name);
repository->labels[repository->last].description = (description != NULL) ? strdup(description) : NULL;
++repository->last;
}
}
return ret;
}
/* Find a label by its address. */
int label_repository_find(label_repository_t* repository, uint16_t logical, uint8_t page, label_t *out) {
int index = label_repository_index(repository, logical, page);
if(index < 0) {
memset(out, 0, sizeof(label_t));
return 0;
}
memcpy(out, &repository->labels[index], sizeof(label_t));
return 1;
}
/* Get the number of labels stored in the repository. */
int label_repository_size(label_repository_t* repository) {
return repository ? (int)repository->last : 0;
}
/* Retrieve the label at the specified index. */
int label_repository_get(label_repository_t* repository, int index, label_t *out) {
if((repository != NULL) && ((index >= 0) && (index < (int)repository->last))) {
memcpy(out, &repository->labels[index], sizeof(label_t));
return 1;
} else {
memset(out, 0, sizeof(label_t));
return 0;
}
}
/* Delete labels */
int label_repository_delete(label_repository_t* repository, uint16_t first, uint16_t end, uint8_t page) {
size_t i;
for(i=0; i<repository->last; i++) {
if( (repository->labels[i].page == page) &&
(repository->labels[i].logical >= first) &&
(repository->labels[i].logical < end) ) {
if(repository->last) {
repository->last--;
if(repository->labels[i].name) {
free(repository->labels[i].name);
}
if(repository->labels[i].description) {
free(repository->labels[i].description);
}
memcpy(&repository->labels[i], &repository->labels[repository->last], sizeof(label_t));
i--;
}
}
}
return 1;
}