strutl.h 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  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 <limits>
  15. #include <stdlib.h>
  16. #include <string>
  17. #include <cstring>
  18. #include <vector>
  19. #include <iostream>
  20. #include <time.h>
  21. #include "macros.h"
  22. #ifndef APT_8_CLEANER_HEADERS
  23. using std::string;
  24. using std::vector;
  25. using std::ostream;
  26. #endif
  27. bool UTF8ToCodeset(const char *codeset, const std::string &orig, std::string *dest);
  28. char *_strstrip(char *String);
  29. char *_strrstrip(char *String); // right strip only
  30. char *_strtabexpand(char *String,size_t Len);
  31. bool ParseQuoteWord(const char *&String,std::string &Res);
  32. bool ParseCWord(const char *&String,std::string &Res);
  33. std::string QuoteString(const std::string &Str,const char *Bad);
  34. std::string DeQuoteString(const std::string &Str);
  35. std::string DeQuoteString(std::string::const_iterator const &begin, std::string::const_iterator const &end);
  36. // unescape (\0XX and \xXX) from a string
  37. std::string DeEscapeString(const std::string &input);
  38. std::string SizeToStr(double Bytes);
  39. std::string TimeToStr(unsigned long Sec);
  40. std::string Base64Encode(const std::string &Str);
  41. std::string OutputInDepth(const unsigned long Depth, const char* Separator=" ");
  42. std::string URItoFileName(const std::string &URI);
  43. std::string TimeRFC1123(time_t Date);
  44. bool RFC1123StrToTime(const char* const str,time_t &time) __must_check;
  45. bool FTPMDTMStrToTime(const char* const str,time_t &time) __must_check;
  46. __deprecated bool StrToTime(const std::string &Val,time_t &Result);
  47. std::string LookupTag(const std::string &Message,const char *Tag,const char *Default = 0);
  48. int StringToBool(const std::string &Text,int Default = -1);
  49. bool ReadMessages(int Fd, std::vector<std::string> &List);
  50. bool StrToNum(const char *Str,unsigned long &Res,unsigned Len,unsigned Base = 0);
  51. bool StrToNum(const char *Str,unsigned long long &Res,unsigned Len,unsigned Base = 0);
  52. bool Base256ToNum(const char *Str,unsigned long &Res,unsigned int Len);
  53. bool Hex2Num(const std::string &Str,unsigned char *Num,unsigned int Length);
  54. // input changing string split
  55. bool TokSplitString(char Tok,char *Input,char **List,
  56. unsigned long ListMax);
  57. // split a given string by a char
  58. std::vector<std::string> VectorizeString(std::string const &haystack, char const &split) __attrib_const;
  59. /* \brief Return a vector of strings from string "input" where "sep"
  60. * is used as the delimiter string.
  61. *
  62. * \param input The input string.
  63. *
  64. * \param sep The seperator to use.
  65. *
  66. * \param maxsplit (optional) The maximum amount of splitting that
  67. * should be done .
  68. *
  69. * The optional "maxsplit" argument can be used to limit the splitting,
  70. * if used the string is only split on maxsplit places and the last
  71. * item in the vector contains the remainder string.
  72. */
  73. std::vector<std::string> StringSplit(std::string const &input,
  74. std::string const &sep,
  75. unsigned int maxsplit=std::numeric_limits<unsigned int>::max()) __attrib_const;
  76. void ioprintf(std::ostream &out,const char *format,...) __like_printf(2);
  77. void strprintf(std::string &out,const char *format,...) __like_printf(2);
  78. char *safe_snprintf(char *Buffer,char *End,const char *Format,...) __like_printf(3);
  79. bool CheckDomainList(const std::string &Host, const std::string &List);
  80. int tolower_ascii(int const c) __attrib_const __hot;
  81. std::string StripEpoch(const std::string &VerStr);
  82. #define APT_MKSTRCMP(name,func) \
  83. inline int name(const char *A,const char *B) {return func(A,A+strlen(A),B,B+strlen(B));}; \
  84. inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \
  85. inline int name(const std::string& A,const char *B) {return func(A.c_str(),A.c_str()+A.length(),B,B+strlen(B));}; \
  86. 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());}; \
  87. 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);};
  88. #define APT_MKSTRCMP2(name,func) \
  89. inline int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));}; \
  90. inline int name(const std::string& A,const char *B) {return func(A.begin(),A.end(),B,B+strlen(B));}; \
  91. inline int name(const std::string& A,const std::string& B) {return func(A.begin(),A.end(),B.begin(),B.end());}; \
  92. inline int name(const std::string& A,const char *B,const char *BEnd) {return func(A.begin(),A.end(),B,BEnd);};
  93. int stringcmp(const char *A,const char *AEnd,const char *B,const char *BEnd);
  94. int stringcasecmp(const char *A,const char *AEnd,const char *B,const char *BEnd);
  95. /* We assume that GCC 3 indicates that libstdc++3 is in use too. In that
  96. case the definition of string::const_iterator is not the same as
  97. const char * and we need these extra functions */
  98. #if __GNUC__ >= 3
  99. int stringcmp(std::string::const_iterator A,std::string::const_iterator AEnd,
  100. const char *B,const char *BEnd);
  101. int stringcmp(std::string::const_iterator A,std::string::const_iterator AEnd,
  102. std::string::const_iterator B,std::string::const_iterator BEnd);
  103. int stringcasecmp(std::string::const_iterator A,std::string::const_iterator AEnd,
  104. const char *B,const char *BEnd);
  105. int stringcasecmp(std::string::const_iterator A,std::string::const_iterator AEnd,
  106. std::string::const_iterator B,std::string::const_iterator BEnd);
  107. inline int stringcmp(std::string::const_iterator A,std::string::const_iterator Aend,const char *B) {return stringcmp(A,Aend,B,B+strlen(B));};
  108. inline int stringcasecmp(std::string::const_iterator A,std::string::const_iterator Aend,const char *B) {return stringcasecmp(A,Aend,B,B+strlen(B));};
  109. #endif
  110. APT_MKSTRCMP2(stringcmp,stringcmp);
  111. APT_MKSTRCMP2(stringcasecmp,stringcasecmp);
  112. // Return the length of a NULL-terminated string array
  113. size_t strv_length(const char **str_array);
  114. inline const char *DeNull(const char *s) {return (s == 0?"(null)":s);};
  115. class URI
  116. {
  117. void CopyFrom(const std::string &From);
  118. public:
  119. std::string Access;
  120. std::string User;
  121. std::string Password;
  122. std::string Host;
  123. std::string Path;
  124. unsigned int Port;
  125. operator std::string();
  126. inline void operator =(const std::string &From) {CopyFrom(From);};
  127. inline bool empty() {return Access.empty();};
  128. static std::string SiteOnly(const std::string &URI);
  129. static std::string NoUserPassword(const std::string &URI);
  130. URI(std::string Path) {CopyFrom(Path);};
  131. URI() : Port(0) {};
  132. };
  133. struct SubstVar
  134. {
  135. const char *Subst;
  136. const std::string *Contents;
  137. };
  138. std::string SubstVar(std::string Str,const struct SubstVar *Vars);
  139. std::string SubstVar(const std::string &Str,const std::string &Subst,const std::string &Contents);
  140. struct RxChoiceList
  141. {
  142. void *UserData;
  143. const char *Str;
  144. bool Hit;
  145. };
  146. unsigned long RegexChoice(RxChoiceList *Rxs,const char **ListBegin,
  147. const char **ListEnd);
  148. #endif