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

#include "RichString.h"

#include <stdlib.h>
#include <string.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
12

Hisham Muhammad's avatar
Hisham Muhammad committed
13
#define RICHSTRING_MAXLEN 350
Hisham Muhammad's avatar
Hisham Muhammad committed
14
15
16

/*{
#include "config.h"
17
#include <ctype.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
18
19

#include <assert.h>
20
#ifdef HAVE_NCURSESW_CURSES_H
21
22
23
#include <ncursesw/curses.h>
#elif HAVE_NCURSES_NCURSES_H
#include <ncurses/ncurses.h>
24
25
#elif HAVE_NCURSES_CURSES_H
#include <ncurses/curses.h>
26
27
28
29
#elif HAVE_NCURSES_H
#include <ncurses.h>
#elif HAVE_CURSES_H
#include <curses.h>
30
#endif
Hisham Muhammad's avatar
Hisham Muhammad committed
31

32
33
34
#define RichString_size(this) ((this)->chlen)
#define RichString_sizeVal(this) ((this).chlen)

35
36
#define RichString_begin(this) RichString (this); memset(&this, 0, sizeof(RichString)); (this).chptr = (this).chstr;
#define RichString_beginAllocated(this) memset(&this, 0, sizeof(RichString)); (this).chptr = (this).chstr;
37
#define RichString_end(this) RichString_prune(&(this));
38

39
#ifdef HAVE_LIBNCURSESW
40
41
42
43
44
#define RichString_printVal(this, y, x) mvadd_wchstr(y, x, (this).chptr)
#define RichString_printoffnVal(this, y, x, off, n) mvadd_wchnstr(y, x, (this).chptr + off, n)
#define RichString_getCharVal(this, i) ((this).chptr[i].chars[0] & 255)
#define RichString_setChar(this, at, ch) do{ (this)->chptr[(at)].chars[0] = ch; } while(0)
#define CharType cchar_t
45
#else
46
47
48
49
50
#define RichString_printVal(this, y, x) mvaddchstr(y, x, (this).chptr)
#define RichString_printoffnVal(this, y, x, off, n) mvaddchnstr(y, x, (this).chptr + off, n)
#define RichString_getCharVal(this, i) ((this).chptr[i])
#define RichString_setChar(this, at, ch) do{ (this)->chptr[(at)] = ch; } while(0)
#define CharType chtype
51
52
#endif

Hisham Muhammad's avatar
Hisham Muhammad committed
53
typedef struct RichString_ {
54
55
   int chlen;
   CharType* chptr;
Hisham Muhammad's avatar
Hisham Muhammad committed
56
   CharType chstr[RICHSTRING_MAXLEN+1];
Hisham Muhammad's avatar
Hisham Muhammad committed
57
58
59
60
61
62
63
64
} RichString;

}*/

#ifndef MIN
#define MIN(a,b) ((a)<(b)?(a):(b))
#endif

65
66
#define charBytes(n) (sizeof(CharType) * (n)) 

Hisham Muhammad's avatar
Hisham Muhammad committed
67
static void RichString_extendLen(RichString* this, int len) {
68
69
70
71
72
73
74
75
76
77
78
79
80
81
   if (this->chlen <= RICHSTRING_MAXLEN) {
      if (len > RICHSTRING_MAXLEN) {
         this->chptr = malloc(charBytes(len+1));
         memcpy(this->chptr, this->chstr, charBytes(this->chlen+1));
      }
   } else {
      if (len <= RICHSTRING_MAXLEN) {
         memcpy(this->chstr, this->chptr, charBytes(this->chlen));
         free(this->chptr);
         this->chptr = this->chstr;
      } else {
         this->chptr = realloc(this->chptr, charBytes(len+1));
      }
   }
82

83
84
85
86
   RichString_setChar(this, len, 0);
   this->chlen = len;
}

