-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomment.c
185 lines (159 loc) · 6.87 KB
/
comment.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
/*
¬°¤*,¸¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸
¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯
__/¯\____ ___/\__ _/\__ _/\_ _/\__ _/\___ ___/\__ __/\_ _/\__
\_ ____/_> ____ \_/ _ \_ \ < /_ \_/ _>> ____ \_ > \_/ _ \_
_> ___/ ¯>__> <<__// __ _/ |> ></ _/> </ ¯ \\__> <<__// /\ // __ _/
_> \7 <__/:. \__/:. \> \_/ L/ _____/. 7> .\_/:. \__/ <_/ </:. \> \_
|:::::::::::::::::::::::/:::::::::::::>::::::::/::::::::::::::::::::::::/:::::|
|¯¯\::::/\:/¯\::::/¯¯¯¯<::::/\::/¯¯\:/¯¯¯¯¯¯\::\::/¯¯\::::/¯¯\::::/¯¯¯¯<::::/¯|
|__ |¯¯| T _ |¯¯¯| ___ |¯¯| |¯| _ T ______ |¯¯¯¯| _ |¯¯¯| _ |¯¯¯| ___ |¯¯| _|
\|__|/\|/ \|___|/ \|__|/\|_|/ \|/ \| |/ \|___|/ \|___|/dNo\|__|/
¬°¤*,¸¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸
¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯¬°¤*,¸_¸,*¤°¬°¤*,¸,*¤°¬¯
This file is part of Etripator,
copyright (c) 2009--2024 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 "comment.h"
#include "message.h"
#include <jansson.h>
#include "jsonhelpers.h"
#define COMMENT_ARRAY_INC 16
/// Get comment index by its address.
/// \param [in] repository Coment repository.
/// \param [in] logical Logical address.
/// \param [in] page Memory page.
/// \return comment index.
/// \return -1 if the label was not found.
static int comment_repository_index(CommentRepository* repository, uint16_t logical, uint8_t page) {
size_t i;
for(i=0; i<repository->last; i++) {
if( (repository->comments[i].page == page) &&
(repository->comments[i].logical == logical) ) {
return (int)i;
}
}
return -1;
}
// Create comment repository.
bool comment_repository_create(CommentRepository *repository) {
assert(repository != NULL);
bool ret = true;
repository->last = 0;
repository->comments = NULL;
repository->size = COMMENT_ARRAY_INC;
repository->comments = (Comment*)malloc(repository->size * sizeof(Comment));
if(repository->comments == NULL) {
ERROR_MSG("Failed to create comments: %s", strerror(errno));
comment_repository_destroy(repository);
ret = false;
}
return ret;
}
// Release comment repository resources.
void comment_repository_destroy(CommentRepository* repository) {
assert(repository != NULL);
repository->size = 0;
repository->last = 0;
if(repository->comments != NULL) {
for(size_t i=0; i<repository->last; i++) {
free(repository->comments[i].text);
}
free(repository->comments);
repository->comments = NULL;
}
}
// Add comment to repository.
bool comment_repository_add(CommentRepository* repository, uint16_t logical, uint8_t page, const char *text) {
assert(repository != NULL);
assert(text != NULL);
bool ret = true;
int index = comment_repository_index(repository, logical, page);
if(index >= 0) {
WARNING_MSG("Duplicate comment for logical address $%04x in page $%02x", logical, page);
} else {
// Expand arrays if necessary.
if(repository->last >= repository->size) {
Comment *ptr;
size_t new_size = repository->size + COMMENT_ARRAY_INC;
ptr = (Comment*)realloc(repository->comments, new_size * sizeof(Comment));
if(ptr == NULL) {
ERROR_MSG("Failed to expand comment buffer: %s", strerror(errno));
comment_repository_destroy(repository);
ret = false;
} else {
repository->comments = ptr;
repository->size = new_size;
}
}
if(ret) {
// Push addresses & text.
repository->comments[repository->last].logical = logical;
repository->comments[repository->last].page = page;
repository->comments[repository->last].text = strdup(text);
++repository->last;
}
}
return ret;
}
// Find a comment by its address.
bool comment_repository_find(CommentRepository* repository, uint16_t logical, uint8_t page, Comment *out) {
assert(repository != NULL);
assert(out != NULL);
int index = comment_repository_index(repository, logical, page);
bool ret = (index >= 0);
if(ret) {
memcpy(out, &repository->comments[index], sizeof(Comment));
} else {
memset(out, 0, sizeof(Comment));
}
return ret;
}
// Get the number of comments stored in the repository.
int comment_repository_size(CommentRepository* repository) {
assert(repository != NULL);
return (int)repository->last;
}
// Retrieve the comment at the specified index.
bool comment_repository_get(CommentRepository* repository, int index, Comment *out) {
assert(repository != NULL);
assert(out != NULL);
bool ret = false;
if((index >= 0) && (index < (int)repository->last)) {
memcpy(out, &repository->comments[index], sizeof(Comment));
ret = true;
} else {
memset(out, 0, sizeof(Comment));
}
return ret;
}
// Delete comments.
void comment_repository_delete(CommentRepository* repository, uint16_t first, uint16_t end, uint8_t page) {
assert(repository != NULL);
for(size_t i=0; i<repository->last; i++) {
if( (repository->comments[i].page == page) &&
(repository->comments[i].logical >= first) &&
(repository->comments[i].logical < end) ) {
if(repository->last) {
repository->last--;
if(repository->comments[i].text) {
free(repository->comments[i].text);
}
memcpy(&repository->comments[i], &repository->comments[repository->last], sizeof(Comment));
i--;
}
}
}
}