/[LeafOK_CVS]/lbbs/src/editor.c
ViewVC logotype

Diff of /lbbs/src/editor.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.2 by sysadm, Mon Jun 9 15:41:09 2025 UTC Revision 1.27 by sysadm, Tue Jun 17 02:06:48 2025 UTC
# Line 14  Line 14 
14   *                                                                         *   *                                                                         *
15   ***************************************************************************/   ***************************************************************************/
16    
17    #define _POSIX_C_SOURCE 200809L
18    
19  #include "editor.h"  #include "editor.h"
20  #include "bbs.h"  #include "bbs.h"
21  #include "io.h"  #include "io.h"
22  #include "log.h"  #include "log.h"
23  #include "common.h"  #include "common.h"
24  #include "str_process.h"  #include "str_process.h"
25    #include "memory_pool.h"
26  #include <stdlib.h>  #include <stdlib.h>
27  #include <sys/param.h>  #include <sys/param.h>
28    #include <strings.h>
 #define _POSIX_C_SOURCE 200809L  
29  #include <string.h>  #include <string.h>
30    
31    #define EDITOR_ESC_DISPLAY_STR "\033[32m*\033[m"
32    #define EDITOR_MEM_POOL_LINE_PER_CHUNK 1000
33    #define EDITOR_MEM_POOL_CHUNK_LIMIT (MAX_EDITOR_DATA_LINES / EDITOR_MEM_POOL_LINE_PER_CHUNK + 1)
34    
35    static MEMORY_POOL *p_mp_data_line;
36    static MEMORY_POOL *p_mp_editor_data;
37    
38    int editor_memory_pool_init(void)
39    {
40            if (p_mp_data_line != NULL || p_mp_editor_data != NULL)
41            {
42                    log_error("Editor mem pool already initialized\n");
43                    return -1;
44            }
45    
46            p_mp_data_line = memory_pool_init(MAX_EDITOR_DATA_LINE_LENGTH, EDITOR_MEM_POOL_LINE_PER_CHUNK, EDITOR_MEM_POOL_CHUNK_LIMIT);
47            if (p_mp_data_line == NULL)
48            {
49                    log_error("Memory pool init error\n");
50                    return -2;
51            }
52    
53            p_mp_editor_data = memory_pool_init(sizeof(EDITOR_DATA), 1, 1);
54            if (p_mp_data_line == NULL)
55            {
56                    log_error("Memory pool init error\n");
57                    return -3;
58            }
59    
60            return 0;
61    }
62    
63    void editor_memory_pool_cleanup(void)
64    {
65            if (p_mp_data_line != NULL)
66            {
67                    memory_pool_cleanup(p_mp_data_line);
68                    p_mp_data_line = NULL;
69            }
70    
71            if (p_mp_editor_data != NULL)
72            {
73                    memory_pool_cleanup(p_mp_editor_data);
74                    p_mp_editor_data = NULL;
75            }
76    }
77    
78  EDITOR_DATA *editor_data_load(const char *p_data)  EDITOR_DATA *editor_data_load(const char *p_data)
79  {  {
80          EDITOR_DATA *p_editor_data;          EDITOR_DATA *p_editor_data;
81          long line_offsets[MAX_EDITOR_DATA_LINES];          char *p_data_line = NULL;
82            long line_offsets[MAX_EDITOR_DATA_LINES + 1];
83          long current_data_line_length = 0;          long current_data_line_length = 0;
84          long i, j;          long i;
85    
86          if (p_data == NULL)          if (p_data == NULL)
87          {          {
# Line 39  EDITOR_DATA *editor_data_load(const char Line 89  EDITOR_DATA *editor_data_load(const char
89                  return NULL;                  return NULL;
90          }          }
91    
92          p_editor_data = malloc(sizeof(EDITOR_DATA));          p_editor_data = memory_pool_alloc(p_mp_editor_data);
93          if (p_editor_data == NULL)          if (p_editor_data == NULL)
94          {          {
95                  log_error("malloc(EDITOR_DATA) error: OOM\n");                  log_error("memory_pool_alloc() error\n");
96                  return NULL;                  return NULL;
97          }          }
98    
99          p_editor_data->data_line_total = 0;          p_editor_data->display_line_total = split_data_lines(p_data, SCREEN_COLS, line_offsets, MAX_EDITOR_DATA_LINES + 1, 0);
         p_editor_data->display_line_total = split_data_lines(p_data, SCREEN_COLS, line_offsets, MAX_EDITOR_DATA_LINES);  
100    
101          for (i = 0; i < p_editor_data->display_line_total; i++)          for (i = 0; i < p_editor_data->display_line_total; i++)
102          {          {
# Line 57  EDITOR_DATA *editor_data_load(const char Line 106  EDITOR_DATA *editor_data_load(const char
106                          current_data_line_length + p_editor_data->display_line_lengths[i] + 1 > MAX_EDITOR_DATA_LINE_LENGTH ||                          current_data_line_length + p_editor_data->display_line_lengths[i] + 1 > MAX_EDITOR_DATA_LINE_LENGTH ||
107                          (p_editor_data->display_line_lengths[i - 1] > 0 && p_data[line_offsets[i - 1] + p_editor_data->display_line_lengths[i - 1] - 1] == '\n'))                          (p_editor_data->display_line_lengths[i - 1] > 0 && p_data[line_offsets[i - 1] + p_editor_data->display_line_lengths[i - 1] - 1] == '\n'))
108                  {                  {
                         if (p_editor_data->data_line_total >= MAX_EDITOR_DATA_LINES)  
                         {  
                                 log_error("Append line error, data_line_total(%ld) reach limit(%d)\n", p_editor_data->data_line_total, MAX_EDITOR_DATA_LINES);  
                                 return NULL;  
                         }  
   
109                          // Allocate new data line                          // Allocate new data line
110                          p_editor_data->p_data_lines[p_editor_data->data_line_total] = malloc(MAX_EDITOR_DATA_LINE_LENGTH);                          p_data_line = memory_pool_alloc(p_mp_data_line);
111                          if (p_editor_data->p_data_lines[p_editor_data->data_line_total] == NULL)                          if (p_data_line == NULL)
112                          {                          {
113                                  log_error("malloc(MAX_EDITOR_DATA_LINE_LENGTH * %d) error: OOM\n", i);                                  log_error("memory_pool_alloc() error: i = %d\n", i);
114                                  // Cleanup                                  // Cleanup
115                                  for (j = p_editor_data->data_line_total - 1; j >= 0; j--)                                  editor_data_cleanup(p_editor_data);
                                 {  
                                         free(p_editor_data->p_data_lines[j]);  
                                 }  
                                 free(p_editor_data);  
116                                  return NULL;                                  return NULL;
117                          }                          }
118    
119                          p_editor_data->p_display_lines[i] = p_editor_data->p_data_lines[p_editor_data->data_line_total];                          p_editor_data->p_display_lines[i] = p_data_line;
                         (p_editor_data->data_line_total)++;  
120                          current_data_line_length = 0;                          current_data_line_length = 0;
121                  }                  }
122                  else                  else
# Line 88  EDITOR_DATA *editor_data_load(const char Line 126  EDITOR_DATA *editor_data_load(const char
126    
127                  memcpy(p_editor_data->p_display_lines[i], p_data + line_offsets[i], (size_t)p_editor_data->display_line_lengths[i]);                  memcpy(p_editor_data->p_display_lines[i], p_data + line_offsets[i], (size_t)p_editor_data->display_line_lengths[i]);
128                  current_data_line_length += p_editor_data->display_line_lengths[i];                  current_data_line_length += p_editor_data->display_line_lengths[i];
129                  p_editor_data->p_data_lines[p_editor_data->data_line_total - 1][current_data_line_length] = '\0';  
130                    // Trim \n from last line
131                    if (i + 1 == p_editor_data->display_line_total &&
132                            p_editor_data->display_line_lengths[i] > 0 &&
133                            p_editor_data->p_display_lines[i][p_editor_data->display_line_lengths[i] - 1] == '\n')
134                    {
135                            p_editor_data->display_line_lengths[i]--;
136                            current_data_line_length--;
137                    }
138                    p_data_line[current_data_line_length] = '\0';
139          }          }
140    
141            memset(p_editor_data->p_display_lines + p_editor_data->display_line_total, 0, MAX_EDITOR_DATA_LINES - (size_t)p_editor_data->display_line_total);
142    
143          return p_editor_data;          return p_editor_data;
144  }  }
145    
# Line 125  long editor_data_save(const EDITOR_DATA Line 174  long editor_data_save(const EDITOR_DATA
174    
175  void editor_data_cleanup(EDITOR_DATA *p_editor_data)  void editor_data_cleanup(EDITOR_DATA *p_editor_data)
176  {  {
177            char *p_data_line = NULL;
178          long i;          long i;
179    
180          if (p_editor_data == NULL)          if (p_editor_data == NULL)
# Line 132  void editor_data_cleanup(EDITOR_DATA *p_ Line 182  void editor_data_cleanup(EDITOR_DATA *p_
182                  return;                  return;
183          }          }
184    
185          for (i = p_editor_data->data_line_total - 1; i >= 0; i--)          for (i = 0; i < p_editor_data->display_line_total; i++)
186          {          {
187                  free(p_editor_data->p_data_lines[i]);                  if (p_data_line == NULL)
188                  p_editor_data->p_data_lines[i] = NULL;                  {
189                            p_data_line = p_editor_data->p_display_lines[i];
190                    }
191    
192                    if (p_editor_data->display_line_lengths[i] > 0 &&
193                            p_editor_data->p_display_lines[i][p_editor_data->display_line_lengths[i] - 1] == '\n')
194                    {
195                            memory_pool_free(p_mp_data_line, p_data_line);
196                            p_data_line = NULL;
197                    }
198          }          }
199    
200          free(p_editor_data);          if (p_data_line != NULL)
201            {
202                    memory_pool_free(p_mp_data_line, p_data_line);
203            }
204    
205            memory_pool_free(p_mp_editor_data, p_editor_data);
206  }  }
207    
208  int editor_data_insert(EDITOR_DATA *p_editor_data, long display_line, long offset,  int editor_data_insert(EDITOR_DATA *p_editor_data, long *p_display_line, long *p_offset,
209                                             const char *str, int str_len, long *p_last_updated_line)                                             const char *str, int str_len, long *p_last_updated_line)
210  {  {
211          int len;          long display_line = *p_display_line;
212          int display_len;          long offset = *p_offset;
213          int eol;          char *p_data_line = NULL;
         char *p_data_line;  
214          long len_data_line;          long len_data_line;
215          long offset_data_line;          long offset_data_line;
216          long last_display_line; // of data line          long last_display_line; // of data line
217          char buf_insert[MAX_EDITOR_DATA_LINE_LENGTH];          long line_offsets[MAX_EDITOR_DATA_LINE_LENGTH + 1];
218          long len_insert;          long split_line_total;
219          int display_len_insert;          long i, j;
220          char buf_catenate[MAX_EDITOR_DATA_LINE_LENGTH];          int len;
221          long len_catenate;          int eol;
222          long i;          int display_len;
223    
224          if (p_editor_data == NULL || p_last_updated_line == NULL)          if (p_editor_data == NULL || p_last_updated_line == NULL)
225          {          {
# Line 164  int editor_data_insert(EDITOR_DATA *p_ed Line 227  int editor_data_insert(EDITOR_DATA *p_ed
227                  return -1;                  return -1;
228          }          }
229    
230          memcpy(buf_insert, str, (size_t)str_len);          // Validate str
231          buf_insert[str_len] = '\0';          if ((str_len == 1 && str[0] <= 0) ||
232          len_insert = str_len;                  (str_len == 2 && (str[0] >= 0 || str[1] >= 0)))
233            {
234                    log_error("Invalid input str, len=%d\n", str_len);
235                    return -2;
236            }
237    
238          // Get accurate offset of first character of CJK at offset position          // Get accurate offset of first character of CJK at offset position
239          for (i = 0; i < offset; i++)          for (i = 0; i < offset; i++)
# Line 210  int editor_data_insert(EDITOR_DATA *p_ed Line 277  int editor_data_insert(EDITOR_DATA *p_ed
277          }          }
278    
279          // Split current data line if over-length          // Split current data line if over-length
280          if (len_data_line + str_len + 1 > MAX_EDITOR_DATA_LINE_LENGTH)          if (len_data_line + str_len + 1 > MAX_EDITOR_DATA_LINE_LENGTH || str[0] == CR)
281          {          {
282                  if (p_editor_data->display_line_total >= MAX_EDITOR_DATA_LINES || p_editor_data->data_line_total >= MAX_EDITOR_DATA_LINES)                  if (p_editor_data->display_line_total >= MAX_EDITOR_DATA_LINES)
283                  {                  {
284                          log_error("Split line error, display_line_total(%ld) or data_line_total(%ld) reach limit(%d)\n",                          // log_error("Split line error, display_line_total(%ld) reach limit(%d)\n",
285                                            p_editor_data->display_line_total, p_editor_data->data_line_total, MAX_EDITOR_DATA_LINES);                          //                p_editor_data->display_line_total, MAX_EDITOR_DATA_LINES);
286                          return -2;                          return -2;
287                  }                  }
288    
289                  // Allocate new data line                  // Allocate new data line
290                  p_editor_data->p_data_lines[p_editor_data->data_line_total] = malloc(MAX_EDITOR_DATA_LINE_LENGTH);                  p_data_line = memory_pool_alloc(p_mp_data_line);
291                  if (p_editor_data->p_data_lines[p_editor_data->data_line_total] == NULL)                  if (p_data_line == NULL)
292                  {                  {
293                          log_error("malloc(MAX_EDITOR_DATA_LINE_LENGTH) error: OOM\n");                          log_error("memory_pool_alloc() error\n");
294                          return -2;                          return -2;
295                  }                  }
296    
297                  // Copy rest part of current data line since next display line to new data line                  if (offset_data_line + str_len + 1 >= MAX_EDITOR_DATA_LINE_LENGTH || str[0] == CR)
                 memcpy(p_editor_data->p_data_lines[p_editor_data->data_line_total],  
                            p_editor_data->p_display_lines[display_line + 1],  
                            (size_t)(len_data_line - (p_editor_data->p_display_lines[display_line + 1] - p_data_line)));  
                 p_editor_data->p_data_lines[p_editor_data->data_line_total]  
                                                                    [len_data_line - (p_editor_data->p_display_lines[display_line + 1] - p_data_line)] = '\0';  
   
                 p_data_line = p_editor_data->p_display_lines[display_line + 1];  
                 for (i = display_line + 1; i <= last_display_line; i++)  
298                  {                  {
299                          p_editor_data->p_display_lines[i] +=                          if (str[0] == CR)
300                                  (p_editor_data->p_data_lines[p_editor_data->data_line_total] - p_data_line);                          {
301                  }                                  str_len = 0;
302                            }
303    
304                  // Copy rest part of current display line to buffer                          // Copy str to new data line
305                  if (offset_data_line >= MAX_EDITOR_DATA_LINE_LENGTH / 2)                          memcpy(p_data_line, str, (size_t)str_len);
306                  {  
307                          memcpy(buf_insert + len_insert,                          // Copy rest part of current data line to new data line
308                                     p_editor_data->p_display_lines[display_line] + offset,                          memcpy(p_data_line + str_len,
                                    (size_t)(p_editor_data->display_line_lengths[display_line] - offset));  
                         len_insert += (p_editor_data->display_line_lengths[display_line] - offset);  
                 }  
                 else  
                 {  
                         memcpy(buf_insert,  
309                                     p_editor_data->p_display_lines[display_line] + offset,                                     p_editor_data->p_display_lines[display_line] + offset,
310                                     (size_t)(p_editor_data->display_line_lengths[display_line] - offset));                                     (size_t)(len_data_line - offset_data_line));
311                          len_insert = (p_editor_data->display_line_lengths[display_line] - offset);  
312                  }                          p_data_line[str_len + len_data_line - offset_data_line] = '\0';
                 buf_insert[len_insert] = '\0';  
313    
                 if (offset_data_line >= MAX_EDITOR_DATA_LINE_LENGTH / 2)  
                 {  
314                          // Add line ending to current display line (data line)                          // Add line ending to current display line (data line)
315                          p_editor_data->p_display_lines[display_line][offset] = '\n';                          p_editor_data->p_display_lines[display_line][offset] = '\n';
316                          p_editor_data->p_display_lines[display_line][offset + 1] = '\0';                          p_editor_data->p_display_lines[display_line][offset + 1] = '\0';
317                          p_editor_data->display_line_lengths[display_line] = offset + 1;                          p_editor_data->display_line_lengths[display_line] = offset + 1;
318    
319                            *p_display_line = display_line + 1;
320                            *p_offset = str_len;
321                  }                  }
322                  else                  else
323                  {                  {
324                            // Copy rest part of current data line to new data line
325                            memcpy(p_data_line,
326                                       p_editor_data->p_display_lines[display_line] + offset,
327                                       (size_t)(len_data_line - offset_data_line));
328    
329                            p_data_line[len_data_line - offset_data_line] = '\0';
330    
331                            // Append str to current display line
332                          memcpy(p_editor_data->p_display_lines[display_line] + offset, str, (size_t)str_len);                          memcpy(p_editor_data->p_display_lines[display_line] + offset, str, (size_t)str_len);
333    
334                          // Add line ending to current display line (data line)                          // Add line ending to current display line (data line)
335                          p_editor_data->p_display_lines[display_line][offset + str_len] = '\n';                          p_editor_data->p_display_lines[display_line][offset + str_len] = '\n';
336                          p_editor_data->p_display_lines[display_line][offset + str_len + 1] = '\0';                          p_editor_data->p_display_lines[display_line][offset + str_len + 1] = '\0';
337                          p_editor_data->display_line_lengths[display_line] = offset + str_len + 1;                          p_editor_data->display_line_lengths[display_line] = offset + str_len + 1;
338    
339                            *p_display_line = display_line;
340                            *p_offset = offset + str_len;
341                  }                  }
342    
343                    split_line_total = last_display_line - display_line + 3;
344    
345                    // Set start display_line for spliting new data line
346                  display_line++;                  display_line++;
                 offset = 0;  
347    
348                  *p_last_updated_line = p_editor_data->display_line_total;                  *p_last_updated_line = p_editor_data->display_line_total;
349            }
350            else // insert str into current data line at offset_data_line
351            {
352                    memmove(p_data_line + offset_data_line + str_len, p_data_line + offset_data_line, (size_t)(len_data_line - offset_data_line));
353                    memcpy(p_data_line + offset_data_line, str, (size_t)str_len);
354                    p_data_line[len_data_line + str_len] = '\0';
355    
356                    // Set p_data_line to head of current display line
357                    p_data_line = p_editor_data->p_display_lines[display_line];
358                    split_line_total = last_display_line - display_line + 3;
359    
360                  last_display_line++;                  *p_display_line = display_line;
361                  (p_editor_data->display_line_total)++;                  *p_offset = offset + str_len;
                 (p_editor_data->data_line_total)++;  
362          }          }
363    
364          for (i = display_line; len_insert > 0 && i <= last_display_line; i++)          // Split current data line since beginning of current display line
365            split_line_total = split_data_lines(p_data_line, SCREEN_COLS, line_offsets, split_line_total, 0);
366    
367            for (i = 0; i < split_line_total; i++)
368          {          {
369                  len = split_line(buf_insert, SCREEN_COLS, &eol, &display_len_insert);                  if (display_line + i > last_display_line)
                 if (len != len_insert)  
370                  {                  {
371                          log_error("buf_insert is truncated at display_line(%ld): len(%d) != len_insert(%d), buf_insert: %s\n",                          // Insert blank display line after last_display_line
372                                            i, len, len_insert, buf_insert);                          if (p_editor_data->display_line_total >= MAX_EDITOR_DATA_LINES)
373                          return -3;                          {
374                                    // log_error("display_line_total over limit %d >= %d\n", p_editor_data->display_line_total, MAX_EDITOR_DATA_LINES);
375                                    // Terminate prior display line with \n, to avoid error on cleanup
376                                    if (display_line + i - 1 >= 0 && p_editor_data->display_line_lengths[display_line + i - 1] > 0)
377                                    {
378                                            len = split_line(p_editor_data->p_display_lines[display_line + i - 1], SCREEN_COLS - 1, &eol, &display_len, 0);
379                                            p_editor_data->p_display_lines[display_line + i - 1][len] = '\n';
380                                            p_editor_data->p_display_lines[display_line + i - 1][len + 1] = '\0';
381                                            p_editor_data->display_line_lengths[display_line + i - 1] = len + 1;
382                                    }
383                                    if (*p_offset >= p_editor_data->display_line_lengths[*p_display_line])
384                                    {
385                                            *p_offset = p_editor_data->display_line_lengths[*p_display_line] - 1;
386                                    }
387                                    break;
388                            }
389                            for (j = p_editor_data->display_line_total; j > last_display_line + 1; j--)
390                            {
391                                    p_editor_data->p_display_lines[j] = p_editor_data->p_display_lines[j - 1];
392                                    p_editor_data->display_line_lengths[j] = p_editor_data->display_line_lengths[j - 1];
393                            }
394                            last_display_line++;
395                            (p_editor_data->display_line_total)++;
396                  }                  }
397    
398                  memcpy(buf_catenate, p_editor_data->p_display_lines[i], (size_t)p_editor_data->display_line_lengths[i]);                  p_editor_data->display_line_lengths[display_line + i] = line_offsets[i + 1] - line_offsets[i];
399                  buf_catenate[p_editor_data->display_line_lengths[i]] = '\0';                  p_editor_data->p_display_lines[display_line + i] =
400                            (i == 0
401                                     ? p_data_line
402                                     : (p_editor_data->p_display_lines[display_line + i - 1] + p_editor_data->display_line_lengths[display_line + i - 1]));
403    
404                    if (p_editor_data->display_line_lengths[display_line + i] > 0 &&
405                            p_editor_data->p_display_lines[display_line + i][p_editor_data->display_line_lengths[display_line + i] - 1] == '\n')
406                    {
407                            break;
408                    }
409            }
410    
411            *p_last_updated_line = MAX(display_line + MIN(i, split_line_total - 1), *p_last_updated_line);
412    
413            if (*p_offset >= p_editor_data->display_line_lengths[*p_display_line])
414            {
415                    if (*p_display_line + 1 < p_editor_data->display_line_total)
416                    {
417                            *p_offset -= p_editor_data->display_line_lengths[*p_display_line];
418                            (*p_display_line)++;
419                    }
420            }
421    
422            // Prevent the last display line from being over-length
423            if (p_editor_data->display_line_total == MAX_EDITOR_DATA_LINES)
424            {
425                    len = split_line(p_editor_data->p_display_lines[p_editor_data->display_line_total - 1], SCREEN_COLS - 1, &eol, &display_len, 0);
426                    p_editor_data->p_display_lines[p_editor_data->display_line_total - 1][len] = '\0';
427                    p_editor_data->display_line_lengths[p_editor_data->display_line_total - 1] = len;
428                    if (*p_display_line + 1 >= p_editor_data->display_line_total)
429                    {
430                            *p_offset = MIN(*p_offset, len);
431                            *p_display_line = p_editor_data->display_line_total - 1;
432                    }
433            }
434    
435            return 0;
436    }
437    
438    int editor_data_delete(EDITOR_DATA *p_editor_data, long *p_display_line, long *p_offset,
439                                               long *p_last_updated_line)
440    {
441            long display_line = *p_display_line;
442            long offset = *p_offset;
443            char *p_data_line = NULL;
444            long len_data_line;
445            long offset_data_line;
446            long last_display_line; // of data line
447            long line_offsets[MAX_EDITOR_DATA_LINE_LENGTH + 1];
448            long split_line_total;
449            long i, j;
450            int str_len = 0;
451    
452                  len = split_line(buf_catenate, SCREEN_COLS - display_len_insert, &eol, &display_len);          if (p_editor_data == NULL || p_last_updated_line == NULL)
453                  if (len < offset) // have no space to insert          {
454                    log_error("editor_data_op() error: NULL pointer\n");
455                    return -1;
456            }
457    
458            // Get accurate offset of first character of CJK at offset position
459            for (i = 0; i < offset; i++)
460            {
461                    if (p_editor_data->p_display_lines[display_line][i] < 0) // GBK
462                  {                  {
463                          offset = 0;                          i++;
                         continue; // retry at next display line  
464                  }                  }
465            }
466            if (i > offset) // offset was skipped
467            {
468                    offset--;
469            }
470    
471                  // move \n to next display line if current line is full          // Get length of current data line
472                  if (len > 0 && buf_catenate[len - 1] == '\n' && display_len + display_len_insert >= SCREEN_COLS)          len_data_line = 0;
473            p_data_line = p_editor_data->p_display_lines[display_line];
474            for (i = display_line - 1; i >= 0; i--)
475            {
476                    if (p_editor_data->display_line_lengths[i] > 0 &&
477                            p_editor_data->p_display_lines[i][p_editor_data->display_line_lengths[i] - 1] == '\n') // reach end of prior data line
478                  {                  {
479                          len--;                          break;
480                  }                  }
481    
482                  memcpy(buf_catenate, p_editor_data->p_display_lines[i], (size_t)offset);                  len_data_line += p_editor_data->display_line_lengths[i];
483                  memcpy(buf_catenate + offset, buf_insert, (size_t)len_insert);                  p_data_line = p_editor_data->p_display_lines[i];
484                  memcpy(buf_catenate + offset + len_insert, p_editor_data->p_display_lines[i] + offset, (size_t)(len - offset));          }
485                  len_catenate = len_insert + len;          offset_data_line = len_data_line + offset;
486                  buf_catenate[len_catenate] = '\0';          last_display_line = p_editor_data->display_line_total - 1;
487            for (i = display_line; i < p_editor_data->display_line_total; i++)
488            {
489                    len_data_line += p_editor_data->display_line_lengths[i];
490    
491                  offset = 0;                  if (p_editor_data->display_line_lengths[i] > 0 &&
492                  len_insert = p_editor_data->display_line_lengths[i] - len;                          p_editor_data->p_display_lines[i][p_editor_data->display_line_lengths[i] - 1] == '\n') // reach end of current data line
                 if (len_insert > 0)  
493                  {                  {
494                          memcpy(buf_insert, p_editor_data->p_display_lines[i] + len, (size_t)len_insert);                          last_display_line = i;
495                          buf_insert[len_insert] = '\0';                          break;
496                  }                  }
497            }
498    
499                  memcpy(p_editor_data->p_display_lines[i], buf_catenate, (size_t)len_catenate);          if (offset_data_line >= len_data_line) // end-of-line
500                  p_editor_data->display_line_lengths[i] = len_catenate;          {
501                    return 0;
502          }          }
503    
504          *p_last_updated_line = MAX(i, *p_last_updated_line);          // Check str to be deleted
505            if (p_data_line[offset_data_line] > 0 && p_data_line[offset_data_line] < 127)
506            {
507                    str_len = 1;
508            }
509            else if (p_data_line[offset_data_line + 1] < 0) // GBK
510            {
511                    str_len = 2;
512            }
513            else
514            {
515                    log_error("Some strange character at display_line %ld, offset %ld: %d %d\n",
516                                      display_line, offset, p_data_line[offset_data_line], p_data_line[offset_data_line + 1]);
517                    str_len = 1;
518            }
519    
520          if (len_insert > 0)          // Current display line is (almost) empty
521            if (offset_data_line + str_len > len_data_line ||
522                    (offset_data_line + str_len == len_data_line && p_data_line[offset_data_line] == '\n'))
523          {          {
524                  if (p_editor_data->display_line_total >= MAX_EDITOR_DATA_LINES)                  if (display_line + 1 >= p_editor_data->display_line_total) // No additional display line (data line)
525                  {                  {
526                          log_error("Append line error, display_line_total(%ld) reach limit(%d)\n",                          return 0;
                                           p_editor_data->display_line_total, MAX_EDITOR_DATA_LINES);  
                         return -2;  
527                  }                  }
528    
529                  // Prepare one blank display line after last_display_line                  len_data_line = 0; // Next data line
530                  for (i = p_editor_data->display_line_total; i > last_display_line + 1; i--)                  last_display_line = p_editor_data->display_line_total - 1;
531                    for (i = display_line + 1; i < p_editor_data->display_line_total; i++)
532                  {                  {
533                          p_editor_data->p_display_lines[i] = p_editor_data->p_display_lines[i - 1];                          len_data_line += p_editor_data->display_line_lengths[i];
534                          p_editor_data->display_line_lengths[i] = p_editor_data->display_line_lengths[i - 1];  
535                            if (p_editor_data->display_line_lengths[i] > 0 &&
536                                    p_editor_data->p_display_lines[i][p_editor_data->display_line_lengths[i] - 1] == '\n') // reach end of current data line
537                            {
538                                    last_display_line = i;
539                                    break;
540                            }
541                  }                  }
                 p_editor_data->p_display_lines[last_display_line + 1] =  
                         p_editor_data->p_display_lines[last_display_line] + p_editor_data->display_line_lengths[last_display_line];  
                 p_editor_data->display_line_lengths[last_display_line + 1] = 0;  
542    
543                  (p_editor_data->display_line_total)++;                  if (offset_data_line + len_data_line + 1 > MAX_EDITOR_DATA_LINE_LENGTH) // No enough buffer to merge current data line with next data line
544                  last_display_line++;                  {
545                            return 0;
546                    }
547    
548                  // Fill data into blank display line                  // Append next data line to current one
549                  memcpy(p_editor_data->p_display_lines[last_display_line], buf_insert, (size_t)len_insert);                  memcpy(p_data_line + offset_data_line, p_editor_data->p_display_lines[display_line + 1], (size_t)len_data_line);
550                  p_editor_data->p_display_lines[last_display_line][len_insert] = '\0';                  p_data_line[offset_data_line + len_data_line] = '\0';
                 p_editor_data->display_line_lengths[last_display_line] = len_insert;  
551    
552                  *p_last_updated_line = MAX(last_display_line, *p_last_updated_line);                  // Recycle next data line
553                    memory_pool_free(p_mp_data_line, p_editor_data->p_display_lines[display_line + 1]);
554            }
555            else
556            {
557                    memmove(p_data_line + offset_data_line, p_data_line + offset_data_line + str_len, (size_t)(len_data_line - offset_data_line - str_len));
558                    p_data_line[len_data_line - str_len] = '\0';
559                    len_data_line -= str_len;
560          }          }
561    
562          return 0;          // Set p_data_line to head of current display line
563  }          p_data_line = p_editor_data->p_display_lines[display_line];
564            split_line_total = last_display_line - display_line + 2;
565    
566  int editor_data_delete(EDITOR_DATA *p_editor_data, long display_line, long offset,          // Split current data line since beginning of current display line
567                                             long *p_last_updated_line)          split_line_total = split_data_lines(p_data_line, SCREEN_COLS, line_offsets, split_line_total, 0);
568  {  
569          return 0;          for (i = 0; i < split_line_total; i++)
570            {
571                    p_editor_data->display_line_lengths[display_line + i] = line_offsets[i + 1] - line_offsets[i];
572                    p_editor_data->p_display_lines[display_line + i] =
573                            (i == 0
574                                     ? p_data_line
575                                     : (p_editor_data->p_display_lines[display_line + i - 1] + p_editor_data->display_line_lengths[display_line + i - 1]));
576    
577                    if (p_editor_data->display_line_lengths[display_line + i] > 0 &&
578                            p_editor_data->p_display_lines[display_line + i][p_editor_data->display_line_lengths[display_line + i] - 1] == '\n')
579                    {
580                            break;
581                    }
582            }
583    
584            *p_last_updated_line = display_line + MIN(i, split_line_total - 1);
585    
586            if (*p_last_updated_line < last_display_line)
587            {
588                    // Remove redundant display line after last_display_line
589                    for (j = last_display_line + 1; j < p_editor_data->display_line_total; j++)
590                    {
591                            p_editor_data->p_display_lines[j - (last_display_line - *p_last_updated_line)] = p_editor_data->p_display_lines[j];
592                            p_editor_data->display_line_lengths[j - (last_display_line - *p_last_updated_line)] = p_editor_data->display_line_lengths[j];
593                    }
594    
595                    j = p_editor_data->display_line_total;
596                    (p_editor_data->display_line_total) -= (last_display_line - *p_last_updated_line);
597                    *p_last_updated_line = MAX(j - 1, *p_last_updated_line);
598            }
599    
600            // Return real offset
601            *p_offset = offset;
602    
603            return str_len;
604  }  }
605    
606  static int editor_display_key_handler(int *p_key, EDITOR_CTX *p_ctx)  static int editor_display_key_handler(int *p_key, EDITOR_CTX *p_ctx)
# Line 376  static int editor_display_key_handler(in Line 609  static int editor_display_key_handler(in
609          {          {
610          case 0: // Set msg          case 0: // Set msg
611                  snprintf(p_ctx->msg, sizeof(p_ctx->msg),                  snprintf(p_ctx->msg, sizeof(p_ctx->msg),
612                                   "| Í˳ö[\033[32mCtrl-C\033[33m] | °ïÖú[\033[32mh\033[33m] |");                                   "| Í˳ö[\033[32mCtrl-W\033[33m] |");
613                    break;
614            case KEY_CSI:
615                    *p_key = KEY_ESC;
616                  break;                  break;
617          }          }
618    
# Line 389  int editor_display(EDITOR_DATA *p_editor Line 625  int editor_display(EDITOR_DATA *p_editor
625          char buffer[MAX_EDITOR_DATA_LINE_LENGTH];          char buffer[MAX_EDITOR_DATA_LINE_LENGTH];
626          EDITOR_CTX ctx;          EDITOR_CTX ctx;
627          int ch = 0;          int ch = 0;
628          char hz_ch[4];          char input_str[4];
629          int hz_len;          int str_len = 0;
630          int input_ok, screen_current_line;          int input_ok;
631          const int screen_begin_line = 1;          const int screen_begin_row = 1;
632          int screen_end_line = SCREEN_ROWS - 1;          const int screen_row_total = SCREEN_ROWS - screen_begin_row;
633          const int screen_line_total = screen_end_line - screen_begin_line + 1;          int output_current_row = screen_begin_row;
634            int output_end_row = SCREEN_ROWS - 1;
635          long int line_current = 0;          long int line_current = 0;
636          long int len;          long int len;
637          int loop;          int loop;
638          int eol, display_len;          int eol, display_len;
639          long row_pos = 1, col_pos = 1;          long row_pos = 1, col_pos = 1;
640            long display_line_in, offset_in;
641            long display_line_out, offset_out;
642            int scroll_rows;
643          long last_updated_line = 0;          long last_updated_line = 0;
644          int insert = 1;          int key_insert = 1;
645            int i, j;
646            char *p_str;
647    
648          screen_current_line = screen_begin_line;          clrline(output_current_row, SCREEN_ROWS);
         clrline(screen_begin_line, SCREEN_ROWS);  
