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
|
#include "emb-path.h"
#include "emb-logging.h"
#include <stdlib.h>
/**************************************************/
/* EmbPathObject */
/**************************************************/
EmbPathObject* embPathObject_create(EmbPointList* pointList, EmbFlagList* flagList, EmbColor color, int lineType)
{
EmbPathObject* heapPathObj = 0;
if(!pointList) { embLog_error("emb-path.c embPathObject_create(), pointList argument is null\n"); return 0; }
if(!flagList) { embLog_error("emb-path.c embPathObject_create(), flagList argument is null\n"); return 0; }
heapPathObj = (EmbPathObject*)malloc(sizeof(EmbPathObject));
if(!heapPathObj) { embLog_error("emb-path.c embPathObject_create(), cannot allocate memory for heapPathObj\n"); return 0; }
heapPathObj->pointList = pointList;
heapPathObj->flagList = flagList;
/* TODO: layer */
heapPathObj->color = color;
heapPathObj->lineType = lineType;
return heapPathObj;
}
void embPathObject_free(EmbPathObject* pointer)
{
embPointList_free(pointer->pointList);
pointer->pointList = 0;
embFlagList_free(pointer->flagList);
pointer->flagList = 0;
free(pointer);
pointer = 0;
}
/**************************************************/
/* EmbPathObjectList */
/**************************************************/
EmbPathObjectList* embPathObjectList_create(EmbPathObject* data)
{
EmbPathObjectList* heapPathObjList = 0;
if(!data) { embLog_error("emb-path.c embPathObjectList_create(), data argument is null\n"); return 0; }
heapPathObjList = (EmbPathObjectList*)malloc(sizeof(EmbPathObjectList));
if(!heapPathObjList) { embLog_error("emb-path.c embPathObjectList_create(), cannot allocate memory for heapPathObjList\n"); return 0; }
heapPathObjList->pathObj = data;
heapPathObjList->next = 0;
return heapPathObjList;
}
EmbPathObjectList* embPathObjectList_add(EmbPathObjectList* pointer, EmbPathObject* data)
{
if(!pointer) { embLog_error("emb-path.c embPathObjectList_add(), pointer argument is null\n"); return 0; }
if(!data) { embLog_error("emb-path.c embPathObjectList_add(), data argument is null\n"); return 0; }
if(pointer->next) { embLog_error("emb-path.c embPathObjectList_add(), pointer->next should be null\n"); return 0; }
pointer->next = (EmbPathObjectList*)malloc(sizeof(EmbPathObjectList));
if(!pointer->next) { embLog_error("emb-path.c embPathObjectList_add(), cannot allocate memory for pointer->next\n"); return 0; }
pointer = pointer->next;
pointer->pathObj = data;
pointer->next = 0;
return pointer;
}
int embPathObjectList_count(EmbPathObjectList* pointer)
{
int i = 1;
if(!pointer) return 0;
while(pointer->next)
{
pointer = pointer->next;
i++;
}
return i;
}
int embPathObjectList_empty(EmbPathObjectList* pointer)
{
if(!pointer)
return 1;
return 0;
}
void embPathObjectList_free(EmbPathObjectList* pointer)
{
EmbPathObjectList* tempPointer = pointer;
EmbPathObjectList* nextPointer = 0;
while(tempPointer)
{
nextPointer = tempPointer->next;
embPathObject_free(tempPointer->pathObj);
tempPointer->pathObj = 0;
free(tempPointer);
tempPointer = nextPointer;
}
pointer = 0;
}
/* kate: bom off; indent-mode cstyle; indent-width 4; replace-trailing-space-save on; */
|