ListItem.c 1.85 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

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
45
46
47
48
49
   if (this->moving) {
      RichString_write(out, CRT_colors[DEFAULT_COLOR], "↕ ");
   } else {
      RichString_prune(out);
   }
   RichString_append(out, CRT_colors[DEFAULT_COLOR], this->value/*buffer*/);
50
51
}

52
53
ObjectClass ListItem_class = {
   .display = ListItem_display,
54
55
   .delete = ListItem_delete,
   .compare = ListItem_compare
56
57
};

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

66
67
68
69
70
71
72
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
73
74
75
76
77
78
}

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

79
long ListItem_compare(const void* cast1, const void* cast2) {
Hisham Muhammad's avatar
Hisham Muhammad committed
80
81
82
83
84
   ListItem* obj1 = (ListItem*) cast1;
   ListItem* obj2 = (ListItem*) cast2;
   return strcmp(obj1->value, obj2->value);
}