649    
650          // update msg_ext with extended key handler          // update msg_ext with extended key handler
651          if (editor_display_key_handler(&ch, &ctx) != 0)          if (editor_display_key_handler(&ch, &ctx) != 0)
# Line 415  int editor_display(EDITOR_DATA *p_editor Line 656  int editor_display(EDITOR_DATA *p_editor
656          loop = 1;          loop = 1;
657          while (!SYS_server_exit && loop)          while (!SYS_server_exit && loop)
658          {          {
659                  if (line_current >= p_editor_data->display_line_total || screen_current_line > screen_end_line)                  if (line_current >= p_editor_data->display_line_total || output_current_row > output_end_row)
660                  {                  {
661                          ctx.line_cursor = line_current - screen_current_line + row_pos + 1;                          ctx.line_cursor = line_current - output_current_row + row_pos + 1;
662    
663                          snprintf(buffer, sizeof(buffer),                          snprintf(buffer, sizeof(buffer),
664                                           "\033[1;44;33m[\033[32m%ld\033[33m;\033[32m%ld\033[33m] "                                           "\033[1;44;33m[\033[32m%ld\033[33m;\033[32m%ld\033[33m] "
665                                           "µÚ\033[32m%ld\033[33m/\033[32m%ld\033[33mÐÐ "                                           "µÚ\033[32m%ld\033[33m/\033[32m%ld\033[33mÐÐ [\033[32m%s\033[33m] "
666                                           "%s",                                           "%s",
667                                           row_pos, col_pos,                                           row_pos, col_pos,
668                                           ctx.line_cursor, p_editor_data->display_line_total,                                           ctx.line_cursor, p_editor_data->display_line_total,
669                                             key_insert ? "²åÈë" : "Ìæ»»",
670                                           ctx.msg);                                           ctx.msg);
671    
672                          len = split_line(buffer, SCREEN_COLS, &eol, &display_len);                          len = split_line(buffer, SCREEN_COLS, &eol, &display_len, 1);
673                          for (; display_len < SCREEN_COLS; display_len++)                          for (; display_len < SCREEN_COLS; display_len++)
674                          {                          {
675                                  buffer[len++] = ' ';                                  buffer[len++] = ' ';
# Line 441  int editor_display(EDITOR_DATA *p_editor Line 683  int editor_display(EDITOR_DATA *p_editor
683                          moveto((int)row_pos, (int)col_pos);                          moveto((int)row_pos, (int)col_pos);
684                          iflush();                          iflush();
685    
686                            str_len = 0;
687                          input_ok = 0;                          input_ok = 0;
688                            ch = igetch_t(MAX_DELAY_TIME);
689                          while (!SYS_server_exit && !input_ok)                          while (!SYS_server_exit && !input_ok)
690                          {                          {
                                 ch = igetch_t(MAX_DELAY_TIME);  
                                 input_ok = 1;  
   
691                                  // extended key handler                                  // extended key handler
692                                  if (editor_display_key_handler(&ch, &ctx) != 0)                                  if (editor_display_key_handler(&ch, &ctx) != 0)
693                                  {                                  {
694                                          goto cleanup;                                          goto cleanup;
695                                  }                                  }
696    
697                                  if (ch >= 32 && ch < 127) // printable character                                  if (ch > 127 && ch <= 255) // GBK
698                                    {
699                                            input_str[str_len] = (char)(ch - 256);
700                                            str_len++;
701                                    }
702                                    else if (str_len > 0)
703                                  {                                  {
704                                            log_error("Received %d character over 127 followed by character less than 127\n", str_len);
705                                            str_len = 0;
706                                    }
707    
708                                    if ((ch >= 32 && ch < 127) || (ch > 127 && ch <= 255 && str_len == 2) || // Printable character or GBK
709                                            ch == CR || ch == KEY_ESC)                                                                                       // Special character
710                                    {
711                                            BBS_last_access_tm = time(NULL);
712    
713                                            if (str_len == 0) // ch >= 32 && ch < 127
714                                            {
715                                                    input_str[0] = (char)ch;
716                                                    str_len = 1;
717                                            }
718    
719                                          last_updated_line = line_current;                                          last_updated_line = line_current;
720                                            display_line_in = line_current - output_current_row + row_pos;
721                                            offset_in = col_pos - 1;
722                                            display_line_out = display_line_in;
723                                            offset_out = offset_in;
724    
725                                          if (editor_data_insert(p_editor_data, line_current - screen_current_line + row_pos, col_pos - 1,                                          if (!key_insert) // overwrite
                                                                                    (const char *)&ch, 1, &last_updated_line) < 0)  
726                                          {                                          {
727                                                  log_error("editor_data_op(INSERT ch) error\n");                                                  if (editor_data_delete(p_editor_data, &display_line_out, &offset_out,
728                                                                                               &last_updated_line) < 0)
729                                                    {
730                                                            log_error("editor_data_delete() error\n");
731                                                    }
732                                            }
733    
734                                            if (editor_data_insert(p_editor_data, &display_line_out, &offset_out,
735                                                                                       input_str, str_len, &last_updated_line) < 0)
736                                            {
737                                                    log_error("editor_data_insert(str_len=%d) error\n", str_len);
738                                          }                                          }
739                                          else                                          else
740                                          {                                          {
741                                                  screen_end_line = MIN(SCREEN_ROWS - 1, screen_current_line + (int)(last_updated_line - line_current));                                                  output_end_row = MIN(SCREEN_ROWS - 1, output_current_row + (int)(last_updated_line - line_current));
742                                                  line_current -= (screen_current_line - row_pos);                                                  line_current -= (output_current_row - row_pos);
743                                                  screen_current_line = (int)row_pos;                                                  output_current_row = (int)row_pos;
744    
745                                                  col_pos++;                                                  scroll_rows = MAX(0, (int)(display_line_out - display_line_in) - (output_end_row - output_current_row));
746                                                  if (col_pos <= p_editor_data->display_line_lengths[line_current - screen_current_line + row_pos])  
747                                                    if (scroll_rows > 0)
748                                                  {                                                  {
749                                                          continue;                                                          moveto(SCREEN_ROWS, 0);
750                                                            clrtoeol();
751                                                            for (i = 0; i < scroll_rows; i++)
752                                                            {
753                                                                    prints("\033[S"); // Scroll up 1 line
754                                                            }
755    
756                                                            output_current_row -= scroll_rows;
757                                                            if (output_current_row < screen_begin_row)
758                                                            {
759                                                                    line_current += (screen_begin_row - output_current_row);
760                                                                    output_current_row = screen_begin_row;
761                                                            }
762                                                            row_pos = output_end_row;
763                                                  }                                                  }
764                                                  col_pos = 1;                                                  else // if (scroll_lines == 0)
765                                                  ch = KEY_DOWN;                                                  {
766                                                            row_pos += (display_line_out - display_line_in);
767                                                    }
768                                                    col_pos = offset_out + 1; // Set col_pos to accurate pos
769                                            }
770    
771                                            if (display_line_out != display_line_in) // Output on line change
772                                            {
773                                                    break;
774                                            }
775    
776                                            ch = igetch(0);
777                                            if (ch == KEY_NULL || ch == KEY_TIMEOUT) // Output if no futher input
778                                            {
779                                                    break;
780                                          }                                          }
781    
782                                            str_len = 0;
783                                            continue;
784                                  }                                  }
785                                  else if (ch > 127 && ch <= 255) // CJK character                                  else if (ch == KEY_DEL || ch == BACKSPACE) // Del
786                                  {                                  {
787                                          hz_ch[hz_len] = (char)(ch - 256);                                          BBS_last_access_tm = time(NULL);
                                         hz_len++;  
788    
789                                          if (hz_len == 2) // GBK                                          if (ch == BACKSPACE)
790                                          {                                          {
791                                                  hz_len = 0;                                                  if (line_current - output_current_row + row_pos <= 0 && col_pos <= 1) // Forbidden
                                                 last_updated_line = line_current;  
   
                                                 if (editor_data_insert(p_editor_data, line_current - screen_current_line + row_pos, col_pos - 1,  
                                                                                            hz_ch, 2, &last_updated_line) < 0)  
792                                                  {                                                  {
793                                                          log_error("editor_data_op(INSERT hz) error\n");                                                          ch = igetch_t(MAX_DELAY_TIME);
794                                                            continue;
795                                                  }                                                  }
796                                                  else  
797                                                    col_pos--;
798                                                    if (col_pos > 1 &&
799                                                            p_editor_data->p_display_lines[line_current - output_current_row + row_pos][col_pos - 1] < 0) // GBK
800                                                  {                                                  {
801                                                          screen_end_line = MIN(SCREEN_ROWS - 1, screen_current_line + (int)(last_updated_line - line_current));                                                          col_pos--;
802                                                          line_current -= (screen_current_line - row_pos);                                                  }
                                                         screen_current_line = (int)row_pos;  
803    
804                                                          col_pos += 2;                                                  if (col_pos < 1 && line_current - output_current_row + row_pos >= 0)
805                                                          if (col_pos <= p_editor_data->display_line_lengths[line_current - screen_current_line + row_pos])                                                  {
806                                                          {                                                          row_pos--;
807                                                                  continue;                                                          col_pos = MAX(1, p_editor_data->display_line_lengths[line_current - output_current_row + row_pos]);
                                                         }  
                                                         col_pos = 1;  
                                                         ch = KEY_DOWN;  
808                                                  }                                                  }
809                                          }                                          }
                                 }  
                                 else if (ch == KEY_DEL) // Del  
                                 {  
                                         last_updated_line = line_current;  
810    
811                                          if (editor_data_delete(p_editor_data, line_current - screen_current_line + row_pos, col_pos - 1,                                          display_line_in = line_current - output_current_row + row_pos;
812                                                                                     &last_updated_line) < 0)                                          offset_in = col_pos - 1;
813                                            display_line_out = display_line_in;
814                                            offset_out = offset_in;
815    
816                                            if ((str_len = editor_data_delete(p_editor_data, &display_line_out, &offset_out,
817                                                                                                              &last_updated_line)) < 0)
818                                          {                                          {
819                                                  log_error("editor_data_op(DELETE) error\n");                                                  log_error("editor_data_delete() error\n");
820                                          }                                          }
821                                          else                                          else
822                                          {                                          {
823                                                  screen_end_line = MIN(SCREEN_ROWS - 1, screen_current_line + (int)(last_updated_line - line_current));                                                  col_pos = offset_out + 1; // Set col_pos to accurate pos
824    
825                                                    output_end_row = MIN(SCREEN_ROWS - 1, output_current_row + (int)(last_updated_line - line_current));
826                                                    line_current -= (output_current_row - row_pos);
827                                                    output_current_row = (int)row_pos;
828    
829                                                    if (output_current_row < screen_begin_row) // row_pos <= 0
830                                                    {
831                                                            output_current_row = screen_begin_row;
832                                                            row_pos = screen_begin_row;
833                                                            output_end_row = SCREEN_ROWS - 1;
834                                                    }
835    
836                                                    // Exceed end
837                                                    if (line_current + (screen_row_total - output_current_row) >= p_editor_data->display_line_total &&
838                                                            p_editor_data->display_line_total > screen_row_total)
839                                                    {
840                                                            scroll_rows = (int)((line_current - (output_current_row - screen_begin_row)) -
841                                                                                                    (p_editor_data->display_line_total - screen_row_total));
842    
843                                                            line_current = p_editor_data->display_line_total - screen_row_total;
844                                                            row_pos += scroll_rows;
845                                                            output_current_row = screen_begin_row;
846                                                            output_end_row = SCREEN_ROWS - 1;
847                                                    }
848    
849                                                    clrline(output_current_row, output_end_row);
850                                            }
851    
852                                            if (display_line_out != display_line_in) // Output on line change
853                                            {
854                                                    break;
855                                            }
856    
857                                            ch = igetch(0);
858                                            if (ch == KEY_NULL || ch == KEY_TIMEOUT) // Output if no futher input
859                                            {
860                                                    break;
861                                          }                                          }
862    
863                                            str_len = 0;
864                                          continue;                                          continue;
865                                  }                                  }
866    
867                                  hz_len = 0;                                  input_ok = 1;
   
868                                  switch (ch)                                  switch (ch)
869                                  {                                  {
870                                  case KEY_NULL:                                  case KEY_NULL:
871                                  case KEY_TIMEOUT:                                  case KEY_TIMEOUT:
872                                          goto cleanup;                                          goto cleanup;
873                                  case Ctrl('C'):                                  case Ctrl('W'):
874                                          loop = 0;                                          loop = 0;
875                                          break;                                          break;
876                                    case Ctrl('S'): // Start of line
877                                  case KEY_CTRL_LEFT:                                  case KEY_CTRL_LEFT:
878                                          col_pos = 1;                                          col_pos = 1;
879                                          break;                                          break;
880                                    case Ctrl('E'): // End of line
881                                  case KEY_CTRL_RIGHT:                                  case KEY_CTRL_RIGHT:
882                                          col_pos = MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_line + row_pos]);                                          if (line_current - output_current_row + row_pos == p_editor_data->display_line_total - 1) // row_pos at end line
883                                            {
884                                                    // last display line does NOT have \n in the end
885                                                    col_pos = p_editor_data->display_line_lengths[line_current - output_current_row + row_pos] + 1;
886                                                    break;
887                                            }
888                                            col_pos = MAX(1, p_editor_data->display_line_lengths[line_current - output_current_row + row_pos]);
889                                          break;                                          break;
890                                    case Ctrl('T'): // Top of screen
891                                  case KEY_CTRL_UP:                                  case KEY_CTRL_UP:
892                                          row_pos = screen_begin_line;                                          row_pos = screen_begin_row;
893                                          col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_line + row_pos]));                                          col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - output_current_row + row_pos]));
894                                          break;                                          break;
895                                    case Ctrl('B'): // Bottom of screen
896                                  case KEY_CTRL_DOWN:                                  case KEY_CTRL_DOWN:
897                                          row_pos = SCREEN_ROWS - 1;                                          if (p_editor_data->display_line_total < screen_row_total)
898                                          col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_line + row_pos]));                                          {
899                                                    row_pos = p_editor_data->display_line_total;
900                                            }
901                                            else
902                                            {
903                                                    row_pos = SCREEN_ROWS - 1;
904                                            }
905                                            if (line_current + (screen_row_total - (output_current_row - screen_begin_row)) >= p_editor_data->display_line_total) // Reach end
906                                            {
907                                                    // last display line does NOT have \n in the end
908                                                    col_pos = MIN(col_pos, p_editor_data->display_line_lengths[line_current - output_current_row + row_pos] + 1);
909                                            }
910                                            else
911                                            {
912                                                    col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - output_current_row + row_pos]));
913                                            }
914                                          break;                                          break;
915                                  case KEY_INS:                                  case KEY_INS:
916                                          insert = !insert;                                          key_insert = !key_insert;
917                                          break;                                          break;
918                                  case KEY_HOME:                                  case KEY_HOME:
919                                          row_pos = 1;                                          row_pos = 1;
920                                          col_pos = 1;                                          col_pos = 1;
921                                          if (line_current - screen_current_line < 0) // Reach begin                                          if (line_current - output_current_row < 0) // Reach begin
922                                          {                                          {
923                                                  break;                                                  break;
924                                          }                                          }
925                                          line_current = 0;                                          line_current = 0;
926                                          screen_current_line = screen_begin_line;                                          output_current_row = screen_begin_row;
927                                          screen_end_line = SCREEN_ROWS - 1;                                          output_end_row = SCREEN_ROWS - 1;
928                                          clrline(screen_begin_line, SCREEN_ROWS);                                          clrline(output_current_row, SCREEN_ROWS);
929                                          break;                                          break;
930                                  case KEY_END:                                  case KEY_END:
931                                          if (p_editor_data->display_line_total < screen_line_total)                                          if (p_editor_data->display_line_total < screen_row_total)
932                                          {                                          {
933                                                  row_pos = p_editor_data->display_line_total;                                                  row_pos = p_editor_data->display_line_total;
934                                                  col_pos = MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_line + row_pos]);                                                  col_pos = p_editor_data->display_line_lengths[line_current - output_current_row + row_pos] + 1;
935                                                  break;                                                  break;
936                                          }                                          }
937                                          line_current = p_editor_data->display_line_total - screen_line_total;                                          line_current = p_editor_data->display_line_total - screen_row_total;
938                                          screen_current_line = screen_begin_line;                                          output_current_row = screen_begin_row;
939                                          screen_end_line = SCREEN_ROWS - 1;                                          output_end_row = SCREEN_ROWS - 1;
940                                          row_pos = screen_line_total;                                          row_pos = SCREEN_ROWS - 1;
941                                          col_pos = MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_line + row_pos]);                                          col_pos = p_editor_data->display_line_lengths[line_current - output_current_row + row_pos] + 1;
942                                          clrline(screen_begin_line, SCREEN_ROWS);                                          clrline(output_current_row, SCREEN_ROWS);
943                                          break;                                          break;
944                                  case KEY_LEFT:                                  case KEY_LEFT:
945                                          if (col_pos > 1)                                          if (col_pos > 1)
946                                          {                                          {
947                                                  col_pos--;                                                  col_pos--;
948                                                    if (col_pos > 1 &&
949                                                            p_editor_data->p_display_lines[line_current - output_current_row + row_pos][col_pos - 1] < 0 &&
950                                                            p_editor_data->p_display_lines[line_current - output_current_row + row_pos][col_pos - 2] < 0) // GBK
951                                                    {
952                                                            col_pos--;
953                                                    }
954                                                  break;                                                  break;
955                                          }                                          }
956                                          col_pos = SCREEN_COLS; // continue to KEY_UP                                          col_pos = SCREEN_COLS; // continue to KEY_UP
957                                  case KEY_UP:                                  case KEY_UP:
958                                          if (row_pos > screen_begin_line)                                          if (row_pos > screen_begin_row)
959                                          {                                          {
960                                                  row_pos--;                                                  row_pos--;
961                                                  col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_line + row_pos]));                                                  col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - output_current_row + row_pos]));
962                                                  break;                                                  break;
963                                          }                                          }
964                                          if (line_current - screen_current_line < 0) // Reach begin                                          if (line_current - output_current_row < 0) // Reach begin
965                                          {                                          {
966                                                  col_pos = 1;                                                  col_pos = 1;
967                                                  break;                                                  break;
968                                          }                                          }
969                                          line_current -= screen_current_line;                                          line_current -= output_current_row;
970                                          screen_current_line = screen_begin_line;                                          output_current_row = screen_begin_row;
971                                          // screen_end_line = begin_line;                                          // screen_end_line = begin_line;
972                                          // prints("\033[T"); // Scroll down 1 line                                          // prints("\033[T"); // Scroll down 1 line
973                                          screen_end_line = SCREEN_ROWS - 1; // Legacy Fterm only works with this line                                          output_end_row = SCREEN_ROWS - 1; // Legacy Fterm only works with this line
974                                          col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_line + row_pos]));                                          col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - output_current_row + row_pos]));
                                         break;  
                                 case CR:  
