htop/ListItem.c

85 lines
1.9 KiB
C
Raw Normal View History

2006-03-04 18:16:49 +00:00
/*
htop - ListItem.c
2011-05-26 16:35:07 +00:00
(C) 2004-2011 Hisham H. Muhammad
2006-03-04 18:16:49 +00:00
Released under the GNU GPL, see the COPYING file
in the source distribution for its full text.
*/
#include "ListItem.h"
2011-12-26 21:35:57 +00:00
#include "CRT.h"
2006-03-04 18:16:49 +00:00
#include "String.h"
#include "RichString.h"
2011-12-26 21:35:57 +00:00
#include <string.h>
#include <assert.h>
#include <stdlib.h>
2006-03-04 18:16:49 +00:00
/*{
2011-12-26 21:35:57 +00:00
#include "Object.h"
2006-03-04 18:16:49 +00:00
typedef struct ListItem_ {
Object super;
char* value;
int key;
bool moving;
2006-03-04 18:16:49 +00:00
} ListItem;
}*/
static void ListItem_delete(Object* cast) {
ListItem* this = (ListItem*)cast;
free(this->value);
free(this);
}
static void ListItem_display(Object* cast, RichString* out) {
ListItem* const this = (ListItem*)cast;
assert (this != NULL);
/*
int len = strlen(this->value)+1;
char buffer[len+1];
snprintf(buffer, len, "%s", this->value);
*/
if (this->moving) {
2015-02-04 13:41:02 +00:00
RichString_write(out, CRT_colors[DEFAULT_COLOR], CRT_utf8 ? "" : "+ ");
} else {
RichString_prune(out);
}
RichString_append(out, CRT_colors[DEFAULT_COLOR], this->value/*buffer*/);
}
ObjectClass ListItem_class = {
.display = ListItem_display,
.delete = ListItem_delete,
.compare = ListItem_compare
};
2010-02-25 01:43:18 +00:00
ListItem* ListItem_new(const char* value, int key) {
ListItem* this = AllocThis(ListItem);
2011-12-25 20:23:53 +00:00
this->value = strdup(value);
2006-03-04 18:16:49 +00:00
this->key = key;
this->moving = false;
2006-03-04 18:16:49 +00:00
return this;
}
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';
2006-03-04 18:16:49 +00:00
}
const char* ListItem_getRef(ListItem* this) {
return this->value;
}
2014-04-25 22:41:23 +00:00
long ListItem_compare(const void* cast1, const void* cast2) {
2006-03-04 18:16:49 +00:00
ListItem* obj1 = (ListItem*) cast1;
ListItem* obj2 = (ListItem*) cast2;
return strcmp(obj1->value, obj2->value);
}