home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 mARCH / PCWK3A99.iso / Linux / DDD331 / DDD-3_1_.000 / DDD-3_1_ / ddd-3.1.1 / ddd / DispBuffer.C < prev    next >
C/C++ Source or Header  |  1998-12-06  |  3KB  |  143 lines

  1. // $Id: DispBuffer.C,v 1.12.4.1 1998/12/06 12:59:18 zeller Exp $
  2. // Filter display information from GDB output
  3.  
  4. // Copyright (C) 1995 Technische Universitaet Braunschweig, Germany.
  5. // Written by Dorothea Luetkehaus <luetke@ips.cs.tu-bs.de>.
  6. // 
  7. // This file is part of DDD.
  8. // 
  9. // DDD is free software; you can redistribute it and/or
  10. // modify it under the terms of the GNU General Public
  11. // License as published by the Free Software Foundation; either
  12. // version 2 of the License, or (at your option) any later version.
  13. // 
  14. // DDD is distributed in the hope that it will be useful,
  15. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  17. // See the GNU General Public License for more details.
  18. // 
  19. // You should have received a copy of the GNU General Public
  20. // License along with DDD -- see the file COPYING.
  21. // If not, write to the Free Software Foundation, Inc.,
  22. // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  23. // 
  24. // DDD is the data display debugger.
  25. // For details, see the DDD World-Wide-Web page, 
  26. // `http://www.cs.tu-bs.de/softech/ddd/',
  27. // or send a mail to the DDD developers <ddd@ips.cs.tu-bs.de>.
  28.  
  29. char DispBuffer_rcsid[] =
  30.     "$Id: DispBuffer.C,v 1.12.4.1 1998/12/06 12:59:18 zeller Exp $";
  31.  
  32. #ifdef __GNUG__
  33. #pragma implementation
  34. #endif
  35.  
  36. //-----------------------------------------------------------------------------
  37. // Filter displays from GDB output
  38. //-----------------------------------------------------------------------------
  39.  
  40. #include "DispBuffer.h"
  41.  
  42. // Misc includes
  43. #include "assert.h"
  44. #include "cook.h"
  45.  
  46. // DDD includes
  47. #include "disp-read.h"
  48. #include "comm-manag.h"
  49. #include "ddd.h"
  50.  
  51. void DispBuffer::filter (string& answer)
  52. {
  53.     int index;
  54.  
  55.     // Fetch and buffer displays, return remainder
  56.     switch (already_read) {
  57.     case DisplayPart:
  58.     answer.prepend (answer_buffer);
  59.     answer_buffer = "";
  60.     already_read = Null;
  61.     // FALL THROUGH
  62.  
  63.     case Null:
  64.     index = display_index(answer, gdb);
  65.  
  66.     if (index == 0) {
  67.         // We only have displays
  68.         display_buffer = answer;
  69.         already_read = DisplayFound;
  70.  
  71.         answer = "";
  72.     }
  73.     else if (index > 0) {
  74.         // Displays are a part of the answer
  75.         display_buffer = answer.from(index);
  76.         already_read = DisplayFound;
  77.  
  78.         answer = answer.before(index);
  79.     }
  80.     else {
  81.         // Maybe there is a display part at the end of the answer?
  82.         index = possible_begin_of_display (answer, gdb);
  83.  
  84.         if (index == -1) {
  85.         // nothing found -> answer remains unchanged
  86.         }
  87.         else {
  88.         answer_buffer = answer.from(index);
  89.         already_read = DisplayPart;
  90.  
  91.         answer = answer.before(index);
  92.         }
  93.     }
  94.     break;
  95.  
  96.     case DisplayFound:
  97.     display_buffer += answer;
  98.  
  99.     answer = "";
  100.     break;
  101.  
  102.     default:
  103.     assert(0);        // This can't happen.
  104.     break;
  105.     }
  106.  
  107.     // clog << "Display buffer = " << quote(display_buffer) << "\n";
  108. }
  109.  
  110. string DispBuffer::answer_ended ()
  111. {
  112.     switch (already_read) {
  113.     case DisplayPart:
  114.     {
  115.     assert (display_buffer == "");
  116.     string ans = answer_buffer;
  117.     answer_buffer = "";
  118.     return ans;
  119.     }
  120.  
  121.     case Null:
  122.     {
  123.     assert (display_buffer == "");
  124.     return "";
  125.     }
  126.  
  127.     case DisplayFound:
  128.     {
  129.     return "";
  130.     }
  131.  
  132.     default:
  133.     {
  134.     assert(0);        // This can't happen
  135.     break;
  136.     }
  137.     }
  138.  
  139.     return "";
  140. }
  141.  
  142.  
  143.