]>
Commit | Line | Data |
---|---|---|
6c139d6e AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
1168596f | 3 | // $Id: strutl.h,v 1.22 2003/02/02 22:20:27 jgg Exp $ |
6c139d6e AL |
4 | /* ###################################################################### |
5 | ||
b2e465d6 | 6 | String Util - These are some useful string functions |
6c139d6e AL |
7 | |
8 | _strstrip is a function to remove whitespace from the front and end | |
9 | of a string. | |
10 | ||
11 | This source is placed in the Public Domain, do with it what you will | |
12 | It was originally written by Jason Gunthorpe <jgg@gpu.srv.ualberta.ca> | |
13 | ||
14 | ##################################################################### */ | |
15 | /*}}}*/ | |
6c139d6e AL |
16 | #ifndef STRUTL_H |
17 | #define STRUTL_H | |
18 | ||
13500573 | 19 | |
2ddab3fb | 20 | #include <limits> |
6c139d6e | 21 | #include <string> |
a7955daa | 22 | #include <cstring> |
0a8a80e5 | 23 | #include <vector> |
0db4a45b | 24 | #include <iostream> |
eff0c22e JAK |
25 | #ifdef APT_PKG_EXPOSE_STRING_VIEW |
26 | #include <apt-pkg/string_view.h> | |
27 | #endif | |
492f957a | 28 | #include <time.h> |
453b82a3 | 29 | #include <stddef.h> |
6c139d6e | 30 | |
6dc60370 DK |
31 | #include "macros.h" |
32 | ||
453b82a3 DK |
33 | #ifndef APT_10_CLEANER_HEADERS |
34 | #include <stdlib.h> | |
35 | #endif | |
a4f6bdc8 DK |
36 | #ifndef APT_8_CLEANER_HEADERS |
37 | using std::string; | |
38 | using std::vector; | |
39 | using std::ostream; | |
40 | #endif | |
41 | ||
65dbd5a1 MV |
42 | namespace APT { |
43 | namespace String { | |
44 | std::string Strip(const std::string &s); | |
cf993341 | 45 | bool Endswith(const std::string &s, const std::string &ending); |
a5bb5e1e | 46 | bool Startswith(const std::string &s, const std::string &starting); |
d3e8fbb3 DK |
47 | } |
48 | } | |
65dbd5a1 MV |
49 | |
50 | ||
8f3ba4e8 | 51 | bool UTF8ToCodeset(const char *codeset, const std::string &orig, std::string *dest); |
6c139d6e | 52 | char *_strstrip(char *String); |
4fb400a6 | 53 | char *_strrstrip(char *String); // right strip only |
6c139d6e | 54 | char *_strtabexpand(char *String,size_t Len); |
8f3ba4e8 DK |
55 | bool ParseQuoteWord(const char *&String,std::string &Res); |
56 | bool ParseCWord(const char *&String,std::string &Res); | |
57 | std::string QuoteString(const std::string &Str,const char *Bad); | |
58 | std::string DeQuoteString(const std::string &Str); | |
59 | std::string DeQuoteString(std::string::const_iterator const &begin, std::string::const_iterator const &end); | |
a513ace2 | 60 | |
b9dc4706 | 61 | // unescape (\0XX and \xXX) from a string |
8f3ba4e8 DK |
62 | std::string DeEscapeString(const std::string &input); |
63 | ||
64 | std::string SizeToStr(double Bytes); | |
65 | std::string TimeToStr(unsigned long Sec); | |
66 | std::string Base64Encode(const std::string &Str); | |
67 | std::string OutputInDepth(const unsigned long Depth, const char* Separator=" "); | |
68 | std::string URItoFileName(const std::string &URI); | |
69 | std::string TimeRFC1123(time_t Date); | |
453b82a3 DK |
70 | bool RFC1123StrToTime(const char* const str,time_t &time) APT_MUSTCHECK; |
71 | bool FTPMDTMStrToTime(const char* const str,time_t &time) APT_MUSTCHECK; | |
5dd00edb | 72 | APT_DEPRECATED_MSG("Use RFC1123StrToTime or FTPMDTMStrToTime as needed instead") bool StrToTime(const std::string &Val,time_t &Result); |
8f3ba4e8 DK |
73 | std::string LookupTag(const std::string &Message,const char *Tag,const char *Default = 0); |
74 | int StringToBool(const std::string &Text,int Default = -1); | |
75 | bool ReadMessages(int Fd, std::vector<std::string> &List); | |
ddc1d8d0 | 76 | bool StrToNum(const char *Str,unsigned long &Res,unsigned Len,unsigned Base = 0); |
650faab0 | 77 | bool StrToNum(const char *Str,unsigned long long &Res,unsigned Len,unsigned Base = 0); |
f688d1d3 | 78 | bool Base256ToNum(const char *Str,unsigned long &Res,unsigned int Len); |
3c09d634 | 79 | bool Base256ToNum(const char *Str,unsigned long long &Res,unsigned int Len); |
8f3ba4e8 | 80 | bool Hex2Num(const std::string &Str,unsigned char *Num,unsigned int Length); |
eff0c22e JAK |
81 | #ifdef APT_PKG_EXPOSE_STRING_VIEW |
82 | APT_HIDDEN bool Hex2Num(const APT::StringView Str,unsigned char *Num,unsigned int Length); | |
83 | #endif | |
9572a54b | 84 | // input changing string split |
b2e465d6 AL |
85 | bool TokSplitString(char Tok,char *Input,char **List, |
86 | unsigned long ListMax); | |
9572a54b MV |
87 | |
88 | // split a given string by a char | |
7e9b7ea8 | 89 | std::vector<std::string> VectorizeString(std::string const &haystack, char const &split) APT_PURE; |
9572a54b | 90 | |
41053d72 MV |
91 | /* \brief Return a vector of strings from string "input" where "sep" |
92 | * is used as the delimiter string. | |
93 | * | |
94 | * \param input The input string. | |
95 | * | |
96 | * \param sep The seperator to use. | |
97 | * | |
98 | * \param maxsplit (optional) The maximum amount of splitting that | |
99 | * should be done . | |
100 | * | |
101 | * The optional "maxsplit" argument can be used to limit the splitting, | |
102 | * if used the string is only split on maxsplit places and the last | |
103 | * item in the vector contains the remainder string. | |
104 | */ | |
105 | std::vector<std::string> StringSplit(std::string const &input, | |
106 | std::string const &sep, | |
453b82a3 | 107 | unsigned int maxsplit=std::numeric_limits<unsigned int>::max()) APT_CONST; |
9572a54b | 108 | |
453b82a3 DK |
109 | void ioprintf(std::ostream &out,const char *format,...) APT_PRINTF(2); |
110 | void strprintf(std::string &out,const char *format,...) APT_PRINTF(2); | |
111 | char *safe_snprintf(char *Buffer,char *End,const char *Format,...) APT_PRINTF(3); | |
8f3ba4e8 | 112 | bool CheckDomainList(const std::string &Host, const std::string &List); |
98eb4e9e JAK |
113 | |
114 | /* Do some compat mumbo jumbo */ | |
115 | #define tolower_ascii tolower_ascii_inline | |
116 | #define isspace_ascii isspace_ascii_inline | |
117 | ||
118 | APT_CONST APT_HOT | |
119 | static inline int tolower_ascii_inline(int const c) | |
120 | { | |
121 | return (c >= 'A' && c <= 'Z') ? c + 32 : c; | |
122 | } | |
123 | APT_CONST APT_HOT | |
124 | static inline int isspace_ascii_inline(int const c) | |
125 | { | |
126 | // 9='\t',10='\n',11='\v',12='\f',13='\r',32=' ' | |
127 | return (c >= 9 && c <= 13) || c == ' '; | |
128 | } | |
98b06343 | 129 | |
8f3ba4e8 | 130 | std::string StripEpoch(const std::string &VerStr); |
6c139d6e | 131 | |
c24972cb | 132 | #define APT_MKSTRCMP(name,func) \ |
a02db58f DK |
133 | inline APT_PURE int name(const char *A,const char *B) {return func(A,A+strlen(A),B,B+strlen(B));} \ |
134 | inline APT_PURE int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));} \ | |
135 | inline APT_PURE int name(const std::string& A,const char *B) {return func(A.c_str(),A.c_str()+A.length(),B,B+strlen(B));} \ | |
136 | inline APT_PURE 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());} \ | |
137 | inline APT_PURE int name(const std::string& A,const char *B,const char *BEnd) {return func(A.c_str(),A.c_str()+A.length(),B,BEnd);} | |
0db4a45b | 138 | |
47db8997 | 139 | #define APT_MKSTRCMP2(name,func) \ |
a02db58f DK |
140 | inline APT_PURE int name(const char *A,const char *AEnd,const char *B) {return func(A,AEnd,B,B+strlen(B));} \ |
141 | inline APT_PURE int name(const std::string& A,const char *B) {return func(A.begin(),A.end(),B,B+strlen(B));} \ | |
142 | inline APT_PURE int name(const std::string& A,const std::string& B) {return func(A.begin(),A.end(),B.begin(),B.end());} \ | |
143 | inline APT_PURE int name(const std::string& A,const char *B,const char *BEnd) {return func(A.begin(),A.end(),B,BEnd);} | |
47db8997 | 144 | |
a02db58f DK |
145 | int APT_PURE stringcmp(const char *A,const char *AEnd,const char *B,const char *BEnd); |
146 | int APT_PURE stringcasecmp(const char *A,const char *AEnd,const char *B,const char *BEnd); | |
ae0b19f5 AL |
147 | |
148 | /* We assume that GCC 3 indicates that libstdc++3 is in use too. In that | |
149 | case the definition of string::const_iterator is not the same as | |
150 | const char * and we need these extra functions */ | |
151 | #if __GNUC__ >= 3 | |
a02db58f | 152 | int APT_PURE stringcmp(std::string::const_iterator A,std::string::const_iterator AEnd, |
47db8997 | 153 | const char *B,const char *BEnd); |
a02db58f | 154 | int APT_PURE stringcmp(std::string::const_iterator A,std::string::const_iterator AEnd, |
8f3ba4e8 | 155 | std::string::const_iterator B,std::string::const_iterator BEnd); |
a02db58f | 156 | int APT_PURE stringcasecmp(std::string::const_iterator A,std::string::const_iterator AEnd, |
47db8997 | 157 | const char *B,const char *BEnd); |
a02db58f | 158 | int APT_PURE stringcasecmp(std::string::const_iterator A,std::string::const_iterator AEnd, |
8f3ba4e8 | 159 | std::string::const_iterator B,std::string::const_iterator BEnd); |
c24972cb | 160 | |
a02db58f DK |
161 | inline APT_PURE int stringcmp(std::string::const_iterator A,std::string::const_iterator Aend,const char *B) {return stringcmp(A,Aend,B,B+strlen(B));} |
162 | inline APT_PURE int stringcasecmp(std::string::const_iterator A,std::string::const_iterator Aend,const char *B) {return stringcasecmp(A,Aend,B,B+strlen(B));} | |
ae0b19f5 AL |
163 | #endif |
164 | ||
d3e8fbb3 DK |
165 | APT_MKSTRCMP2(stringcmp,stringcmp) |
166 | APT_MKSTRCMP2(stringcasecmp,stringcasecmp) | |
0db4a45b | 167 | |
b9179170 | 168 | // Return the length of a NULL-terminated string array |
a02db58f | 169 | size_t APT_PURE strv_length(const char **str_array); |
b9179170 MV |
170 | |
171 | ||
d3e8fbb3 | 172 | inline const char *DeNull(const char *s) {return (s == 0?"(null)":s);} |
6c139d6e | 173 | |
93bf083d AL |
174 | class URI |
175 | { | |
8f3ba4e8 | 176 | void CopyFrom(const std::string &From); |
3809194b | 177 | |
93bf083d | 178 | public: |
3809194b | 179 | |
8f3ba4e8 DK |
180 | std::string Access; |
181 | std::string User; | |
182 | std::string Password; | |
183 | std::string Host; | |
184 | std::string Path; | |
93bf083d AL |
185 | unsigned int Port; |
186 | ||
8f3ba4e8 | 187 | operator std::string(); |
d3e8fbb3 | 188 | inline void operator =(const std::string &From) {CopyFrom(From);} |
be4401bf | 189 | inline bool empty() {return Access.empty();}; |
8f3ba4e8 | 190 | static std::string SiteOnly(const std::string &URI); |
1da3b7b8 | 191 | static std::string ArchiveOnly(const std::string &URI); |
8f3ba4e8 | 192 | static std::string NoUserPassword(const std::string &URI); |
93bf083d | 193 | |
d3e8fbb3 DK |
194 | URI(std::string Path) {CopyFrom(Path);} |
195 | URI() : Port(0) {} | |
93bf083d AL |
196 | }; |
197 | ||
b2e465d6 AL |
198 | struct SubstVar |
199 | { | |
200 | const char *Subst; | |
8f3ba4e8 | 201 | const std::string *Contents; |
b2e465d6 | 202 | }; |
8f3ba4e8 DK |
203 | std::string SubstVar(std::string Str,const struct SubstVar *Vars); |
204 | std::string SubstVar(const std::string &Str,const std::string &Subst,const std::string &Contents); | |
b2e465d6 AL |
205 | |
206 | struct RxChoiceList | |
207 | { | |
208 | void *UserData; | |
209 | const char *Str; | |
210 | bool Hit; | |
211 | }; | |
212 | unsigned long RegexChoice(RxChoiceList *Rxs,const char **ListBegin, | |
213 | const char **ListEnd); | |
214 | ||
6c139d6e | 215 | #endif |