ListItem.c 1.77 KB
Newer Older
Hisham Muhammad's avatar
Hisham Muhammad committed
1
2
/*
htop - ListItem.c
Hisham Muhammad's avatar
Hisham Muhammad committed
3
(C) 2004-2011 Hisham H. Muhammad
Hisham Muhammad's avatar
Hisham Muhammad committed
4
5
6
7
8
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/

#include "ListItem.h"
Hisham Muhammad's avatar
Hisham Muhammad committed
9
10

#include "CRT.h"
Hisham Muhammad's avatar
Hisham Muhammad committed
11
12
13
#include "String.h"
#include "RichString.h"

Hisham Muhammad's avatar
Hisham Muhammad committed
14
15
16
17
#include <string.h>
#include <assert.h>
#include <stdlib.h>

Hisham Muhammad's avatar
Hisham Muhammad committed
18
/*{
Hisham Muhammad's avatar
Hisham Muhammad committed
19
#include "Object.h"
Hisham Muhammad's avatar
Hisham Muhammad committed
20
21
22
23
24
25
26
27
28

typedef struct ListItem_ {
   Object super;
   char* value;
   int key;
} ListItem;

}*/

29
#ifdef DEBUG
Hisham Muhammad's avatar
Hisham Muhammad committed
30
char* LISTITEM_CLASS = "ListItem";
31
32
33
#else
#define LISTITEM_CLASS NULL
#endif
Hisham Muhammad's avatar
Hisham Muhammad committed
34

35
36
37
38
39
40
41
42
43
static void ListItem_delete(Object* cast) {
   ListItem* this = (ListItem*)cast;
   free(this->value);
   free(this);
}

static void ListItem_display(Object* cast, RichString* out) {
   ListItem* this = (ListItem*)cast;
   assert (this != NULL);
44
   /*
45
46
47
   int len = strlen(this->value)+1;
   char buffer[len+1];
   snprintf(buffer, len, "%s", this->value);
48
49
   */
   RichString_write(out, CRT_colors[DEFAULT_COLOR], this->value/*buffer*/);
50
51
}

Hisham Muhammad's avatar
Hisham Muhammad committed
52
ListItem* ListItem_new(const char* value, int key) {
Hisham Muhammad's avatar
Hisham Muhammad committed
53
   ListItem* this = malloc(sizeof(ListItem));
54
   Object_setClass(this, LISTITEM_CLASS);
Hisham Muhammad's avatar
Hisham Muhammad committed
55
56
   ((Object*)this)->display = ListItem_display;
   ((Object*)this)->delete = ListItem_delete;
Hisham Muhammad's avatar
Hisham Muhammad committed
57
   this->value = strdup(value);
Hisham Muhammad's avatar
Hisham Muhammad committed
58
59
60
61
   this->key = key;
   return this;
}

62
63
64
65
66
67
68
void ListItem_append(ListItem* this, const char* text) {
   int oldLen = strlen(this->value);
   int textLen = strlen(text);
   int newLen = strlen(this->value) + textLen;
   this->value = realloc(this->value, newLen + 1);
   memcpy(this->value + oldLen, text, textLen);
   this->value[newLen] = '\0';
Hisham Muhammad's avatar
Hisham Muhammad committed
69
70
71
72
73
74
}

const char* ListItem_getRef(ListItem* this) {
   return this->value;
}

75
int ListItem_compare(const void* cast1, const void* cast2) {
Hisham Muhammad's avatar
Hisham Muhammad committed
76
77
78
79
80
   ListItem* obj1 = (ListItem*) cast1;
   ListItem* obj2 = (ListItem*) cast2;
   return strcmp(obj1->value, obj2->value);
}