strutl.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. // -*- mode: cpp; mode: fold -*-
  2. // Description /*{{{*/
  3. // $Id: strutl.h,v 1.22 2003/02/02 22:20:27 jgg Exp $
  4. /* ######################################################################
  5. String Util - These are some useful string functions
  6. _strstrip is a function to remove whitespace from the front and end
  7. of a string.
  8. This source is placed in the Public Domain, do with it what you will
  9. It was originally written by Jason Gunthorpe <jgg@gpu.srv.ualberta.ca>
  10. ##################################################################### */
  11. /*}}}*/
  12. #ifndef STRUTL_H
  13. #define STRUTL_H
  14. #include <stdlib.h>
  15. #include <string>
  16. #include <cstring>
  17. #include <vector>
  18. #include <iostream>
  19. #include <time.h>
  20. #include "macros.h"
  21. #ifndef APT_8_CLEANER_HEADERS
  22. using std::string;
  23. using std::vector;
  24. using std::ostream;
  25. #endif
  26. bool UTF8ToCodeset(const char *codeset, const std::string &orig, std::string *dest);
  27. char *_strstrip(char *String);
  28. char *_strrstrip(char *String); // right strip only
  29. char *_strtabexpand(char *String,size_t Len);
  30. bool ParseQuoteWord(const char *&String,std::string &Res);
  31. bool ParseCWord(const char *&String,std::string &Res);
  32. std::string QuoteString(const std::string &Str,const char *Bad);
  33. std::string DeQuoteString(const std::string &Str);
  34. std::string DeQuoteString(std::string::const_iterator const &begin, std::string::const_iterator const &end);
  35. // unescape (\0XX and \xXX) from a string
  36. std::string DeEscapeString(const std::string &input);
  37. std::string SizeToStr(double Bytes);
  38. std::string TimeToStr(unsigned long Sec);
  39. std::string Base64Encode(const std::string &Str);
  40. std::string OutputInDepth(const unsigned long Depth, const char* Separator=" ");
  41. std::string URItoFileName(const std::string &URI);
  42. std::string TimeRFC1123(time_t Date);
  43. bool RFC1123StrToTime(const char* const str,time_t &time) __must_check;
  44. bool FTPMDTMStrToTime(const char* const str,time_t &time) __must_check;
  45. __deprecated bool StrToTime(const std::string &Val,time_t &Result);
  46. std::string LookupTag(const std::string &Message,const char *Tag,const char *Default = 0);
  47. int StringToBool(const std::string &Text,int Default = -1);
  48. bool ReadMessages(int Fd, std::vector<std::string> &List);
  49. bool StrToNum(const char *Str,unsigned long &Res,unsigned Len,unsigned Base = 0);
  50. bool StrToNum(const char *Str,unsigned long long &Res,unsigned Len,unsigned Base = 0);
  51. bool Base256ToNum(const char *Str,unsigned long &Res,unsigned int Len);
  52. bool Hex2Num(const std::string &Str,unsigned char *Num,unsigned int Length);
  53. bool TokSplitString(char Tok,char *Input,char **List,
  54. unsigned long ListMax);
  55. std::vector<std::string> VectorizeString(std::string const &haystack, char const &split) __attrib_const;
  56. void ioprintf(std::ostream &out,const char *format,...) __like_printf(2);
  57. void strprintf(std::string &out,const char *format,...) __like_printf(2);
  58. char *safe_snprintf(char *Buffer,char *End,const char *Format,...) __like_printf(3);
  59. bool CheckDomainList(const std::string &Host, const std::string &List);
  60. int tolower_ascii(int const c) __attrib_const __hot;
  61. std::string StripEpoch(const std::string &VerStr);
  62. #define APT_MKSTRCMP(name,func) \
  63. inline int name(const char *A,const char *B) {return func(A,A+strlen(A),B,B+strlen(B));}; \
  64. inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \
  65. inline int name(const std::string& A,const char *B) {return func(A.c_str(),A.c_str()+A.length(),B,B+strlen(B));}; \
  66. inline int name(const std::string& A,const std::string& B) {return func(A.c_str(),A.c_str()+A.length(),B.c_str(),B.c_str()+B.length());}; \
  67. inline int name(const std::string& A,const char *B,const char *BEnd) {return func(A.c_str(),A.c_str()+A.length(),B,BEnd);};
  68. #define APT_MKSTRCMP2(name,func) \
  69. inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \
  70. inline int name(const std::string& A,const char *B) {return func(A.begin(),A.end(),B,B+strlen(B));}; \
  71. inline int name(const std::string& A,const std::string& B) {return func(A.begin(),A.end(),B.begin(),B.end());}; \
  72. inline int name(const std::string& A,const char *B,const char *BEnd) {return func(A.begin(),A.end(),B,BEnd);};
  73. int stringcmp(const char *A,const char *AEnd,const char *B,const char *BEnd);
  74. int stringcasecmp(const char *A,const char *AEnd,const char *B,const char *BEnd);
  75. /* We assume that GCC 3 indicates that libstdc++3 is in use too. In that
  76. case the definition of string::const_iterator is not the same as
  77. const char * and we need these extra functions */
  78. #if __GNUC__ >= 3
  79. int stringcmp(std::string::const_iterator A,std::string::const_iterator AEnd,
  80. const char *B,const char *BEnd);
  81. int stringcmp(std::string::const_iterator A,std::string::const_iterator AEnd,
  82. std::string::const_iterator B,std::string::const_iterator BEnd);
  83. int stringcasecmp(std::string::const_iterator A,std::string::const_iterator AEnd,
  84. const char *B,const char *BEnd);
  85. int stringcasecmp(std::string::const_iterator A,std::string::const_iterator AEnd,
  86. std::string::const_iterator B,std::string::const_iterator BEnd);
  87. inline int stringcmp(std::string::const_iterator A,std::string::const_iterator Aend,const char *B) {return stringcmp(A,Aend,B,B+strlen(B));};
  88. inline int stringcasecmp(std::string::const_iterator A,std::string::const_iterator Aend,const char *B) {return stringcasecmp(A,Aend,B,B+strlen(B));};
  89. #endif
  90. APT_MKSTRCMP2(stringcmp,stringcmp);
  91. APT_MKSTRCMP2(stringcasecmp,stringcasecmp);
  92. // Return the length of a NULL-terminated string array
  93. size_t strv_length(const char **str_array);
  94. inline const char *DeNull(const char *s) {return (s == 0?"(null)":s);};
  95. class URI
  96. {
  97. void CopyFrom(const std::string &From);
  98. public:
  99. std::string Access;
  100. std::string User;
  101. std::string Password;
  102. std::string Host;
  103. std::string Path;
  104. unsigned int Port;
  105. operator std::string();
  106. inline void operator =(const std::string &From) {CopyFrom(From);};
  107. inline bool empty() {return Access.empty();};
  108. static std::string SiteOnly(const std::string &URI);
  109. static std::string NoUserPassword(const std::string &URI);
  110. URI(std::string Path) {CopyFrom(Path);};
  111. URI() : Port(0) {};
  112. };
  113. struct SubstVar
  114. {
  115. const char *Subst;
  116. const std::string *Contents;
  117. };
  118. std::string SubstVar(std::string Str,const struct SubstVar *Vars);
  119. std::string SubstVar(const std::string &Str,const std::string &Subst,const std::string &Contents);
  120. struct RxChoiceList
  121. {
  122. void *UserData;
  123. const char *Str;
  124. bool Hit;
  125. };
  126. unsigned long RegexChoice(RxChoiceList *Rxs,const char **ListBegin,
  127. const char **ListEnd);
  128. #endif