home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD2.bin / bbs / gnu / libg++-2.6.2.lha / libg++-2.6.2 / libio / editbuf.cc < prev    next >
C/C++ Source or Header  |  1993-10-24  |  19KB  |  718 lines

  1. /* This is part of libio/iostream, providing -*- C++ -*- input/output.
  2. Copyright (C) 1993 Free Software Foundation
  3.  
  4. This file is part of the GNU IO Library.  This library is free
  5. software; you can redistribute it and/or modify it under the
  6. terms of the GNU General Public License as published by the
  7. Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9.  
  10. This library is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. GNU General Public License for more details.
  14.  
  15. You should have received a copy of the GNU General Public License
  16. along with GNU CC; see the file COPYING.  If not, write to
  17. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19. As a special exception, if you link this library with files
  20. compiled with a GNU compiler to produce an executable, this does not cause
  21. the resulting executable to be covered by the GNU General Public License.
  22. This exception does not however invalidate any other reasons why
  23. the executable file might be covered by the GNU General Public License.
  24.  
  25. Written by Per Bothner (bothner@cygnus.com). */
  26.  
  27. #ifdef __GNUG__
  28. #pragma implementation
  29. #endif
  30. #include "libioP.h"
  31. #include "editbuf.h"
  32. #include <stddef.h>
  33. #include <stdlib.h>
  34.  
  35. /* NOTE: Some of the code here is taken from GNU emacs */
  36. /* Hence this file falls under the GNU License! */
  37.  
  38. // Invariants for edit_streambuf:
  39. // An edit_streambuf is associated with a specific edit_string,
  40. // which again is a sub-string of a specific edit_buffer.
  41. // An edit_streambuf is always in either get mode or put mode, never both.
  42. // In get mode, gptr() is the current position,
  43. // and pbase(), pptr(), and epptr() are all NULL.
  44. // In put mode, pptr() is the current position,
  45. // and eback(), gptr(), and egptr() are all NULL.
  46. // Any edit_streambuf that is actively doing insertion (as opposed to
  47. // replacing) // must have its pptr() pointing to the start of the gap.
  48. // Only one edit_streambuf can be actively inserting into a specific
  49. // edit_buffer; the edit_buffer's _writer field points to that edit_streambuf.
  50. // That edit_streambuf "owns" the gap, and the actual start of the
  51. // gap is the pptr() of the edit_streambuf; the edit_buffer::_gap_start pointer
  52. // will only be updated on an edit_streambuf::overflow().
  53.  
  54. int edit_streambuf::truncate()
  55. {
  56.     str->buffer->delete_range(str->buffer->tell((buf_char*)pptr()),
  57.                   str->buffer->tell(str->end));
  58.     return 0;
  59. }
  60.  
  61. #ifdef OLD_STDIO
  62. inline void  disconnect_gap_from_file(edit_buffer* buffer, FILE* fp)
  63. {
  64.     if (buffer->gap_start_ptr != &fp->__bufp)
  65.     return;
  66.     buffer->gap_start_normal = fp->__bufp;
  67.     buffer->gap_start_ptr = &buffer->gap_start_normal;
  68. }
  69. #endif
  70.  
  71. void edit_streambuf::flush_to_buffer(edit_buffer* buffer)
  72. {
  73.     if (pptr() > buffer->_gap_start && pptr() < buffer->gap_end())
  74.     buffer->_gap_start = pptr();
  75. }
  76.  
  77. void edit_streambuf::disconnect_gap_from_file(edit_buffer* buffer)
  78. {
  79.     if (buffer->_writer != this) return;
  80.     flush_to_buffer(buffer);
  81.     setp(pptr(),pptr());
  82.     buffer->_writer = NULL;    
  83. }
  84.  
  85. buf_index edit_buffer::tell(buf_char *ptr)
  86. {
  87.     if (ptr <= gap_start())
  88.     return ptr - data;
  89.     else
  90.     return ptr - gap_end() + size1();
  91. }
  92.  
  93. #if 0
  94. buf_index buf_cookie::tell()
  95. {
  96.     return str->buffer->tell(file->__bufp);
  97. }
  98. #endif
  99.  
  100. buf_index edit_buffer::tell(edit_mark*mark)
  101. {
  102.     return tell(data + mark->index_in_buffer(this));
  103. }
  104.  
  105. // adjust the position of the gap
  106.  
  107. void edit_buffer::move_gap(buf_offset pos)
  108. {
  109.   if (pos < size1())
  110.     gap_left (pos);
  111.   else if (pos > size1())
  112.     gap_right (pos);
  113. }
  114.  
  115. void edit_buffer::gap_left (int pos)
  116. {
  117.   register buf_char *to, *from;
  118.   register int i;
  119.   int new_s1;
  120.  
  121.   i = size1();
  122.   from = gap_start();
  123.   to = from + gap_size();
  124.   new_s1 = size1();
  125.  
  126.   /* Now copy the characters.  To move the gap down,
  127.      copy characters up.  */
  128.  
  129.   for (;;)
  130.     {
  131.       /* I gets number of characters left to copy.  */
  132.       i = new_s1 - pos;
  133.       if (i == 0)
  134.     break;
  135. #if 0
  136.       /* If a quit is requested, stop copying now.
  137.      Change POS to be where we have actually moved the gap to.  */
  138.       if (QUITP)
  139.     {
  140.       pos = new_s1;
  141.       break;
  142.     }
  143. #endif
  144.       /* Move at most 32000 chars before checking again for a quit.  */
  145.       if (i > 32000)
  146.     i = 32000;
  147.       new_s1 -= i;
  148.       while (--i >= 0)
  149.     *--to = *--from;
  150.     }
  151.  
  152.   /* Adjust markers, and buffer data structure, to put the gap at POS.
  153.      POS is where the loop above stopped, which may be what was specified
  154.      or may be where a quit was detected.  */
  155.   adjust_markers (pos << 1, size1() << 1, gap_size(), data);
  156. #ifndef OLD_STDIO
  157.   _gap_start = data + pos;
  158. #else
  159.   if (gap_start_ptr == &gap_start_normal)
  160.     gap_start_normal = data + pos;
  161. #endif
  162.   __gap_end_pos = to - data;
  163. /*  QUIT;*/
  164. }
  165.  
  166. void edit_buffer::gap_right (int pos)
  167. {
  168.   register buf_char *to, *from;
  169.   register int i;
  170.   int new_s1;
  171.  
  172.   i = size1();
  173.   to = gap_start();
  174.   from = i + gap_end();
  175.   new_s1 = i;
  176.  
  177.   /* Now copy the characters.  To move the gap up,
  178.      copy characters down.  */
  179.  
  180.   while (1)
  181.     {
  182.       /* I gets number of characters left to copy.  */
  183.       i = pos - new_s1;
  184.       if (i == 0)
  185.     break;
  186. #if 0
  187.       /* If a quit is requested, stop copying now.
  188.      Change POS to be where we have actually moved the gap to.  */
  189.       if (QUITP)
  190.     {
  191.       pos = new_s1;
  192.       break;
  193.     }
  194. #endif
  195.       /* Move at most 32000 chars before checking again for a quit.  */
  196.       if (i > 32000)
  197.     i = 32000;
  198.       new_s1 += i;
  199.       while (--i >= 0)
  200.     *to++ = *from++;
  201.     }
  202.  
  203.   adjust_markers ((size1() + gap_size()) << 1, (pos + gap_size()) << 1,
  204.     - gap_size(), data);
  205. #ifndef OLD_STDIO
  206.   _gap_start = data+pos;
  207. #else
  208.   if (gap_start_ptr == &gap_start_normal)
  209.     gap_start_normal = data + pos;
  210. #endif
  211.   __gap_end_pos = from - data;
  212. /*  QUIT;*/
  213. }
  214.  
  215. /* make sure that the gap in the current buffer is at least k
  216.    characters wide */
  217.  
  218. void edit_buffer::make_gap(buf_offset k)
  219. {
  220.   register buf_char *p1, *p2, *lim;
  221.   buf_char *old_data = data;
  222.   int s1 = size1();
  223.  
  224.   if (gap_size() >= k)
  225.     return;
  226.  
  227.   /* Get more than just enough */
  228.   if (buf_size > 1000) k += 2000;
  229.   else k += /*200;*/ 20; // for testing!
  230.  
  231.   p1 = (buf_char *) realloc (data, s1 + size2() + k);
  232.   if (p1 == 0)
  233.     abort(); /*memory_full ();*/
  234.  
  235.   k -= gap_size();            /* Amount of increase.  */
  236.  
  237.   /* Record new location of text */
  238.   data = p1;
  239.  
  240.   /* Transfer the new free space from the end to the gap
  241.      by shifting the second segment upward */
  242.   p2 = data + buf_size;
  243.   p1 = p2 + k;
  244.   lim = p2 - size2();
  245.   while (lim < p2)
  246.     *--p1 = *--p2;
  247.  
  248.   /* Finish updating text location data */
  249.   __gap_end_pos += k;
  250.  
  251. #ifndef OLD_STDIO
  252.   _gap_start = data + s1;
  253. #else
  254.   if (gap_start_ptr == &gap_start_normal)
  255.     gap_start_normal = data + s1;
  256. #endif
  257.  
  258.   /* adjust markers */
  259.   adjust_markers (s1 << 1, (buf_size << 1) + 1, k, old_data);
  260.   buf_size += k;
  261. }
  262.  
  263. /* Add `amount' to the position of every marker in the current buffer
  264.    whose current position is between `from' (exclusive) and `to' (inclusive).
  265.    Also, any markers past the outside of that interval, in the direction
  266.    of adjustment, are first moved back to the near end of the interval
  267.    and then adjusted by `amount'.  */
  268.  
  269. void edit_buffer::adjust_markers(register mark_pointer low,
  270.                  register mark_pointer high,
  271.                  int amount, buf_char *old_data)
  272. {
  273.   register struct edit_mark *m;
  274.   register mark_pointer mpos;
  275.   /* convert to mark_pointer */
  276.   amount <<= 1;
  277.  
  278.   if (_writer)
  279.       _writer->disconnect_gap_from_file(this);
  280.  
  281.   for (m = mark_list(); m != NULL; m = m->chain)
  282.     {
  283.       mpos = m->_pos;
  284.       if (amount > 0)
  285.     {
  286.       if (mpos > high && mpos < high + amount)
  287.         mpos = high + amount;
  288.     }
  289.       else
  290.     {
  291.       if (mpos > low + amount && mpos <= low)
  292.         mpos = low + amount;
  293.     }
  294.       if (mpos > low && mpos <= high)
  295.     mpos += amount;
  296.       m->_pos = mpos;
  297.     }
  298.  
  299.     // Now adjust files
  300.     edit_streambuf *file;
  301.  
  302.     for (file = files; file != NULL; file = file->next) {
  303.     mpos = file->current() - old_data;
  304.     if (amount > 0)
  305.     {
  306.       if (mpos > high && mpos < high + amount)
  307.         mpos = high + amount;
  308.     }
  309.     else
  310.     {
  311.       if (mpos > low + amount && mpos <= low)
  312.         mpos = low + amount;
  313.     }
  314.     if