strutl.h 7.4 KB

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