home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / gnu / g__lib / plex.ccp < prev    next >
Encoding:
Text File  |  1993-07-23  |  5.7 KB  |  238 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2. /* 
  3. Copyright (C) 1988 Free Software Foundation
  4.     written by Doug Lea (dl@rocky.oswego.edu)
  5.     based on code by Marc Shapiro (shapiro@sor.inria.fr)
  6.  
  7. This file is part of GNU CC.
  8.  
  9. GNU CC is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY.  No author or distributor
  11. accepts responsibility to anyone for the consequences of using it
  12. or for whether it serves any particular purpose or works at all,
  13. unless he says so in writing.  Refer to the GNU CC General Public
  14. License for full details.
  15.  
  16. Everyone is granted permission to copy, modify and redistribute
  17. GNU CC, but only under the conditions described in the
  18. GNU CC General Public License.   A copy of this license is
  19. supposed to have been given to you along with GNU CC so you
  20. can know your rights and responsibilities.  It should be in a
  21. file named COPYING.  Among other things, the copyright notice
  22. and this notice must be preserved on all copies.  
  23. */
  24.  
  25. #include <stream.h>
  26. #include "<T>.Plex.h"
  27.  
  28. // IChunk support
  29.  
  30. void <T>IChunk::error(char* msg)
  31. {
  32.   (*lib_error_handler)("<T>IChunk", msg);
  33. }
  34.  
  35. void <T>IChunk::index_error()
  36. {
  37.   error("attempt to use invalid index");
  38. }
  39.  
  40. void <T>IChunk::empty_error()
  41. {
  42.   error("invalid use of empty chunk");
  43. }
  44.  
  45. void <T>IChunk::full_error()
  46. {
  47.   error("attempt to extend chunk beyond bounds");
  48. }
  49.  
  50. <T>IChunk::<T>IChunk(<T>*     d,    
  51.                      int      baseidx,
  52.                      int      lowidx,
  53.                      int      fenceidx,
  54.                      int      topidx)
  55. {
  56.   if (d == 0 || baseidx > lowidx || lowidx > fenceidx || fenceidx > topidx)
  57.     error("inconsistent specification");
  58.   data = d;
  59.   base = baseidx;
  60.   low = lowidx;
  61.   fence = fenceidx;
  62.   top = topidx;
  63.   nxt = prv = this;
  64. }
  65.  
  66. void <T>IChunk:: re_index(int lo)
  67. {
  68.   int delta = lo - low;
  69.   base += delta;
  70.   low += delta;
  71.   fence += delta;
  72.   top += delta;
  73. }
  74.  
  75.  
  76. void <T>IChunk::clear(int lo)
  77. {
  78.   int s = top - base;
  79.   low = base = fence = lo;
  80.   top = base + s;
  81. }
  82.  
  83. int <T>IChunk:: OK()
  84. {
  85.   int v = data != 0;             // have some data
  86.   v &= base <= low;              // ok, index-wise
  87.   v &= low <= fence;
  88.   v &= fence <= top;
  89.  
  90.   v &=  nxt->prv == this;      // and links are OK
  91.   v &=  prv->nxt == this;
  92.   if (!v) error("invariant failure");
  93.   return(v);
  94. }
  95.  
  96.  
  97. // error handling
  98.  
  99.  
  100. void <T>Plex::error(char* msg)
  101. {
  102.   (*lib_error_handler)("Plex", msg);
  103. }
  104.  
  105. void <T>Plex::index_error()
  106. {
  107.   error("attempt to access invalid index");
  108. }
  109.  
  110. void <T>Plex::empty_error()
  111. {
  112.   error("attempted operation on empty plex");
  113. }
  114.  
  115. void <T>Plex::full_error()
  116. {
  117.   error("attempt to increase size of plex past limit");
  118. }
  119.  
  120. // generic plex ops
  121.  
  122.  
  123. void <T>Plex::append (const <T>Plex& a)
  124. {
  125.   for (int i = a.low(); i < a.fence(); a.next(i)) add_high(a[i]);
  126. }
  127.  
  128. void <T>Plex::prepend (const <T>Plex& a)
  129. {
  130.   for (int i = a.high(); i > a.ecnef(); a.prev(i)) add_low(a[i]);
  131. }
  132.  
  133. void <T>Plex::reverse()
  134. {
  135.   <T> tmp;
  136.   int l = low();
  137.   int h = high();
  138.   while (l < h)
  139.   {
  140.     tmp = (*this)[l];
  141.     (*this)[l] = (*this)[h];
  142.     (*this)[h] = tmp;
  143.     next(l);
  144.     prev(h);
  145.   }
  146. }
  147.  
  148.  
  149. void <T>Plex::fill(<T&> x)
  150. {
  151.   for (int i = lo; i < fnc; ++i) (*this)[i] = x;
  152. }
  153.  
  154. void <T>Plex::fill(<T&> x, int lo, int hi)
  155. {
  156.   for (int i = lo; i <= hi; ++i) (*this)[i] = x;
  157. }
  158.  
  159. void <T>Plex::del_chunk(<T>IChunk* x)
  160. {
  161.   if (x != 0)
  162.   {
  163.     x->unlink();
  164.     int sz = x->size();
  165.     <T>* data = (<T>*)(x->invalidate());
  166.     delete [sz] data;
  167.   }
  168. }
  169.  
  170.  
  171. void <T>Plex::invalidate()
  172. {
  173.   <T>IChunk* t = hd;
  174.   if (t != 0)
  175.   {
  176.     <T>IChunk* tail = tl();
  177.     while (t != tail)
  178.     {
  179.       <T>IChunk* nxt = t->next();
  180.       del_chunk(t);
  181.       t = nxt;
  182.     } 
  183.     del_chunk(t);
  184.     hd = 0;
  185.   }
  186. }
  187.  
  188. int <T>Plex::reset_low(int l)
  189. {
  190.   int old = lo;
  191.   int diff = l - lo;
  192.   if (diff != 0)
  193.   {
  194.     record_change();
  195.     lo += diff;
  196.     fnc += diff;
  197.     <T>IChunk* t = hd;
  198.     do
  199.     {
  200.       t->re_index(t->low_index() + diff);
  201.       t = t->next();
  202.     } while (t != hd);
  203.   }
  204.   return old;
  205. }
  206.  
  207. // non-implemented virtuals
  208. // these are defined to do nonsensical but type-legal things
  209. // They need to be defined in order to fill the vtable
  210.  
  211. <T>& <T>Plex::operator [](int){ error("undefined operation"); return *(<T>*)0;}
  212. <T>& <T>Plex::operator ()(Pix){ error("undefined operation"); return *(<T>*)0;}
  213. <T>& <T>Plex::high_element(){ error("undefined operation"); return *(<T>*)0;}
  214. <T>& <T>Plex::low_element (){ error("undefined operation"); return *(<T>*)0;}
  215. int <T>Plex::valid(int) { error("undefined operation");  return 0; }
  216. int <T>Plex::owns(Pix) { error("undefined operation");  return 0; }
  217. int <T>Plex::low() { error("undefined operation");  return 0; }
  218. int <T>Plex::high() { error("undefined operation");  return 0; }
  219. void <T>Plex::next(int&) { error("undefined operation"); }
  220. void <T>Plex::prev(int&) { error("undefined operation"); }
  221. int <T>Plex::Pix_to_index(Pix) { error("undefined operation");  return 0; }
  222. Pix <T>Plex::index_to_Pix(int) { error("undefined operation");  return 0; }
  223. int <T>Plex::add_high(const <T&>) { error("undefined operation");  return 0; }
  224. int <T>Plex::add_low(const <T&>) { error("undefined operation");  return 0; }
  225. int <T>Plex::del_high() { error("undefined operation");  return 0; }
  226. int <T>Plex::del_low() { error("undefined operation");  return 0; }
  227. int <T>Plex::can_add_high() { error("undefined operation");  return 0; }
  228. int <T>Plex::can_add_low() { error("undefined operation");  return 0; }
  229. int <T>Plex::full() { error("undefined operation");  return 0; }
  230. int <T>Plex::OK() { error("undefined operation");  return 0; }
  231. void <T>Plex::clear() { error("undefined operation");  }
  232. Pix <T>Plex::first() { error("undefined operation");  return 0; }
  233. Pix <T>Plex::last() { error("undefined operation");  return 0; }
  234. void <T>Plex::prev(Pix&) { error("undefined operation");  }
  235. void <T>Plex::next(Pix&) { error("undefined operation");  }
  236.  
  237.  
  238.