Hisham Muhammad's avatar
Hisham Muhammad committed
87
#define RichString_setLen(this, len) do{ if(len < RICHSTRING_MAXLEN && this->chlen < RICHSTRING_MAXLEN) { RichString_setChar(this,len,0); this->chlen=len; } else RichString_extendLen(this,len); }while(0)
Hisham Muhammad's avatar
Hisham Muhammad committed
88

89
90
#ifdef HAVE_LIBNCURSESW

91
static inline void RichString_writeFrom(RichString* this, int attrs, const char* data_c, int from, int len) {
92
93
   wchar_t data[len+1];
   len = mbstowcs(data, data_c, len);
94
95
   if (len<0)
      return;
96
   int newLen = from + len;
97
   RichString_setLen(this, newLen);
98
   for (int i = from, j = 0; i < newLen; i++, j++) {
Hisham Muhammad's avatar
Hisham Muhammad committed
99
100
101
102
      CharType* c = &(this->chptr[i]);
      c->attr = attrs;
      c->chars[0] = data[j];
      c->chars[1] = 0;
103
   }
104
   this->chptr[newLen].chars[0] = 0;
Hisham Muhammad's avatar
Hisham Muhammad committed
105
106
}

107
108
inline void RichString_setAttrn(RichString* this, int attrs, int start, int finish) {
   cchar_t* ch = this->chptr + start;
109
110
111
112
   for (int i = start; i <= finish; i++) {
      ch->attr = attrs;
      ch++;
   }
113
114
}

115
int RichString_findChar(RichString* this, char c, int start) {
116
   wchar_t wc = btowc(c);
117
118
   cchar_t* ch = this->chptr + start;
   for (int i = start; i < this->chlen; i++) {
119
120
121
122
123
      if (ch->chars[0] == wc)
         return i;
      ch++;
   }
   return -1;
124
125
}

126
127
#else

128
129
static inline void RichString_writeFrom(RichString* this, int attrs, const char* data_c, int from, int len) {
   int newLen = from + len;
130
   RichString_setLen(this, newLen);
131
   for (int i = from, j = 0; i < newLen; i++, j++)
132
      this->chptr[i] = (data_c[j] >= 32 ? data_c[j] : '?') | attrs;
133
   this->chptr[newLen] = 0;
134
135
}

136
137
void RichString_setAttrn(RichString* this, int attrs, int start, int finish) {
   chtype* ch = this->chptr + start;
138
   for (int i = start; i <= finish; i++) {
139
140
      *ch = (*ch & 0xff) | attrs;
      ch++;
Hisham Muhammad's avatar
Hisham Muhammad committed
141
142
143
   }
}

144
145
146
int RichString_findChar(RichString* this, char c, int start) {
   chtype* ch = this->chptr + start;
   for (int i = start; i < this->chlen; i++) {
Hisham Muhammad's avatar
Hisham Muhammad committed
147
      if ((*ch & 0xff) == (chtype) c)
148
         return i;
149
      ch++;
Hisham Muhammad's avatar
Hisham Muhammad committed
150
   }
151
152
153
154
155
   return -1;
}

#endif

Hisham Muhammad's avatar
Hisham Muhammad committed
156
void RichString_prune(RichString* this) {
157
158
   if (this->chlen > RICHSTRING_MAXLEN)
      free(this->chptr);
159
   memset(this, 0, sizeof(RichString));
160
   this->chptr = this->chstr;
Hisham Muhammad's avatar
Hisham Muhammad committed
161
162
}

163
164
void RichString_setAttr(RichString* this, int attrs) {
   RichString_setAttrn(this, attrs, 0, this->chlen - 1);
165
166
}

167
168
169
170
171
172
void RichString_append(RichString* this, int attrs, const char* data) {
   RichString_writeFrom(this, attrs, data, this->chlen, strlen(data));
}

void RichString_appendn(RichString* this, int attrs, const char* data, int len) {
   RichString_writeFrom(this, attrs, data, this->chlen, len);
173
174
}

Hisham Muhammad's avatar
Hisham Muhammad committed
175
void RichString_write(RichString* this, int attrs, const char* data) {
176
   RichString_writeFrom(this, attrs, data, 0, strlen(data));
177
}