/[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.5 by sysadm, Wed Jun 11 04:57:19 2025 UTC Revision 1.11 by sysadm, Wed Jun 11 11:55:50 2025 UTC
# Line 169  int editor_data_insert(EDITOR_DATA *p_ed Line 169  int editor_data_insert(EDITOR_DATA *p_ed
169          // Get accurate offset of first character of CJK at offset position          // Get accurate offset of first character of CJK at offset position
170          for (i = 0; i < offset; i++)          for (i = 0; i < offset; i++)
171          {          {
172                  if (p_editor_data->p_display_lines[display_line][i] < 0) // GBK                  if (p_editor_data->p_display_lines[display_line][i] < 0 || p_editor_data->p_display_lines[display_line][i] > 127) // GBK
173                  {                  {
174                          i++;                          i++;
175                  }                  }
# Line 208  int editor_data_insert(EDITOR_DATA *p_ed Line 208  int editor_data_insert(EDITOR_DATA *p_ed
208          }          }
209    
210          // Split current data line if over-length          // Split current data line if over-length
211          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)
212          {          {
213                  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 || p_editor_data->data_line_total >= MAX_EDITOR_DATA_LINES)
214                  {                  {
# Line 227  int editor_data_insert(EDITOR_DATA *p_ed Line 227  int editor_data_insert(EDITOR_DATA *p_ed
227                  p_editor_data->p_data_lines[p_editor_data->data_line_total] = p_data_line;                  p_editor_data->p_data_lines[p_editor_data->data_line_total] = p_data_line;
228                  (p_editor_data->data_line_total)++;                  (p_editor_data->data_line_total)++;
229    
230                  if (offset_data_line + str_len + 1 < MAX_EDITOR_DATA_LINE_LENGTH)                  if (offset_data_line + str_len + 1 >= MAX_EDITOR_DATA_LINE_LENGTH || str[0] == CR)
231                  {                  {
232                          // Copy rest part of current data line to new data line                          if (str[0] == CR)
233                          memcpy(p_data_line,                          {
234                                     p_editor_data->p_display_lines[display_line] + offset,                                  str_len = 0;
235                                     (size_t)(len_data_line - offset_data_line));                          }
   
                         p_data_line[len_data_line - offset_data_line] = '\0';  
   
                         // Append str to current display line  
                         memcpy(p_editor_data->p_display_lines[display_line] + offset, str, (size_t)str_len);  
   
                         // Add line ending to current display line (data line)  
                         p_editor_data->p_display_lines[display_line][offset + str_len] = '\n';  
                         p_editor_data->p_display_lines[display_line][offset + str_len + 1] = '\0';  
                         p_editor_data->display_line_lengths[display_line] = offset + str_len + 1;  
236    
                         *p_display_line = display_line;  
                         *p_offset = offset + str_len;  
                 }  
                 else  
                 {  
237                          // Copy str to new data line                          // Copy str to new data line
238                          memcpy(p_data_line, str, (size_t)str_len);                          memcpy(p_data_line, str, (size_t)str_len);
239    
# Line 267  int editor_data_insert(EDITOR_DATA *p_ed Line 252  int editor_data_insert(EDITOR_DATA *p_ed
252                          *p_display_line = display_line + 1;                          *p_display_line = display_line + 1;
253                          *p_offset = str_len;                          *p_offset = str_len;
254                  }                  }
255                    else
256                    {
257                            // Copy rest part of current data line to new data line
258                            memcpy(p_data_line,
259                                       p_editor_data->p_display_lines[display_line] + offset,
260                                       (size_t)(len_data_line - offset_data_line));
261    
262                            p_data_line[len_data_line - offset_data_line] = '\0';
263    
264                            // Append str to current display line
265                            memcpy(p_editor_data->p_display_lines[display_line] + offset, str, (size_t)str_len);
266    
267                            // Add line ending to current display line (data line)
268                            p_editor_data->p_display_lines[display_line][offset + str_len] = '\n';
269                            p_editor_data->p_display_lines[display_line][offset + str_len + 1] = '\0';
270                            p_editor_data->display_line_lengths[display_line] = offset + str_len + 1;
271    
272                            *p_display_line = display_line;
273                            *p_offset = offset + str_len;
274                    }
275    
276                  split_line_total = last_display_line - display_line + 3;                  split_line_total = last_display_line - display_line + 3;
277    
# Line 277  int editor_data_insert(EDITOR_DATA *p_ed Line 282  int editor_data_insert(EDITOR_DATA *p_ed
282          }          }
283          else // insert str into current data line at offset_data_line          else // insert str into current data line at offset_data_line
284          {          {
                 log_error("Insert %d chars into display_line = %d, offset = %d\n", str_len, display_line, offset);  
   
285                  memmove(p_data_line + offset_data_line + str_len, p_data_line + offset_data_line, (size_t)(len_data_line - offset_data_line));                  memmove(p_data_line + offset_data_line + str_len, p_data_line + offset_data_line, (size_t)(len_data_line - offset_data_line));
286                  memcpy(p_data_line + offset_data_line, str, (size_t)str_len);                  memcpy(p_data_line + offset_data_line, str, (size_t)str_len);
287                  p_data_line[len_data_line + str_len] = '\0';                  p_data_line[len_data_line + str_len] = '\0';
# Line 293  int editor_data_insert(EDITOR_DATA *p_ed Line 296  int editor_data_insert(EDITOR_DATA *p_ed
296    
297          // Split current data line since beginning of current display line          // Split current data line since beginning of current display line
298          split_line_total = split_data_lines(p_data_line, SCREEN_COLS, line_offsets, split_line_total);          split_line_total = split_data_lines(p_data_line, SCREEN_COLS, line_offsets, split_line_total);
         log_error("Debug: split data line, display_line = %ld, j = %ld\n", display_line, split_line_total);  
299    
300          for (i = 0; i < split_line_total; i++)          for (i = 0; i < split_line_total; i++)
301          {          {
# Line 323  int editor_data_insert(EDITOR_DATA *p_ed Line 325  int editor_data_insert(EDITOR_DATA *p_ed
325                  if (p_editor_data->display_line_lengths[display_line + i] > 0 &&                  if (p_editor_data->display_line_lengths[display_line + i] > 0 &&
326                          p_editor_data->p_display_lines[display_line + i][p_editor_data->display_line_lengths[display_line + i] - 1] == '\n')                          p_editor_data->p_display_lines[display_line + i][p_editor_data->display_line_lengths[display_line + i] - 1] == '\n')
327                  {                  {
                         log_error("Debug: reach end of data line, i = %ld, j = %ld\n", i, split_line_total);  
328                          break;                          break;
329                  }                  }
330          }          }
331    
332          *p_last_updated_line = MAX(display_line + split_line_total - 1, *p_last_updated_line);          *p_last_updated_line = MAX(display_line + MIN(i, split_line_total - 1), *p_last_updated_line);
333    
334          if (*p_offset > p_editor_data->display_line_lengths[*p_display_line] ||          if (*p_offset > p_editor_data->display_line_lengths[*p_display_line] ||
335                  (*p_offset > 0 && *p_offset == p_editor_data->display_line_lengths[*p_display_line] &&                  (*p_offset > 0 && *p_offset == p_editor_data->display_line_lengths[*p_display_line] &&
# Line 349  int editor_data_insert(EDITOR_DATA *p_ed Line 350  int editor_data_insert(EDITOR_DATA *p_ed
350  int editor_data_delete(EDITOR_DATA *p_editor_data, long display_line, long offset,  int editor_data_delete(EDITOR_DATA *p_editor_data, long display_line, long offset,
351                                             long *p_last_updated_line)                                             long *p_last_updated_line)
352  {  {
353          return 0;          char *p_data_line = NULL;
354            long len_data_line;
355            long offset_data_line;
356            long last_display_line; // of data line
357            long line_offsets[MAX_EDITOR_DATA_LINE_LENGTH + 1];
358            long split_line_total;
359            long i, j;
360            int str_len = 0;
361    
362            if (p_editor_data == NULL || p_last_updated_line == NULL)
363            {
364                    log_error("editor_data_op() error: NULL pointer\n");
365                    return -1;
366            }
367    
368            // Get accurate offset of first character of CJK at offset position
369            for (i = 0; i < offset; i++)
370            {
371                    if (p_editor_data->p_display_lines[display_line][i] < 0 || p_editor_data->p_display_lines[display_line][i] > 127) // GBK
372                    {
373                            i++;
374                    }
375            }
376            if (i > offset) // offset was skipped
377            {
378                    offset--;
379            }
380    
381            // Get length of current data line
382            len_data_line = 0;
383            p_data_line = p_editor_data->p_display_lines[display_line];
384            for (i = display_line - 1; i >= 0; i--)
385            {
386                    if (p_editor_data->display_line_lengths[i] > 0 &&
387                            p_editor_data->p_display_lines[i][p_editor_data->display_line_lengths[i] - 1] == '\n') // reach end of prior data line
388                    {
389                            break;
390                    }
391    
392                    len_data_line += p_editor_data->display_line_lengths[i];
393                    p_data_line = p_editor_data->p_display_lines[i];
394            }
395            offset_data_line = len_data_line + offset;
396            last_display_line = p_editor_data->display_line_total - 1;
397            for (i = display_line; i < p_editor_data->display_line_total; i++)
398            {
399                    len_data_line += p_editor_data->display_line_lengths[i];
400    
401                    if (p_editor_data->display_line_lengths[i] > 0 &&
402                            p_editor_data->p_display_lines[i][p_editor_data->display_line_lengths[i] - 1] == '\n') // reach end of current data line
403                    {
404                            last_display_line = i;
405                            break;
406                    }
407            }
408    
409            // Check str to be deleted
410            if (p_data_line[offset_data_line] > 0 && p_data_line[offset_data_line] < 127)
411            {
412                    str_len = 1;
413            }
414            else if (p_data_line[offset_data_line + 1] < 0 || p_data_line[offset_data_line] > 127) // GBK
415            {
416                    str_len = 2;
417            }
418            else
419            {
420                    log_error("Some strange character at display_line %ld, offset %ld: %d %d %d %d\n",
421                                      display_line, offset, p_data_line[offset_data_line], p_data_line[offset_data_line + 1],
422                                      p_data_line[offset_data_line + 2], p_data_line[offset_data_line + 3]);
423                    str_len = 1;
424            }
425    
426            // Current display line is (almost) empty
427            if (offset_data_line + str_len > len_data_line ||
428                    (offset_data_line + str_len == len_data_line && p_data_line[offset_data_line] == '\n'))
429            {
430                    if (display_line + 1 >= p_editor_data->display_line_total) // No additional display line (data line)
431                    {
432                            log_common("Debug: No additional display line: %ld + 1 >= %ld\n", display_line, p_editor_data->display_line_total);
433                            return 0;
434                    }
435    
436                    len_data_line = 0; // Next data line
437                    last_display_line = p_editor_data->display_line_total - 1;
438                    for (i = display_line + 1; i < p_editor_data->display_line_total; i++)
439                    {
440                            len_data_line += p_editor_data->display_line_lengths[i];
441    
442                            if (p_editor_data->display_line_lengths[i] > 0 &&
443                                    p_editor_data->p_display_lines[i][p_editor_data->display_line_lengths[i] - 1] == '\n') // reach end of current data line
444                            {
445                                    last_display_line = i;
446                                    break;
447                            }
448                    }
449    
450                    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
451                    {
452                            log_common("Debug: No enough buffer to merge with next data line: %ld > %ld\n",
453                                               offset_data_line + len_data_line + 1, MAX_EDITOR_DATA_LINE_LENGTH);
454                            return 0;
455                    }
456    
457                    // Append next data line to current one
458                    memcpy(p_data_line + offset_data_line, p_editor_data->p_display_lines[display_line + 1], (size_t)len_data_line);
459                    p_data_line[offset_data_line + len_data_line] = '\0';
460    
461                    // Recycle next data line
462                    // TODO: free(p_editor_data->p_display_lines[display_line + 1]);
463            }
464            else
465            {
466                    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));
467                    p_data_line[len_data_line - str_len] = '\0';
468                    len_data_line -= str_len;
469            }
470    
471            // Set p_data_line to head of current display line
472            p_data_line = p_editor_data->p_display_lines[display_line];
473            split_line_total = last_display_line - display_line + 2;
474    
475            // Split current data line since beginning of current display line
476            split_line_total = split_data_lines(p_data_line, SCREEN_COLS, line_offsets, split_line_total);
477    
478            for (i = 0; i < split_line_total; i++)
479            {
480                    p_editor_data->display_line_lengths[display_line + i] = line_offsets[i + 1] - line_offsets[i];
481                    p_editor_data->p_display_lines[display_line + i] =
482                            (i == 0
483                                     ? p_data_line
484                                     : (p_editor_data->p_display_lines[display_line + i - 1] + p_editor_data->display_line_lengths[display_line + i - 1]));
485    
486                    if (p_editor_data->display_line_lengths[display_line + i] > 0 &&
487                            p_editor_data->p_display_lines[display_line + i][p_editor_data->display_line_lengths[display_line + i] - 1] == '\n')
488                    {
489                            break;
490                    }
491            }
492    
493            *p_last_updated_line = display_line + MIN(i, split_line_total - 1);
494    
495            if (display_line + i < last_display_line)
496            {
497                    // Remove redundant display line after last_display_line
498                    for (j = last_display_line + 1; j < p_editor_data->display_line_total; j++)
499                    {
500                            p_editor_data->p_display_lines[j - (last_display_line - (display_line + i))] = p_editor_data->p_display_lines[j];
501                            p_editor_data->display_line_lengths[j - (last_display_line - (display_line + i))] = p_editor_data->display_line_lengths[j];
502                    }
503    
504                    (p_editor_data->display_line_total) -= (last_display_line - (display_line + i));
505                    last_display_line = display_line + i;
506    
507                    *p_last_updated_line = p_editor_data->display_line_total - 1;
508            }
509    
510            return str_len;
511  }  }
512    
513  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 387  int editor_display(EDITOR_DATA *p_editor Line 545  int editor_display(EDITOR_DATA *p_editor
545          long display_line_out, offset_out;          long display_line_out, offset_out;
546          int scroll_rows;          int scroll_rows;
547          long last_updated_line = 0;          long last_updated_line = 0;
548          int insert = 1;          int key_insert = 1;
549          int i;          int i;
550    
551          screen_current_row = screen_begin_row;          screen_current_row = screen_begin_row;
# Line 408  int editor_display(EDITOR_DATA *p_editor Line 566  int editor_display(EDITOR_DATA *p_editor
566    
567                          snprintf(buffer, sizeof(buffer),                          snprintf(buffer, sizeof(buffer),
568                                           "\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] "
569                                           "µÚ\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] "
570                                           "%s",                                           "%s",
571                                           row_pos, col_pos,                                           row_pos, col_pos,
572                                           ctx.line_cursor, p_editor_data->display_line_total,                                           ctx.line_cursor, p_editor_data->display_line_total,
573                                             key_insert ? "²åÈë" : "¸Äд",
574                                           ctx.msg);                                           ctx.msg);
575    
576                          len = split_line(buffer, SCREEN_COLS, &eol, &display_len);                          len = split_line(buffer, SCREEN_COLS, &eol, &display_len);
# Line 429  int editor_display(EDITOR_DATA *p_editor Line 588  int editor_display(EDITOR_DATA *p_editor
588                          iflush();                          iflush();
589    
590                          input_ok = 0;                          input_ok = 0;
591                            ch = igetch_t(MAX_DELAY_TIME);
592                          while (!SYS_server_exit && !input_ok)                          while (!SYS_server_exit && !input_ok)
593                          {                          {
                                 ch = igetch_t(MAX_DELAY_TIME);  
                                 input_ok = 1;  
   
594                                  // extended key handler                                  // extended key handler
595                                  if (editor_display_key_handler(&ch, &ctx) != 0)                                  if (editor_display_key_handler(&ch, &ctx) != 0)
596                                  {                                  {
# Line 450  int editor_display(EDITOR_DATA *p_editor Line 607  int editor_display(EDITOR_DATA *p_editor
607                                          str_len = 0;                                          str_len = 0;
608                                  }                                  }
609    
610                                  if ((ch >= 32 && ch < 127) || (ch > 127 && ch <= 255 && str_len == 2)) // printable character or GBK                                  if ((ch >= 32 && ch < 127) || (ch > 127 && ch <= 255 && str_len == 2) || ch == CR) // printable character or GBK
611                                  {                                  {
612                                          if (str_len == 0)                                          if (str_len == 0)
613                                          {                                          {
# Line 464  int editor_display(EDITOR_DATA *p_editor Line 621  int editor_display(EDITOR_DATA *p_editor
621                                          display_line_out = display_line_in;                                          display_line_out = display_line_in;
622                                          offset_out = offset_in;                                          offset_out = offset_in;
623    
624                                            if (!key_insert) // overwrite
625                                            {
626                                                    if (editor_data_delete(p_editor_data, display_line_in, offset_in,
627                                                                                               &last_updated_line) < 0)
628                                                    {
629                                                            log_error("editor_data_delete() error\n");
630                                                    }
631                                            }
632    
633                                          if (editor_data_insert(p_editor_data, &display_line_out, &offset_out,                                          if (editor_data_insert(p_editor_data, &display_line_out, &offset_out,
634                                                                                     input_str, str_len, &last_updated_line) < 0)                                                                                     input_str, str_len, &last_updated_line) < 0)
635                                          {                                          {
# Line 502  int editor_display(EDITOR_DATA *p_editor Line 668  int editor_display(EDITOR_DATA *p_editor
668                                                          row_pos += (display_line_out - display_line_in);                                                          row_pos += (display_line_out - display_line_in);
669                                                  }                                                  }
670                                                  col_pos = offset_out + 1;                                                  col_pos = offset_out + 1;
671                                            }
672    
673                                                  continue;                                          // Check whether there is additional input
674                                            ch = igetch(0);
675                                            if (ch == KEY_TIMEOUT)
676                                            {
677                                                    input_ok = 1;
678                                          }                                          }
679                                            continue;
680                                  }                                  }
681                                  else if (ch == KEY_DEL) // Del                                  else if (ch == KEY_DEL || ch == BACKSPACE) // Del
682                                  {                                  {
683                                          last_updated_line = line_current;                                          if (ch == BACKSPACE)
684                                            {
685                                                    col_pos--;
686                                                    if (col_pos < 1 && line_current - screen_current_row + row_pos >= 0)
687                                                    {
688                                                            row_pos--;
689                                                            col_pos = MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_row + row_pos]);
690                                                    }
691                                            }
692    
693                                          if (editor_data_delete(p_editor_data, line_current - screen_current_row + row_pos, col_pos - 1,                                          if ((str_len = editor_data_delete(p_editor_data, line_current - screen_current_row + row_pos, col_pos - 1,
694                                                                                     &last_updated_line) < 0)                                                                                                            &last_updated_line)) < 0)
695                                          {                                          {
696                                                  log_error("editor_data_delete() error\n");                                                  log_error("editor_data_delete() error\n");
697                                          }                                          }
698                                          else                                          else
699                                          {                                          {
700                                                    if (ch == BACKSPACE)
701                                                    {
702                                                            for (i = 1; i < str_len; i++)
703                                                            {
704                                                                    col_pos--;
705                                                                    if (col_pos < 1 && line_current - screen_current_row + row_pos >= 0)
706                                                                    {
707                                                                            row_pos--;
708                                                                            col_pos = MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_row + row_pos]);
709                                                                    }
710                                                            }
711                                                    }
712    
713                                                  screen_end_row = MIN(SCREEN_ROWS - 1, screen_current_row + (int)(last_updated_line - line_current));                                                  screen_end_row = MIN(SCREEN_ROWS - 1, screen_current_row + (int)(last_updated_line - line_current));
714                                                    line_current -= (screen_current_row - row_pos);
715                                                    screen_current_row = (int)row_pos;
716    
717                                                    if (screen_current_row < screen_begin_row) // row_pos <= 0
718                                                    {
719                                                            screen_current_row = screen_begin_row;
720                                                            row_pos = screen_begin_row;
721                                                            screen_end_row = SCREEN_ROWS - 1;
722                                                    }
723                                          }                                          }
724    
725                                            // Check whether there is additional input
726                                            ch = igetch(0);
727                                            if (ch == KEY_TIMEOUT)
728                                            {
729                                                    input_ok = 1;
730                                            }
731                                          continue;                                          continue;
732                                  }                                  }
733    
734                                    input_ok = 1;
735                                  switch (ch)                                  switch (ch)
736                                  {                                  {
737                                  case KEY_NULL:                                  case KEY_NULL:
# Line 546  int editor_display(EDITOR_DATA *p_editor Line 755  int editor_display(EDITOR_DATA *p_editor
755                                          col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_row + row_pos]));                                          col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_row + row_pos]));
756                                          break;                                          break;
757                                  case KEY_INS:                                  case KEY_INS:
758                                          insert = !insert;                                          key_insert = !key_insert;
759                                          break;                                          break;
760                                  case KEY_HOME:                                  case KEY_HOME:
761                                          row_pos = 1;                                          row_pos = 1;
# Line 600  int editor_display(EDITOR_DATA *p_editor Line 809  int editor_display(EDITOR_DATA *p_editor
809                                          screen_end_row = SCREEN_ROWS - 1; // Legacy Fterm only works with this line                                          screen_end_row = SCREEN_ROWS - 1; // Legacy Fterm only works with this line
810                                          col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_row + row_pos]));                                          col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_lengths[line_current - screen_current_row + row_pos]));
811                                          break;                                          break;
                                 case CR:  
                                         break;  
812                                  case KEY_SPACE:                                  case KEY_SPACE:
813                                          break;                                          break;
814                                  case KEY_RIGHT:                                  case KEY_RIGHT:
# Line 687  int editor_display(EDITOR_DATA *p_editor Line 894  int editor_display(EDITOR_DATA *p_editor
894                                  }                                  }
895    
896                                  BBS_last_access_tm = time(0);                                  BBS_last_access_tm = time(0);
897                                    if (!input_ok)
898                                    {
899                                            ch = igetch_t(MAX_DELAY_TIME);
900                                    }
901                          }                          }
902    
903                          continue;                          continue;


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

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