ListItem.c 1.92 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"
David Hunt's avatar
David Hunt committed
11
#include "StringUtils.h"
Hisham Muhammad's avatar
Hisham Muhammad committed
12
13
#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

typedef struct ListItem_ {
   Object super;
   char* value;
   int key;
Hisham Muhammad's avatar
Hisham Muhammad committed
25
   bool moving;
Hisham Muhammad's avatar
Hisham Muhammad committed
26
27
28
29
} ListItem;

}*/

30
31
32
33
34
35
36
static void ListItem_delete(Object* cast) {
   ListItem* this = (ListItem*)cast;
   free(this->value);
   free(this);
}

static void ListItem_display(Object* cast, RichString* out) {
Hisham Muhammad's avatar
Hisham Muhammad committed
37
   ListItem* const this = (ListItem*)cast;
38
   assert (this != NULL);
39
   /*
40
41
42
   int len = strlen(this->value)+1;
   char buffer[len+1];
   snprintf(buffer, len, "%s", this->value);
43
   */
Hisham Muhammad's avatar
Hisham Muhammad committed
44
   if (this->moving) {
45
46
47
48
49
      RichString_write(out, CRT_colors[DEFAULT_COLOR],
#ifdef HAVE_LIBNCURSESW
		      CRT_utf8 ? "↕ " :
#endif
		      "+ ");
Hisham Muhammad's avatar
Hisham Muhammad committed
50
51
52
53
   } else {
      RichString_prune(out);
   }
   RichString_append(out, CRT_colors[DEFAULT_COLOR], this->value/*buffer*/);
54
55
}

56
57
ObjectClass ListItem_class = {
   .display = ListItem_display,
58
59
   .delete = ListItem_delete,
   .compare = ListItem_compare
60
61
};

Hisham Muhammad's avatar
Hisham Muhammad committed
62
ListItem* ListItem_new(const char* value, int key) {
63
   ListItem* this = AllocThis(ListItem);
Hisham Muhammad's avatar
Hisham Muhammad committed
64
   this->value = strdup(value);
Hisham Muhammad's avatar
Hisham Muhammad committed
65
   this->key = key;
Hisham Muhammad's avatar
Hisham Muhammad committed
66
   this->moving = false;
Hisham Muhammad's avatar
Hisham Muhammad committed
67
68
69
   return this;
}

70
71
72
73
74
75
76
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
77
78
79
80
81
82
}

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

83
long ListItem_compare(const void* cast1, const void* cast2) {
Hisham Muhammad's avatar
Hisham Muhammad committed
84
85
86
87
88
   ListItem* obj1 = (ListItem*) cast1;
   ListItem* obj2 = (ListItem*) cast2;
   return strcmp(obj1->value, obj2->value);
}