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 / value-read.h < prev    next >
C/C++ Source or Header  |  1998-09-17  |  3KB  |  97 lines

  1. // $Id: value-read.h,v 1.23 1998/09/17 14:59:44 zeller Exp $
  2. // Read variable values in string representation
  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. //-----------------------------------------------------------------------------
  30. // Read variable values in string representation
  31. //-----------------------------------------------------------------------------
  32.  
  33. #ifndef _DDD_value_read_h
  34. #define _DDD_value_read_h
  35.  
  36. #ifdef __GNUG__
  37. #pragma interface
  38. #endif
  39.  
  40. #include "strclass.h"
  41. #include "bool.h"
  42. #include "DispValueT.h"
  43.  
  44. #include <iostream.h>
  45.  
  46. // Determine type of next element in VALUE
  47. DispValueType determine_type (const string& value);
  48.  
  49. // Read single token from VALUE
  50. string read_token (string& value);
  51.  
  52. // Read simple element from VALUE
  53. string read_simple_value (string& value, int depth, bool ignore_repeats);
  54.  
  55. // Read pointer from VALUE
  56. string read_pointer_value (string& value, bool ignore_repeats);
  57.  
  58. // Read array; return false iff error
  59. bool read_array_begin (string& value, string& addr);
  60. bool read_array_next (string& value);
  61. void read_array_end(string& value);
  62.  
  63. // Read `<repeats N times>'; return N (1 if no repeat)
  64. int read_repeats(string& value);
  65.  
  66. // Read struct or class; return false iff error
  67. bool read_struct_begin (string& value, string& addr);
  68. bool read_struct_next (string& value);
  69. void read_struct_end(string& value);
  70.  
  71. // Read GDB `members of CLASS:' prefix
  72. bool read_members_prefix (string& value);
  73.  
  74. // Convert a DBX initial `dump' line into a readable format
  75. void munch_dump_line (string& value);
  76.  
  77. // Read in C++ vtable; return "" iff error
  78. string read_vtable_entries (string& value);
  79.  
  80. // Read struct or class member name; return "" iff error
  81. string read_member_name (string& value);
  82.  
  83. // Return true if NAME has the form `<FOO>' or `<>'
  84. bool is_BaseClass_name (const string& name);
  85.  
  86. // Cut off basename part (e.g. "foo.<Base>" becomes "foo")
  87. void cut_BaseClass_name (string& full_name);
  88.  
  89. // True if VALUE starts with `END', `}', or likewise
  90. bool is_ending(const string& value);
  91.  
  92. // True if VALUE is ending or starts with `,', `;', or likewise
  93. bool is_delimited(const string& value);
  94.  
  95. #endif // _DDD_value_read_h
  96. // DON'T ADD ANYTHING BEHIND THIS #endif
  97.