975                                          break;                                          break;
976                                  case KEY_SPACE:                                  case KEY_SPACE:
977                                          break;                                          break;
978                                  case KEY_RIGHT:                                  case KEY_RIGHT:
979                                          if (col_pos < p_editor_data->display_line_lengths[line_current - screen_current_line + row_pos])                                          if (col_pos < p_editor_data->display_line_lengths[line_current - output_current_row + row_pos])
980                                          {                                          {
981                                                    if (p_editor_data->p_display_lines[line_current - output_current_row + row_pos][col_pos - 1] < 0 &&
982                                                            p_editor_data->p_display_lines[line_current - output_current_row + row_pos][col_pos] < 0) // GBK
983                                                    {
984                                                            col_pos++;
985                                                    }
986                                                  col_pos++;                                                  col_pos++;
987                                                  break;                                                  break;
988                                          }                                          }
989                                          col_pos = 1; // continue to KEY_DOWN                                          col_pos = 1; // continue to KEY_DOWN
990                                  case KEY_DOWN:                                  case KEY_DOWN:
991                                          if (row_pos < MIN(screen_line_total, p_editor_data->display_line_total))                                          if (row_pos < MIN(screen_row_total, p_editor_data->display_line_total))
992                                          {                                          {
993                                                  row_pos++;                                                  row_pos++;
994                                                  col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_line + row_pos]));                                                  col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - output_current_row + row_pos]));
995                                                  break;                                                  break;
996                                          }                                          }
997                                          if (line_current + (screen_line_total - (screen_current_line - screen_begin_line)) >= p_editor_data->display_line_total) // Reach end                                          if (line_current - output_current_row + row_pos == p_editor_data->display_line_total - 1) // row_pos at end line
998                                          {                                          {
999                                                  col_pos = MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_line + row_pos]);                                                  // last display line does NOT have \n in the end
1000                                                    col_pos = p_editor_data->display_line_lengths[line_current - output_current_row + row_pos] + 1;
1001                                                  break;                                                  break;
1002                                          }                                          }
1003                                          screen_current_line--;                                          line_current += (screen_row_total - (output_current_row - screen_begin_row));
1004                                          screen_end_line = SCREEN_ROWS - 1;                                          output_current_row = screen_row_total;
1005                                          col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_line + row_pos]));                                          output_end_row = SCREEN_ROWS - 1;
1006                                            col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - output_current_row + row_pos]));
1007                                          moveto(SCREEN_ROWS, 0);                                          moveto(SCREEN_ROWS, 0);
1008                                          clrtoeol();                                          clrtoeol();
1009                                          prints("\033[S"); // Scroll up 1 line                                          prints("\033[S"); // Scroll up 1 line
1010                                          break;                                          break;
1011                                  case KEY_PGUP:                                  case KEY_PGUP:
1012                                          if (line_current - screen_current_line < 0) // Reach begin                                          if (line_current - output_current_row < 0) // Reach begin
1013                                          {                                          {
1014                                                  break;                                                  break;
1015                                          }                                          }
1016                                          line_current -= ((screen_line_total - 1) + (screen_current_line - screen_begin_line));                                          line_current -= ((screen_row_total - 1) + (output_current_row - screen_begin_row));
1017                                          if (line_current < 0)                                          if (line_current < 0)
1018                                          {                                          {
1019                                                  line_current = 0;                                                  line_current = 0;
1020                                          }                                          }
1021                                          screen_current_line = screen_begin_line;                                          output_current_row = screen_begin_row;
1022                                          screen_end_line = SCREEN_ROWS - 1;                                          output_end_row = SCREEN_ROWS - 1;
1023                                          col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_line + row_pos]));                                          col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - output_current_row + row_pos]));
1024                                          clrline(screen_begin_line, SCREEN_ROWS);                                          clrline(output_current_row, SCREEN_ROWS);
1025                                          break;                                          break;
1026                                  case KEY_PGDN:                                  case KEY_PGDN:
1027                                          if (line_current + screen_line_total - (screen_current_line - screen_begin_line) >= p_editor_data->display_line_total) // Reach end                                          if (line_current + screen_row_total - (output_current_row - screen_begin_row) >= p_editor_data->display_line_total) // Reach end
1028                                          {                                          {
1029                                                  break;                                                  break;
1030                                          }                                          }
1031                                          line_current += (screen_line_total - 1) - (screen_current_line - screen_begin_line);                                          line_current += (screen_row_total - 1) - (output_current_row - screen_begin_row);
1032                                          if (line_current + screen_line_total > p_editor_data->display_line_total) // No enough lines to display                                          if (line_current + screen_row_total > p_editor_data->display_line_total) // No enough lines to display
1033                                          {                                          {
1034                                                  line_current = p_editor_data->display_line_total - screen_line_total;                                                  line_current = p_editor_data->display_line_total - screen_row_total;
1035                                          }                                          }
1036                                          screen_current_line = screen_begin_line;                                          output_current_row = screen_begin_row;
1037                                          screen_end_line = SCREEN_ROWS - 1;                                          output_end_row = SCREEN_ROWS - 1;
1038                                          col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_line + row_pos]));                                          col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - output_current_row + row_pos]));
1039                                          clrline(screen_begin_line, SCREEN_ROWS);                                          clrline(output_current_row, SCREEN_ROWS);
                                         break;  
                                 case KEY_ESC:  
