-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathList.cpp
180 lines (160 loc) · 3.58 KB
/
List.cpp
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
// List.cpp: implementation of the CList class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "List.hpp"
#include <stdlib.h>
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CList::CList()
{
}
CList::~CList()
{
}
LIST *CList::LST_Add(LIST **lst, _TCHAR *id, int dataSize)
{
LIST *node = NULL;
LIST *cur = *lst;
LIST *prev = NULL;
if ((node = (LIST *)malloc(sizeof(LIST))) != NULL) {
// if ((node = (LIST *)GlobalAlloc(GMEM_FIXED, sizeof(LIST))) != NULL) {
// node->id = id;
if ((node->id = (_TCHAR *)malloc(dataSize * sizeof(TCHAR))) == NULL) {
free(node);
node = NULL;
return node;
}
_tcscpy(node->id, id);
if ((node->data = (_TCHAR *)malloc(dataSize * sizeof(TCHAR))) == NULL) {
// if ((node->data = (char *)GlobalAlloc(GMEM_FIXED, dataSize)) == NULL) {
free(node);
// GlobalFree(node);
node = NULL;
}
else {
node->data[0] = '\0';
node->size = dataSize;
node->next = NULL;
node->prev = NULL;
while(cur != NULL &&
// (cur->id < node->id)) {
(_tcscmp(cur->id, node->id) < 0)) {
prev = cur;
cur = cur->next;
}
if (prev == NULL) {
if (*lst != NULL) {
node->next = *lst;
node->next->prev = node;
}
*lst = node;
}
else {
prev->next = node;
node->prev = prev;
if (cur != NULL) {
node->next = cur;
cur->prev = node;
}
}
}
}
return node;
}/* LST_AllocAdd */
void CList::LST_Release(LIST **lst)
{
LIST *cur = *lst;
LIST *prev = 0;
while (cur != 0) {
prev = cur;
cur = cur->next;
if (prev->id != NULL)
free(prev->id);
if (prev->data != NULL)
free(prev->data);
if (prev != NULL)
free(prev);
// GlobalFree(prev->data);
prev->id = NULL;
prev->data = NULL;
// GlobalFree(prev);
prev = NULL;
}
*lst = 0;
}/* LST_Release */
LIST *CList::LST_Lookup(LIST **list, _TCHAR *id, bool exact)
{
LIST *ptr;
LIST *found = NULL;
ptr = *list;
while (ptr != NULL) {
if (exact) {
if (_tcscmp(id, ptr->id) == 0) {
found = ptr;
break;
}
}
else {
// _TCHAR *idPtr = _tcsstr(id, ptr->id);
// if (idPtr != NULL && (idPtr - id) == 0) {
if (_tcsnicmp(ptr->id, id, _tcslen(id)) == 0) {
found = ptr;
break;
}
}
ptr = ptr->next;
}
return found;
}/* LST_Lookup */
LIST *CList::LST_Lookup(LIST **lst, int idInt, bool exact)
{
_TCHAR id[32];
wsprintf(id, _T("%d"), idInt);
return LST_Lookup(lst, id, exact);
}
void CList::LST_Remove(LIST **lst, _TCHAR *id)
{
LIST *item;
item = LST_Lookup(lst, id);
if (item != NULL) {
if (item->prev != NULL)
item->prev->next = item->next;
if (item->next != NULL)
item->next->prev = item->prev;
free(item->data);
// GlobalFree(item->data);
item->data = NULL;
if (item->prev == NULL)
*lst = item->next;
free(item);
// GlobalFree(item);
item = NULL;
}
}
LIST *CList::LST_LookupAdd(LIST **lst, _TCHAR *id, int dataSize)
{
LIST *item;
if ((item = LST_Lookup(lst, id)) == NULL)
item = LST_Add(lst, id, dataSize);
else if (item->size != dataSize) {
free(item->data);
// GlobalFree(item->data);
item->data = NULL;
if ((item->data = (_TCHAR *)malloc(dataSize * sizeof(TCHAR))) == NULL) {
// if ((item->data = (char *)GlobalAlloc(GMEM_FIXED, dataSize)) == NULL) {
free(item);
// GlobalFree(item);
item = NULL;
}
item->size = dataSize;
}
return item;
}
LIST *CList::LST_LookupAdd(LIST **lst, int idInt, int dataSize)
{
_TCHAR id[32];
wsprintf(id, _T("%d"), idInt);
return LST_LookupAdd(lst, id, dataSize);
}