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 / cook.h < prev    next >
C/C++ Source or Header  |  1998-03-25  |  3KB  |  93 lines

  1. // $Id: cook.h,v 1.6 1998/03/25 12:45:30 zeller Exp $
  2. // Turn a string into C representation and back again
  3.  
  4. // Copyright (C) 1995 Technische Universitaet Braunschweig, Germany.
  5. // Written by Andreas Zeller <zeller@ips.cs.tu-bs.de>.
  6. // 
  7. // This file is part of the ICE Library.
  8. // 
  9. // The ICE Library is free software; you can redistribute it and/or
  10. // modify it under the terms of the GNU Library 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. // The ICE Library 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 Library General Public License for more details.
  18. // 
  19. // You should have received a copy of the GNU Library General Public
  20. // License along with the ICE Library -- see the file COPYING.LIB.
  21. // If not, write to the Free Software Foundation, Inc.,
  22. // 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  23. // 
  24. // ICE is the incremental configuration environment.
  25. // For details, see the ICE World-Wide-Web page, 
  26. // `http://www.cs.tu-bs.de/softech/ice/',
  27. // or send a mail to the ICE developers <ice@ips.cs.tu-bs.de>.
  28.  
  29. #ifndef _ICE_cook_h
  30. #define _ICE_cook_h
  31.  
  32. #ifdef __GNUG__
  33. #pragma interface
  34. #endif
  35.  
  36. #include "strclass.h"
  37. #include "bool.h"
  38.  
  39. extern string _cook(const string& raw, bool for_postscript);
  40.  
  41. // Quote any non-printable character via backslash
  42. inline string cook(const string& raw) 
  43.     return _cook(raw, false); 
  44. }
  45.  
  46. // Same, but quote ( and ) as well
  47. inline string pscook(const string& raw) 
  48.     return _cook(raw, true); 
  49. }
  50.  
  51. // Unquote any \-quotations
  52. extern string uncook(const string& cooked);
  53.  
  54. // Strip quotes
  55. inline string _unquote(const string& s)
  56. {
  57.     return ((string&)s).at(1, s.length() - 2);
  58. }
  59.  
  60. // Enclose S in quotes QUOTE
  61. inline string _quote(const string& s, char quote = '\"')
  62. {
  63.     return string(quote) + s + quote;
  64. }
  65.  
  66. // Strip any quotes and make it raw
  67. inline string unquote(const string& s)
  68. {
  69.     return _unquote(uncook(s));
  70. }
  71.  
  72. // Same, but only if enclosed in quotes QUOTE
  73. inline string unquote(const string& s, char quote)
  74. {
  75.     if (s.length() > 0 && 
  76.     ((string&)s)[0] == quote && 
  77.     ((string&)s)[s.length() - 1] == quote)
  78.     return unquote(s);
  79.     else
  80.     return s;
  81. }
  82.     
  83. // Cook S and add quotes
  84. inline string quote(const string& s, char q = '\"')
  85. {
  86.     return _quote(cook(s), q);
  87. }
  88.  
  89. #endif // _ICE_cook_h
  90. // DON'T ADD ANYTHING BEHIND THIS #endif
  91.