1040                                          break;                                          break;
1041                                  case KEY_F1:                                  case KEY_F1:
1042                                          if (!show_help) // Not reentrant                                          if (!show_help) // Not reentrant
# Line 677  int editor_display(EDITOR_DATA *p_editor Line 1049  int editor_display(EDITOR_DATA *p_editor
1049                                          show_help = 1;                                          show_help = 1;
1050                                  case KEY_F5:                                  case KEY_F5:
1051                                          // Refresh after display help information                                          // Refresh after display help information
1052                                          line_current -= (screen_current_line - screen_begin_line);                                          line_current -= (output_current_row - screen_begin_row);
1053                                          screen_current_line = screen_begin_line;                                          output_current_row = screen_begin_row;
1054                                          screen_end_line = SCREEN_ROWS - 1;                                          output_end_row = SCREEN_ROWS - 1;
1055                                          clrline(screen_begin_line, SCREEN_ROWS);                                          clrline(output_current_row, SCREEN_ROWS);
1056                                          break;                                          break;
1057                                  case 0: // Refresh bottom line                                  case 0: // Refresh bottom line
1058                                          break;                                          break;
# Line 689  int editor_display(EDITOR_DATA *p_editor Line 1061  int editor_display(EDITOR_DATA *p_editor
1061                                          break;                                          break;
1062                                  }                                  }
1063    
1064                                  BBS_last_access_tm = time(0);                                  BBS_last_access_tm = time(NULL);
1065    
1066                                    if (input_ok)
1067                                    {
1068                                            break;
1069                                    }
1070    
1071                                    ch = igetch_t(MAX_DELAY_TIME);
1072                          }                          }
1073    
1074                          continue;                          continue;
# Line 707  int editor_display(EDITOR_DATA *p_editor Line 1086  int editor_display(EDITOR_DATA *p_editor
1086                          len = 0;                          len = 0;
1087                  }                  }
1088    
1089                  memcpy(buffer, (const char *)p_editor_data->p_display_lines[line_current], (size_t)len);                  // memcpy(buffer, p_editor_data->p_display_lines[line_current], (size_t)len);
1090                  buffer[len] = '\0';                  // Replace '\033' with '*'
1091                    p_str = p_editor_data->p_display_lines[line_current];
1092                    for (i = 0, j = 0; i < len; i++)
1093                    {
1094                            if (p_str[i] == '\033')
1095                            {
1096                                    memcpy(buffer + j, EDITOR_ESC_DISPLAY_STR, sizeof(EDITOR_ESC_DISPLAY_STR) - 1);
1097                                    j += (int)(sizeof(EDITOR_ESC_DISPLAY_STR) - 1);
1098                            }
1099                            else
1100                            {
1101                                    buffer[j] = p_str[i];
1102                                    j++;
1103                            }
1104                    }
1105                    buffer[j] = '\0';
1106    
1107                  moveto(screen_current_line, 0);                  moveto(output_current_row, 0);
1108                  clrtoeol();                  clrtoeol();
1109                  prints("%s", buffer);                  prints("%s", buffer);
1110                  line_current++;                  line_current++;
1111                  screen_current_line++;                  output_current_row++;
1112          }          }
1113    
1114  cleanup:  cleanup:


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1